/* ============================================================
   Unattended Income — design system
   LED concept: charcoal night, cobalt glow pulled from the
   machines' own edge lighting. Photos keep their neon.
   One accent family (cobalt→violet LED), white type.
   Crest demoted to a white seal stamp in the guarantee section.
   ============================================================ */

:root {
  /* Night surfaces */
  --bg: #101113;             /* page */
  --panel: #17191c;          /* raised cards / alternating sections */
  --panel-2: #1d2024;
  --line: rgba(240, 242, 247, 0.10);

  /* Text */
  --text-hi: #f2f4f7;
  --text-mid: #aeb3bb;
  --text-low: #7d828a;

  /* LED accent — cobalt with a violet tail, like the kiosk edge lights */
  --accent: #2f6bff;
  --accent-bright: #6e96ff;
  --violet: #7c5cf6;
  --led: linear-gradient(120deg, #2f6bff, #7c5cf6);
  --glow-blue: rgba(47, 107, 255, 0.16);
  --glow-violet: rgba(124, 92, 246, 0.12);

  /* Micro-accents with single jobs: amber = slot/price tags, red = negatives */
  --amber: #ffc83d;
  --amber-deep: #a87908;

  /* Guarantee seal only */
  --seal-tint: #e7eaf0;

  /* SVG icons (masked, colorable) */
  --icon-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  --icon-x: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
  --icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");

  /* Type */
  --font-sans: "Instrument Sans", -apple-system, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --section-pad: clamp(72px, 11vw, 140px);
  --container: 1160px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 84px; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-mid);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: rgba(47, 107, 255, 0.35); color: var(--text-hi); }

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

/* ---------- Page transitions (View Transitions API, progressive) ---------- */

@view-transition { navigation: auto; }

@keyframes vt-in  { from { opacity: 0; } }
@keyframes vt-out { to   { opacity: 0; } }

::view-transition-old(root) { animation: vt-out 0.22s ease both; }
::view-transition-new(root) { animation: vt-in 0.30s ease both; }

/* ---------- Type scale ---------- */

h1, h2, h3 { font-weight: 700; color: var(--text-hi); line-height: 1.05; letter-spacing: -0.025em; }

h1 { font-size: clamp(40px, 5.6vw, 74px); }
h2 { font-size: clamp(31px, 4.5vw, 52px); }
h3 { font-size: clamp(20px, 2.3vw, 24px); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }

.kicker {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 18px;
}

.lede { font-size: clamp(18px, 2vw, 21px); line-height: 1.6; max-width: 640px; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--led);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(110, 150, 255, 0.25), 0 8px 28px var(--glow-blue);
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(110, 150, 255, 0.4), 0 10px 36px rgba(47, 107, 255, 0.32);
}
.btn-primary:active { transform: translateY(2px) scale(0.99); animation: none; } /* PUSH */


