/* ==========================================================================
   THE GROWTH EXPRESS · Landing
   ========================================================================== */

:root {
  /* Brand */
  --deep:        #050B0F;
  --deep-2:      #07101a;
  --cog:         #003042;
  --cog-soft:    rgba(0, 48, 66, 0.4);
  --cog-faint:   rgba(0, 48, 66, 0.25);
  --teal:        #2B6979;
  --cyan:        #5296AA;
  --cyan-15:     rgba(82, 150, 170, 0.15);
  --cyan-25:     rgba(82, 150, 170, 0.25);
  --cyan-40:     rgba(82, 150, 170, 0.4);
  --cyan-soft:   rgba(82, 150, 170, 0.08);
  --mist:        #D3E3DE;
  --mist-60:     rgba(211, 227, 222, 0.6);
  --mist-40:     rgba(211, 227, 222, 0.4);
  --yellow:      #FFF200;
  --yellow-08:   rgba(255, 242, 0, 0.08);
  --yellow-15:   rgba(255, 242, 0, 0.15);
  --yellow-25:   rgba(255, 242, 0, 0.25);
  --yellow-glow: rgba(255, 242, 0, 0.32);
  --white:       #FFFFFF;
  --border:      rgba(82, 150, 170, 0.18);
  --border-strong: rgba(82, 150, 170, 0.32);

  /* Type · brand font: Poppins. Italic accent: Instrument Serif. */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
  --font-serif:   'Instrument Serif', 'Times New Roman', serif;

  /* Type scale (fluid) */
  --h1: clamp(48px, 7.4vw, 96px);
  --h2: clamp(34px, 5vw, 60px);
  --h3: clamp(20px, 2.2vw, 26px);
  --body: clamp(15px, 1.05vw, 17px);
  --eyebrow: 11px;
  --micro: 12px;

  /* Spacing */
  --space-section: clamp(80px, 11vw, 160px);
  --space-half:    clamp(40px, 6vw, 80px);
  --container:     1180px;
  --container-narrow: 880px;

  /* Motion */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:      180ms;
  --dur-base:      260ms;
  --dur-slow:      560ms;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-pill: 999px;
}

/* ==========================================================================
   Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html, body { margin: 0; padding: 0; }
em, i { font-style: normal; }

body {
  background: var(--deep);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: var(--yellow); color: var(--deep); }

a { color: inherit; text-decoration: none; }
ul, li { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

p { margin: 0 0 1.2em; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; color: var(--white); letter-spacing: -0.02em; }

/* Hide native scrollbar styling chrome-style */
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--deep); }
body::-webkit-scrollbar-thumb { background: rgba(82,150,170,0.18); border-radius: 10px; }
body::-webkit-scrollbar-thumb:hover { background: rgba(82,150,170,0.3); }

/* ==========================================================================
   Containers
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  position: relative;
  padding: var(--space-section) 0;
}

.section-problem { background: var(--cog); }
.section-method  { background: linear-gradient(160deg, var(--cog) 0%, #001824 100%); }
.section-offer   { background: var(--cog); }
.section-testimonials { background: var(--cog-faint); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ==========================================================================
   Grain + ambient effects
   ========================================================================== */

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.grain::before {
  content: ''; position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--cyan) 100%);
  z-index: 200;
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(255,242,0,0.4);
}

/* ==========================================================================
   Custom cursor (only on fine pointers)
   ========================================================================== */

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  transition: transform 60ms linear, opacity 200ms, background 200ms;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(82,150,170,0.5);
  border-radius: 50%;
  transition: transform 280ms var(--ease-out), width 220ms, height 220ms, border-color 220ms, opacity 200ms;
  margin: -15px 0 0 -15px; /* compensate for sizing */
  /* sizing accounted for in JS positioning */
}
.cursor-ring.hot {
  width: 64px; height: 64px;
  margin: -29px 0 0 -29px;
  border-color: var(--yellow);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================================================
   Buttons + arrow icon
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: 14px;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-base), color var(--dur-fast);
  cursor: pointer;
  white-space: nowrap;
  will-change: transform;
  text-decoration: none;
  user-select: none;
}
.btn-sm  { padding: 11px 18px; font-size: 13px; }
.btn-lg  { padding: 18px 32px; font-size: 15px; }
.btn-xl  { padding: 22px 42px; font-size: 16px; letter-spacing: 0.6px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

.btn-primary {
  background: var(--yellow);
  color: var(--deep);
  box-shadow: 0 8px 28px rgba(255, 242, 0, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(255, 242, 0, 0.36);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--mist);
  border: 1px solid var(--cyan-25);
  font-weight: 700;
}
.btn-secondary:hover {
  color: var(--white);
  border-color: var(--cyan);
  background: rgba(82, 150, 170, 0.05);
}

.btn-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(5, 11, 15, 0.16);
  font-size: 13px;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-fast);
}
.btn-primary .btn-arrow { background: rgba(5, 11, 15, 0.18); color: var(--deep); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ==========================================================================
   Pill / badge
   ========================================================================== */

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(82,150,170,0.3);
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.pill-hero {
  border-color: var(--yellow-25);
  background: var(--yellow-08);
  color: var(--yellow);
  letter-spacing: 2.4px;
  padding: 6px 16px;
}
.pill-on-dark {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: var(--mist);
}

.pill-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 var(--yellow-glow);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.pill-on-dark .pill-dot { background: var(--yellow); }
.pill-dot-inline { vertical-align: middle; margin-right: 8px; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,242,0,0.4); }
  50%      { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,242,0,0); }
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.reveal-line-inner {
  display: block;
  line-height: 1.08;
  transform: translateY(120%);
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}
.hero-headline.is-revealed .reveal-line-inner { transform: translateY(0); }
.hero-headline .reveal-line:nth-child(1) .reveal-line-inner { transition-delay: 0.05s; }
.hero-headline .reveal-line:nth-child(2) .reveal-line-inner { transition-delay: 0.15s; }
.hero-headline .reveal-line:nth-child(3) .reveal-line-inner { transition-delay: 0.28s; }
.hero-headline .reveal-line:nth-child(4) .reveal-line-inner { transition-delay: 0.38s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .reveal-line-inner { transform: none; }
}

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  background: rgba(5, 11, 15, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.nav.scrolled {
  background: rgba(5, 11, 15, 0.92);
  border-bottom-color: var(--border);
}
.nav-inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  transition: opacity var(--dur-fast);
}
.nav-brand:hover { opacity: 0.85; }
.nav-brand-symbol {
  display: block;
  filter: drop-shadow(0 0 12px rgba(255,242,0,0.18));
}
.nav-brand-wordmark {
  display: block;
  height: 24px;
  width: auto;
  opacity: 0.95;
}
@media (max-width: 480px) { .nav-brand-wordmark { display: none; } }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
}
.hero-text { position: relative; }
@media (max-width: 920px) {
  .hero-text { order: 2; }
  .hero-train { order: 1; max-width: 560px; margin: 0 auto 16px; height: 380px !important; }
}

