/* Newly Booked — Editorial / Financial Premium */
:root {
  --navy-900: #0A1628;
  --navy-800: #11203A;
  --navy-700: #1B2D4A;
  --navy-600: #2A3F60;
  --navy-500: #43597A;
  --navy-300: #8A9AB3;
  --navy-200: #C5D0E0;
  --gold-700: #1C3CB8;
  --gold-600: #2348D4;
  --gold-500: #2B54E8;
  --gold-400: #5C79F2;
  --gold-200: #BCC8FA;
  --gold-50:  #EDF1FE;
  --paper:    #FFFFFF;
  --paper-2:  #F2F5FB;
  --ink:      #0E1620;
  --ink-2:    #2B3340;
  --ink-3:    #4A5360;
  --rule:     #E2E6EF;
  --rule-2:   #EDF1F8;
  --green:    #1F6B3A;
  --red:      #8A2A2A;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 24px 60px -20px rgba(10, 22, 40, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
  /* Stop the iOS rubber-band overscroll from exposing the white page
     background past the dark footer (the "white space at the bottom") and
     from making the scroll feel like it glitches/bounces at the edges. */
  overscroll-behavior-y: none;
}
html { overflow-x: hidden; }

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

.sans { font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.serif { font-family: "Source Serif 4", Georgia, serif; }
.mono { font-family: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-700);
}
.eyebrow.muted { color: var(--ink-3); }
.eyebrow.light { color: var(--gold-400); }

.rule {
  height: 1px;
  background: var(--rule);
  width: 100%;
}
.rule.dark { background: var(--navy-700); }

/* Headlines */
h1, h2, h3, h4 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2.2vw, 30px); }
h4 { font-size: 20px; }
em { font-style: italic; color: var(--gold-700); font-weight: 500; }

p { margin: 0; }

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 8px;
}
.brand .dot { width: 6px; height: 6px; background: var(--gold-500); border-radius: 999px; display: inline-block; transform: translateY(-3px); }
.topnav {
  display: flex; gap: 28px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--ink-2);
}
.topnav a { text-decoration: none; }
.topnav a:hover { color: var(--gold-700); }

/* Buttons */
.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease, box-shadow 160ms ease, filter 140ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--paper);
}
.btn-primary:hover { background: var(--navy-700); }
.btn-gold {
  background: linear-gradient(165deg, #FF453A 0%, #E11900 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 14px 32px -12px rgba(225, 25, 0, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -12px rgba(225, 25, 0, 0.7); filter: brightness(1.06); }
.btn-gold:active { transform: translateY(0); box-shadow: 0 10px 24px -12px rgba(225, 25, 0, 0.5); }
/* On dark sections, keep the CTA the same brand red as every other CTA
   (Ivan: all CTAs one consistent color). Red pops hard on the navy. */
.final-cta .btn-gold,
.cta-band.dark .btn-gold {
  background: linear-gradient(165deg, #FF453A 0%, #E11900 100%);
  color: #fff;
  box-shadow: 0 18px 44px -12px rgba(225, 25, 0, 0.55);
}
.final-cta .btn-gold:hover,
.cta-band.dark .btn-gold:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 26px 56px -12px rgba(225, 25, 0, 0.66);
}
.cta-band { padding: 48px 0 52px; text-align: center; }
.cta-band .container { text-align: center; }
.cta-band-note { font-family: "Inter", sans-serif; font-size: 12px; color: var(--ink-3); margin-top: 14px; letter-spacing: 0.05em; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-2);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-lg { padding: 18px 28px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-arrow::after { content: "→"; font-family: "Source Serif 4", Georgia, serif; font-weight: 400; }

/* Hero */
.hero {
  position: relative;
  background: var(--paper);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: stretch;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
  font-family: "Inter", sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-3);
}
.hero-eyebrow-row .pill {
  border: 1px solid var(--rule);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper-2);
}
.hero-eyebrow-row .pulse {
  width: 7px; height: 7px; border-radius: 999px; background: var(--green);
  display: inline-block; margin-right: 8px; box-shadow: 0 0 0 0 rgba(31,107,58,0.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,107,58,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(31,107,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,107,58,0); }
}
.hero-headline {
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 19px; color: var(--ink-2); max-width: 560px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-stamps {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-family: "Inter", sans-serif; font-size: 12px; color: var(--ink-3);
  letter-spacing: 0.04em;
}
.hero-stamp { display: inline-flex; align-items: center; gap: 8px; }
.hero-stamp::before {
  content: ""; width: 16px; height: 1px; background: var(--gold-600);
}
.hero-trust-row {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-trust-stat .num {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-trust-stat .num em { color: var(--gold-700); font-style: normal; }
.hero-trust-stat .lbl {
  font-family: "Inter", sans-serif; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 8px;
}

/* Qualifier card */
.qualifier-card {
  background: var(--navy-900);
  color: var(--paper);
  border-radius: 4px;
  padding: 36px 32px 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  min-height: 540px;
}
.qualifier-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px solid var(--navy-700);
}
.qualifier-head .label {
  font-family: "Inter", sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-400);
}
.qualifier-head .step {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 13px; color: var(--navy-200);
}
.qualifier-progress {
  display: flex; gap: 6px; margin-top: 10px;
}
.qualifier-progress .seg {
  height: 2px; flex: 1; background: var(--navy-700); transition: background 200ms ease;
}
.qualifier-progress .seg.on { background: var(--gold-500); }
.qualifier-q {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 26px; line-height: 1.18; letter-spacing: -0.015em;
  margin-bottom: 22px;
  color: var(--paper);
}
.qualifier-options { display: flex; flex-direction: column; gap: 10px; }
.qualifier-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--navy-700);
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--paper);
  background: transparent;
  text-align: left;
  transition: border-color 120ms ease, background 120ms ease, color 120ms ease;
  cursor: pointer;
}
.qualifier-opt:hover { border-color: var(--gold-500); background: rgba(201, 169, 97, 0.06); }
.qualifier-opt.selected { border-color: var(--gold-500); background: rgba(201, 169, 97, 0.10); color: var(--gold-200); }
.qualifier-opt .arr { color: var(--navy-300); transition: transform 120ms ease, color 120ms ease; }
.qualifier-opt:hover .arr { color: var(--gold-400); transform: translateX(4px); }