.btn-ghost {
  background: transparent;
  color: var(--text-hi);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1px rgba(110, 150, 255, 0.5); color: #ffffff; }

.btn-note { display: block; margin-top: 14px; font-size: 13.5px; color: var(--text-low); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(16, 17, 19, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-hi);
  font-weight: 300;
  white-space: nowrap;
}
.wordmark strong { font-weight: 700; }
.wordmark img { height: 34px; width: auto; }

.header-nav {
  display: flex;
  gap: 2px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(244, 243, 240, 0.04);
  border: 1px solid var(--line);
}
.header-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.header-nav a:hover { color: var(--text-hi); }
.header-nav a.active {
  color: #ffffff;
  background: rgba(47, 107, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(110, 150, 255, 0.25);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0;
  place-items: center;
  place-content: center;
}
.nav-toggle span { display: block; width: 16px; height: 2px; background: var(--text-hi); margin: 2.5px 0; transition: transform 0.25s ease; border-radius: 2px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.nav-apply { display: none; }
@media (max-width: 960px) {
  .nav-toggle { display: grid; }
  .header-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(16, 17, 19, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 13px 16px; font-size: 15px; border-radius: 10px; }
  .header-nav a:hover, .header-nav a.active { background: rgba(47, 107, 255, 0.15); }
  .header-nav .nav-apply { display: block; color: var(--accent-bright); font-weight: 600; border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; margin-top: 6px; padding-top: 15px; }
}

.header-cta { font-size: 14px; padding: 11px 24px; }

/* ---------- Hero ---------- */

.hero {
  padding: clamp(64px, 9vw, 120px) 0 clamp(64px, 9vw, 110px);
  position: relative;
  overflow: hidden;
  z-index: 0;          /* contain the embedded video's stacking context */
  isolation: isolate;  /* so the sticky header / mobile menu always sits above it */
}

.hero::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 65vw;
  height: 65vw;
  background:
    radial-gradient(circle at 60% 40%, var(--glow-blue) 0%, transparent 55%),
    radial-gradient(circle at 30% 70%, var(--glow-violet) 0%, transparent 55%);
  pointer-events: none;
}

/* Stacked, centered hero at all widths: headline → video → subheading → stats */
.hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-head { max-width: 900px; }
.hero-media { width: 100%; max-width: 760px; margin: clamp(26px, 4vw, 40px) auto; }
.hero-body { max-width: 660px; }
.hero-stats { width: 100%; max-width: 760px; margin-top: clamp(28px, 4vw, 44px); justify-content: center; }

/* Power-on sequence */
.hero-head, .hero-media, .hero-body, .hero-stats { opacity: 0; animation: hero-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-head  { animation-delay: 0.05s; }
.hero-media { animation-delay: 0.18s; }
.hero-body  { animation-delay: 0.30s; }
.hero-stats { animation-delay: 0.45s; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-photo-in {
  from { opacity: 0; transform: translateX(32px); box-shadow: 0 0 0 rgba(47, 107, 255, 0); }
  to   { opacity: 1; transform: none; }
}

.hero .kicker { color: var(--text-low); width: fit-content; margin-left: auto; margin-right: auto; }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero .kicker {
    color: transparent;
    background: linear-gradient(100deg, var(--text-low) 38%, var(--amber) 50%, var(--text-low) 62%);
    background-size: 250% 100%;
    background-position: 120% 0;
    -webkit-background-clip: text;
    background-clip: text;
    animation: kicker-wipe 4.5s ease-in-out infinite;
  }
}
@keyframes kicker-wipe {
  0%, 15% { background-position: 120% 0; }
  60%, 100% { background-position: -130% 0; }
}
.hero h1 { font-size: clamp(36px, 4.9vw, 68px); text-transform: capitalize; }
.hero h1 .lt { font-weight: 300; letter-spacing: -0.015em; }
.hero h1 em {
  font-style: normal;
  background: var(--led);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede { margin: 28px auto 40px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }

.hero-fig { position: relative; margin: 0; }
.hero-media { width: 100%; }
.hero-media .video-frame {
  margin: 0;
  border: 1px solid rgba(110, 150, 255, 0.22);
  box-shadow: 0 0 60px var(--glow-blue), 0 28px 70px rgba(0, 0, 0, 0.55);
}
.hero-photo {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: 50% 62%;
  border-radius: var(--radius);
  border: 1px solid rgba(110, 150, 255, 0.22);
  box-shadow:
    0 0 0 9px var(--panel),
    0 0 0 10px var(--line),
    0 0 70px var(--glow-blue),
    0 36px 90px rgba(0, 0, 0, 0.6);
}
.hero-fig figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--night-line, var(--line));
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.hero-fig figcaption::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-bright);
}

.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(20px, 3vw, 36px);
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat strong {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-hi);
}
.hero-stats .stat span { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-low); }

/* ---------- Guarantee band ---------- */

