/* THE VIRAL REALTOR — Aaron Oon course funnel */

/* Pixeloid — pixel font used for view-count badges to feel like an OG MTV / TikTok counter */
@font-face {
  font-family: 'Pixeloid Mono';
  src: url('assets/fonts/PixeloidMono-nAOpP.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pixeloid Sans';
  src: url('assets/fonts/PixeloidSans-lxa3y.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pixeloid Sans';
  src: url('assets/fonts/PixeloidSansBold-1jpBg.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050608;
  --bg-elev: #0b0d12;
  --bg-elev-2: #11141b;
  --ink: #f4f5f7;
  --ink-dim: #9aa0aa;
  --ink-mute: #5a5f6a;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --accent: #5dd4ff;        /* electric blue */
  --accent-2: #7df0ff;
  --accent-glow: rgba(93, 212, 255, 0.5);
  --warn: #ff5c8a;
  --good: #8effbf;
  --max: 1240px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 28px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

html {
  scroll-padding-top: 84px;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(93, 212, 255, 0.08), transparent 60%),
    radial-gradient(900px 700px at 0% 30%, rgba(93, 212, 255, 0.04), transparent 60%),
    var(--bg);
}

::selection { background: var(--accent); color: #001018; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* Display type */
.display {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

/* === Top nav === */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: min(960px, calc(100% - 24px));
  padding: 9px 10px 9px 22px;
  border-radius: 999px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(11, 13, 18, 0.6);
  border: 1px solid var(--line-2);
  box-shadow:
    0 14px 40px -14px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-logo .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--ink-dim);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 13px;
  padding: 9px 16px;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--accent);
  color: #001620;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 0 0 1px rgba(93,212,255,0.35), 0 0 24px -4px var(--accent-glow);
}
.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(93,212,255,0.5), 0 8px 28px -4px var(--accent-glow);
}

/* === Containers === */
.section {
  position: relative;
  padding: 44px 32px;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.eyebrow .pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* === Buttons === */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #001018;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 10px 30px -8px var(--accent-glow),
    0 0 60px -10px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.2) inset,
    0 16px 40px -8px var(--accent-glow),
    0 0 90px -10px var(--accent-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}
.btn .arrow {
  display: inline-flex;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 110px 20px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  opacity: 0.4;
}
/* ============================================================
   HERO BACKGROUND — "grid flow": soft cyan light glides across
   the hero grid (replaces the four floating phone-reels).
   ============================================================ */
.hero-sweep {
  position: absolute;
  width: 760px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,212,255,0.16), transparent 64%);
  filter: blur(34px);
  pointer-events: none;
  z-index: 0;
  animation: heroSweep 15s ease-in-out infinite;
}
.hero-sweep-2 {
  background: radial-gradient(circle, rgba(125,240,255,0.12), transparent 64%);
  animation: heroSweep2 19s ease-in-out infinite;
}
@keyframes heroSweep {
  0%,100% { transform: translate(-25%, 30%); }
  50%     { transform: translate(75%, -5%); }
}
@keyframes heroSweep2 {
  0%,100% { transform: translate(90%, 60%); }
  50%     { transform: translate(5%, 10%); }
}

/* ============================================================
   HERO VSL — branded video card, plays the YouTube embed inline
   on click (iframe injected by JS so it costs nothing on load).
   ============================================================ */
.hero-vsl {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  margin: 4px auto 36px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-elev);
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.04) inset, 0 0 120px -30px var(--accent-glow);
  opacity: 0;
  animation: fade-up .8s ease .7s forwards;
}
.hero-vsl-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
}
.hero-vsl-veil {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,0.10), rgba(0,0,0,0.42) 80%);
  pointer-events: none;
}
.hero-vsl-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(11,13,18,0.35);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color .3s ease, transform .3s ease;
}
.hero-vsl-play::before,
.hero-vsl-play::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  animation: heroPulse 2.6s ease-out infinite;
}
.hero-vsl-play::after { animation-delay: 1.3s; }
@keyframes heroPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.hero-vsl:hover .hero-vsl-play {
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}
.hero-vsl iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Respect reduced-motion: stop the ambient sweep + pulse rings */
@media (prefers-reduced-motion: reduce) {
  .hero-sweep,
  .hero-vsl-play::before,
  .hero-vsl-play::after { animation: none; }
}

@media (max-width: 760px) {
  .curriculum { grid-template-columns: 1fr; }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}
.hero-eyebrow {
  margin-bottom: 28px;
}
.hero-headline {
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0 auto 16px;
  opacity: 0;
  animation: fade-up .8s ease .15s forwards;
}
/* Authoritative title sizing — high specificity (.hero-content .hero-headline)
   beats the legacy mobile .hero-headline rules. Scales with the viewport so
   the two lines (the <br> forces the break) fill the width edge-to-edge. */
.hero-content .hero-headline {
  font-size: clamp(20px, 8vw, 100px);
  line-height: 1.04;
  max-width: none;
}
/* the two title lines — each a non-wrapping block sized to its own text
   (width:max-content) so the headline always renders as exactly two lines
   and the box hugs the text. The "without…" tail sits on its own line below. */
.hero-headline .l1,
.hero-headline .l2 {
  display: block;
  width: max-content;
  margin-inline: auto;
  white-space: nowrap;
}
/* handwritten cyan accent — "go viral" */
.hero-headline .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.5em;
  line-height: 0.7;
  letter-spacing: 0;
  margin: 0 0.1em;
  text-shadow: 0 0 36px rgba(93,212,255,0.35);
  display: inline-block;
  transform: rotate(-2deg);
}
/* gradient accent — "6–7 figure deals" */
.hero-headline .grad {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* italic supporting line — sits on its own line below the 2-line title.
   Must read LARGER + heavier than the body subhead beneath it. */
.hero-headline .tail {
  display: block;
  margin-top: 0.4em;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink-dim);
}
/* Mobile/tablet: ease the fill so the lines keep comfortable side margins
   (8vw is right for desktop but too tight on a phone). */