.qualifier-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--navy-700);
  border-radius: 2px;
  background: transparent;
  color: var(--paper);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  outline: none;
}
.qualifier-input:focus { border-color: var(--gold-500); }
.qualifier-input::placeholder { color: var(--navy-300); }
.qualifier-input.invalid { border-color: #c05a5a; }
.qualifier-input.invalid:focus { border-color: #d97676; }
.qualifier-input-error {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #d97676;
  margin-top: -4px;
  margin-left: 2px;
  letter-spacing: 0.01em;
}

.qualifier-foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.qualifier-back {
  font-family: "Inter", sans-serif; font-size: 12px;
  color: var(--navy-200); background: none; border: none; cursor: pointer;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.qualifier-back:hover { color: var(--gold-400); }

.qualifier-fineprint {
  margin-top: 14px;
  font-family: "Inter", sans-serif; font-size: 11px;
  color: var(--navy-300); letter-spacing: 0.04em;
  text-align: center;
}

.qualifier-consent-note {
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: var(--navy-300);
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
}
.qualifier-consent-note b { color: var(--navy-200); font-weight: 500; }

.disqualified, .qualifier-success {
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid var(--gold-700);
  border-radius: 2px;
  padding: 18px 20px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--paper);
  margin-top: 10px;
}
.disqualified b { color: var(--gold-400); }

/* Marquee bar */
.marquee {
  background: var(--navy-900);
  color: var(--paper);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-700);
  width: 100%;
  max-width: 100vw;
  position: relative;
}
.marquee-inner {
  display: flex; gap: 0;
  animation: scroll 80s linear infinite;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-200);
  width: max-content;
}
.marquee-inner span {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  position: relative;
}
.marquee-inner span::after {
  content: "✦";
  color: var(--gold-500);
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  margin: 0;
}
@keyframes scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Logo marquee — reverse direction, light bg */
.logo-marquee {
  background: var(--paper-2);
  border-top: 1px solid rgba(20, 30, 50, 0.08);
  border-bottom: 1px solid rgba(20, 30, 50, 0.08);
  padding: 22px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper-2) 0%, transparent 100%);
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--paper-2) 0%, transparent 100%);
}
.logo-marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: scroll-reverse 70s linear infinite;
  width: max-content;
}
.logo-cell {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 0 22px;
  height: 56px;
  box-sizing: border-box;
}
.logo-cell img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(0.15);
  transition: opacity 220ms ease;
}
.logo-cell:hover img {
  opacity: 1;
  filter: none;
}
@keyframes scroll-reverse {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

/* Respect iOS / system "Reduce Motion": neutralize the infinite marquees,
   pulses, and transitions so nothing animates or repaints during scroll. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 720px) {
  .logo-marquee { padding: 16px 0; }
  .logo-cell { width: 140px; padding: 0 14px; height: 44px; }
  .logo-cell img { max-height: 44px; }
}

/* Section base */
.section {
  padding: 110px 0;
  border-bottom: 1px solid var(--rule);
}
.section.dense { padding: 80px 0; }
#numbers.section { padding: 48px 0; }
.section.dark {
  background: var(--navy-900);
  color: var(--paper);
  border-bottom: 1px solid var(--navy-700);
}
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--paper); }
.section.dark em { color: var(--gold-400); }
.section.cream { background: var(--paper-2); }