.guarantee-band {
  background: var(--panel);
  border-block: 1px solid var(--line);
  padding: 26px 0;
}
.guarantee-band .container {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.guarantee-band .seal { color: var(--accent-bright); flex-shrink: 0; filter: drop-shadow(0 0 8px var(--glow-blue)); }
.guarantee-band p { font-size: clamp(16px, 1.8vw, 19px); color: var(--text-mid); max-width: 720px; }
.guarantee-band strong { color: var(--text-hi); font-weight: 600; }

/* ---------- Sections ---------- */

.section { padding: var(--section-pad) 0; }

.section.light { background: var(--panel); border-block: 1px solid var(--line); }

/* ---------- Day sections — light relief between the night blocks ---------- */

.day { background: #f4f5f7; }
.day, .day p, .day li, .day figcaption { color: #4b5057; }
.day h2, .day h3, .day summary { color: #16181c; }
.day .kicker { color: #2456d6; }
.day .model-card {
  background: #ffffff;
  border-color: rgba(22, 24, 28, 0.08);
}
.day .model-card:hover {
  border-color: rgba(47, 107, 255, 0.4);
  box-shadow: 0 12px 32px rgba(22, 24, 28, 0.10), 0 0 24px rgba(47, 107, 255, 0.10);
}
.day .model-card .num {
  color: var(--amber-deep);
  background: rgba(255, 200, 61, 0.16);
  border-color: rgba(168, 121, 8, 0.30);
}
.day .proof-item {
  background: #ffffff;
  border-color: rgba(22, 24, 28, 0.08);
}
.day .proof-item:hover {
  border-color: rgba(47, 107, 255, 0.35);
  box-shadow: 0 12px 32px rgba(22, 24, 28, 0.10), 0 0 24px rgba(47, 107, 255, 0.10);
}
.day .placeholder {
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(75, 80, 87, 0.07) 12px 24px),
    #e7eaee;
  border-color: rgba(75, 80, 87, 0.45);
  color: #555b63;
}
.placeholder::before {
  content: "Asset slot — coming soon";
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.65;
  margin-bottom: 6px;
}
.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.30) 50%, transparent 65%);
  transform: translateX(-110%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer { 55%, 100% { transform: translateX(110%); } }
.day .faq-list details, .day .faq-list details:last-child,
.day .objection li, .day .compare-col li { border-color: rgba(22, 24, 28, 0.10); }
.day .faq-list summary { color: #16181c; } /* must outrank base .faq-list summary (white) */
.day .faq-list summary:hover { color: var(--accent); }
.day .faq-list summary::after { color: #9aa0a8; }
.day .objection li::before { color: var(--accent); }
.day .section-head .lede { color: #4b5057; }

/* ---------- Model / how it works ---------- */

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.model-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(244, 243, 240, 0.05);
  border-radius: var(--radius);
  padding: 38px 32px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* route connectors between the steps */
@media (min-width: 961px) {
  .model-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    margin-top: -9px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    -webkit-mask: var(--icon-chevron) center / contain no-repeat;
    mask: var(--icon-chevron) center / contain no-repeat;
    transform: rotate(-90deg);
    z-index: 1;
  }
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 150, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px var(--glow-blue);
}
.section.light .model-card { background: var(--panel-2); }
/* Slot-code chip — the little amber price tag inside real machines */
.model-card .num {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(255, 200, 61, 0.10);
  border: 1px solid rgba(255, 200, 61, 0.28);
  border-radius: 7px;
  padding: 4px 10px;
  letter-spacing: 0.14em;
  display: inline-block;
  margin-bottom: 18px;
}
.model-card h3 { margin-bottom: 12px; }
.model-card p { font-size: 15.5px; }
.card-icon {
  display: block;
  width: 54px;
  height: 54px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(47, 107, 255, 0.12);
  color: var(--accent-bright);
  margin-bottom: 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.model-card:hover .card-icon { transform: translateY(-3px) scale(1.05); background: rgba(47, 107, 255, 0.2); }
.day .card-icon { background: rgba(47, 107, 255, 0.10); color: var(--accent); }

#how {
  background-image:
    radial-gradient(ellipse 45% 35% at 88% 8%, rgba(47, 107, 255, 0.07), transparent),
    radial-gradient(ellipse 45% 35% at 8% 95%, rgba(124, 92, 246, 0.06), transparent),
    linear-gradient(rgba(22, 24, 28, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 24, 28, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
}

/* Zigzag steps — photo + copy alternating, each with its own CTA */
.steps { display: grid; gap: clamp(52px, 8vw, 96px); position: relative; }
@media (min-width: 961px) {
  .steps::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: repeating-linear-gradient(180deg, rgba(47, 107, 255, 0.30) 0 6px, transparent 6px 16px);
  }
  .step { position: relative; z-index: 1; }
}
.step {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.step:nth-child(even) .step-copy { order: 2; }
.step h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.step p { max-width: 480px; }
.step-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(22, 24, 28, 0.08);
  box-shadow: 0 18px 52px rgba(22, 24, 28, 0.12);
}
.step-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}
.step-link svg { transition: transform 0.2s ease; }
.step-link:hover svg { transform: translateX(4px); }
@media (max-width: 960px) {
  .step { grid-template-columns: 1fr; }
  .step:nth-child(even) .step-copy { order: 0; }
}

/* ---------- Comparison ---------- */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
.compare-col {
  border-radius: var(--radius);
  padding: 38px 34px;
}
.compare-col.them {
  background: var(--panel-2);
  border: 1px solid var(--line);
}
.compare-col.us {
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.12), rgba(124, 92, 246, 0.05)), var(--panel-2);
  border: 1px solid rgba(110, 150, 255, 0.3);
  box-shadow: 0 0 40px var(--glow-blue);
}
.compare-col h3 { margin-bottom: 22px; }
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 11px 0 11px 32px;
  position: relative;
  font-size: 15.5px;
  border-top: 1px solid var(--line);
}
.compare-col li::before {
  position: absolute;
  left: 0;
  top: 11px;
  font-weight: 600;
}
.compare-col li::before { content: ""; width: 16px; height: 16px; top: 14px; }
.compare-col.them li::before {
  background: #d4685c;
  -webkit-mask: var(--icon-x) center / contain no-repeat;
  mask: var(--icon-x) center / contain no-repeat;
}
.compare-col.us li::before {
  background: var(--accent-bright);
  -webkit-mask: var(--icon-check) center / contain no-repeat;
  mask: var(--icon-check) center / contain no-repeat;
}
.compare-col { transition: transform 0.25s ease; }
.compare-col:hover { transform: translateY(-4px); }

/* ---------- Coaches ---------- */

.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.coach-card { text-align: left; }
.coach-card .photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  margin-bottom: 18px;
  overflow: hidden;
}
.coach-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.coach-card h3 { font-size: 20px; }
.coach-card p { font-size: 14.5px; margin-top: 6px; }

/* ---------- Proof ---------- */

/* Machine-screen rail: flick through proof like products on the kiosk */
.proof-scroller { position: relative; }
.proof-scroller::before, .proof-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}
.proof-scroller::before { left: calc(-1 * clamp(20px, 4vw, 40px)); background: linear-gradient(90deg, var(--bg), transparent); }
.proof-scroller::after { right: calc(-1 * clamp(20px, 4vw, 40px)); background: linear-gradient(-90deg, var(--bg), transparent); }
.proof-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(330px, 76vw);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px;
}
.proof-rail::-webkit-scrollbar { display: none; }
.proof-rail .proof-item { scroll-snap-align: start; }
.proof-item.featured .media { aspect-ratio: 4 / 3; }