@media (max-width: 760px) {
  .hero-content .hero-headline { font-size: clamp(20px, 7vw, 44px); }
  /* smaller play button on phones */
  .hero-vsl-play { width: 62px; height: 62px; }
  .hero-vsl-play svg { width: 24px; height: 24px; }
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--ink-dim);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fade-up .8s ease .65s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .8s ease .8s forwards;
}

/* === Marquee / stats === */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.marquee-item .label {
  color: var(--ink-mute);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  /* Use the font's own caps-height as the box so center-alignment matches the */
  /* visual midline of the (lowercase) main text. */
  line-height: 0.78;
}
.marquee-item .star {
  color: var(--accent);
  font-size: 22px;
}

/* === Section heading === */
.sec-head {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.sec-title {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 16px 0 0;
}
.sec-title .accent {
  color: var(--accent);
}
.sec-title .strike {
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--warn);
  text-decoration-thickness: 5px;
  text-underline-offset: 0;
}

/* Kill list — compact ledger of dying tactics */
.kill-intro {
  margin: 16px 0 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.kill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 6px;
  border-left: 1px solid var(--line-2);
  padding-left: 22px;
}
.kill-list li {
  position: relative;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--warn);
  text-decoration-thickness: 3px;
  text-underline-offset: 0;
  width: max-content;
  max-width: 100%;
}
.kill-list li::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--line-2);
}
.sec-title.kill-payoff {
  margin-top: 6px;
}
.sec-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 460px;
  justify-self: end;
}

/* === Press / Featured On === */
.press {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 28px 32px;
}
.press-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.press-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  flex-shrink: 0;
}
.press-card {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 0;
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: rgba(255,255,255,0.02);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.press-card:hover {
  border-color: rgba(93,212,255,0.35);
  background: rgba(93,212,255,0.04);
  transform: translateY(-1px);
}

.press-logo-img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.press-card:hover .press-logo-img { opacity: 1; }
@media (max-width: 760px) {
  .press-logo-img { height: 28px; }
}

.press-quote {
  flex: 1;
  font-size: 15px;
  font-style: italic;
  color: var(--ink-dim);
  line-height: 1.5;
  min-width: 200px;
}
.press-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .press-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }
  .press-quote { font-size: 14px; }
}
/* Comparison wrapper: 3 "everyone else" cards on left, 1 "winners" card on right */

@media (max-width: 980px) {

  
}
@media (max-width: 640px) {
  
}
.why-card {
  position: relative;
  padding: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--bg-elev-2);
}
.why-card .alt-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.why-card .alt-name {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 12px 0 6px;
  color: var(--ink-dim);
  text-decoration: line-through;
  text-decoration-color: var(--warn);
  text-decoration-thickness: 2px;
}
.why-card .alt-cost {
  color: var(--warn);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.why-card.highlight .alt-name {
  text-decoration: none;
  color: var(--ink);
}
.why-card.highlight .alt-cost {
  color: var(--good);
}
.why-card.highlight {
  background: linear-gradient(160deg, rgba(93, 212, 255, 0.12), rgba(93, 212, 255, 0.02));
  border-color: rgba(93, 212, 255, 0.3);
}
.why-card .lil-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
}
.why-card.highlight .lil-icon {
  background: rgba(93, 212, 255, 0.15);
  border-color: rgba(93, 212, 255, 0.4);
  color: var(--accent);
}

/* === Why ledger (typography-led comparison, no cards) === */
.why-ledger {
  margin-top: 8px;
  max-width: 880px;
}
.why-ledger-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.why-ledger-head-win {
  color: var(--accent);
}
.why-ledger-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.why-ledger-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.why-ledger-row:last-child { border-bottom: 1px solid var(--line); }
.wlr-icon {
  font-size: 22px;
  line-height: 1;
  flex: 0 0 28px;
  text-align: center;
  filter: grayscale(0.4) opacity(0.85);
  transform: translateY(2px);
}
.wlr-name {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink-dim);
  text-decoration: line-through;
  text-decoration-color: var(--warn);
  text-decoration-thickness: 2px;
  flex: 0 0 auto;
}
.wlr-dots {
  flex: 1 1 auto;
  min-width: 24px;
}
.wlr-cost {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--warn);
  white-space: nowrap;
  flex: 0 0 auto;
}
.why-ledger-vs {
  text-align: center;
  margin: 28px 0 20px;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--ink-mute);
}
.why-ledger-row-win {
  border-top-color: rgba(93,212,255,0.35);
  padding: 22px 0;
}
.why-ledger-row-win:last-child {
  border-bottom-color: rgba(93,212,255,0.35);
}
.why-ledger-row-win .wlr-icon-win {
  filter: none;
  color: var(--accent);
  text-shadow: 0 0 14px var(--accent-glow);
  transform: translateY(0);
}
.why-ledger-row-win .wlr-name {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.why-ledger-row-win .wlr-cost {
  color: var(--good);
}
@media (max-width: 760px) {
  .why-ledger-row { flex-wrap: wrap; gap: 8px 14px; padding: 16px 0; }
  .wlr-name { font-size: 24px; flex: 1 1 auto; }
  .wlr-dots { display: none; }
  .wlr-cost { flex: 1 0 100%; padding-left: 44px; font-size: 12px; }
  .why-ledger-vs { font-size: 24px; margin: 20px 0 14px; }
}

/* === Curriculum === */
.curriculum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.module {
  padding: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.module:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 212, 255, 0.3);
}
.module:hover .module-bg {
  opacity: 1;
}
.module-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(93, 212, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.module-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.module-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 14px 0 12px;
}
.module-desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}
.module-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.module-tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-dim);
}
/* feature module */
.module.feature {
  grid-column: span 8;
  background: linear-gradient(135deg, rgba(93, 212, 255, 0.1), rgba(93, 212, 255, 0.02));
  border-color: rgba(93, 212, 255, 0.25);
}

