/* ============ TOKENS ============ */
:root {
  --navy-deep: #0A0F2E;
  --navy: #101A4D;
  --navy-mid: #1E2A78;
  --purple: #3E2E7E;
  --magenta: #C8197E;
  --electric-blue: #1E5FFF;
  --cyan-accent: #00B7FF;
  --light-bg: #F7F8FB;
  --light-card: #FFFFFF;
  --text-dark: #0D0D12;
  --text-mute: #5A5D6A;
  --text-light: #FFFFFF;
  --gradient: linear-gradient(135deg, #1E5FFF 0%, #C8197E 100%);
  --gradient-soft: linear-gradient(135deg, rgba(30,95,255,0.15) 0%, rgba(200,25,126,0.15) 100%);
  --shadow-sm: 0 4px 12px rgba(10, 15, 46, 0.08);
  --shadow-md: 0 12px 30px rgba(10, 15, 46, 0.12);
  --shadow-glow: 0 0 30px rgba(200, 25, 126, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 140px;}
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.15; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-position 0.6s ease;
  cursor: pointer;
}
.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-xl { padding: 20px 44px; font-size: 19px; }
.btn-gradient {
  background: linear-gradient(135deg, #1E5FFF 0%, #C8197E 50%, #1E5FFF 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-gradient:hover {
  background-position: 100% 0%;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: white; }
.btn-light {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 15, 46, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 106px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-signin { padding: 6px 0; }
.nav-cta { padding: 10px 22px; font-size: 14px; }
.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep);
  color: white;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute; inset: -10%;
  background: radial-gradient(ellipse at 30% 40%, rgba(30, 95, 255, 0.35) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 60%, rgba(200, 25, 126, 0.30) 0%, transparent 55%),
              var(--navy-deep);
  animation: drift 18s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; }
.hero-mark { width: 600px; height: auto; margin: 0 auto 0px; filter: drop-shadow(0 0 30px rgba(200, 25, 126, 0.5)); }
.pulse { animation: pulse 3.5s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 24px rgba(200, 25, 126, 0.4)); }
  50%      { transform: scale(1.04); filter: drop-shadow(0 0 40px rgba(200, 25, 126, 0.7)); }
}
.hero-headline {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #b8c4ff 50%, #ffd1e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { font-size: 13px; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.02em; }

/* ============ SECTIONS BASE ============ */
section { padding: 100px 0; }
.section-title { font-size: clamp(32px, 4vw, 48px); text-align: center; margin-bottom: 12px; }
.section-title.light { color: white; }
.section-sub { text-align: center; color: var(--text-mute); font-size: 18px; margin-bottom: 56px; }
.section-sub.light { color: rgba(255,255,255,0.7); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ PROBLEM ============ */
.problem {
  background: var(--light-bg);
  padding: 90px 0;
}
.problem .container { max-width: 920px; }
.problem-line {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--navy);
  padding: 18px 0;
  border-bottom: 1px solid rgba(10, 15, 46, 0.08);
}
.problem-line:last-child { border-bottom: none; }
.arrow {
  display: inline-block;
  color: var(--magenta);
  margin-right: 14px;
  font-weight: 700;
}

/* ============ HOW ============ */
.how {
  background: var(--navy-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(200, 25, 126, 0.15) 0%, transparent 50%);
}
.how .container { position: relative; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.how-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 25, 126, 0.4);
}
.how-num {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.how-card h3 { font-size: 24px; margin-bottom: 12px; color: white; }
.how-card p { color: rgba(255, 255, 255, 0.7); font-size: 15.5px; }

/* ============ TRAILER FEATURE ============ */
.trailer-feature {
  background: var(--light-bg);
  padding: 80px 0;
}
.trailer-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.trailer-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.trailer-card h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 8px; color: var(--navy); }
.trailer-card p { color: var(--text-mute); margin-bottom: 32px; }
.trailer-thumb {
  width: 100%; max-width: 720px; margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
}
.trailer-thumb:hover { transform: scale(1.01); }
.trailer-thumb-inner {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
  animation: ringPulse 2.4s ease-out infinite;
}
@keyframes ringPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70%  { box-shadow: 0 0 0 24px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.play-icon { font-size: 28px; color: var(--magenta); margin-left: 6px; }

/* ============ PRODUCTS ============ */
.products { background: var(--light-bg); }
.product-list { display: flex; flex-direction: column; gap: 14px; max-width: 920px; margin: 0 auto; }
.product {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 15, 46, 0.08);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.product:hover { border-color: rgba(200, 25, 126, 0.3); box-shadow: var(--shadow-sm); }
.product summary {
  list-style: none;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 60px 1fr auto 30px;
  gap: 18px;
  align-items: center;
  cursor: pointer;
}
.product summary::-webkit-details-marker { display: none; }
.product-num { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--magenta); font-size: 15px; letter-spacing: 0.05em; }
.product-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 19px; color: var(--navy); }
.product-tag { color: var(--text-mute); font-size: 14px; font-style: italic; }
.chevron { font-size: 22px; color: var(--magenta); font-weight: 300; transition: transform 0.3s; }
.product[open] .chevron { transform: rotate(45deg); }
.product-body {
  padding: 0 28px 26px 102px;
  display: grid;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text-mute);
}
.product-body strong { color: var(--navy); font-family: 'Sora', sans-serif; }
.product.locked { opacity: 0.7; }
.product.locked .product-num, .product.locked .product-name { color: var(--text-mute); }