.hero-mark {
  display: block;
  width: clamp(34px, 4vw, 48px);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 0 24px rgba(255,242,0,0.45));
  animation: mark-float 5s ease-in-out infinite;
}
@media (max-width: 920px) {
  .hero-mark { margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   The Growth Express train scene · used in the footer
   (Originally lived in the hero; moved to footer per direction)
   ========================================================================== */

.hero-train,
.footer-train {
  position: relative;
  width: 100%;
  height: clamp(520px, 72vh, 700px);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 25%, rgba(82, 150, 170, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(255,242,0,0.08) 0%, transparent 45%),
    linear-gradient(180deg, #06121A 0%, #0A1B26 45%, #050B0F 75%, #03070A 100%);
  border: 1px solid var(--border);
  box-shadow:
    0 40px 90px -30px rgba(0,0,0,0.8),
    inset 0 0 80px rgba(82,150,170,0.06);
  color: var(--mist);
}

/* Footer-scale tweaks: shorter scene, wider container, sits above the wordmark */
.footer-train {
  max-width: var(--container);
  margin: 0 auto clamp(40px, 6vw, 64px);
  height: clamp(280px, 38vh, 420px);
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

/* Stars */
.train-stars { position: absolute; inset: 0; pointer-events: none; }
.train-stars .star {
  position: absolute;
  top: var(--y); left: var(--x);
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
  opacity: 0.55;
  animation: star-twinkle 3.2s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes star-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.9); }
  50%      { opacity: 0.95; transform: scale(1.2); }
}

/* Distant mountains (silhouettes) */
.train-mountains {
  position: absolute;
  left: -10%; right: -10%;
  bottom: 28%;
  height: 22%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5,11,15,0.5) 100%),
    radial-gradient(ellipse at 15% 100%, #0E2632 0%, transparent 60%),
    radial-gradient(ellipse at 38% 100%, #0B1F2A 0%, transparent 60%),
    radial-gradient(ellipse at 60% 100%, #102A38 0%, transparent 65%),
    radial-gradient(ellipse at 85% 100%, #0A1A24 0%, transparent 60%);
  filter: blur(0.4px);
  opacity: 0.9;
  animation: mountain-drift 90s linear infinite;
}
.train-mountains-near {
  bottom: 22%;
  height: 14%;
  background:
    radial-gradient(ellipse at 22% 100%, #14334A 0%, transparent 60%),
    radial-gradient(ellipse at 52% 100%, #163A52 0%, transparent 60%),
    radial-gradient(ellipse at 78% 100%, #11293A 0%, transparent 60%);
  opacity: 0.85;
  animation: mountain-drift-near 60s linear infinite;
}
@keyframes mountain-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-8%); }
}
@keyframes mountain-drift-near {
  from { transform: translateX(0); }
  to   { transform: translateX(-14%); }
}

/* Horizon line */
.train-horizon {
  position: absolute;
  left: 0; right: 0;
  bottom: 22%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(82,150,170,0.35), transparent);
}

/* Ground */
.train-ground {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 22%;
  background:
    linear-gradient(180deg, #050B0F 0%, #03070A 100%);
  border-top: 1px solid rgba(255,242,0,0.08);
}
.train-track-line {
  position: absolute;
  top: 58%;
  left: -2%; right: -2%;
  height: 2px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255,242,0,0.18) 12%,
    rgba(255,242,0,0.4) 50%,
    rgba(255,242,0,0.18) 88%,
    transparent 100%);
  box-shadow: 0 0 14px rgba(255,242,0,0.22);
}
.train-track-line::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(to right,
    rgba(255,242,0,0.14) 0,
    rgba(255,242,0,0.14) 8px,
    transparent 8px,
    transparent 24px);
  margin-top: 6px;
}

/* Train runner — moves the train across */
.train-runner {
  position: absolute;
  bottom: 14%;
  left: 0;
  width: 46%;
  max-width: 460px;
  min-width: 320px;
  color: var(--mist);
  animation: train-move 14s cubic-bezier(0.45,0,0.55,1) infinite;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.6));
}
.train-svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes train-move {
  0%   { transform: translateX(-110%); }
  6%   { transform: translateX(-110%); }
  50%  { transform: translateX(50%); }
  94%  { transform: translateX(220%); }
  100% { transform: translateX(220%); }
}

/* Smoke puffs */
.train-smoke {
  position: absolute;
  left: 56%;
  top: -8px;
  width: 60px;
  height: 80px;
  pointer-events: none;
}
.train-smoke .puff {
  position: absolute;
  bottom: 0; left: 50%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(220, 235, 245, 0.32);
  box-shadow:
    0 0 16px rgba(220,235,245,0.18),
    inset -4px -2px 8px rgba(255,255,255,0.18);
  filter: blur(0.5px);
  opacity: 0;
  transform: translate(-50%, 0) scale(0.4);
  animation: puff-rise 2.4s ease-out infinite;
}
.train-smoke .puff-1 { animation-delay: 0s; }
.train-smoke .puff-2 { animation-delay: 0.45s; }
.train-smoke .puff-3 { animation-delay: 0.9s; }
.train-smoke .puff-4 { animation-delay: 1.35s; }
.train-smoke .puff-5 { animation-delay: 1.8s; }
@keyframes puff-rise {
  0%   { opacity: 0;    transform: translate(-50%, 0)    scale(0.4); }
  18%  { opacity: 0.85; }
  100% { opacity: 0;    transform: translate(-50%, -90px) scale(1.6); }
}

/* Bottom marker line + caption */
.train-marker {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 92%;
  z-index: 3;
}
.train-marker-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--yellow);
  opacity: 0.65;
}
.train-marker-text {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist-60);
  font-weight: 600;
  white-space: nowrap;
}

@keyframes mark-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .train-runner,
  .train-mountains,
  .train-mountains-near,
  .train-stars .star,
  .train-smoke .puff { animation: none !important; }
  .train-runner { transform: translateX(40%); }
  .train-smoke .puff-1 { opacity: 0.4; }
}

@media (max-width: 920px) {
  .train-marker-text { font-size: 9px; letter-spacing: 0.18em; }
  .train-runner { width: 70%; max-width: 380px; }
}