.rail-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  margin-bottom: 26px;
}
@media (min-width: 961px) { .rail-controls { margin-top: -70px; } }
.rail-count {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-low);
  font-variant-numeric: tabular-nums;
}
.rail-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--panel-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.rail-btn::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--text-hi);
  -webkit-mask: var(--icon-chevron) center / contain no-repeat;
  mask: var(--icon-chevron) center / contain no-repeat;
}
.rail-btn.prev::before { transform: rotate(90deg); }
.rail-btn.next::before { transform: rotate(-90deg); }
.rail-btn:hover:not(:disabled) { border-color: rgba(110, 150, 255, 0.55); box-shadow: 0 0 18px var(--glow-blue); }
.rail-btn:disabled { opacity: 0.3; cursor: default; }
.proof-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-2);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.proof-item:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 150, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px var(--glow-blue);
}
.proof-item { box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35); }
.proof-item .media { aspect-ratio: 3 / 4; overflow: hidden; position: relative; }
.venue-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 243, 240, 0.14);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8eaee;
}
.venue-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-bright);
}
.proof-item .media img, .objection img.media-slot { width: 100%; height: 100%; object-fit: cover; }
.objection img.media-slot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid rgba(110, 150, 255, 0.18);
  box-shadow: 0 0 50px var(--glow-violet), 0 24px 60px rgba(0, 0, 0, 0.5);
}
.proof-item figcaption { padding: 15px 20px 17px; font-size: 14px; line-height: 1.5; color: var(--text-mid); border-top: 1px solid var(--line); }