.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}
.section-head .label {
  font-family: "Inter", sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-700);
  padding-top: 12px;
  border-top: 1px solid var(--gold-600);
}
.section.dark .section-head .label { color: var(--gold-400); border-top-color: var(--gold-600); }
.section-head .lede {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 18px; color: var(--ink-3); margin-top: 18px;
  max-width: 640px;
}
.section.dark .section-head .lede { color: var(--navy-200); }

/* Video testimonials */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.video-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.video-thumb {
  position: relative;
  aspect-ratio: 9 / 14;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.85), rgba(10,22,40,0.5)),
    repeating-linear-gradient(45deg, var(--navy-700) 0 8px, var(--navy-800) 8px 16px);
  display: flex; align-items: flex-end; padding: 22px;
  overflow: hidden;
}
.video-card.featured .video-thumb { aspect-ratio: 9 / 12; }
.video-card.has-wistia .video-thumb {
  aspect-ratio: 16 / 9;
  padding: 0;
  background: var(--navy-900);
}
.video-card.has-wistia.featured .video-thumb { aspect-ratio: 16 / 9; }
.video-card.has-wistia wistia-player { display: block; width: 100%; height: 100%; }
/* Static poster shown until the visitor taps (replaces the live player on load). */
.video-thumb .video-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  background: var(--navy-900);
}
wistia-player:not(:defined) {
  background: center / contain no-repeat var(--navy-800);
  display: block;
  width: 100%;
  height: 100%;
  filter: blur(5px);
}
.video-thumb .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 82px; height: 54px; border-radius: 12px;
  background: rgba(43, 84, 232, 0.82);
  display: flex; align-items: center; justify-content: center;
  font-size: 0;
  border: none; z-index: 3; pointer-events: none;
  box-shadow: 0 8px 24px rgba(43, 84, 232, 0.5);
  transition: transform 180ms ease, background 180ms ease;
}
.video-thumb .play-btn::after {
  content: ""; margin-left: 3px;
  border-style: solid; border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}
.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.05); background: rgba(43, 84, 232, 0.98); }
.video-thumb .timecode {
  position: absolute; top: 16px; right: 16px;
  font-family: "JetBrains Mono", monospace; font-size: 10px;
  color: var(--gold-200); letter-spacing: 0.1em;
  background: rgba(10,22,40,0.6); padding: 4px 8px; border-radius: 2px;
  border: 1px solid var(--navy-700);
}
.video-thumb .quote {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 22px; color: var(--paper);
  line-height: 1.18; letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.video-card.featured .video-thumb .quote { font-size: 30px; }
.video-meta {
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: flex-start;
  border-top: 1px solid var(--rule);
}
.video-meta .name {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
}
.video-meta .role {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 4px;
}
.video-meta .stat {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--gold-700);
  text-align: right;
}

/* Screenshot wall */
.screenshot-wall {
  background: var(--navy-900);
  color: var(--paper);
  padding: 110px 0;
  position: relative;
  /* No overflow:hidden here — combined with the multicolumn masonry it clipped
     the lower receipts on some Chrome builds. The ::before glow is inset:0 so it
     stays in bounds without it. */
}
.screenshot-wall .container { position: relative; z-index: 1; }
/* Wrapper that holds the wide hero receipt + the column masonry. Keeping the
   wide hero OUT of .screenshot-grid is what stops the multicol height bug. */