.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(43, 105, 121, 0.32) 0%, transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(255, 242, 0, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 18% 80%, rgba(82, 150, 170, 0.14) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
  animation: hero-drift 18s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.05); }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(82,150,170,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(82,150,170,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 18px 0 26px;
  color: var(--white);
}
@media (max-width: 920px) {
  .hero-headline { font-size: clamp(38px, 9vw, 60px); margin-left: auto; margin-right: auto; }
}
.hero-headline .reveal-line-muted .reveal-line-inner { color: var(--mist-60); }

.accent-serif {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  color: var(--yellow);
  letter-spacing: -0.01em;
  padding: 0 0.04em;
  position: relative;
}

.hero-sub {
  max-width: 540px;
  margin: 0 0 36px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--mist);
}
@media (max-width: 920px) { .hero-sub { margin-left: auto; margin-right: auto; } }

.hero-cta-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 22px;
}
@media (max-width: 920px) { .hero-cta-row { justify-content: center; } }

.hero-micro {
  font-size: 13px;
  color: var(--mist-60);
  letter-spacing: 0.2px;
}
.hero-micro strong { color: var(--mist); font-weight: 700; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  animation: scroll-drop 2.4s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: top; }
  61%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mist-40);
  font-weight: 600;
}

/* ==========================================================================
   VSL · staged premium card
   ========================================================================== */

.section-vsl {
  position: relative;
  background: var(--deep);
  padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 120px);
  overflow: hidden;
}
.vsl-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(82,150,170,0.16), transparent 55%),
    radial-gradient(ellipse at 18% 80%, rgba(255,242,0,0.04), transparent 45%);
}
.vsl-head { margin-bottom: clamp(36px, 4.5vw, 56px); }
.vsl-headline { font-size: clamp(28px, 3.8vw, 44px); }

/* The stage: outer card wrapping meta + frame + footer */
.vsl-stage {
  position: relative;
  background: linear-gradient(180deg, rgba(0,48,66,0.35) 0%, rgba(5,11,15,0.6) 100%);
  border: 1px solid var(--cyan-25);
  border-radius: 20px;
  padding: clamp(16px, 1.6vw, 22px);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,242,0,0.04) inset;
}
.vsl-stage::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255,242,0,0.22), transparent 30%, transparent 70%, rgba(82,150,170,0.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.vsl-stage-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px 14px;
}
.vsl-stage-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}
.vsl-stage-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.vsl-stage-duration {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist-60);
  font-weight: 600;
}

.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: linear-gradient(180deg, #0a1520 0%, #050B0F 100%);
  overflow: hidden;
}
.vsl-iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.vsl-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 50%, rgba(43,105,121,0.22), transparent 60%),
    linear-gradient(180deg, #0a1520 0%, #050B0F 100%);
}
.vsl-placeholder:focus-visible { outline: 2px solid var(--yellow); outline-offset: -2px; }

.vsl-play {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--deep);
  display: flex; align-items: center; justify-content: center;
  padding-left: 6px;
  box-shadow: 0 12px 40px rgba(255,242,0,0.32);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
  position: relative;
}
.vsl-play::before, .vsl-play::after {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--yellow-25);
  animation: ripple 2.6s ease-out infinite;
}
.vsl-play::after { border-color: var(--yellow-15); animation-delay: 1.3s; }
@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.55); opacity: 0; }
}
.vsl-placeholder:hover .vsl-play {
  transform: scale(1.06);
  box-shadow: 0 16px 56px rgba(255,242,0,0.5);
}

.vsl-poster-meta {
  position: absolute;
  bottom: 22px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mist-40);
  font-weight: 600;
}

.vsl-corners span {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid rgba(82,150,170,0.5);
}
.vsl-corners span:nth-child(1) { top: 12px; left: 12px;     border-right: 0; border-bottom: 0; }
.vsl-corners span:nth-child(2) { top: 12px; right: 12px;    border-left: 0;  border-bottom: 0; }
.vsl-corners span:nth-child(3) { bottom: 12px; left: 12px;  border-right: 0; border-top: 0; }
.vsl-corners span:nth-child(4) { bottom: 12px; right: 12px; border-left: 0;  border-top: 0; }

.vsl-stage-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 10px 6px;
  gap: 16px;
}
.vsl-stage-by {
  display: flex; align-items: center; gap: 12px;
}
.vsl-stage-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--cyan-25);
}
.vsl-stage-by span {
  display: flex; flex-direction: column; gap: 1px;
  line-height: 1.2;
}
.vsl-stage-by strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.vsl-stage-by em {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--mist-60);
  font-style: normal;
  font-weight: 500;
}
.vsl-stage-skip {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mist-60);
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.vsl-stage-skip:hover { color: var(--yellow); }
.vsl-stage-skip span { transition: transform var(--dur-base) var(--ease-out); display: inline-block; }
.vsl-stage-skip:hover span { transform: translateX(3px); }

@media (max-width: 540px) {
  .vsl-stage-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ==========================================================================
   Social proof bar (marquee)
   ========================================================================== */

.proof {
  background: var(--cog-faint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  overflow: hidden;
}
.proof-inner {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.proof-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  margin-right: 56px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mist);
  letter-spacing: 0.2px;
  flex-shrink: 0;
}
.marquee-item-muted { color: var(--mist-60); font-style: normal; }
.marquee-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255,242,0,0.5);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Section heads
   ========================================================================== */

.section-head {
  margin-bottom: clamp(50px, 6vw, 80px);
  max-width: 720px;
}
.section-headline {
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--white);
}
.section-headline-center {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.section-intro {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: var(--mist);
  max-width: 620px;
  margin: 0;
}

.line-strike {
  position: relative;
  display: inline-block;
}
.line-strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 4px;
  background: var(--yellow);
  transform-origin: left center;
  animation: strike-in 1s var(--ease-out) 0.4s both;
  border-radius: 2px;
}
@keyframes strike-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ==========================================================================
   Cards (generic)
   ========================================================================== */

.cards-grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  background: rgba(5, 11, 15, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 28px;
  transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-out), background var(--dur-base);
  overflow: hidden;
  isolation: isolate;
}
.card:hover { border-color: var(--cyan-40); }

/* Spotlight (cursor-tracking glow) — applied where appropriate */
.spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(380px circle at var(--mx, -100px) var(--my, -100px), rgba(82,150,170,0.18), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base);
  pointer-events: none;
  z-index: 0;
}
.spotlight:hover::before { opacity: 1; }
.spotlight > * { position: relative; z-index: 1; }

.card-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-25);
  color: var(--cyan);
  margin-bottom: 22px;
}
.card-title {
  font-family: var(--font-display);
  font-size: var(--h3);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mist);
  margin: 0;
}

/* ==========================================================================
   Method (steps)
   ========================================================================== */

.section-method .card {
  background: rgba(5, 11, 15, 0.45);
}
.step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.step-num {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; color: var(--cyan);
}
.step-line { flex: 1; height: 1px; background: linear-gradient(to right, var(--cyan-40), transparent); }