.products-cta { text-align: center; margin-top: 56px; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--navy-deep); color: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial:hover { transform: translateY(-4px); border-color: rgba(200, 25, 126, 0.4); }
.testimonial-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30,95,255,0.4), rgba(200,25,126,0.4));
  margin-bottom: 18px;
}
.testimonial-quote { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.6; margin-bottom: 18px; }
.testimonial-name { font-family: 'Sora', sans-serif; font-weight: 600; color: white; }
.testimonial-title { color: rgba(255,255,255,0.55); font-size: 14px; }

/* ============ PREREQS ============ */
.prereqs { background: var(--light-bg); }
.prereq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.prereq-col {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}
.prereq-h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 18px;
}
.prereq-list { list-style: none; display: grid; gap: 14px; }
.prereq-list li { display: grid; grid-template-columns: 28px 1fr; gap: 8px; font-size: 15.5px; line-height: 1.55; }
.check, .lock { font-size: 18px; }
.prereq-note { text-align: center; margin-top: 28px; color: var(--text-mute); font-size: 14.5px; }

/* ============ FAQ ============ */
.faq { background: var(--navy-deep); color: white; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--magenta); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: rgba(255,255,255,0.72); font-size: 15.5px; }

/* ============ FINAL CTA ============ */
.cta-final {
  background: var(--gradient);
  text-align: center;
  color: white;
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 60%);
}
.cta-final .container { position: relative; }
.cta-final h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.cta-fine { margin-top: 22px; font-size: 13.5px; opacity: 0.85; }

/* ============ CONTACT ============ */
.contact { background: var(--light-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon { font-size: 32px; }
.contact-card h3 { font-size: 20px; color: var(--navy); }
.contact-card p { color: var(--text-mute); font-size: 15px; }
.contact-form input, .contact-form textarea {
  font-family: inherit;
  border: 1px solid rgba(10, 15, 46, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--magenta); }
.contact-form button { margin-top: 6px; }

/* ============ FOOTER ============ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 32px; padding-bottom: 50px;
}
.footer-logo { height: 40px; margin-bottom: 12px; }
.footer-tag { font-style: italic; color: var(--magenta); font-size: 14px; }
.footer h4 { color: white; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.footer a { display: block; padding: 5px 0; font-size: 14.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer a:hover { color: white; }
.footer-fine { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
  max-width: 1180px; margin: 0 auto; padding-left: 24px; padding-right: 24px;
}
.cookie-link { color: rgba(255,255,255,0.55); font-size: 13px; text-decoration: underline; }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(6px); }
.modal-card {
  position: relative;
  width: 100%; max-width: 960px;
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.modal-card video { width: 100%; display: block; }
.modal-close {
  position: absolute; top: 12px; right: 16px;
  font-size: 32px; line-height: 1; color: white; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(200,25,126,0.6); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 600px; margin: 0 auto;
  background: var(--navy-deep);
  color: white;
  padding: 18px 22px;
  border-radius: var(--radius);
  display: none;
  align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: var(--shadow-md);
  z-index: 150;
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 14px; flex: 1; }
.cookie-banner a { color: var(--magenta); text-decoration: underline; }
.cookie-banner button { padding: 10px 20px; font-size: 14px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 32px; height: 32px;
    align-items: center; justify-content: center;
  }
  .nav-toggle span { width: 22px; height: 2px; background: white; transition: 0.3s; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--navy-deep);
    padding: 20px 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: 0.3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 10px 0; }
  .how-grid, .testimonial-grid, .prereq-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .product summary {
    grid-template-columns: 50px 1fr 26px;
  }
  .product-tag { display: none; }
  .product-body { padding-left: 28px; }
  section { padding: 70px 0; }
}