/* ---------- Objection ---------- */

.objection .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.objection .media-slot { aspect-ratio: 4 / 3; }
.objection ul { list-style: none; margin-top: 26px; }
.objection li {
  padding: 13px 0 13px 34px;
  position: relative;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.objection li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 17px;
  height: 17px;
  background: var(--accent-bright);
  -webkit-mask: var(--icon-check) center / contain no-repeat;
  mask: var(--icon-check) center / contain no-repeat;
}
/* bullets cascade in once the section reveals */
.objection .reveal li { opacity: 0; transform: translateX(-12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.objection .reveal.in li { opacity: 1; transform: none; }
.objection .reveal.in li:nth-child(2) { transition-delay: 0.1s; }
.objection .reveal.in li:nth-child(3) { transition-delay: 0.2s; }
.objection .reveal.in li:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Guarantee feature (white seal stamp) ---------- */

.guarantee-feature {
  background:
    radial-gradient(ellipse 70% 90% at 50% 115%, var(--glow-blue), transparent),
    radial-gradient(ellipse 50% 70% at 50% -15%, var(--glow-violet), transparent),
    var(--panel);
  border-block: 1px solid var(--line);
  text-align: center;
}
.guarantee-feature .container {
  max-width: 820px;
  background: var(--panel-2);
  border: 1px solid rgba(110, 150, 255, 0.22);
  outline: 1px solid rgba(110, 150, 255, 0.10);
  outline-offset: 9px;
  border-radius: 20px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
}
.guarantee-feature .crest {
  height: 120px;
  width: auto;
  margin: 0 auto 30px;
  filter: drop-shadow(0 0 28px rgba(47, 107, 255, 0.30));
}
.guarantee-feature p { margin-top: 22px; font-size: clamp(16px, 2vw, 19px); }

/* ---------- FAQ — card accordion ---------- */

.faq-list { max-width: 820px; display: grid; gap: 12px; }
.faq-list details {
  background: #ffffff;
  border: 1px solid rgba(22, 24, 28, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.faq-list details:hover {
  border-color: rgba(47, 107, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 24, 28, 0.08);
}
.faq-list details[open] {
  border-color: rgba(47, 107, 255, 0.45);
  box-shadow: 0 10px 30px rgba(22, 24, 28, 0.08), 0 0 24px rgba(47, 107, 255, 0.08);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #16181c;
  transition: color 0.2s ease;
}
.faq-list summary:hover { color: var(--accent); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: #9aa0a8;
  -webkit-mask: var(--icon-chevron) center / contain no-repeat;
  mask: var(--icon-chevron) center / contain no-repeat;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-list details[open] summary::after { transform: rotate(180deg); background: var(--accent); }
.faq-list details p {
  padding: 0 24px 22px;
  font-size: 15.5px;
  line-height: 1.7;
  animation: faq-open 0.35s ease;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
}

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  bottom: -55%;
  left: 15%;
  width: 70vw;
  height: 55vw;
  background:
    radial-gradient(circle at 40% 60%, var(--glow-blue) 0%, transparent 55%),
    radial-gradient(circle at 70% 40%, var(--glow-violet) 0%, transparent 55%);
  pointer-events: none;
}
.final-cta .push-ghost {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  font-size: clamp(120px, 22vw, 300px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(244, 243, 240, 0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.final-cta .container { max-width: 760px; position: relative; }
.final-cta h2 { font-size: clamp(34px, 5vw, 58px); }
.final-cta p { margin: 24px auto 36px; max-width: 560px; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  font-size: 13.5px;
  color: var(--text-low);
}
.site-footer .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: var(--text-low); }

/* ---------- VSL page ---------- */

.vsl-page { text-align: center; padding: clamp(28px, 4vw, 48px) 0 var(--section-pad); }
.vsl-page .container { max-width: 980px; }
.vsl-page h1 { font-size: clamp(30px, 4.5vw, 50px); max-width: 760px; margin: 0 auto; }
.vsl-page .lede { margin: 20px auto 40px; }
.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(110, 150, 255, 0.18);
  box-shadow: 0 0 60px var(--glow-blue), 0 24px 60px rgba(0, 0, 0, 0.5);
  margin-bottom: 44px;
}
.video-frame:not(:has(vturb-smartplayer)) { aspect-ratio: 16 / 9; }
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; }
.video-frame vturb-smartplayer { display: block; width: 100%; }

/* ---------- Apply / thank-you ---------- */

.apply-page, .thanks-page { padding: clamp(56px, 8vw, 96px) 0 var(--section-pad); }
.apply-page .container, .thanks-page .container { max-width: 820px; text-align: center; }
.apply-page h1, .thanks-page h1 { font-size: clamp(30px, 4.5vw, 46px); }
.apply-page .lede, .thanks-page .lede { margin: 20px auto 44px; }

/* White sheet — the GHL survey skin is light; re-skin pending colorway lock */
.survey-frame {
  background: #101113; /* matches the DARK survey skin so no seam */
  border: 1px solid rgba(110, 150, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 0 60px var(--glow-blue), 0 24px 60px rgba(0, 0, 0, 0.5);
}
.survey-frame iframe { width: 100%; min-height: 460px; border: 0; display: block; }

.thanks-steps { text-align: left; max-width: 560px; margin: 0 auto; list-style: none; counter-reset: step; }
.thanks-steps li {
  counter-increment: step;
  position: relative;
  padding: 18px 0 18px 56px;
  border-top: 1px solid var(--line);
}
.thanks-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-bright);
  color: var(--accent-bright);
  font-weight: 600;
  font-size: 15px;
  display: grid;
  place-items: center;
}
.thanks-steps strong { color: var(--text-hi); font-weight: 600; }
.thanks-steps a { color: var(--accent-bright); }

/* ---------- Placeholder slots (removed as real assets land) ---------- */

.placeholder {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(125, 130, 138, 0.05) 12px 24px),
    var(--panel-2);
  border: 1.5px dashed rgba(125, 130, 138, 0.4);
  color: var(--text-low);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  min-height: 120px;
}

/* ---------- Sticky mobile CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ---------- Reveal on scroll (staggered) ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

.reveal.drop { transform: translateY(16px); }
.reveal.drop.in { transform: none; }

.model-grid .reveal:nth-child(2), .proof-grid .reveal:nth-child(2), .coach-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.model-grid .reveal:nth-child(3), .proof-grid .reveal:nth-child(3), .coach-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.proof-grid .reveal:nth-child(4), .coach-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.proof-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.proof-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
  .model-card, .proof-item, .btn, .proof-item .media img { transition: none; animation: none; }
  .hero-head, .hero-media, .hero-body, .hero-stats { animation: none; opacity: 1; }
  .hero .kicker { animation: none; color: var(--text-low); background: none; }
  .btn-primary:hover { animation: none; }
  .model-card::after, .proof-item::after { display: none; }
}

/* FAQ centered */
#faq .section-head { display: block; text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
#faq .section-head .kicker { justify-content: center; }
#faq .section-head .kicker::before { content: ""; width: 64px; height: 1px; background: currentColor; opacity: 0.35; }
.faq-list { margin: 0 auto; }

/* Coin separators in the ticker */
.ticker-seq i { display: inline-flex; vertical-align: -2px; }
.ticker-seq i svg { width: 13px; height: 13px; }

/* Coach credential chip */
.coach-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 7px;
  background: rgba(47, 107, 255, 0.10);
  color: var(--accent);
  margin: 10px 0 2px;
}

/* Scroll progress — thin LED line above the header */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--amber), #e8b558);
  z-index: 100;
  pointer-events: none;
}

