/* =========================================================
   Eric's AI Ecom System — Landing Page
   Theme: Dark + Cyber Green
   ========================================================= */

:root {
  --bg:        #04070a;
  --bg-2:      #070c10;
  --surface:   rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border:    rgba(0, 255, 157, 0.14);
  --border-2:  rgba(255, 255, 255, 0.08);

  --accent:    #00ff9d;   /* cyber green */
  --accent-2:  #00e0ff;   /* cyan secondary */
  --accent-dim:#0c9c6a;
  --glow:      rgba(0, 255, 157, 0.45);

  --text:      #e9f4f0;
  --muted:     #8ba39a;
  --muted-2:   #5f746c;

  --radius:    16px;
  --radius-lg: 22px;
  --maxw:      1140px;

  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
/* Anchored sections clear the fixed nav when jumped to */
section[id] { scroll-margin-top: 84px; }
/* Below-fold sections aren't rendered until near the viewport.
   (.proof is deliberately excluded: deferring its 29-image strip caused a
   render burst mid-scroll — better to pay that cost at load, off-screen.) */
.inside, .offer, .faq, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--accent); color: #02110b; }

/* ---------- Background layers ---------- */
#matrix {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; opacity: 0.22;
  pointer-events: none;
}
.bg-grid {
  position: fixed; inset: -2px;
  z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,255,157,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,157,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
}
.bg-orb {
  position: fixed; z-index: 0; pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
/* Static: animating these huge blurred layers forced continuous GPU
   compositing for a barely-perceptible drift */
.bg-orb--1 {
  width: 520px; height: 520px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(0,255,157,0.35), transparent 70%);
}
.bg-orb--2 {
  width: 460px; height: 460px;
  top: 30%; right: -160px;
  background: radial-gradient(circle, rgba(0,224,255,0.22), transparent 70%);
}
.scanline {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(transparent 0 3px, rgba(0,0,0,0.18) 3px 4px);
  opacity: 0.15;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.container--narrow { max-width: 820px; }
main, .nav, .footer, .sticky-cta { position: relative; z-index: 2; }

/* ---------- Typography helpers ---------- */
.grad {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.nowrap { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.2px;
  padding: 15px 26px; border-radius: 100px;
  background: var(--btn-bg); color: var(--text);
  border: 1px solid var(--border-2);
  cursor: pointer; position: relative;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--lg { padding: 19px 34px; font-size: 1.12rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: linear-gradient(100deg, var(--accent), #00d9c4);
  color: #021810;
  border: none;
  font-weight: 700;
  box-shadow: 0 10px 30px -8px var(--glow);
}
.btn--primary:hover { box-shadow: 0 16px 44px -8px var(--glow); }

/* Pulse ring: animates transform/opacity only (GPU-composited, no repaints) */
.btn--glow::after {
  content: ""; position: absolute; inset: -3px; border-radius: inherit;
  border: 2px solid rgba(0,255,157,0.55);
  pointer-events: none;
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.07); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
.btn__price {
  font-family: var(--font-mono); font-weight: 500; font-size: .78rem;
  background: rgba(2,24,16,0.18); color: #022; padding: 4px 9px; border-radius: 100px;
  margin-left: 2px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
/* Solid near-opaque bg instead of backdrop-filter: blurring the animating
   canvas behind the nav forced a full re-blur on every frame */
.nav.scrolled {
  background: rgba(4,7,10,0.94);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; }
.brand__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  font-size: .82rem; font-weight: 700; letter-spacing: 1px;
  color: #021810; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px -2px var(--glow);
}
.brand__name { font-size: 1.02rem; letter-spacing: .3px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--muted); font-size: .94rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero { padding: 150px 0 60px; text-align: center; }
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px;
  background: rgba(0,255,157,0.04);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px 2px var(--accent); animation: blink 1.6s infinite;
}
@keyframes blink { 50% { opacity: .3; } }

.hero__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: -1.2px;
  margin: 26px 0 0; max-width: 16ch;
}
.hero__sub {
  margin: 24px auto 0; max-width: 60ch;
  font-size: clamp(1rem, 2vw, 1.22rem); color: var(--muted);
}
.hero__sub strong { color: var(--text); font-weight: 600; }

/* VSL */
.vsl { width: 100%; max-width: 860px; margin: 46px auto 0; }
.vsl__frame {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg);
  overflow: hidden; background: #050a0c;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(0,255,157,0.06),
              0 0 80px -20px var(--glow);
}
.vsl__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl__corner {
  position: absolute; width: 26px; height: 26px; z-index: 4;
  border: 2px solid var(--accent); opacity: .8;
}
.vsl__corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.vsl__corner--tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.vsl__corner--bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.vsl__corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.vsl__poster {
  position: absolute; inset: 0; display: grid; place-items: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0,255,157,0.16), transparent 60%),
    linear-gradient(160deg, #07120e, #04080a 70%);
  cursor: pointer;
}
.vsl__poster::before {
  content: ""; position: absolute; inset: 0; opacity: .35;
  background-image:
    linear-gradient(rgba(0,255,157,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,157,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.vsl__hud {
  position: absolute; top: 18px; left: 18px; right: 18px; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: 1.5px; color: var(--muted);
}
.vsl__rec { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); }
.vsl__rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff4d4d; box-shadow: 0 0 8px #ff4d4d; animation: blink 1.2s infinite; }
.vsl__play {
  position: relative; z-index: 3;
  width: 92px; height: 92px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  box-shadow: 0 0 34px -4px var(--glow);
  transition: transform .2s;
}
.vsl__play::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(0,255,157,0.6);
  pointer-events: none;
  animation: pulse 2.4s ease-out infinite;
}
.vsl__play:hover { transform: scale(1.08); }
.vsl__play svg { width: 40px; height: 40px; fill: #021810; margin-left: 5px; }
.vsl__label { position: absolute; bottom: 54px; z-index: 3; font-family: var(--font-head); font-weight: 600; color: var(--text); }
.vsl__label span { color: var(--muted); font-weight: 400; }
.vsl__bar { position: absolute; bottom: 26px; left: 18px; right: 18px; height: 4px; z-index: 3; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.vsl__bar span { display: block; height: 100%; width: 12%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

/* Hero CTA */
.hero__cta { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero__assure {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px;
}
.hero__assure li { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .9rem; white-space: nowrap; }
.ico { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; }

/* Button icon (unlock, etc.) */
.btn__ico { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* Hero rating / social proof under the video */
.hero__rating {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 14px 18px;
}
.avatars { display: flex; align-items: center; }
.avatars__a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  color: #021810; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 2px solid var(--bg); margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.avatars__a:first-child { margin-left: 0; }
.avatars__a--more {
  color: var(--accent); background: #0a1512;
  border: 2px solid var(--border); font-size: .72rem; letter-spacing: .3px;
}
.rating__meta { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.rating__stars { display: inline-flex; gap: 3px; }
.rating__stars svg { width: 20px; height: 20px; fill: var(--accent); filter: drop-shadow(0 0 5px var(--glow)); }
.rating__text { color: var(--muted); font-size: .92rem; }
.rating__text strong { color: var(--text); font-weight: 700; }

/* Infinity glyph in the value stack */
.infinity { display: inline-flex; align-items: center; }
.infinity svg { width: 30px; height: 18px; stroke: var(--accent); filter: drop-shadow(0 0 5px var(--glow)); }

/* Marquee */
.marquee {
  position: relative; margin-top: 64px; overflow: hidden;
  border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2);
  padding: 16px 0;
}
/* Edge fades as static overlays — masking the moving track forced a
   re-mask on every animation frame */
.marquee::before, .marquee::after, .wins::before, .wins::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 72px;
  z-index: 2; pointer-events: none;
}
.marquee::before, .wins::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after, .wins::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee__track {
  display: inline-flex; align-items: center; gap: 22px; white-space: nowrap;
  font-family: var(--font-mono); font-size: .92rem; letter-spacing: 1px;
  animation: scroll 26s linear infinite; will-change: transform;
}
.marquee__track span { color: var(--muted-2); }
.marquee__track b { color: var(--text); font-weight: 500; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { padding: 30px 0 20px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat {
  text-align: center; padding: 30px 16px;
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius);
  /* Scope counter-animation layout/paint to the card (also dropped the
     backdrop blur — it sat over the animating canvas) */
  contain: layout paint;
}
.stat__num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1;
  font-variant-numeric: tabular-nums; /* fixed digit widths: no re-layout wiggle while counting */
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__label { margin-top: 10px; color: var(--muted); font-size: .9rem; }

/* ---------- Band ---------- */
.band { padding: 90px 0; text-align: center; }
.band__title { font-family: var(--font-head); font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 700; letter-spacing: -.5px; }
.band__text { max-width: 62ch; margin: 22px auto 0; color: var(--muted); font-size: 1.1rem; }
.band__text strong { color: var(--text); }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 54px; }
.section-tag { font-family: var(--font-mono); font-size: .78rem; letter-spacing: 2px; color: var(--accent); }
.section-title { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 4.5vw, 3.1rem); letter-spacing: -.6px; margin-top: 14px; }
.section-desc { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }

/* ---------- Social proof ---------- */
.proof { padding: 70px 0; }

/* Featured student testimonials — real screenshots with name + result */
.featured {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 42px;
}
.fcard {
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.fcard:hover {
  transform: translateY(-5px); border-color: var(--border);
  box-shadow: 0 24px 50px -28px var(--glow);
}
.fcard__shot {
  display: block; width: 100%; padding: 0; border: 0;
  background: none; cursor: zoom-in; position: relative;
}
.fcard__shot img {
  width: 100%; height: 320px; object-fit: cover; object-position: top;
  display: block;
}
/* For screenshots whose key numbers sit mid-image, crop to the middle */
.fcard__shot img.crop-mid { object-position: center 74%; }
.fcard__shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4,7,10,0.55));
  pointer-events: none;
}
.fcard__zoom {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(4,7,10,0.65); border: 1px solid var(--border);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.fcard__zoom svg { width: 18px; height: 18px; fill: var(--accent); }
.fcard__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 12px; }
.fcard__badge {
  align-self: flex-start; font-family: var(--font-mono); font-size: .68rem; letter-spacing: 1.5px;
  color: var(--accent); padding: 5px 11px; border: 1px solid var(--border); border-radius: 100px;
  background: rgba(0,255,157,0.05);
}
.fcard__person { display: flex; align-items: center; gap: 12px; }
.fcard__avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: #021810;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
}
.fcard__person b { display: block; font-size: 1rem; }
.fcard__person small { color: var(--muted); font-size: .85rem; }

/* Wins marquee — real student screenshots */
.wins {
  position: relative; overflow: hidden; margin-bottom: 14px;
}
.wins__track {
  display: inline-flex; align-items: flex-start; gap: 16px;
  width: max-content;
  animation: scroll 70s linear infinite; will-change: transform;
  padding: 8px 0 14px;
}
.wins:hover .wins__track { animation-play-state: paused; }
/* Applied by JS when a marquee scrolls out of view — no need to animate offscreen */
.track-paused { animation-play-state: paused !important; }
.win {
  border: 1px solid var(--border-2); border-radius: 14px; padding: 0;
  background: var(--surface); overflow: hidden; cursor: zoom-in;
  height: 340px; flex-shrink: 0;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.win img { height: 100%; width: auto; display: block; }
.win:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--border);
  box-shadow: 0 20px 44px -22px var(--glow);
}
.wins__hint {
  text-align: center; margin: 0 0 46px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: 2px;
  color: var(--muted-2);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: rgba(2, 5, 7, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-height: 92vh; max-width: 94vw;
  border-radius: 16px; border: 1px solid var(--border);
  box-shadow: 0 0 90px -18px var(--glow);
}
.lightbox__close {
  position: absolute; top: 18px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(255,255,255,0.05);
  color: var(--text); font-size: 1.7rem; line-height: 1; cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox__close:hover { background: rgba(0,255,157,0.15); transform: scale(1.08); }
/* ---------- What's inside ---------- */
.inside { padding: 80px 0; }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pillar {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius-lg);
  padding: 32px; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.pillar::after {
  content: ""; position: absolute; width: 280px; height: 280px; right: -120px; top: -120px;
  background: radial-gradient(circle, rgba(0,255,157,0.12), transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.pillar:hover { transform: translateY(-5px); border-color: var(--border); box-shadow: 0 24px 60px -30px var(--glow); }
.pillar:hover::after { opacity: 1; }
.pillar__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.pillar__no {
  font-family: var(--font-mono); font-size: 2.6rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px rgba(0,255,157,0.35);
}
.pillar__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(0,255,157,0.08); border: 1px solid var(--border);
}
.pillar__icon svg { width: 30px; height: 30px; fill: var(--accent); }
.pillar__title { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; letter-spacing: -.3px; }
.pillar__text { margin-top: 12px; color: var(--muted); }
.pillar__list { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.pillar__list li { position: relative; padding-left: 28px; color: var(--text); font-size: .96rem; }
.pillar__list li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 5px;
  background: rgba(0,255,157,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300ff9d'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* ---------- Offer ---------- */
.offer { padding: 80px 0; scroll-margin-top: 90px; }
.offer__card {
  position: relative; max-width: 640px; margin: 0 auto;
  border-radius: 26px; padding: 2px;
  background: linear-gradient(140deg, var(--accent), rgba(0,224,255,0.5) 40%, transparent 70%);
}
.offer__glow {
  position: absolute; inset: -40px; z-index: -1; border-radius: 40px;
  background: radial-gradient(ellipse at 50% 0%, var(--glow), transparent 70%);
  opacity: .5; filter: blur(40px);
}
.offer__body {
  background: linear-gradient(180deg, #0a1310, #060b0d);
  border-radius: 24px; padding: 40px;
}
.offer__name { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; text-align: center; }
.offer__tag { text-align: center; color: var(--muted); margin-top: 8px; }
.offer__stack { margin: 30px 0; display: flex; flex-direction: column; }
.offer__stack li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px dashed var(--border-2); font-size: .98rem;
}
.offer__stack li span { color: var(--text); }
.offer__stack li b { font-family: var(--font-mono); color: var(--muted); font-weight: 500; }
.offer__total { background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 22px; margin-bottom: 26px; }
.offer__total-line { display: flex; justify-content: space-between; color: var(--muted); }
.offer__total-line s { font-family: var(--font-mono); }
.offer__price { display: flex; align-items: baseline; gap: 12px; margin-top: 12px; }
.offer__price-now { font-family: var(--font-head); font-weight: 700; font-size: 3rem; line-height: 1; color: var(--accent); text-shadow: 0 0 30px var(--glow); }
.offer__price-meta { font-family: var(--font-mono); font-size: .82rem; color: var(--muted); }
.offer__assure { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.offer__assure li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .92rem; }
.offer__assure .ico { margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; scroll-margin-top: 80px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px;
  overflow: hidden; transition: border-color .3s, background .3s;
}
.faq__item[open] { border-color: var(--border); background: rgba(0,255,157,0.03); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform .3s;
}
.faq__plus::before { width: 18px; height: 2px; }
.faq__plus::after  { width: 2px; height: 18px; }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq__item[open] .faq__answer { max-height: 320px; padding: 0 24px 24px; }
.faq__answer p { color: var(--muted); }
.faq__cta { text-align: center; margin-top: 48px; }
.faq__cta p { color: var(--muted); margin-bottom: 16px; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-2); padding: 54px 0 120px; margin-top: 40px; }
.footer__inner { display: flex; flex-direction: column; gap: 28px; align-items: center; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__legal { max-width: 760px; }
.footer__disclaimer { color: var(--muted-2); font-size: .8rem; line-height: 1.7; }
.footer__copy { margin-top: 16px; color: var(--muted-2); font-size: .82rem; }
.footer__copy a { color: var(--muted); }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  transform: translateY(120%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  background: rgba(5,9,11,0.96);
  border-top: 1px solid var(--border);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sticky-cta__text b { font-family: var(--font-head); display: block; font-size: .98rem; }
.sticky-cta__text span { color: var(--muted); font-size: .82rem; font-family: var(--font-mono); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .featured { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 680px) {
  /* --- Section rhythm: tighter vertical pacing for phones --- */
  .hero { padding: 104px 0 32px; }
  .vsl { margin-top: 32px; }
  .hero__rating { margin-top: 26px; }
  .hero__cta { margin-top: 22px; }
  .marquee { margin-top: 44px; padding: 12px 0; }
  .stats { padding: 20px 0 8px; }
  .band { padding: 56px 0; }
  .proof { padding: 48px 0; }
  .inside { padding: 56px 0; }
  .offer { padding: 56px 0; }
  .faq { padding: 56px 0; }
  .section-head { margin-bottom: 34px; }
  .footer { margin-top: 16px; padding: 40px 0 130px; }

  /* --- Typography and cards scaled for small screens --- */
  .band__text { font-size: 1rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { padding: 22px 12px; }
  .featured { gap: 14px; }
  .fcard__shot img { height: 270px; }
  .fcard__body { padding: 14px 16px 16px; }
  .pillar { padding: 24px 20px; }
  .pillar__top { margin-bottom: 16px; }
  .pillar__no { font-size: 2rem; }
  .pillar__icon { width: 48px; height: 48px; border-radius: 12px; }
  .pillar__icon svg { width: 26px; height: 26px; }
  .pillar__title { font-size: 1.22rem; }
  .faq__item summary { padding: 18px; font-size: 1rem; }
  .faq__answer { padding: 0 18px; }
  .faq__item[open] .faq__answer { padding: 0 18px 18px; }
  .offer__body { padding: 28px 22px; }
  .offer__name { font-size: 1.45rem; }
  .offer__stack { margin: 22px 0; }
  .offer__stack li { font-size: .9rem; padding: 12px 0; }

  /* --- Touch targets --- */
  .btn--lg { padding: 17px 24px; font-size: 1.02rem; }
  .hero__cta .btn { width: 100%; max-width: 420px; }
  .sticky-cta__text span { display: none; }
  .brand__name { display: none; }

  /* --- Lighter background effects on phones (GPU/battery) --- */
  #matrix { opacity: 0.15; }
  .bg-orb--2, .scanline { display: none; }
  /* Stack the price + meta cleanly instead of cramming side by side */
  .offer__price { flex-direction: column; align-items: flex-start; gap: 2px; }
  .offer__price-now { font-size: 2.6rem; }
  /* Wins marquee: slightly smaller cards on phones */
  .win { height: 280px; }
  .wins__hint { font-size: .64rem; letter-spacing: 1.4px; padding: 0 16px; }
  /* Rating row: center everything when it wraps on small screens */
  .hero__rating { gap: 12px; }
  .rating__meta { align-items: center; }
  .rating__text { text-align: center; font-size: .88rem; }
  .avatars__a { width: 36px; height: 36px; font-size: .76rem; }
  /* Sticky CTA: keep the button comfortably tappable */
  .sticky-cta__inner { padding: 10px 16px; }
  .sticky-cta .btn { padding: 12px 18px; }
  /* Tighten the VSL poster so the play button and label don't crowd */
  .vsl__play { width: 54px; height: 54px; transform: translateY(-14px); }
  .vsl__play:hover { transform: translateY(-14px) scale(1.08); }
  .vsl__play svg { width: 24px; height: 24px; }
  .vsl__label { bottom: 36px; font-size: .86rem; }
  .vsl__hud { top: 14px; left: 14px; right: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  #matrix { display: none; }
  /* Wins strip becomes a manual horizontal scroller */
  .wins { overflow-x: auto; }
  .wins__track { width: auto; }
}