/* === Reels showcase === */
.reels-strip {
  position: relative;
  overflow: hidden;
  padding: 36px 0 12px;
}
.reels-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 60s linear infinite;
}
.reels-strip:hover .reels-track { animation-play-state: paused; }
.reel-card {
  position: relative;
  width: 220px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transform: translateZ(0);
  will-change: transform;
}
.reel-card video,
.reel-card .reel-poster,
.reel-card .reel-fill {
  border-radius: inherit;
}
.reel-card:hover {
  transform: scale(1.04) translateY(-6px);
  z-index: 5;
  border-color: rgba(93,212,255,0.4);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 60px -20px var(--accent-glow);
}
.reel-card .reel-fill {
  position: absolute; inset: 0;
}
/* Slow ken-burns on the gradient fallback so cards feel alive even
   when no real video has been dropped into /reels/{id}.mp4 yet */
.reel-card .reel-fill:first-child {
  animation: kenburns 14s ease-in-out infinite alternate;
  transform-origin: 30% 60%;
}
.reel-card:nth-child(2n) .reel-fill:first-child { animation-duration: 11s; transform-origin: 70% 40%; }
.reel-card:nth-child(3n) .reel-fill:first-child { animation-duration: 16s; transform-origin: 50% 80%; }
@keyframes kenburns {
  0%   { transform: scale(1.0)  translate(0,0); }
  100% { transform: scale(1.15) translate(-3%, -2%); }
}
.reel-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-card .reel-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.reel-card .reel-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
  z-index: 2;
  pointer-events: none;
}
.reel-card .reel-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  z-index: 2;
}
.reel-card .reel-views {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Pixeloid Mono', 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.reel-card .reel-platform {
  position: absolute;
  top: 14px; right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 2;
}
.reel-card .reel-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.reel-card .reel-loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.reel-card .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.reel-card:hover .play-icon { opacity: 1; }
.reel-card .play-icon-inner {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  color: #000;
}

/* === Chat / WhatsApp section === */

.chat-flow li .step {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
}

/* phone wrap — modern iPhone (Dynamic Island, slim titanium bezel) */

.wa-title .sub {
  font-size: 11px;
  color: var(--ink-dim);
  font-weight: 400;
}

@keyframes bubble-in {
  to { opacity: 1; transform: translateY(0); }
}
.bubble.them {
  background: #1c2128;
  color: #f4f5f7;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble.me {
  background: linear-gradient(135deg, #2d8eff, #0070ff);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* === Case studies === */
.cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.case {
  position: relative;
  padding: 40px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(93,212,255,0.1), transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}
.case-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 10px;
  border: 1px solid rgba(93,212,255,0.3);
  border-radius: 6px;
  background: rgba(93,212,255,0.06);
  margin-bottom: 24px;
  align-self: flex-start;
}
.case-headline {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 18px;
}
.case-headline .num {
  color: var(--accent);
}
.case-timeline {
  position: relative;
  z-index: 2;
  margin-top: 32px;
}
.case-timeline ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.case-timeline li:last-child { border-bottom: none; }
.case-timeline .date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.case-timeline .step {
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.case-timeline .step span {
  color: var(--ink-dim);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

/* === About === */
.about {
  display: block;
}
.about::after {
  content: "";
  display: block;
  clear: both;
}
.about-portrait {
  float: left;
  width: 42%;
  max-width: 460px;
  margin: 6px 56px 32px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  background: #1a1812;
  shape-outside: inset(0 round var(--r-lg));
}
.about-copy {
  /* Let the text flow around the floated portrait — no column needed */
}
.about-copy .about-stats {
  clear: both;
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(1.02);
}
.about-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,6,8,0.9));
}
.about-portrait .name-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
}
.about-portrait .name-tag .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 6px;
}
.about-portrait .name-tag h4 {
  margin: 0;
  font-family: 'Caveat', cursive;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 0.95;
}
.about-copy h3 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 32px;
}
.about-copy p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 16px;
}
/* Cursive emphasis utility — drop on any accent word/phrase to make it handwritten */
.script-emph {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.005em;
  font-size: 1.18em;
  line-height: 0.95;
}

.about-quote {
  margin: 36px 0;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  font-family: 'Caveat', cursive;
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--ink);
}

/* Lede — opening hook line of the bio, slightly larger than body */
.about-copy .lede {
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
  margin: 8px 0 20px;
  letter-spacing: -0.005em;
}

/* Mobile-only "read full story" toggle. Desktop always shows the full bio. */
.about-collapse { /* default: open, no max-height */ }
.about-toggle { display: none; }

/* "Experts told me…" italic list */

/* "Here's where it got me" results list — accent bullet + tight rhythm */

.about-wins {
  list-style: none;
  padding: 22px 24px;
  margin: 4px 0 26px;
  background: rgba(93,212,255,0.04);
  border: 1px solid rgba(93,212,255,0.18);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-wins li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-dim);
}
.about-wins li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.7;
}
.about-wins li strong {
  color: var(--ink);
  font-weight: 500;
}
.about-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.about-stats .stat {
  padding: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.about-stats .stat .v {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.about-stats .stat .l {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* === Pricing === */
.pricing-section {
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 600px at 50% 50%, rgba(93,212,255,0.08), transparent 60%);
  pointer-events: none;
}
.pricing-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  z-index: 2;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent), transparent 30%, transparent 70%, var(--accent));
  z-index: -1;
  border-radius: var(--r-lg);
  opacity: 0.4;
}
.pricing-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(93,212,255,0.1);
  border: 1px solid rgba(93,212,255,0.3);
  color: var(--accent);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-stack li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.pricing-stack li:last-child {
  border-bottom: 1px solid var(--line-2);
}
.pricing-stack li strong {
  font-weight: 500;
  color: var(--ink);
}
.pricing-stack li .sub {
  color: var(--ink-mute);
  font-size: 13px;
}
.pricing-stack li .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  background: rgba(93,212,255,0.10);
  border: 1px solid rgba(93,212,255,0.32);
  margin-top: 2px;
}
.pricing-stack li.bonus strong { color: var(--accent); }
.pricing-stack li.bonus .check {
  color: #001620;
  background: var(--accent);
  border-color: var(--accent);
}

.pricing-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0;
}
.pricing-card .price {
  font-size: 96px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}
