/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background: #0a0a0f;
  color: #ffffff;
  overflow: hidden;
}

/* Liquid Glass Animated Background Orbs - Vibrant & Soothing */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.bg-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(1, 160, 226, 0.6) 0%, rgba(74, 163, 255, 0.35) 40%, rgba(47, 140, 255, 0.15) 60%, transparent 75%);
  top: -250px;
  left: -200px;
  animation: floatOrb1 25s ease-in-out infinite;
}

.bg-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.55) 0%, rgba(155, 89, 182, 0.3) 40%, rgba(142, 68, 173, 0.12) 60%, transparent 75%);
  top: 20%;
  right: -180px;
  animation: floatOrb2 30s ease-in-out infinite;
}

.bg-orb-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 138, 43, 0.5) 0%, rgba(255, 107, 107, 0.28) 40%, rgba(255, 142, 83, 0.1) 60%, transparent 75%);
  bottom: 5%;
  left: -120px;
  animation: floatOrb3 22s ease-in-out infinite;
}

.bg-orb-4 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.55) 0%, rgba(74, 163, 255, 0.3) 40%, rgba(1, 160, 226, 0.12) 60%, transparent 75%);
  bottom: -150px;
  right: 15%;
  animation: floatOrb4 28s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(80px, 60px) scale(1.1);
  }
  50% {
    transform: translate(150px, 120px) scale(0.95);
  }
  75% {
    transform: translate(60px, 80px) scale(1.05);
  }
}

@keyframes floatOrb2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-100px, 80px) scale(1.08);
  }
  50% {
    transform: translate(-60px, 150px) scale(0.92);
  }
  75% {
    transform: translate(-120px, 60px) scale(1.04);
  }
}

@keyframes floatOrb3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(120px, -60px) scale(1.12);
  }
  50% {
    transform: translate(80px, -120px) scale(0.9);
  }
  75% {
    transform: translate(160px, -40px) scale(1.06);
  }
}

@keyframes floatOrb4 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-80px, -100px) scale(1.1);
  }
  50% {
    transform: translate(-150px, -60px) scale(0.94);
  }
  75% {
    transform: translate(-60px, -140px) scale(1.08);
  }
}

/* Main Layout - Single Page No Scroll */
.product-page {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px 20px;
  gap: 12px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* Logo - Top Right (Fixed or Absolute) */
.logo-link {
  position: absolute;
  top: 16px;
  right: clamp(16px, 4vw, 40px);
  z-index: 100;
}
.logo {
  height: 32px;
  width: auto;
}

/* Hero Section: Video + Price */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  flex: 1;
  justify-content: center;
  min-height: 0;
}

/* Video - Liquid Glass Frame */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  z-index: 1;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(1, 160, 226, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(1, 160, 226, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.video-mask {
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  background: #000000;
  border: none;
}
.product-video {
  width: 100%;
  height: auto;
  max-height: 36vh;
  display: block;
  object-fit: contain;
}
.video-fade {
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 6px;
  height: 15%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 40%, #000000 100%);
  pointer-events: none;
  z-index: 60;
  border-radius: 0 0 22px 22px;
}

/* Purchase Box - Liquid Glass */
.purchase-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 550px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.purchase-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  pointer-events: none;
}

.purchase-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 50px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(1, 160, 226, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing {
  text-align: left;
  flex: 1;
}
.price {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 700;
  margin: 0 0 2px 0;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subscription {
  font-size: clamp(11px, 1.2vw, 13px);
  margin: 0 0 1px 0;
  color: rgba(255, 255, 255, 0.75);
}
.promo {
  font-size: clamp(10px, 1.1vw, 12px);
  margin: 0;
  color: rgba(72, 187, 120, 0.9);
  font-weight: 500;
}
.shipping-note {
  font-size: clamp(9px, 1vw, 11px);
  margin: 4px 0 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Preorder Button - Liquid Glass with Glow */
.preorder-button {
  background: linear-gradient(135deg, rgba(1, 160, 226, 0.8) 0%, rgba(74, 163, 255, 0.7) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 4px 20px rgba(1, 160, 226, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.preorder-button:hover {
  background: linear-gradient(135deg, rgba(1, 160, 226, 0.95) 0%, rgba(74, 163, 255, 0.85) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 30px rgba(1, 160, 226, 0.5),
    0 0 60px rgba(1, 160, 226, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.preorder-button:active {
  transform: translateY(0) scale(1);
}


/* Bloo Message */
.bloo-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.message-line {
  font-size: clamp(13px, 1.6vw, 17px);
  line-height: 1.35;
  margin: 0;
  text-align: center;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 20%, #FFA07A 40%, #87CEEB 60%, #4AA3FF 80%, #9B59B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  max-width: 550px;
}
.signature {
  font-family: "Dancing Script", cursive;
  font-size: clamp(16px, 2vw, 22px);
  color: #4aa3ff;
  margin-top: 4px;
  font-weight: 700;
}

/* Alpha Customer Note */
.alpha-note {
  font-size: clamp(10px, 1.1vw, 12px);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 550px;
  line-height: 1.4;
  margin-top: 6px;
  padding: 8px 14px;
  background: rgba(72, 187, 120, 0.08);
  border: 1px solid rgba(72, 187, 120, 0.15);
  border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .bg-orb {
    filter: blur(70px);
    opacity: 0.6;
  }
  .bg-orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
  }
  .bg-orb-2 {
    width: 350px;
    height: 350px;
    right: -100px;
  }
  .bg-orb-3 {
    width: 320px;
    height: 320px;
  }
  .bg-orb-4 {
    width: 280px;
    height: 280px;
  }
  
  .product-page {
    padding: 50px 16px 16px;
    gap: 10px;
  }
  .logo-link {
    right: 16px;
    top: 14px;
  }
  .logo {
    height: 28px;
  }
  .bloo-message {
    gap: 3px;
  }
  .message-line {
    font-size: clamp(12px, 3vw, 15px);
    line-height: 1.3;
  }
  .signature {
    font-size: clamp(14px, 3.5vw, 18px);
    margin-top: 2px;
  }
  .video-wrapper {
    max-width: 100%;
    padding: 4px;
    border-radius: 18px;
  }
  .video-mask {
    border-radius: 14px;
  }
  .video-fade {
    bottom: 4px;
    left: 4px;
    right: 4px;
    border-radius: 0 0 14px 14px;
  }
  .product-video {
    max-height: 32vh;
  }
  .purchase-box {
    flex-direction: column;
    padding: 14px 14px;
    gap: 10px;
    text-align: center;
    border-radius: 16px;
  }
  .pricing {
    text-align: center;
  }
  .price {
    font-size: 24px;
  }
  .preorder-button {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
  }
  .alpha-note {
    font-size: 10px;
    padding: 6px 12px;
    margin-top: 4px;
  }
}