/* ==========================================================================
   Agitation
   ========================================================================== */

.section-agitation {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--deep) 0%, #050E14 50%, var(--deep) 100%);
  isolation: isolate;
}
.agi-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,242,0,0.06) 0%, transparent 55%),
    radial-gradient(circle at 12% 80%, rgba(82,150,170,0.10) 0%, transparent 50%),
    radial-gradient(circle at 88% 70%, rgba(82,150,170,0.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.agi-stage {
  position: relative;
  z-index: 2;
}

/* Floating background imagery */
.agi-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.agi-float {
  position: absolute;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,242,0,0.10);
  background: var(--cog);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.8);
  opacity: 0;
  filter: saturate(0.7) contrast(1.05) brightness(0.85);
  will-change: transform, opacity;
}
.agi-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.4);
}
.agi-float::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,15,0.25) 0%, rgba(5,11,15,0.55) 100%);
}
.agi-float-1 { top: 8%;  left: 4%;  width: 130px; height: 165px; transform: rotate(-6deg); animation: agi-float-a 9s ease-in-out infinite, agi-fade-in 1.6s 0.2s ease forwards; }
.agi-float-2 { top: 14%; right: 5%; width: 150px; height: 195px; transform: rotate(5deg); animation: agi-float-b 11s ease-in-out infinite, agi-fade-in 1.6s 0.4s ease forwards; }
.agi-float-3 { top: 46%; left: 2%;  width: 120px; height: 150px; transform: rotate(4deg); animation: agi-float-c 13s ease-in-out infinite, agi-fade-in 1.6s 0.6s ease forwards; }
.agi-float-4 { bottom: 12%; right: 3%; width: 140px; height: 180px; transform: rotate(-4deg); animation: agi-float-d 10s ease-in-out infinite, agi-fade-in 1.6s 0.8s ease forwards; }
.agi-float-5 { bottom: 6%;  left: 12%; width: 110px; height: 140px; transform: rotate(-3deg); animation: agi-float-a 14s ease-in-out infinite reverse, agi-fade-in 1.6s 1.0s ease forwards; }
.agi-float-6 { top: 38%; right: 14%; width: 100px; height: 130px; transform: rotate(7deg); animation: agi-float-b 12s ease-in-out infinite reverse, agi-fade-in 1.6s 1.2s ease forwards; }

@keyframes agi-fade-in {
  from { opacity: 0; }
  to   { opacity: 0.38; }
}
@keyframes agi-float-a {
  0%, 100% { transform: rotate(-6deg) translate(0, 0); }
  50%      { transform: rotate(-4deg) translate(6px, -10px); }
}
@keyframes agi-float-b {
  0%, 100% { transform: rotate(5deg) translate(0, 0); }
  50%      { transform: rotate(7deg) translate(-8px, 10px); }
}
@keyframes agi-float-c {
  0%, 100% { transform: rotate(4deg) translate(0, 0); }
  50%      { transform: rotate(2deg) translate(10px, 8px); }
}
@keyframes agi-float-d {
  0%, 100% { transform: rotate(-4deg) translate(0, 0); }
  50%      { transform: rotate(-2deg) translate(-6px, -12px); }
}

@media (max-width: 920px) {
  .agi-float-3, .agi-float-6 { display: none; }
  .agi-float-1, .agi-float-5 { width: 90px; height: 115px; }
  .agi-float-2, .agi-float-4 { width: 100px; height: 130px; }
}
@media (prefers-reduced-motion: reduce) {
  .agi-float { animation: none !important; opacity: 0.32 !important; }
}

/* Eyebrow above headline */
.agi-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 22px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  text-align: center;
}
.agi-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--yellow);
  opacity: 0.6;
  display: block;
}

.agi-headline {
  position: relative;
}
.agi-headline em {
  position: relative;
  display: inline-block;
}
.agi-headline em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--yellow), transparent);
  opacity: 0.55;
}

.pull-quote {
  position: relative;
  max-width: 760px;
  margin: 44px auto;
  padding: 32px 38px 36px 42px;
  border-left: 3px solid var(--yellow);
  background:
    linear-gradient(90deg, rgba(255,242,0,0.10), rgba(255,242,0,0)),
    linear-gradient(180deg, rgba(82,150,170,0.06) 0%, rgba(0,0,0,0) 100%);
  border-radius: 0 14px 14px 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  letter-spacing: -0.01em;
  box-shadow: 0 30px 60px -32px rgba(0,0,0,0.7);
}
.pull-quote-by {
  display: block;
  margin-top: 12px;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: var(--mist-60);
  letter-spacing: 0.01em;
}
.agi-prose {
  position: relative;
  text-align: center;
}
.agi-prose p {
  margin: 0 0 1.4em;
  font-size: clamp(15px, 1.4vw, 17px);
}
.agi-prose strong { color: var(--white); font-weight: 600; }
.pull-quote-mark {
  position: absolute;
  top: -16px; left: 24px;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 80px;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.4;
}
.prose {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
  color: var(--mist);
}
.prose p { margin: 0 0 1.2em; }

/* ==========================================================================
   Meet Sol (coach section)
   ========================================================================== */

.section-coach {
  background: var(--cog);
  position: relative;
  overflow: hidden;
}
.section-coach::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(82,150,170,0.18), transparent 50%),
    radial-gradient(circle at 88% 75%, rgba(255,242,0,0.05), transparent 50%);
  pointer-events: none;
}
.section-coach > .container { position: relative; }
.coach-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 920px) { .coach-grid { grid-template-columns: 1fr; } }

.coach-portrait {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cyan-25);
  background: var(--cog);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
}
.coach-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.95) contrast(1.04);
}

.coach-slider .coach-slider-track {
  position: absolute;
  inset: 0;
}
.coach-slider .coach-slider-track img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
  will-change: opacity, transform;
}
.coach-slider .coach-slider-track img.is-active {
  opacity: 1;
  transform: scale(1);
}
.coach-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,15,0) 55%, rgba(5,11,15,0.55) 100%);
  pointer-events: none;
}

.coach-slider-dots {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.coach-slider-dot {
  width: 22px; height: 3px;
  border-radius: 2px;
  border: 0;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.coach-slider-dot.is-active {
  background: var(--yellow);
  width: 32px;
}
.coach-slider-dot:hover { background: rgba(255,255,255,0.55); }
.coach-slider-dot.is-active:hover { background: var(--yellow); }
.coach-portrait-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(5,11,15,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--yellow-25);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.coach-body .pill { margin-bottom: 22px; }
.prose-left { max-width: 100%; margin: 26px 0 32px; }

.coach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 520px;
}
@media (max-width: 480px) {
  .coach-stats { grid-template-columns: 1fr; gap: 12px; }
}
.coach-stat { display: flex; flex-direction: column; gap: 4px; }
.coach-stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}
.coach-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist-60);
  font-weight: 600;
}