.pricing-card .price .currency { font-size: 36px; vertical-align: super; color: var(--ink-dim); margin-right: 4px; }
.pricing-card .price-meta {
  color: var(--ink-dim);
  font-size: 14px;
}
.pricing-card .price-meta strong { color: var(--ink); display: block; font-weight: 500; }
.pricing-card h3 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.pricing-card .ptagline {
  color: var(--ink-dim);
  font-size: 15px;
  margin: 0 0 28px;
}
.pricing-card .feats {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pricing-card .feats li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}
.pricing-card .feats li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card .ctaline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card .ctaline .small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.pricing-card .ctaline .small .pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 1.8s ease-in-out infinite;
}

/* === FAQ === */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 4px;
  cursor: pointer;
  transition: background .2s ease;
}
.faq-item:hover { background: rgba(255,255,255,0.01); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 19px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.faq-q .plus {
  color: var(--accent);
  font-size: 24px;
  transition: transform .3s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin .35s ease;
  color: var(--ink-dim);
  line-height: 1.6;
  font-size: 15px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  margin-top: 16px;
}

/* === Final CTA === */
.final {
  text-align: center;
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(93,212,255,0.15), transparent 60%),
    linear-gradient(180deg, transparent, rgba(93,212,255,0.04), transparent);
}
.final-headline {
  position: relative;
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 0 0 24px;
  z-index: 2;
}
.final-headline .accent {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-sub {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}
.final .btn-primary { font-size: 17px; padding: 20px 32px; }

/* === Footer === */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.footer .links { display: flex; gap: 24px; }
.footer .links a:hover { color: var(--ink); }

/* === Responsive === */
@media (max-width: 1100px) {
  .curriculum { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .section { padding: 80px 20px; }
  .nav { padding: 7px 8px 7px 18px; gap: 12px; }
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
  .sec-sub { justify-self: start; }

  
  .cases { grid-template-columns: 1fr; }
  .math-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card .feats { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px; }
  .pricing-card .price { font-size: 72px; }
  /* Hero phones on mobile: keep two (l1, r1) as a dimmed background — see explicit show rules below. */

  
  /* Belief cards on tablet — 2-col so 8 cards don't become an 8-deep column */
  
  /* Quieter glow at smaller widths so the pink halos don't bleed into each other */
  
}

/* ============================================================
   VEHICLE STORY (Story 02 — slot 6)
   ============================================================ */

.vs-stat.accent {
  background:
    linear-gradient(135deg, rgba(93,212,255,0.10), rgba(93,212,255,0.02)),
    var(--bg-elev);
  border-color: rgba(93,212,255,0.30);
}

.vs-stat.accent .vs-num { color: var(--accent); }

/* ============================================================
   BELIEF SECTIONS (Internal — slot 7, External — slot 8)
   ============================================================ */

/* ============================================================
   MOBILE — phones (≤640px)
   The 980px breakpoint above already collapses the major grids.
   This pass tightens typography, padding, tap targets, and
   stacks the few rows that still feel cramped on a phone.
   ============================================================ */
@media (max-width: 640px) {
  /* Vertical rhythm — pull section padding in */
  .section { padding: 64px 18px; }
  .container { padding: 0; }

  /* Nav — keep the pill, drop the long prefix to fit narrow viewports */
  .nav { width: calc(100% - 14px); padding: 6px 6px 6px 16px; gap: 8px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .nav-logo { font-size: 16px; gap: 8px; }
  .nav-logo .dot { width: 6px; height: 6px; }

  /* Hero — pull padding in, scale headline down a touch via clamp floor */
  .hero { padding: 100px 18px 44px; min-height: 88vh; }
  .hero-headline { font-size: clamp(36px, 10.5vw, 56px); line-height: 0.95; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; max-width: 100%; }

  /* Hero CTAs — give them room, full-width feels right on a phone */
  .hero-cta-row { flex-direction: column; gap: 10px; width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-cta-row .btn { width: 100%; justify-content: center; padding: 16px 22px; }

  /* Hero meta — three short stats stack into a tighter row */

  /* Hero phones on mobile: keep 2 reels (l1 = 3.5M, r2 = 2.0M) as a dimmed,
     tilted background behind the headline. l2 and r1 stay hidden. */
  .hero-phones { display: block; }
  .hero-phone { display: block; }
  .hero-phone-l2,
  .hero-phone-r1 { display: none !important; }
  .hero-phone-l1,
  .hero-phone-r2 {
    width: 150px;
    z-index: 0;
    pointer-events: none;
    /* Dim only the video + overlay so the views badge can stay readable */
  }
  .hero-phone-l1 .hero-phone-video,
  .hero-phone-r2 .hero-phone-video {
    opacity: 0.34;
    filter: brightness(0.65) saturate(0.85);
  }
  .hero-phone-l1::after,
  .hero-phone-r2::after {
    opacity: 0.5;
  }
  .hero-phone-l1 {
    top: 28%;
    left: 14%;
    transform: rotate(-9deg);
  }
  .hero-phone-r2 {
    top: 32%;
    right: 14%;
    transform: rotate(10deg);
  }
  /* Keep the view count visible, hide the location label so the dimmed reel stays clean */
  .hero-phone-l1 .phone-label,
  .hero-phone-r2 .phone-label { display: none; }
  /* Keep the hero content above the dimmed phones */
  .hero-content { position: relative; z-index: 1; }

  /* Marquee speeds slightly to keep motion alive on smaller screens */
  .marquee { padding: 14px 0; }

  /* Why grid — already 2 cols at 980; force 1 col below 480 (handled later) */
  
  .why-card { padding: 22px; min-height: 240px; }
  .why-card .alt-name { font-size: 22px; }

  /* Kill list — keep impact at smaller scale */
  .kill-list { padding-left: 18px; }
  .kill-list li { font-size: clamp(22px, 6.4vw, 30px); }

  /* About / origin — instructor portrait scales down on phones */
  .about-portrait {
    float: none;
    width: 100%;
    max-width: 240px;
    margin: 0 auto 24px;
    position: static;
    shape-outside: none;
  }
  .about-copy h3 { font-size: clamp(28px, 7vw, 38px); margin-bottom: 16px; }
  .about-copy .lede { margin-top: 0; margin-bottom: 14px; }

  /* Mobile: collapse the long bio behind a "Read full story" toggle */
  .about-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
  }
  .about-collapse.open {
    max-height: none;
  }
  .about-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    margin: 4px 0 20px;
    background: rgba(93,212,255,0.07);
    border: 1px solid rgba(93,212,255,0.32);
    border-radius: 999px;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
  }
  .about-toggle:hover,
  .about-toggle:active {
    background: rgba(93,212,255,0.12);
    border-color: rgba(93,212,255,0.55);
  }
  .about-toggle[aria-expanded="true"] .about-toggle-arrow {
    transform: rotate(180deg);
  }
  .about-toggle-arrow {
    font-family: 'Pixeloid Mono', monospace;
    display: inline-block;
    transition: transform .25s ease;
  }
  .about-copy p { font-size: 16px; }
  .about-quote {
    font-size: clamp(38px, 9vw, 48px);
    padding: 0;
    border: none;
    background: transparent;
    margin: 28px 0;
  }
  .about-stats .stat .v { font-size: 28px; }

  /* Vehicle story stats — single row of 3 chips, tighter */

  

  /* Belief cards — keep 2 columns on phone for visual rhythm; tighter everything */

  

  

  /* Section heads */
  .sec-title { font-size: clamp(34px, 8vw, 52px); }
  .sec-sub { font-size: 16px !important; max-width: 100% !important; }

  /* Curriculum modules — single column, tighter */
  .curriculum { gap: 12px; }
  .module { padding: 26px 24px; min-height: auto; }
  .module-title { font-size: 22px; }
  .module-tags { gap: 6px; }
  .module-tags span { font-size: 11px; padding: 5px 9px; }

  /* Reels strip — keep horizontal scroll but breathe more */
  .reels-strip,
  .coached-grid { padding-left: 18px; padding-right: 18px; }

  /* Chat / WhatsApp section */

  

  /* Cases */
  .case { padding: 28px 22px; }
  .case-headline { font-size: clamp(28px, 6.5vw, 38px); }
  .case-headline .num { font-size: clamp(36px, 8vw, 50px); }

  /* Math card */
  .math-grid { gap: 28px !important; }
  .math-grid > div:last-child { padding: 24px !important; }

  /* Pricing — the page's most important card needs every pixel */
  .pricing-card { padding: 24px 20px; }
  .pricing-card h3 { font-size: clamp(28px, 7vw, 38px); }
  .pricing-card .price { font-size: clamp(56px, 16vw, 88px); }
  .pricing-card .price-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pricing-card .ctaline .btn { width: 100%; justify-content: center; }
  /* Stack rows wrap cleanly so the strike-through prices don't crowd */
  .pricing-card ul li { gap: 12px; flex-wrap: nowrap; }

  /* FAQ */
  .faq-item { padding: 20px 4px; }
  .faq-q { font-size: 16px; gap: 16px; }
  .faq-a { font-size: 14.5px; }

  /* Final CTA */
  .final { padding: 56px 18px 64px; }
  .final-headline { font-size: clamp(44px, 13vw, 80px) !important; line-height: 0.95; }
  .final-sub { font-size: 16px; margin: 24px auto 32px; }

  /* Footer */
  .footer { flex-direction: column; gap: 16px; align-items: flex-start; padding: 40px 18px; }
  .footer .links { flex-wrap: wrap; gap: 16px; }
}

/* ============================================================
   TIGHT MOBILE — small phones (≤480px)
   Final pass: drop multi-column grids that the previous tier
   left in 2-up form, and shorten the nav CTA prefix.
   ============================================================ */
@media (max-width: 480px) {
  /* Nav CTA — drop the prefix on the smallest phones */
  
  .nav-cta { font-weight: 700; }

  /* Why grid → single column at small phone */
  
  .why-card { min-height: auto; padding: 20px; flex-direction: row; align-items: center; gap: 16px; }
  .why-card > div:last-child { flex: 1; }

  /* Vehicle stats stack vertically — easier to read at very narrow widths */

  /* Tighter section padding */
  .section { padding: 56px 16px; }
  .hero { padding: 84px 16px 36px; }
  .final { padding: 48px 16px 56px; }
}

/* ============================================================
   TINY MOBILE — iPhone SE / small Android (≤380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero-headline { font-size: 34px; }

  .pricing-card { padding: 20px 16px; }
  .pricing-card .price { font-size: 56px; }
  .module { padding: 22px 20px; }
  .case { padding: 24px 18px; }
  .case-headline { font-size: 26px; }
  .case-headline .num { font-size: 32px; }
}

/* ============================================================
   MOBILE RESPONSIVE REFINEMENT
   Final override layer for real phone widths. Keeps the copy intact
   and fixes ordering, overflow, and dense card layouts.
   ============================================================ */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .nav {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
  }

  .nav-logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-logo span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    justify-content: flex-start;
  }

  .hero-content {
    order: 1;
    width: 100%;
  }

  .hero-reel-rail {
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: 30px 0 0;
  }

  .hero-reel-rail-track {
    padding-inline: 2px;
  }

  .hero-eyebrow {
    max-width: 100%;
    font-size: 9.5px;
    letter-spacing: 0.12em;
    white-space: normal;
    justify-content: center;
  }

  .hero-headline {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 0.94;
    letter-spacing: -0.045em;
    text-align: center;
  }

  /* Mobile: "One viral reel" on line 1, "= one closed deal." on line 2 — same size */
  .hero-headline .word {
    display: inline-block;
    overflow: visible;
  }
  .hero-headline .word:nth-child(2)::after {
    content: "";
    display: block;
  }
  .hero-headline .word:nth-child(3) {
    display: block;
    margin-top: 0.06em;
  }

  .hero-sub {
    max-width: 34ch;
    color: rgba(244, 245, 247, 0.78);
  }

  .marquee-track {
    gap: 32px;
  }

  .marquee-item {
    gap: 10px;
    font-size: 20px;
  }

  .press {
    padding: 22px 16px;
  }

  .press-inner {
    gap: 14px;
  }

  .press-card {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: var(--r-sm);
    overflow: hidden;
  }

  .press-quote {
    display: none;
  }

  .press-arrow {
    overflow-wrap: anywhere;
  }

  .sec-head {
    margin-bottom: 20px;
  }

  .sec-title,
  .vstory-copy h3.vstory-headline,
  .chat-copy h3,
  .about-copy h3 {
    letter-spacing: -0.03em;
  }

  

  

  .curriculum {
    grid-template-columns: 1fr;
  }

  .reels-strip {
    overflow-x: clip;
    padding: 28px 0 44px;
  }

  .reels-track {
    gap: 14px;
    max-width: none;
  }

  .reel-card {
    width: min(46vw, 170px);
    border-radius: 16px;
  }

  

  .case-timeline li {
    grid-template-columns: 62px 1fr;
    gap: 12px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .pricing-card .badge {
    border-radius: var(--r-sm);
    white-space: normal;
    line-height: 1.5;
  }

  .pricing-card ul li {
    align-items: flex-start;
  }

  .pricing-card .ctaline .small {
    align-items: flex-start;
    line-height: 1.45;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .final .btn-primary {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding-inline: 18px;
  }
}

@media (max-width: 420px) {
  .hero-headline {
    max-width: 100%;
    font-size: clamp(34px, 10.2vw, 42px);
  }

  .btn {
    min-height: 52px;
  }

  .hrr-card {
    width: 108px;
  }

  .why-card {
    align-items: flex-start;
  }

  .math-grid > div:last-child div[style*="justify-content:space-between"] {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .math-grid > div:last-child span[style*="white-space:nowrap"] {
    white-space: normal !important;
  }

  .pricing-card div[style*="justify-content:space-between"] {
    gap: 8px;
  }

  .footer {
    line-height: 1.5;
  }
}

/* ============================================================
   CONVERSION DESIGN PASS
   Mobile-first simplification: one clear action, calmer proof,
   fewer competing cards, tighter copy widths, and less decoration.
   ============================================================ */
body {
  background:
    radial-gradient(900px 540px at 50% -10%, rgba(93, 212, 255, 0.10), transparent 62%),
    linear-gradient(180deg, #050608 0%, #07090d 42%, #050608 100%);
}

.section {
  padding-block: 36px;
}

.container,
.hero-content {
  width: 100%;
}

.hero-grid {
  opacity: 0.22;
}

.hero-glow {
  opacity: 0.22;
}

.hero-phone {
  opacity: 1;
  box-shadow: 0 22px 70px -30px rgba(0,0,0,0.9);
}

.hero-content {
  max-width: 1240px;
}

.hero-sub,
.sec-sub,
.about-copy p,
.vstory-copy p,
.chat-copy p,
.final-sub {
  color: rgba(244,245,247,0.68);
}

.btn,
.press-card,
.why-card,
.module,
.case,
.pricing-card,
.belief-card,
.vs-stat,
.about-portrait,
.about-stats .stat,
.faq-item {
  box-shadow: none;
}

.why-card,
.module,
.case,
.pricing-card,
.belief-card,
.vs-stat,
.about-portrait {
  border-color: rgba(255,255,255,0.10);
}

.why-card:hover,
.module:hover,
.case:hover,
.belief-card:hover {
  transform: none;
}

.pricing-card {
  background:
    linear-gradient(180deg, rgba(93,212,255,0.08), rgba(255,255,255,0.018)),
    var(--bg-elev);
}

.pricing-card::before {
  opacity: 0.20;
}

@media (max-width: 760px) {
  :root {
    --r-sm: 8px;
    --r: 10px;
    --r-lg: 14px;
  }

  body {
    background:
      radial-gradient(520px 360px at 50% -8%, rgba(93, 212, 255, 0.14), transparent 64%),
      #050608;
  }

  .nav {
    top: 10px;
    height: 48px;
    padding: 6px 8px 6px 14px;
    background: rgba(11, 13, 18, 0.55);
    border-color: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
      0 14px 30px -22px rgba(0,0,0,0.9),
      0 0 0 1px rgba(255,255,255,0.05) inset;
  }

  .nav-logo {
    font-size: 16px;
    letter-spacing: 0;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 12px;
    box-shadow: 0 0 0 1px rgba(93,212,255,0.45), 0 0 18px -2px var(--accent-glow);
  }

  .section {
    padding: 36px 20px;
  }

  .eyebrow {
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 9px;
    letter-spacing: 0.12em;
    line-height: 1.35;
  }

  .hero {
    padding: 76px 20px 36px;
    text-align: left;
  }

  .hero-content {
    text-align: left;
    max-width: 390px;
    margin-inline: auto;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    justify-content: flex-start;
  }

  .hero-headline {
    margin: 0 0 18px;
    font-size: clamp(36px, 10.8vw, 44px);
    line-height: 0.94;
    letter-spacing: -0.035em;
    text-align: center;
  }

  .hero-headline .word {
    display: inline-block;
  }
  .hero-headline .word:nth-child(2)::after {
    content: "";
    display: block;
  }
  .hero-headline .word:nth-child(3) {
    display: block;
    margin-top: 0.06em;
  }

  .hero-sub {
    max-width: 30rem;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.55;
    text-align: left;
  }

  .hero-cta-row {
    max-width: none;
    margin: 0;
    gap: 10px;
  }

  .hero-cta-row .btn-primary {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 15px;
    box-shadow: 0 16px 34px -20px var(--accent-glow);
  }

  .hero-cta-row .btn-ghost {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 15px;
  }



  .hero-reel-rail {
    max-width: 390px;
    margin: 24px auto 0;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-reel-rail-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
  }

  .hrr-card {
    width: auto;
    border-radius: 12px;
    box-shadow: none;
  }

  .hrr-card:nth-child(n+4) {
    display: none;
  }

  .hrr-label {
    display: none;
  }

  .hrr-views {
    top: 6px;
    right: 6px;
    font-size: 9px;
  }

  .marquee {
    display: none;
  }

  .press {
    padding: 20px;
    background: rgba(255,255,255,0.018);
  }

  .press-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .press-label {
    font-size: 9px;
  }

  .press-card {
    padding: 16px;
    background: rgba(255,255,255,0.025);
  }

  .press-quote {
    min-width: 0;
    font-size: 14px;
  }

  .sec-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .sec-title {
    font-size: clamp(31px, 9.2vw, 42px);
    line-height: 1;
    letter-spacing: -0.032em;
  }

  .sec-sub {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
  }

  .kill-intro {
    margin-top: 14px;
    font-size: 10px;
  }

  .kill-list {
    margin-bottom: 18px;
    gap: 4px;
  }

  .kill-list li {
    font-size: clamp(22px, 7vw, 30px);
  }

  .why-card,
  .module,
  .case,
  .belief-card,
  .vs-stat {
    padding: 18px;
    background: rgba(255,255,255,0.025);
  }

  .why-card {
    flex-direction: row;
    min-height: auto;
    align-items: center;
  }

  .why-card .alt-name {
    margin: 6px 0 4px;
    font-size: 20px;
  }

  .about {
    gap: 28px;
  }

  .about-portrait {
    float: none;
    max-width: 190px;
    margin: 0 auto 20px;
    shape-outside: none;
  }

  .about-portrait .name-tag {
    left: 16px;
    bottom: 16px;
  }

  .about-portrait .name-tag h4 {
    font-size: 26px;
  }

  .about-copy h3,
  .vstory-copy h3.vstory-headline,
  .chat-copy h3 {
    font-size: clamp(29px, 8.4vw, 38px);
    line-height: 1.03;
  }

  .about-copy p,
  .vstory-copy p,
  .chat-copy p {
    font-size: 15.5px;
    line-height: 1.6;
  }

  .about-quote {
    margin: 24px 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: clamp(36px, 10vw, 46px);
  }

  .about-stats {
    margin-top: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stats .stat {
    padding: 12px 10px;
    background: rgba(255,255,255,0.025);
  }

  .about-stats .stat .v {
    font-size: 20px;
  }

  .about-stats .stat .l {
    font-size: 9px;
  }

  

  

  .curriculum {
    gap: 10px;
  }

  .module-title {
    margin: 10px 0 8px;
    font-size: 21px;
  }

  .module-desc {
    margin-bottom: 0;
  }

  .module-tags {
    margin-top: 16px;
  }

  .module-tags span {
    border-radius: 999px;
    font-size: 9px;
  }

  .reels-strip,
  .coached-grid {
    padding-block: 20px 30px;
  }

  /* Mobile: keep "My Results" smaller than the coached realtors */
  .reel-card {
    width: min(46vw, 170px);
    border-radius: 16px;
  }
  .coached-card {
    width: min(60vw, 210px);
    border-radius: 18px;
  }

  

  

  .case {
    min-height: auto;
  }

  .case-tag {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .case-headline {
    font-size: clamp(26px, 7.6vw, 34px);
  }

  .case-headline .num {
    font-size: 1em;
  }

  .case-timeline {
    margin-top: 22px;
  }

  .math-grid > div:last-child {
    background: rgba(255,255,255,0.025) !important;
    padding: 18px !important;
  }

  .pricing-section {
    padding-inline: 12px;
  }

  .pricing-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .pricing-card::before {
    opacity: 0.16;
  }

  .pricing-card h3 {
    font-size: clamp(30px, 8.5vw, 40px);
    line-height: 1.03;
  }

  .pricing-card .ptagline {
    font-size: 15px;
    line-height: 1.5;
  }

  .pricing-card ul {
    margin-top: 22px !important;
  }

  .pricing-card ul li {
    padding: 13px 0 !important;
  }

  .pricing-card .price {
    font-size: clamp(64px, 20vw, 86px);
  }

  .pricing-card .price-meta {
    font-size: 14px;
    line-height: 1.45;
  }

  .pricing-card .ctaline .btn {
    min-height: 54px;
    border-radius: 12px;
    padding-inline: 16px !important;
    font-size: 15px !important;
  }

  .faq {
    border-top-color: rgba(255,255,255,0.10);
  }

  .faq-item {
    padding: 18px 0;
  }

  .faq-q {
    font-size: 16px;
    line-height: 1.35;
  }

  .final {
    padding: 72px 20px 84px;
  }

  .final-headline {
    font-size: clamp(37px, 11vw, 54px) !important;
  }

  .final .btn-primary {
    min-height: 54px;
    border-radius: 12px;
  }
}

@media (max-width: 380px) {
  .hero-headline {
    font-size: clamp(34px, 10.8vw, 40px);
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* Mobile cleanup: hide the mobile-only hero reel rail. Card sizing handled
   by the unified breakpoint up at line ~2384 (matches .coached-card). */
@media (max-width: 760px) {
  .hero-reel-rail {
    display: none !important;
  }

  .reels-track {
    gap: 10px;
  }

  .reel-card .reel-meta {
    padding: 10px;
  }

  .reel-card .reel-title {
    font-size: 12px;
  }

  .reel-card .reel-loc,
  .reel-card .reel-platform {
    font-size: 8px;
  }

  .reel-card .reel-views {
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 5px 8px;
  }
}

/* =====================================================
   MANYCHAT FLOW CANVAS (replaces WhatsApp phone preview)
   ===================================================== */
.mc-canvas {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 22px 56px;
  background: linear-gradient(180deg, #0c1117 0%, #0a0e14 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 40px 80px -22px rgba(0,0,0,0.7),
    0 0 80px -28px var(--accent-glow);
}

.mc-node {
  position: relative;
  z-index: 2;
  background: rgba(20, 24, 32, 0.88);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(8px);
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.mc-node.mc-active {
  border-color: rgba(93, 212, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(93,212,255,0.18) inset,
    0 0 36px -6px var(--accent-glow);
  transform: translateY(-1px);
}

.mc-arrow {
  position: relative;
  align-self: center;
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, rgba(93,212,255,0.45), rgba(93,212,255,0.0));
  margin: 4px 0;
  z-index: 1;
}
.mc-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%) rotate(45deg);
  width: 7px; height: 7px;
  border-right: 2px solid rgba(93,212,255,0.6);
  border-bottom: 2px solid rgba(93,212,255,0.6);
}
.mc-arrow.mc-active {
  background: linear-gradient(180deg, var(--accent), rgba(93,212,255,0.0));
  box-shadow: 0 0 14px var(--accent-glow);
}

/* =====================================================
   PROOF MATH — "don't take my word for it" chain
   ===================================================== */
.proof-math {
  margin-top: 56px;
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(93,212,255,0.04) 0%, rgba(11,13,18,0.6) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.proof-math::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(93,212,255,0.12), transparent 55%);
  pointer-events: none;
}
.proof-math-eyebrow {
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.proof-math-head {
  position: relative;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  color: var(--ink);
}
.proof-chain {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 28px;
}
.proof-step {
  flex: 0 0 auto;
  min-width: 150px;
  padding: 18px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof-step-accent {
  border-color: rgba(93,212,255,0.45);
  background: rgba(93,212,255,0.06);
  box-shadow: 0 0 30px -6px var(--accent-glow);
}
.proof-step-num {
  font-family: 'Pixeloid Mono', 'JetBrains Mono', monospace;
  font-size: clamp(28px, 3vw, 34px);
  letter-spacing: 0.02em;
  color: var(--ink);
}
.proof-step-accent .proof-step-num { color: var(--accent); }
.proof-step-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.proof-arrow {
  font-family: 'Pixeloid Mono', monospace;
  font-size: 24px;
  color: var(--ink-mute);
  line-height: 1;
}
.proof-math-punch {
  position: relative;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.4;
  color: var(--ink-dim);
  margin: 0 auto 12px;
  max-width: 540px;
}
.proof-math-punch strong { color: var(--ink); font-weight: 500; }
.proof-math-punch em { font-family: 'Caveat', cursive; font-style: normal; font-size: 1.4em; line-height: 0.6; color: var(--accent); }
.proof-math-floor {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 6px auto 16px;
  max-width: 540px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}
.proof-math-floor strong {
  color: var(--accent);
  font-weight: 500;
}
.proof-math-sub {
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0 auto;
  max-width: 540px;
}

@media (max-width: 640px) {
  .proof-math { padding: 28px 20px; margin-top: 32px; }
  .proof-chain {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .proof-step {
    min-width: 0;
    width: 100%;
    padding: 14px 16px;
  }
  .proof-arrow {
    font-size: 22px;
    line-height: 1;
    transform: rotate(90deg);
    align-self: center;
  }
}

/* =====================================================
   CASE SHOT PLACEHOLDERS (Receipts pics)
   ===================================================== */

/* =====================================================
   COACHED REALTORS — video card grid
   ===================================================== */
.coached-section {
  background: linear-gradient(180deg, transparent 0%, #0a0d12 50%, transparent 100%);
}
.coached-grid {
  position: relative;
  overflow: hidden;
  padding: 36px 0 12px;
  margin: 0;
}
.coached-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 60s linear infinite;
}
.coached-grid:hover .coached-track { animation-play-state: paused; }
.coached-card {
  position: relative;
  width: 260px;
  flex-shrink: 0;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
  transform: translateZ(0);
  will-change: transform;
}
.coached-card video,
.coached-card .coached-fill {
  border-radius: inherit;
}
.coached-card:hover {
  transform: scale(1.04) translateY(-6px);
  z-index: 5;
  border-color: rgba(93,212,255,0.4);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 60px -20px var(--accent-glow);
}
.coached-card .coached-fill {
  position: absolute;
  inset: 0;
  transform-origin: 30% 40%;
  animation: kenburns 14s ease-in-out infinite alternate;
}
.coached-card:nth-child(2n) .coached-fill:first-child { animation-duration: 11s; transform-origin: 70% 40%; }
.coached-card:nth-child(3n) .coached-fill:first-child { animation-duration: 16s; transform-origin: 50% 80%; }
.coached-card .coached-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.coached-card .coached-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
  z-index: 2;
  pointer-events: none;
}
.coached-card .coached-views {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Pixeloid Mono', 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.coached-card .coached-platform {
  position: absolute;
  top: 14px; right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 2;
}
.coached-card .coached-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.coached-card:hover .coached-play { opacity: 1; }
.coached-card .coached-play-inner {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  color: #000;
}
.coached-card .coached-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  z-index: 2;
}
.coached-card .coached-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: #fff;
}

@media (max-width: 760px) {
  /* Mobile: coached cards stay slightly larger than the "My Results" strip */
  .coached-track { gap: 14px; }
  .coached-card {
    width: min(60vw, 210px);
    border-radius: 18px;
  }
  .coached-name { font-size: 14px; }
  /* Platform tag is redundant on mobile (and crowds the views pill on narrow cards) */
  .coached-card .coached-platform,
  .reel-card .reel-platform {
    display: none;
  }
}

/* =====================================================
   MANYCHAT — WHY cards + SETUP steps strip
   ===================================================== */

@media (max-width: 980px) {
  .mc-canvas { max-width: 100%; }
}
@media (max-width: 520px) {

}

/* =====================================================
   CHAPTER RHYTHM
   Real section padding + alternating tier shells so the
   page reads as grouped chapters rather than one wall of
   content. Appended last to override the older compact
   .section padding override.
   ===================================================== */

:root {
  --chapter-pad: clamp(72px, 9vw, 132px);
  --chapter-lift: #0e1118;
  --chapter-seam: clamp(80px, 8vw, 120px);
}

/* Restore real breathing room. The earlier compact override
   at ~36px made the whole page read as one chunk. */
.section {
  padding-block: var(--chapter-pad);
}
@media (max-width: 760px) {
  .section { padding-block: clamp(56px, 12vw, 88px); }
}
@media (max-width: 480px) {
  .section { padding-block: 64px; padding-inline: 16px; }
}

/* Chapter wrapper. Lifted chapters sit on a slightly brighter
   surface that fades into the surrounding base bg so the tier
   change reads as a deliberate hinge, not a hard line. */
.chapter { position: relative; }
.chapter--lift { background: var(--chapter-lift); }
.chapter--lift::before,
.chapter--lift::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: var(--chapter-seam);
  pointer-events: none;
  z-index: 0;
}
.chapter--lift::before {
  top: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
}
.chapter--lift::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
}
.chapter--lift > .section { position: relative; z-index: 1; }