/* ---------- Legal pages ---------- */

.legal-page { padding: clamp(48px, 7vw, 80px) 0 var(--section-pad); }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.legal-page h2 { font-size: 22px; margin: 38px 0 12px; }
.legal-page h3 { font-size: 17px; margin: 26px 0 8px; }
.legal-page p, .legal-page li { font-size: 15px; margin-bottom: 12px; }
.legal-page ul, .legal-page ol { padding-left: 22px; margin-bottom: 14px; }
.legal-page strong { color: var(--text-hi); font-weight: 600; }
.legal-page a { color: var(--accent-bright); }

/* ---------- Elevation: editorial details ---------- */

/* Numbered kickers with rule lines (section heads only) */
.section-head .kicker, .objection .kicker { display: flex; align-items: center; gap: 14px; }
.section-head .kicker::after, .objection .kicker::after {
  content: "";
  width: 64px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

/* Headline left, supporting copy right — break the centered-stack monotony */
@media (min-width: 961px) {
  .section-head { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 20px 64px; align-items: end; max-width: none; }
  .section-head .kicker { grid-column: 1 / -1; }
  .section-head p { margin: 0 0 8px; }
}

/* Dot-matrix screen texture on night blocks */
.hero, .final-cta, #proof, .vsl-page, .apply-page, .thanks-page, .status-page {
  background-image:
    linear-gradient(rgba(244, 243, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 243, 240, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* LED ticker */
.ticker {
  background: var(--panel);
  border-block: 1px solid var(--line);
  padding: 15px 0;
  overflow: hidden;
}
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-seq {
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-low);
}
.ticker-seq strong { color: var(--text-mid); font-weight: 600; }
.ticker-seq i { font-style: normal; color: var(--amber); margin: 0 30px; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* Spec-sheet labels on the comparison */
.compare-col h3::before {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.compare-col.them h3::before { content: "THE OLD WAY"; color: var(--text-low); }
.compare-col.us h3::before { content: "THE UI MODEL"; color: var(--accent-bright); }

/* Hero stats: ruled, tabular */
.hero-stats .stat { padding-left: 16px; border-left: 2px solid rgba(110, 150, 255, 0.35); }
.hero-stats .stat strong { font-variant-numeric: tabular-nums; }

/* Staggered shelves (desktop) — proof rail only; coaches stay an even 3+3 grid */

/* Structured footer */
.site-footer { padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; align-items: start; }
.footer-brand .wordmark { font-size: 13px; }
.footer-brand p { margin-top: 16px; font-size: 13.5px; line-height: 1.7; max-width: 320px; }
.footer-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 16px;
}
.footer-grid nav { display: grid; gap: 10px; }
.footer-grid nav a { color: var(--text-mid); text-decoration: none; font-size: 14px; width: fit-content; transition: color 0.2s ease; }
.footer-grid nav a:hover { color: var(--accent-bright); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-disclaimer { font-size: 12px; max-width: 680px; color: var(--text-low); }
.footer-copy { font-size: 12.5px; white-space: nowrap; }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .model-grid, .proof-grid { grid-template-columns: 1fr 1fr; }
  .coach-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .objection .container { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  /* Mobile order follows the DOM: headline → video → subheading → stats */
  .hero-head, .hero-media, .hero-body, .hero-stats { grid-column: 1; grid-row: auto; align-self: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .br-desktop { display: none; }
  .apply-page .container { padding-left: 10px; padding-right: 10px; }
  .hero { padding-top: 40px; }
  .hero .lede { margin: 20px auto 0; }
  .hero .container { gap: 16px; }
  .model-grid, .proof-grid, .compare { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .hero-ctas { display: none; } /* sticky CTA covers it on mobile — no double button */
  .sticky-cta { display: block; transform: none; } /* always visible on mobile */
  body { padding-bottom: 84px; } /* room so the sticky CTA never covers the footer */
}


/* ---------- Build status page (client-facing) ---------- */

.status-page { padding: clamp(56px, 8vw, 90px) 0 var(--section-pad); }
.status-page .container { max-width: 860px; }
.status-page h1 { font-size: clamp(32px, 4.6vw, 52px); }
.status-page .lede { margin: 20px 0 36px; }
.status-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.status-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.status-card h2 { font-size: 19px; margin-bottom: 20px; }
.status-card li {
  list-style: none;
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 14.5px;
  border-top: 1px solid var(--line);
}
.status-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
}
.status-card.done li::before { background: var(--accent-bright); -webkit-mask: var(--icon-check) center/contain no-repeat; mask: var(--icon-check) center/contain no-repeat; }
.status-card.todo h2 { color: var(--amber); }
.status-card.todo li::before {
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
}
.status-next { margin-top: 40px; padding: 24px 28px; border: 1px solid rgba(110, 150, 255, 0.25); border-radius: var(--radius); background: linear-gradient(120deg, rgba(47, 107, 255, 0.08), rgba(124, 92, 246, 0.05)); font-size: 15px; }
.status-next strong { color: var(--text-hi); }
@media (max-width: 720px) { .status-cols { grid-template-columns: 1fr; } }


/* Proof grid (3+3) — replaced the horizontal rail per client copy direction */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .proof-grid { grid-template-columns: 1fr; } }


/* VSL page: bigger headline + proof strip under the video */
/* Compact so the video sits above the fold */
.vsl-headline { font-size: clamp(23px, 3.1vw, 38px); max-width: 760px; margin: 0 auto clamp(22px, 3vw, 34px); }
.vsl-page .video-frame { max-width: 760px; margin-left: auto; margin-right: auto; }
.vsl-proof { margin-top: clamp(48px, 7vw, 80px); }
.vsl-proof h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 32px; }
.vsl-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vsl-stat {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 22px 28px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.vsl-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--led);
  opacity: 0.85;
}
.vsl-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 150, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px var(--glow-blue);
}
.vsl-num { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.vsl-stat strong {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--led);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vsl-unit { font-size: 15px; font-weight: 600; color: var(--text-mid); }
.vsl-lbl {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-low);
}
@media (max-width: 720px) { .vsl-proof-grid { grid-template-columns: 1fr 1fr; } }


/* Hero secondary action — quiet text link, not a co-equal button */
.watch-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}
.watch-link svg { color: var(--accent-bright); flex-shrink: 0; }
.watch-link:hover { color: var(--text-hi); }