/* ==========================================================================
   Phones marquee (testimonials gallery)
   ========================================================================== */

.phones {
  position: relative;
  width: 100%;
  margin-top: clamp(30px, 4vw, 50px);
  overflow: hidden;
  padding: 24px 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.phones-track {
  display: inline-flex;
  gap: 22px;
  white-space: nowrap;
  animation: wall-scroll 86s linear infinite;
  will-change: transform;
}
.phones:hover .phones-track { animation-play-state: paused; }
.phone-card {
  margin: 0;
  flex-shrink: 0;
  width: clamp(240px, 22vw, 300px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cog-soft);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base), box-shadow var(--dur-base);
}
.phone-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.phone-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow-25);
  box-shadow: 0 30px 70px -16px rgba(255,242,0,0.16);
}

/* ==========================================================================
   Results cards
   ========================================================================== */

.card-result {
  text-align: center;
  background: var(--cog-soft);
  padding: 34px 28px;
}
.result-head { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 24px; }
.result-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
}
.result-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist-40);
}
.result-stats { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; margin-bottom: 24px; }
.stat { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.stat-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mist-60); font-weight: 600;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; color: var(--yellow);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-from { color: var(--mist-40); font-weight: 600; }
.stat-arrow { color: var(--cyan); font-weight: 600; }
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}
.result-quote {
  font-style: normal;
  font-size: 14px;
  line-height: 1.65;
  color: var(--mist);
  margin: 0;
  font-family: var(--font-body);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ==========================================================================
   Transformation wall (marquee of before/after tiles)
   ========================================================================== */

.section-wall {
  background: var(--deep);
  padding: clamp(80px, 11vw, 140px) 0 clamp(80px, 11vw, 130px);
  position: relative;
  overflow: hidden;
}
.section-wall::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(43,105,121,0.18), transparent 60%);
  pointer-events: none;
}
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-intro-center { margin-left: auto; margin-right: auto; }

.wall {
  position: relative;
  width: 100%;
  margin-top: clamp(30px, 4vw, 50px);
  overflow: hidden;
  padding: 22px 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.wall-track {
  display: inline-flex;
  align-items: stretch;
  white-space: nowrap;
  animation: wall-scroll 60s linear infinite;
  will-change: transform;
}
.wall:hover .wall-track { animation-play-state: paused; }
.wall-tile {
  margin: 0 18px 0 0;
  width: clamp(260px, 26vw, 340px);
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cog-soft);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base), box-shadow var(--dur-base);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.wall-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.wall-tile:hover {
  transform: translateY(-6px);
  border-color: var(--yellow-25);
  box-shadow: 0 28px 70px -16px rgba(255,242,0,0.18);
}
@keyframes wall-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Offer · "Wat je krijgt" protocol grid (no prices, funnel-aligned)
   ========================================================================== */

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 60px);
}
@media (max-width: 980px) { .protocol-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .protocol-grid { grid-template-columns: 1fr; } }

.protocol-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8, 22, 30, 0.85) 0%, rgba(5, 11, 15, 0.7) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 38px) clamp(24px, 2.6vw, 32px) clamp(26px, 2.8vw, 32px);
  transition:
    border-color var(--dur-base),
    transform var(--dur-base) var(--ease-out),
    background var(--dur-base),
    box-shadow var(--dur-base);
  display: flex;
  flex-direction: column;
  gap: 14px;
  isolation: isolate;
  overflow: hidden;
}
.protocol-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(82,150,170,0.10) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-base);
  z-index: 0;
}
.protocol-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--cyan-40), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity var(--dur-base), transform var(--dur-slow) var(--ease-out);
  z-index: 1;
}
.protocol-card:hover {
  border-color: var(--cyan-40);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -28px rgba(82,150,170,0.25);
}
.protocol-card:hover::before { opacity: 1; }
.protocol-card:hover::after { opacity: 1; transform: scaleX(1); }
.protocol-card > * { position: relative; z-index: 2; }

.protocol-card-feature {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255,242,0,0.12) 0%, transparent 55%),
    linear-gradient(160deg, rgba(255,242,0,0.07) 0%, rgba(5,11,15,0.7) 60%);
  border-color: var(--yellow-25);
  grid-column: span 1;
}
.protocol-card-feature::before {
  background: radial-gradient(circle at 100% 0%, rgba(255,242,0,0.18) 0%, transparent 55%);
}
.protocol-card-feature::after {
  background: linear-gradient(to right, transparent, var(--yellow), transparent);
}
.protocol-card-feature:hover {
  border-color: var(--yellow);
  box-shadow: 0 30px 60px -28px rgba(255,242,0,0.28);
}

.protocol-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 6px;
}
.protocol-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  background: rgba(82,150,170,0.10);
  border: 1px solid var(--cyan-25);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base), color var(--dur-base);
}
.protocol-card:hover .protocol-icon {
  transform: translateY(-2px) rotate(-3deg);
  background: rgba(82,150,170,0.18);
}
.protocol-card-feature .protocol-icon {
  color: var(--yellow);
  background: rgba(255,242,0,0.10);
  border-color: var(--yellow-25);
}
.protocol-card-feature:hover .protocol-icon {
  background: rgba(255,242,0,0.18);
}

.protocol-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--mist-60);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.protocol-num em {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  color: var(--yellow);
  opacity: 0.85;
  margin-right: 1px;
}
.protocol-card-feature .protocol-num { color: var(--white); }

.protocol-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.protocol-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mist);
  margin: 0;
  flex: 1;
}
.protocol-tag {
  align-self: flex-start;
  margin-top: 6px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(82,150,170,0.08);
  border: 1px solid var(--cyan-25);
  border-radius: 999px;
}
.protocol-tag-feature {
  color: var(--yellow);
  background: rgba(255,242,0,0.08);
  border-color: var(--yellow-25);
}

.protocol-cta {
  margin-top: clamp(40px, 5vw, 60px);
  padding: clamp(28px, 3.5vw, 42px);
  background: linear-gradient(95deg, var(--cog) 0%, #001e2a 100%);
  border: 1px solid var(--cyan-25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}
.protocol-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 88% 100%, rgba(255,242,0,0.08), transparent 50%);
  pointer-events: none;
}
.protocol-cta-line {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.45;
  color: var(--mist);
  max-width: 620px;
  position: relative;
}
@media (max-width: 720px) {
  .protocol-cta { flex-direction: column; align-items: flex-start; }
}