.screenshot-wall-grid { position: relative; }
.screenshot-wall::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(201, 169, 97, 0.08), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(201, 169, 97, 0.06), transparent 60%);
}
.screenshot-grid {
  column-count: 4;
  column-gap: 18px;
}
.screenshot {
  break-inside: avoid;
  margin-bottom: 18px;
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 200ms ease;
}
.screenshot.wide {
  margin: 0 auto 22px;
  max-width: 880px;
}
.screenshot.real { cursor: zoom-in; }
.real-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.01em;
  text-wrap: balance;
  padding: 0 4px 12px;
  margin: 0;
  background: transparent;
  text-align: center;
}
.screenshot.real.wide .real-title {
  font-size: 19px;
  text-align: center;
  padding-bottom: 14px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 12, 18, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: lb-fade 180ms ease-out;
}
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lb-stage {
  position: relative;
  max-width: min(1200px, calc(100vw - 140px));
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  background: #fff;
  user-select: none;
  -webkit-user-drag: none;
}
.lb-counter {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #0E1620;
  color: #ffffff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, transform 150ms ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,0.4);
  z-index: 2;
}
.lb-close:hover { background: #C9A961; color: #0E1620; }
.lb-nav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #0E1620;
  color: #ffffff;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, transform 150ms ease, color 150ms ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,0,0,0.4);
  z-index: 2;
}
.lb-nav:hover { background: #C9A961; color: #0E1620; transform: scale(1.06); }
@media (max-width: 768px) {
  .lightbox { padding: 16px; }
  .lb-stage { max-width: calc(100vw - 32px); }
  .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; font-size: 28px; margin: 0; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-nav:hover { transform: translateY(-50%) scale(1.05); }
}
.screenshot:hover { transform: translateY(-3px) rotate(-0.3deg); }
.screenshot.real:hover { transform: translateY(-2px); }
.screenshot.real {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.screenshot.real img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.screenshot.real.dark img { background: #000; }
.screenshot .ss-tag {
  position: absolute; top: 10px; left: 10px;
  font-family: "Inter", sans-serif; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  background: var(--navy-900); color: var(--gold-400);
  padding: 4px 8px; border-radius: 2px;
  z-index: 2;
}
.screenshot.imessage { padding: 14px 12px; background: #F2F2F7; }
.screenshot.imessage .imsg-bubble {
  font-family: -apple-system, "SF Pro Text", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  padding: 9px 14px;
  border-radius: 18px;
  background: #34C759;
  color: white;
  max-width: 85%;
  margin-left: auto;
  margin-bottom: 4px;
  word-wrap: break-word;
}
.screenshot.imessage .imsg-bubble.them {
  background: #E5E5EA;
  color: #1C1C1E;
  margin-left: 0;
  margin-right: auto;
}
.screenshot.imessage .imsg-meta {
  font-family: -apple-system, "SF Pro Text", sans-serif;
  font-size: 10px; color: #8E8E93;
  text-align: center; margin: 6px 0;
  letter-spacing: 0.02em;
}
.screenshot.cherry { background: #fff; padding: 0; }
.cherry-head {
  background: #1C5040; color: #fff;
  padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.06em;
}
.cherry-head .logo {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic; font-size: 16px;
}
.cherry-body {
  padding: 18px 16px;
  color: #1C1C1E;
}
.cherry-body .approved {
  font-family: "Inter", sans-serif; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: #1C5040;
  font-weight: 700;
}
.cherry-body .amount {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 36px; letter-spacing: -0.025em;
  margin-top: 6px; color: #0E1620;
}
.cherry-body .terms {
  font-family: "Inter", sans-serif; font-size: 11px;
  color: #6B6B6B; margin-top: 8px;
}
.cherry-body .row {
  display: flex; justify-content: space-between;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid #E5E5EA;
  font-family: "Inter", sans-serif; font-size: 12px;
}
.cherry-body .row .v { font-weight: 600; }
.screenshot.calendar { background: #fff; padding: 14px; }
.screenshot.calendar .cal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif; font-size: 12px;
}
.screenshot.calendar .cal-head .month { font-weight: 600; }
.screenshot.calendar .cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  font-family: "Inter", sans-serif; font-size: 9px;
}
.screenshot.calendar .cal-grid .day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: #6B6B6B;
}
.screenshot.calendar .cal-grid .day.booked {
  background: #C9A961; color: #0E1620; font-weight: 700;
}
.screenshot.calendar .cal-grid .day.today { border: 1px solid #0E1620; color: #0E1620; }
.screenshot.calendar .cal-foot {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid #E5E5EA;
  font-family: "Inter", sans-serif; font-size: 11px;
  display: flex; justify-content: space-between;
}
.screenshot.calendar .cal-foot .num { font-weight: 700; color: #1C5040; }
.screenshot.stripe { background: #fff; padding: 16px; font-family: "Inter", sans-serif; }
.stripe-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #F2F2F7; font-size: 11px; }
.stripe-row:last-child { border-bottom: none; }
.stripe-row .amt { font-weight: 700; color: #1C5040; font-family: "JetBrains Mono", monospace; }
.stripe-head { font-family: "Inter", sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: #6B6B6B; margin-bottom: 6px; }
.stripe-total { font-family: "Source Serif 4", Georgia, serif; font-size: 28px; margin-top: 10px; letter-spacing: -0.02em; }

/* Numbers band */
.numbers-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.number-cell {
  padding: 22px 28px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.number-cell:last-child { border-right: none; }
.number-cell .lbl {
  font-family: "Inter", sans-serif; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
}
.number-cell .num {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(34px, 4vw, 50px); line-height: 1; letter-spacing: -0.03em;
  margin-top: 10px;
}
.number-cell .num em { color: var(--gold-700); font-style: normal; }
.number-cell .sub {
  margin-top: 8px;
  font-size: 14px; color: var(--ink-3);
  font-family: "Inter", sans-serif;
}

/* Comparison */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto repeat(6, 1fr);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
}
.cmp-col {
  padding: 0;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / -1;
}
.cmp-col.them { background: var(--paper-2); }
.cmp-col.us { background: var(--navy-900); color: var(--paper); }
.cmp-h {
  padding: 22px 24px;
  border-bottom: 1px solid var(--rule);
  font-family: "Inter", sans-serif; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}
.cmp-col.us .cmp-h { color: var(--gold-400); border-bottom-color: var(--navy-700); }
.cmp-col.label .cmp-h { color: var(--ink-3); }
.cmp-row {
  padding: 22px 24px;
  border-bottom: 1px solid var(--rule);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px;
  min-height: 84px;
  display: flex; align-items: center;
}
.cmp-col.us .cmp-row { border-bottom-color: var(--navy-700); }
.cmp-row:last-child { border-bottom: none; }
.cmp-col.them .cmp-row { color: var(--ink-3); text-decoration: line-through; text-decoration-color: rgba(138, 42, 42, 0.5); text-decoration-thickness: 1px; }
.cmp-col.label .cmp-row {
  font-family: "Inter", sans-serif; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}
.cmp-col.us .cmp-row { color: var(--paper); font-weight: 500; }
.cmp-col.us .cmp-row::before {
  content: "✓"; color: var(--gold-500); margin-right: 12px; font-size: 14px;
}
.cmp-col.them .cmp-row::before {
  content: "✕"; color: var(--red); margin-right: 12px; font-size: 14px; opacity: 0.6;
}

/* Mechanism / pre-qual — visual flow */
.mech-flow {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
}
.mech-side, .mech-engine {
  padding: 32px 24px;
  display: flex; flex-direction: column;
  align-items: center;
}
.mech-side.them { background: rgba(138, 42, 42, 0.04); }
.mech-side.us { background: rgba(31, 107, 58, 0.05); }
.mech-engine {
  background: var(--navy-900);
  color: var(--paper);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
}
.mech-side-label, .mech-engine-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.mech-side.them .mech-side-label { color: var(--red); }
.mech-side.us .mech-side-label { color: var(--green); }
.mech-engine-label { color: var(--gold-400); }
.mech-flow-step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 14px 16px;
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
.mech-flow-step.wall { flex-direction: column; align-items: flex-start; }
.mech-flow-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.mech-flow-icon.them { background: rgba(138, 42, 42, 0.1); }
.mech-flow-icon.us { background: rgba(31, 107, 58, 0.12); color: var(--green); font-weight: 700; }
.mech-flow-txt { color: var(--ink-2); line-height: 1.3; }
.mech-arrow {
  font-size: 22px;
  margin: 8px 0;
  font-weight: 300;
}
.mech-arrow.them { color: rgba(138, 42, 42, 0.5); }
.mech-arrow.us { color: rgba(31, 107, 58, 0.6); }
.mech-wall {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: -0.01em;
}
.mech-flow-sub {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  color: var(--ink-3);
  font-size: 14px;
  margin-top: 4px;
}
.mech-flow-result {
  margin-top: auto;
  padding-top: 20px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16px;
  font-style: italic;
  text-align: center;
}
.mech-flow-result.them { color: var(--red); }
.mech-flow-result.us {
  font-style: normal;
  display: flex; flex-direction: column; align-items: center;
  background: var(--navy-900);
  color: var(--paper);
  padding: 18px 16px;
  border-radius: 4px;
  width: 100%;
  margin-top: 24px;
}
.mech-result-stat {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 38px;
  color: var(--gold-400);
  letter-spacing: -0.03em;
  line-height: 1;
}
.mech-result-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-200);
  margin-top: 8px;
}
.mech-checkpoint {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid rgba(217, 189, 126, 0.15);
  align-items: flex-start;
}
.mech-checkpoint:last-child { border-bottom: none; }
.mech-cp-num {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-400);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.mech-cp-body { flex: 1; }
.mech-cp-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 18px;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.mech-cp-sub {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--navy-200);
  line-height: 1.45;
}
.mech-cp-logo {
  height: 22px;
  width: auto;
  margin-top: 10px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.mech-cp-logo.cc {
  filter: none;
  background: var(--paper);
  padding: 4px 8px;
  border-radius: 3px;
  height: 28px;
}
.mech-cta {
  margin-top: 32px;
  display: flex; justify-content: center;
}

/* Steps timeline */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.step-cell {
  padding: 36px 30px;
  border-right: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}
.step-cell:last-child { border-right: none; }
.step-cell .marker {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.step-cell .num {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 56px; line-height: 1; color: var(--gold-500);
  font-style: italic; letter-spacing: -0.02em;
}
.step-cell .day {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--ink-3);
}
.step-cell h4 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 24px;
  margin-bottom: 12px;
}
.step-cell p {
  font-size: 15px; color: var(--ink-3);
  font-family: "Inter", sans-serif; line-height: 1.55;
}

/* What you get */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.feat {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.feat .ix {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; color: var(--gold-700);
  letter-spacing: 0.12em;
}
.feat h4 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 22px; margin-top: 14px; margin-bottom: 12px;
}
.feat p {
  font-family: "Inter", sans-serif;
  font-size: 14px; line-height: 1.6; color: var(--ink-3);
}

/* Case study */
.case-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.case {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 36px 36px 32px;
  border-radius: 4px;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.case .market {
  font-family: "Inter", sans-serif; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 600;
}
.case .nums {
  margin-top: 24px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -0.025em;
}
.case .nums em { color: var(--gold-700); font-style: italic; }
.case .nums .arr { color: var(--ink-3); margin: 0 12px; }
.case .blurb {
  margin-top: auto; padding-top: 24px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px; color: var(--ink-2);
  line-height: 1.5;
  border-top: 1px solid var(--rule);
}

/* FAQ */
.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 28px 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq-q .plus {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 28px; color: var(--gold-700);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease, padding 200ms ease;
}
.faq-a-inner {
  padding: 0 0 28px 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px; color: var(--ink-3);
  line-height: 1.6;
  max-width: 760px;
}

/* Final CTA */
.final-cta {
  background: var(--navy-900);
  color: var(--paper);
  padding: 130px 0;
  text-align: left;
  position: relative;
}
.final-cta h2 { color: var(--paper); max-width: 900px; }
.final-cta h2 em { color: var(--gold-400); font-style: italic; }
.final-cta .lede {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 19px; color: var(--navy-200);
  margin-top: 24px; max-width: 620px;
}
.final-cta-row {
  margin-top: 28px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.final-cta-list {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--navy-700);
}
.final-cta-list li {
  list-style: none;
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--navy-700);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px;
  color: var(--paper);
}
.final-cta-list li:last-child { border-right: none; }
.final-cta-list li .ix {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--gold-400);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background: var(--navy-900);
  color: var(--navy-200);
  padding: 40px 0;
  border-top: 1px solid var(--navy-700);
  font-family: "Inter", sans-serif;
  font-size: 12px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.footer .brand { color: var(--paper); font-size: 16px; }

/* Sticky qualify CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 30;
  background: linear-gradient(160deg, #FF453A, #E11900); color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 18px 36px -10px rgba(225, 25, 0, 0.6);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 120ms ease, box-shadow 120ms ease;
  letter-spacing: 0.02em;
}
.sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 42px -10px rgba(225, 25, 0, 0.7); }

/* Density */
body.tight .section { padding: 80px 0; }
body.tight .section.dense { padding: 60px 0; }
body.tight .hero { padding: 56px 0 40px; }
body.airy .section { padding: 140px 0; }
body.airy .hero { padding: 110px 0 80px; }

/* Mobile comparison */
.comparison-mobile { display: none; }
.cmp-mrow {
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 18px 18px 16px;
  margin-bottom: 14px;
  background: var(--paper);
}
.cmp-mlabel {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.cmp-mpair { display: flex; flex-direction: column; gap: 12px; }
.cmp-mthem {
  background: rgba(138, 42, 42, 0.06);
  border: 1px solid rgba(138, 42, 42, 0.2);
  border-radius: 3px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.cmp-mus {
  background: rgba(31, 107, 58, 0.06);
  border: 1px solid rgba(31, 107, 58, 0.25);
  border-radius: 3px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.cmp-mtag {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.cmp-mtag.us { color: var(--green); }
.cmp-mtxt {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 15px;
  line-height: 1.35;
}
.cmp-mtxt.them { color: var(--ink-3); text-decoration: line-through; text-decoration-color: rgba(138,42,42,0.4); }
.cmp-mtxt.us { color: var(--ink); font-weight: 500; }

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  /* 2-up grid below 1100px. Drop the featured card's 2x2 span so all six sit in
     an even 2x3 — no orphan empty cell, and a shorter section. */
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card.featured { grid-column: span 1; grid-row: span 1; }
  .screenshot-grid { column-count: 3; }
  .mech-grid, .steps, .feat-grid { grid-template-columns: 1fr 1fr; }
  .mech-flow { grid-template-columns: 1fr; }
  .mech-engine { border-left: none; border-right: none; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .numbers-band { grid-template-columns: 1fr 1fr; }
  .number-cell:nth-child(2) { border-right: none; }
  .number-cell:nth-child(1), .number-cell:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .case-grid { grid-template-columns: 1fr; }
  .final-cta-list { grid-template-columns: 1fr; }
  .final-cta-list li { border-right: none; border-bottom: 1px solid var(--navy-700); }
  .final-cta-list li:last-child { border-bottom: none; }
}
@media (max-width: 860px) {
  .topnav { display: none !important; }
  .topbar-inner { padding: 12px 18px; gap: 12px; }
  .topbar-inner .brand { font-size: 18px; }
  .topbar-inner .btn {
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  .section { padding: 64px 0 !important; }
  #numbers.section { padding: 32px 0 !important; }
  .section.dense { padding: 48px 0 !important; }
  .hero { padding: 40px 0 32px !important; }
  .hero-eyebrow-row { flex-wrap: wrap; gap: 10px; margin-bottom: 22px; font-size: 10px; }
  .hero-eyebrow-row .pill { padding: 5px 9px; }
  .hero-headline { margin-bottom: 22px; }
  h1 { font-size: clamp(34px, 9vw, 48px); }
  h2 { font-size: clamp(28px, 7vw, 40px); }
  .hero-sub { font-size: 16px; margin-bottom: 24px; }
  .hero-stamps { font-size: 11px; gap: 6px 12px; }
  .hero-trust-row { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; padding-top: 22px; }
  .hero-trust-stat { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
  .hero-trust-stat .num { font-size: 26px; }
  .hero-trust-stat .lbl { margin-top: 0; font-size: 10px; text-align: right; max-width: 60%; }
  .qualifier-card { padding: 28px 22px 22px; min-height: auto; }
  .qualifier-q { font-size: 22px; }
  .qualifier-opt { padding: 12px 14px; font-size: 13px; }
  /* Keep videos 2-up at tablet / narrow-desktop widths — stacking all 6 into a
     single column here was creating a ~2800px "scroll forever" section. */
  .video-grid { gap: 18px; }
  .video-card.featured .video-thumb .quote { font-size: 22px; }
  .video-thumb { aspect-ratio: 4 / 5; }
  .video-card.featured .video-thumb { aspect-ratio: 4 / 5; }
  .screenshot-wall { padding: 64px 0 !important; }
  .screenshot-grid { column-count: 2; column-gap: 12px; }
  .screenshot { margin-bottom: 12px; }
  .screenshot.wide { max-width: none; margin: 0 0 16px; }
  .screenshot.imessage .imsg-bubble { font-size: 12px; }
  .cherry-body .amount { font-size: 28px; }
  .stripe-total { font-size: 22px; }
  .mech-grid, .steps, .feat-grid, .numbers-band { grid-template-columns: 1fr !important; }
  .comparison { display: none; }
  .comparison-mobile { display: block; }
  .number-cell { border-right: none !important; border-bottom: 1px solid var(--rule); padding: 18px 22px; }
  .number-cell:last-child { border-bottom: none; }
  .feat { border-right: none; padding: 28px 22px; }
  .step-cell { border-right: none; border-bottom: 1px solid var(--rule); padding: 28px 22px; }
  .step-cell:last-child { border-bottom: none; }
  .step-cell .num { font-size: 44px; }
  .section-head { grid-template-columns: 1fr !important; gap: 14px; margin-bottom: 36px; }
  .section-head .label { padding-top: 10px; }
  .section-head .lede { font-size: 16px; margin-top: 12px; }
  .case { padding: 28px 24px; min-height: auto; }
  .case .nums { font-size: clamp(28px, 8vw, 40px); }
  .case .blurb { font-size: 15px; }
  .marquee { padding: 11px 0; }
  .marquee-inner { font-size: 11px; }
  .marquee-inner span { padding: 0 18px; }
  .marquee-inner span::after { right: -4px; font-size: 9px; }
  .final-cta { padding: 80px 0 !important; }
  .final-cta .lede { font-size: 16px; }
  .final-cta-list li { padding: 13px 0; font-size: 15px; }
  .final-cta-row { gap: 14px; flex-direction: column; align-items: flex-start; }
  .final-cta-row .btn { width: 100%; }
  .footer-inner { gap: 14px; flex-direction: column; text-align: center; align-items: center; font-size: 11px; }
  .btn-lg { padding: 14px 22px; font-size: 14px; }
  .sticky-cta { bottom: 14px; right: 14px; padding: 11px 16px; font-size: 12px; }
  .faq-q { font-size: 18px; padding: 22px 0; gap: 14px; }
  .faq-a-inner { font-size: 15px; padding-bottom: 22px; }
  .mech-card { padding: 24px 22px; }
  .mech-card .ratio { font-size: 24px; top: 18px; right: 18px; }
  .mech-flow { grid-template-columns: 1fr; }
  .mech-engine { border-left: none; border-right: none; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 28px 20px; }
  .mech-side { padding: 28px 20px; }
  .mech-result-stat { font-size: 32px; }
}
@media (max-width: 480px) {
  .topbar-inner .btn span:not(:first-child) { display: none; }
  .topbar-inner .btn { padding: 9px 12px; }
  .hero-eyebrow-row .pill { display: none; }
  .qualifier-head { flex-wrap: wrap; gap: 8px; }
  .qualifier-card { padding: 24px 18px 20px; }
  .qualifier-q { font-size: 19px; }
  /* Phones: videos go single-column (2-up would be too small to watch). */
  .video-grid { grid-template-columns: 1fr; }
  .video-card.featured { grid-column: span 1; }
}



/* ============================================================
   SECTION PADDING SPEC — 32 top / 64 bottom desktop, 24/48 mobile
   2:1 ratio (bottom = 2× top) on every panel section.
   ID-based selectors (specificity 100) to beat legacy .section rules.
   ============================================================ */
#hero, #proof, #screenshots, #numbers, #why,
#mechanism, #how, #cases, #what, #faq, #final-cta {
  padding-top: 28px !important;
  padding-bottom: 44px !important;
}
@media (max-width: 768px) {
  #hero, #proof, #screenshots, #numbers, #why,
  #mechanism, #how, #cases, #what, #faq, #final-cta {
    padding-top: 20px !important;
    padding-bottom: 34px !important;
  }
}
/* Zero out trailing-child margin so visible gap = section padding sum */
#hero > *:last-child, #hero .container > *:last-child,
#proof > *:last-child, #proof .container > *:last-child,
#screenshots > *:last-child, #screenshots .container > *:last-child,
#numbers > *:last-child, #numbers .container > *:last-child,
#why > *:last-child, #why .container > *:last-child,
#mechanism > *:last-child, #mechanism .container > *:last-child,
#how > *:last-child, #how .container > *:last-child,
#cases > *:last-child, #cases .container > *:last-child,
#what > *:last-child, #what .container > *:last-child,
#faq > *:last-child, #faq .container > *:last-child, #faq .container-narrow > *:last-child,
#final-cta > *:last-child, #final-cta .container > *:last-child {
  margin-bottom: 0 !important;
}

/* ────────────────────────────────────────────────────────────────────────
   LEGAL PAGES — privacy.html, terms.html
   Standalone documents, paper background, generous reading width.
   ──────────────────────────────────────────────────────────────────────── */
body.legal {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
}
.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.legal-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 18px;
  letter-spacing: -0.005em;
}
.legal-header .brand .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--gold-500);
}
.legal-back {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}
.legal-back:hover { color: var(--gold-700); border-bottom-color: var(--gold-500); }

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px clamp(20px, 6vw, 40px) 80px;
}
.legal-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 18px;
}
.legal-page h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
}
.legal-page h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 40px 0 14px;
}
.legal-page h3 {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
  margin: 28px 0 10px;
}
.legal-page p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.legal-page p b, .legal-page li b { color: var(--ink); font-weight: 600; }
.legal-page ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-page li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 8px;
}
.legal-page a {
  color: var(--gold-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal-page a:hover { color: var(--gold-600); }
.legal-allcaps {
  font-family: "Inter", sans-serif;
  font-size: 12.5px !important;
  line-height: 1.65 !important;
  letter-spacing: 0.02em;
  color: var(--ink-2) !important;
  background: rgba(201, 169, 97, 0.05);
  border-left: 3px solid var(--gold-500);
  padding: 14px 18px;
  margin: 18px 0 !important;
}

.legal-footer {
  border-top: 1px solid var(--rule);
  padding: 28px clamp(20px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--ink-3);
  background: var(--paper-2);
}
.legal-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 15px;
  color: var(--ink);
}
.legal-footer .brand .dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--gold-500);
}
.legal-footer .links { display: flex; gap: 22px; }
.legal-footer .links a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color 120ms ease;
}
.legal-footer .links a:hover { color: var(--gold-700); }

@media (max-width: 640px) {
  .legal-page { padding-top: 36px; }
  .legal-page p, .legal-page li { font-size: 14px; }
}