/* Coach pull-quote */
.coach-quote {
  position: relative;
  margin: 28px 0 32px;
  padding: 18px 22px 18px 28px;
  border-left: 3px solid var(--yellow);
  background: linear-gradient(90deg, rgba(255,242,0,0.05), rgba(255,242,0,0));
  border-radius: 0 10px 10px 0;
}
.coach-quote p {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
  color: var(--white);
}
.coach-quote cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cyan);
}

/* ==========================================================================
   Offer (pricing) — legacy, no longer rendered but kept for safety
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 22px;
  align-items: stretch;
  padding-top: 16px;
}
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 26px; padding-top: 0; }
}

.card-price {
  display: flex;
  flex-direction: column;
  padding: 36px 30px 32px;
  background: rgba(5, 11, 15, 0.5);
  border-radius: 14px;
  overflow: visible;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base), box-shadow var(--dur-base);
}
.card-price:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-40);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.card-price-featured {
  position: relative;
  border: 2px solid var(--yellow);
  background:
    linear-gradient(180deg, rgba(255,242,0,0.04) 0%, rgba(5,11,15,0.75) 30%);
  box-shadow:
    0 24px 80px -20px rgba(255,242,0,0.18),
    0 0 0 1px rgba(255,242,0,0.06) inset;
  transform: translateY(-14px);
  z-index: 2;
}
.card-price-featured:hover {
  transform: translateY(-18px);
  box-shadow:
    0 36px 90px -20px rgba(255,242,0,0.32),
    0 0 0 1px rgba(255,242,0,0.06) inset;
}
@media (max-width: 1000px) {
  .card-price-featured { transform: none; margin-top: 28px; }
  .card-price-featured:hover { transform: translateY(-4px); }
}

.pricing-grid {
  padding-top: 24px;
}

.price-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(255,242,0,0.35), 0 0 0 4px var(--cog);
  z-index: 3;
}

.price-tier {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 14px;
}
.price-tier-featured { color: var(--yellow); }

.price-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.price-duration {
  font-size: 13px;
  color: var(--mist-60);
  margin: 0 0 26px;
}
.price-amount {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-display);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.price-from {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--mist-60);
  margin-right: 6px;
  letter-spacing: 0.5px;
}
.price-currency { font-size: 22px; font-weight: 600; opacity: 0.9; }
.price-value    { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; }
.price-sub {
  font-size: 12px;
  color: var(--mist-60);
  margin: 0 0 28px;
  letter-spacing: 0.2px;
}

.price-list {
  margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 11px;
  flex: 1;
}
.price-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px;
  color: var(--mist);
  line-height: 1.55;
}
.check {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* ==========================================================================
   Who is it for
   ========================================================================== */

/* ==========================================================================
   Fit section v2 (premium two-card layout w/ check-draw + strike-through)
   ========================================================================== */

.section-fit { position: relative; overflow: hidden; }
.fit-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(255,242,0,0.06), transparent 40%),
    radial-gradient(ellipse at 82% 70%, rgba(82,150,170,0.12), transparent 45%);
  pointer-events: none;
}
.section-fit > .container { position: relative; }

.fit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 28px);
  margin-top: clamp(40px, 5vw, 60px);
  perspective: 1200px;
}
@media (max-width: 880px) {
  .fit-cards { grid-template-columns: 1fr; gap: 18px; }
}

.fit-card {
  position: relative;
  padding: clamp(28px, 3vw, 38px) clamp(26px, 3vw, 36px);
  border-radius: 16px;
  display: flex; flex-direction: column;
  gap: 22px;
  transform-style: preserve-3d;
  transition: transform var(--dur-slow) var(--ease-out), border-color var(--dur-base), box-shadow var(--dur-base);
  will-change: transform;
  overflow: hidden;
  isolation: isolate;
}
.fit-card::before {
  /* ambient glow */
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}

.fit-card-yes {
  background:
    linear-gradient(160deg, rgba(255,242,0,0.05) 0%, rgba(5,11,15,0.55) 55%);
  border: 1px solid var(--yellow-25);
  box-shadow: 0 28px 80px -30px rgba(255,242,0,0.18);
}
.fit-card-yes::before {
  background: radial-gradient(circle at 0% 0%, rgba(255,242,0,0.12), transparent 45%);
}

.fit-card-no {
  background: rgba(5,11,15,0.4);
  border: 1px solid var(--border);
  box-shadow: 0 28px 80px -40px rgba(0,0,0,0.6);
  opacity: 0.78;
}
.fit-card-no:hover { opacity: 1; }

.fit-card-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.fit-card-tag {
  display: inline-flex; align-items: center;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.fit-card-tag-yes {
  background: var(--yellow);
  color: var(--deep);
  box-shadow: 0 0 24px rgba(255,242,0,0.35);
}
.fit-card-tag-no {
  background: rgba(211,227,222,0.08);
  color: var(--mist-60);
  border: 1px solid var(--border);
}
.fit-card-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.015em;
}
.fit-card-no .fit-card-title { color: var(--mist); font-weight: 700; }

.fit-items { display: flex; flex-direction: column; gap: 14px; }
.fit-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  position: relative;
  /* enter animation: slide in from inside */
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.fit-card-no .fit-item { transform: translateX(12px); }
.fit-card.is-visible .fit-item {
  opacity: 1;
  transform: translateX(0);
}
.fit-card.is-visible .fit-item:nth-child(1) { transition-delay: 0.10s; }
.fit-card.is-visible .fit-item:nth-child(2) { transition-delay: 0.18s; }
.fit-card.is-visible .fit-item:nth-child(3) { transition-delay: 0.26s; }
.fit-card.is-visible .fit-item:nth-child(4) { transition-delay: 0.34s; }
.fit-card.is-visible .fit-item:nth-child(5) { transition-delay: 0.42s; }
.fit-card.is-visible .fit-item:nth-child(6) { transition-delay: 0.50s; }

.fit-item-yes { color: var(--mist); }
.fit-item-no  { color: var(--mist-60); position: relative; }

/* YES: animated check icon */
.fit-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--deep);
  box-shadow: 0 0 0 4px rgba(255,242,0,0.12);
  margin-top: 1px;
}
.fit-check svg path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.7s var(--ease-out);
}
.fit-card-yes.is-visible .fit-item:nth-child(1) .fit-check svg path { transition-delay: 0.30s; stroke-dashoffset: 0; }
.fit-card-yes.is-visible .fit-item:nth-child(2) .fit-check svg path { transition-delay: 0.40s; stroke-dashoffset: 0; }
.fit-card-yes.is-visible .fit-item:nth-child(3) .fit-check svg path { transition-delay: 0.50s; stroke-dashoffset: 0; }
.fit-card-yes.is-visible .fit-item:nth-child(4) .fit-check svg path { transition-delay: 0.60s; stroke-dashoffset: 0; }
.fit-card-yes.is-visible .fit-item:nth-child(5) .fit-check svg path { transition-delay: 0.70s; stroke-dashoffset: 0; }
.fit-card-yes.is-visible .fit-item:nth-child(6) .fit-check svg path { transition-delay: 0.80s; stroke-dashoffset: 0; }

/* NO: cross + strike-through animation */
.fit-cross {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(211,227,222,0.06);
  color: var(--mist-40);
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--border);
  margin-top: 1px;
}
.fit-item-no > span:last-child {
  position: relative;
  display: inline-block;
}
.fit-item-no > span:last-child::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 52%;
  height: 1.5px;
  background: var(--mist-40);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.7s var(--ease-out);
}
.fit-card-no.is-visible .fit-item:nth-child(1) > span:last-child::after { transition-delay: 0.30s; transform: scaleX(1); }
.fit-card-no.is-visible .fit-item:nth-child(2) > span:last-child::after { transition-delay: 0.40s; transform: scaleX(1); }
.fit-card-no.is-visible .fit-item:nth-child(3) > span:last-child::after { transition-delay: 0.50s; transform: scaleX(1); }
.fit-card-no.is-visible .fit-item:nth-child(4) > span:last-child::after { transition-delay: 0.60s; transform: scaleX(1); }
.fit-card-no.is-visible .fit-item:nth-child(5) > span:last-child::after { transition-delay: 0.70s; transform: scaleX(1); }
.fit-card-no.is-visible .fit-item:nth-child(6) > span:last-child::after { transition-delay: 0.80s; transform: scaleX(1); }

/* Card footers */
.fit-card-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.fit-card-score {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.3px;
}
.fit-card-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mist-60);
}
.fit-card-foot-no .fit-card-score { color: var(--mist-60); }

/* Bottom qualification banner */
.fit-banner {
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(24px, 3vw, 34px) clamp(28px, 3.5vw, 44px);
  background: linear-gradient(95deg, var(--cog) 0%, #001e2a 100%);
  border: 1px solid var(--cyan-25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.fit-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 100%, rgba(255,242,0,0.08), transparent 50%);
  pointer-events: none;
}
.fit-banner-text {
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.fit-banner-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--yellow);
}
.fit-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.015em;
}
@media (max-width: 720px) {
  .fit-banner { flex-direction: column; align-items: flex-start; gap: 22px; text-align: left; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.card-testimonial {
  background: rgba(5, 11, 15, 0.55);
  padding: 28px 28px 26px;
}
.stars {
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 4px;
  margin-bottom: 14px;
  line-height: 1;
}
.testimonial-quote {
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
  margin: 0 0 22px;
  padding: 0;
}
.testimonial-foot {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 11px; color: var(--mist-60); letter-spacing: 0.3px; }

/* ==========================================================================
   Video testimonials grid
   ========================================================================== */

.section-videos {
  background: var(--deep);
  position: relative;
}
.section-videos::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(43,105,121,0.16), transparent 60%);
  pointer-events: none;
}
.section-videos .container { position: relative; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: clamp(30px, 4vw, 50px);
}
@media (max-width: 1100px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .video-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; } }

.video-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cog-soft);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base), box-shadow var(--dur-base);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow-25);
  box-shadow: 0 24px 60px -16px rgba(255,242,0,0.14);
}
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}
.video-cap {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
}
.video-cap > span:first-child {
  font-size: 13px; font-weight: 700; color: var(--white);
}
.video-cap-sub {
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--mist-60);
  font-weight: 600;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.section-faq { background: var(--deep); }

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq-aside { position: sticky; top: 100px; }
.faq-aside .pill { margin-bottom: 22px; }
.faq-aside-intro {
  margin-top: 22px;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}
.faq-aside-cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 420px;
}
.faq-aside-cta-label {
  color: var(--mist-60);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
@media (max-width: 920px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
}

.faq {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(5, 11, 15, 0.45);
  transition: border-color var(--dur-base);
  overflow: hidden;
}
.faq-item[open], .faq-item:hover { border-color: var(--cyan-40); }

.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.005em;
  transition: background var(--dur-fast);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: rgba(82, 150, 170, 0.05); }

.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon span {
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1.5px;
  background: var(--cyan);
  transform: translate(-50%, -50%);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-icon span:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon span:nth-child(2) { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
  padding: 4px 22px 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
  max-width: 720px;
  animation: faq-in 0.36s var(--ease-out);
}
.faq-a p { margin: 0; }

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.section-final {
  position: relative;
  background: linear-gradient(160deg, var(--teal) 0%, var(--cog) 100%);
  padding: clamp(90px, 12vw, 140px) 0;
  text-align: center;
  overflow: hidden;
}
.final-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,242,0,0.08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(255,255,255,0.06), transparent 50%);
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; }
.final-headline {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 20px auto 22px;
  max-width: min(860px, 100%);
}
.final-body {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mist);
}
.final-scarcity {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: rgba(255, 242, 0, 0.8);
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  position: relative;
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: clamp(80px, 11vw, 140px) clamp(20px, 5vw, 40px) 40px;
  overflow: hidden;
}
.footer-wordmark {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  max-width: 1400px;
  height: auto;
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(211, 227, 222, 0.55);
  transition: color var(--dur-fast);
}
.footer-brand:hover { color: var(--mist); }
.footer-brand img { opacity: 0.8; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px;
  color: var(--mist-60);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--mist); }

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */

@media (max-width: 720px) {
  .hero { padding: 110px 0 80px; min-height: 92vh; }
  .hero-grid { background-size: 50px 50px; }
  .pull-quote { padding: 22px 22px 22px 26px; }
  .pull-quote-mark { font-size: 56px; left: 16px; top: -10px; }
  .vsl-corners span { width: 12px; height: 12px; }
  .vsl-play { width: 68px; height: 68px; }
  .result-stats { grid-template-columns: 1fr; gap: 18px; }
  .stat-divider { display: none; }
  .price-amount { gap: 2px; }
  .price-value { font-size: 36px; }
  .footer-wordmark { font-size: 22vw; bottom: -4%; }
}

/* ==========================================================================
   Site-wide icon animations
   Subtle entrance + continuous breath for static SVG icons inside cards.
   Method-icons already have their own bespoke animations and are excluded.
   Respects prefers-reduced-motion.
   ========================================================================== */

/* 1. Problem-section icons (.card-icon inside .card-problem)
      Stroke draw-in on appear + slow continuous breath. */
.card-problem .card-icon svg {
  overflow: visible;
}
.card-problem .card-icon svg path,
.card-problem .card-icon svg line,
.card-problem .card-icon svg polyline,
.card-problem .card-icon svg rect,
.card-problem .card-icon svg circle {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card-problem.is-visible .card-icon svg path,
.card-problem.is-visible .card-icon svg line,
.card-problem.is-visible .card-icon svg polyline,
.card-problem.is-visible .card-icon svg rect,
.card-problem.is-visible .card-icon svg circle {
  stroke-dashoffset: 0;
}
.card-problem .card-icon {
  animation: icon-breath 4.6s ease-in-out infinite;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.card-problem:hover .card-icon {
  transform: translateY(-2px) rotate(-2deg);
  background: rgba(82, 150, 170, 0.18);
  border-color: rgba(82, 150, 170, 0.45);
}
@keyframes icon-breath {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(82, 150, 170, 0.0); }
  50%      { transform: scale(1.035); box-shadow: 0 0 0 6px rgba(82, 150, 170, 0.08); }
}

/* Stagger the breath so all 6 cards don't pulse together. */
.card-problem:nth-child(1) .card-icon { animation-delay: 0s;    }
.card-problem:nth-child(2) .card-icon { animation-delay: 0.55s; }
.card-problem:nth-child(3) .card-icon { animation-delay: 1.10s; }
.card-problem:nth-child(4) .card-icon { animation-delay: 1.65s; }
.card-problem:nth-child(5) .card-icon { animation-delay: 2.20s; }
.card-problem:nth-child(6) .card-icon { animation-delay: 2.75s; }

/* 2. Protocol-card icons (.protocol-icon inside .protocol-card)
      Stroke draw-in on appear + slow yellow/cyan breath. */
.protocol-icon svg {
  overflow: visible;
}
.protocol-card .protocol-icon svg path,
.protocol-card .protocol-icon svg line,
.protocol-card .protocol-icon svg polyline,
.protocol-card .protocol-icon svg rect,
.protocol-card .protocol-icon svg circle {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.protocol-card.is-visible .protocol-icon svg path,
.protocol-card.is-visible .protocol-icon svg line,
.protocol-card.is-visible .protocol-icon svg polyline,
.protocol-card.is-visible .protocol-icon svg rect,
.protocol-card.is-visible .protocol-icon svg circle {
  stroke-dashoffset: 0;
}
.protocol-card .protocol-icon {
  animation: icon-breath-cyan 5.2s ease-in-out infinite;
}
.protocol-card-feature .protocol-icon {
  animation: icon-breath-yellow 4.8s ease-in-out infinite;
}
@keyframes icon-breath-cyan {
  0%, 100% { transform: scale(1)    rotate(0deg);   box-shadow: 0 0 0 0 rgba(82, 150, 170, 0.0); }
  50%      { transform: scale(1.04) rotate(-1.5deg); box-shadow: 0 0 0 8px rgba(82, 150, 170, 0.06); }
}
@keyframes icon-breath-yellow {
  0%, 100% { transform: scale(1)    rotate(0deg);   box-shadow: 0 0 0 0 rgba(255, 242, 0, 0.0); }
  50%      { transform: scale(1.05) rotate(-2deg);  box-shadow: 0 0 0 10px rgba(255, 242, 0, 0.08); }
}
.protocol-card:nth-child(1) .protocol-icon { animation-delay: 0s;    }
.protocol-card:nth-child(2) .protocol-icon { animation-delay: 0.45s; }
.protocol-card:nth-child(3) .protocol-icon { animation-delay: 0.90s; }
.protocol-card:nth-child(4) .protocol-icon { animation-delay: 1.35s; }
.protocol-card:nth-child(5) .protocol-icon { animation-delay: 1.80s; }
.protocol-card:nth-child(6) .protocol-icon { animation-delay: 2.25s; }

/* 3. Skip-list cross icons: subtle scale-pop on appear */
.fit-cross {
  opacity: 0;
  transform: scale(0.6) rotate(-45deg);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 1.6, 0.6, 1);
}
.fit-card-no.is-visible .fit-item:nth-child(1) .fit-cross { transition-delay: 0.20s; opacity: 1; transform: scale(1) rotate(0); }
.fit-card-no.is-visible .fit-item:nth-child(2) .fit-cross { transition-delay: 0.30s; opacity: 1; transform: scale(1) rotate(0); }
.fit-card-no.is-visible .fit-item:nth-child(3) .fit-cross { transition-delay: 0.40s; opacity: 1; transform: scale(1) rotate(0); }
.fit-card-no.is-visible .fit-item:nth-child(4) .fit-cross { transition-delay: 0.50s; opacity: 1; transform: scale(1) rotate(0); }
.fit-card-no.is-visible .fit-item:nth-child(5) .fit-cross { transition-delay: 0.60s; opacity: 1; transform: scale(1) rotate(0); }
.fit-card-no.is-visible .fit-item:nth-child(6) .fit-cross { transition-delay: 0.70s; opacity: 1; transform: scale(1) rotate(0); }

/* 4. Match check container subtle scale-pop too (in addition to existing path draw) */
.fit-check {
  transform: scale(0.7);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 1.6, 0.6, 1);
}
.fit-card-yes.is-visible .fit-item:nth-child(1) .fit-check { transition-delay: 0.15s; opacity: 1; transform: scale(1); }
.fit-card-yes.is-visible .fit-item:nth-child(2) .fit-check { transition-delay: 0.25s; opacity: 1; transform: scale(1); }
.fit-card-yes.is-visible .fit-item:nth-child(3) .fit-check { transition-delay: 0.35s; opacity: 1; transform: scale(1); }
.fit-card-yes.is-visible .fit-item:nth-child(4) .fit-check { transition-delay: 0.45s; opacity: 1; transform: scale(1); }
.fit-card-yes.is-visible .fit-item:nth-child(5) .fit-check { transition-delay: 0.55s; opacity: 1; transform: scale(1); }
.fit-card-yes.is-visible .fit-item:nth-child(6) .fit-check { transition-delay: 0.65s; opacity: 1; transform: scale(1); }

/* 5. Nav arrow inside primary CTA gently nudges sideways */
.btn-primary .btn-arrow {
  display: inline-block;
  animation: arrow-nudge 2.6s ease-in-out infinite;
}
@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(3px); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .card-problem .card-icon,
  .protocol-card .protocol-icon,
  .protocol-card-feature .protocol-icon,
  .btn-primary .btn-arrow {
    animation: none;
  }
  .card-problem .card-icon svg path,
  .card-problem .card-icon svg line,
  .card-problem .card-icon svg polyline,
  .card-problem .card-icon svg rect,
  .card-problem .card-icon svg circle,
  .protocol-card .protocol-icon svg path,
  .protocol-card .protocol-icon svg line,
  .protocol-card .protocol-icon svg polyline,
  .protocol-card .protocol-icon svg rect,
  .protocol-card .protocol-icon svg circle {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
  .fit-cross,
  .fit-check {
    opacity: 1;
    transform: none;
  }
}
