/* ============================================================
   Reachlet — The Captive Attention Network
   Design tokens + components
   ============================================================ */

:root {
  /* color */
  --bg: #F6F5F1;
  --bg-alt: #ECEBE5;
  --surface: #FFFFFF;
  --ink: #0B0B0C;
  --ink-2: #4B4B4F;
  --ink-3: #8A8A8E;
  --line: #E2E1DB;
  --lime: #C7F23E;
  --lime-deep: #9CC400;
  --coral: #FF6A3D;
  --indigo: #4338CA;

  /* type */
  --font-sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-serif: "Instrument Serif", "Times New Roman", serif;

  /* radii */
  --r-chip: 999px;
  --r-card: 28px;
  --r-panel: 22px;
  --r-button: 14px;

  --maxw: 1280px;
  --shadow-card: 0 1px 0 rgba(11,11,12,0.04), 0 30px 60px -28px rgba(11,11,12,0.18);
  --shadow-screen: 0 2px 0 rgba(11,11,12,0.05), 0 50px 90px -40px rgba(11,11,12,0.5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--lime); color: var(--ink); }

h1, h2, h3, h4 { margin: 0; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
section { position: relative; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199,242,62,0.25);
  flex: none;
}
.eyebrow.on-dark { color: rgba(255,255,255,0.7); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: var(--r-button);
  padding: 13px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { background: var(--lime-deep); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { background: var(--bg-alt); }
.btn-ghost-dark { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.14); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.12); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-chip);
  padding: 6px 12px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 30px; height: 30px; display: block; }
.brand .name { font-weight: 600; font-size: 18px; letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 72px 0 96px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-h1 {
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 22px 0 0;
}
.hero-h1 .hl {
  position: relative;
  white-space: nowrap;
}
.hero-h1 .hl::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 0.1em;
  height: 0.34em;
  background: var(--lime);
  z-index: -1;
  border-radius: 3px;
}
.hero-sub {
  margin-top: 26px;
  max-width: 30em;
  font-size: 18.5px;
  line-height: 1.4;
  color: var(--ink-2);
  text-wrap: pretty;
}
.hero-cta { margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--ink-3); }

/* hero visual */
.hero-visual { position: relative; }

/* the DOOH screen mock */
.screen {
  position: relative;
  background: var(--ink);
  border-radius: 30px;
  padding: 14px;
  box-shadow: var(--shadow-screen);
}
.screen-inner {
  background: #131316;
  border-radius: 18px;
  padding: 26px 26px 22px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.screen-top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.live-dot {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--lime);
}
.live-dot i {
  width: 7px; height: 7px; border-radius: 999px; background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199,242,62,0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.4 } }

.attn-ring {
  margin: 30px auto 18px;
  width: 188px; height: 188px;
  position: relative;
  display: grid; place-items: center;
}
.attn-ring svg { transform: rotate(-90deg); }
.attn-ring .track { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 12; }
.attn-ring .prog { fill: none; stroke: var(--lime); stroke-width: 12; stroke-linecap: round;
  stroke-dasharray: 534; stroke-dashoffset: 534;
  transition: stroke-dashoffset .6s cubic-bezier(.4,0,.2,1); }
.attn-center { position: absolute; text-align: center; color: #fff; }
.attn-center .num {
  font-family: var(--font-mono); font-weight: 600;
  font-size: 38px; letter-spacing: -0.02em; line-height: 1;
}
.attn-center .lbl {
  margin-top: 7px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.screen-foot {
  margin-top: 6px;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
}
.screen-foot .place { color: #fff; font-size: 14px; font-weight: 500; }
.screen-foot .place span { display:block; color: rgba(255,255,255,0.45); font-size: 12px; font-weight: 400; margin-top: 2px; }
.noskip {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  padding: 7px 13px; display: inline-flex; align-items: center; gap: 7px;
}
.noskip s { text-decoration: line-through; opacity: .5; }

/* floating stat callout */
.stat-callout {
  position: absolute;
  left: -36px; bottom: -34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  box-shadow: var(--shadow-card);
  padding: 20px 22px;
  max-width: 268px;
}
.stat-callout .big {
  font-size: 17px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2;
}
.stat-callout .big b { color: var(--ink); }
.stat-callout .sub {
  margin-top: 9px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 760px; }
.sec-head h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 18px;
}
.sec-head p {
  margin-top: 18px; font-size: 18px; color: var(--ink-2); line-height: 1.4;
  text-wrap: pretty; max-width: 56ch;
}
.sec-pad { padding: 100px 0; }

/* ============================================================
   VALUE CARDS
   ============================================================ */
.cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(11,11,12,0.04), 0 44px 80px -30px rgba(11,11,12,0.26); }
.card .num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-3);
}
.card h3 {
  margin-top: 22px;
  font-size: 27px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 600;
}
.card .underline { width: 46px; height: 4px; background: var(--lime); border-radius: 3px; margin-top: 18px; }
.card p { margin-top: 18px; color: var(--ink-2); font-size: 15.5px; line-height: 1.45; text-wrap: pretty; }
.card .grow { flex: 1; }
.card .metric {
  margin-top: 24px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3);
  display: flex; align-items: center; gap: 8px;
}

/* ============================================================
   INTERACTIVE SHOWCASE
   ============================================================ */
.showcase { background: var(--bg-alt); }
.showcase-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: 72px; align-items: center;
}
.demo-copy .checks { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.demo-copy .checks li {
  list-style: none; display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink-2);
}
.demo-copy .checks .tick {
  flex: none; width: 22px; height: 22px; border-radius: 999px;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.demo-copy .cta-row { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* the live demo device — matches the hero wall screen proportions */
.device {
  background: var(--ink);
  border-radius: 30px;
  padding: 14px;
  box-shadow: var(--shadow-screen);
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.device-screen {
  background: #0F0F12;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.device-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.device-bar .timer { color: var(--lime); font-weight: 600; }
.device-body { padding: 28px 30px 24px; min-height: 348px; position: relative; }

/* attention meter (top bar inside demo) */
.meter { margin-bottom: 24px; }
.meter-row {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 9px;
}
.meter-row b { color: var(--lime); }
.meter-track { height: 8px; background: rgba(255,255,255,0.09); border-radius: 999px; overflow: hidden; }
.meter-fill {
  height: 100%; width: 8%; border-radius: 999px;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime));
  transition: width .7s cubic-bezier(.4,0,.2,1);
}

/* demo step content */
.step { color: #fff; }
.step .kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.step .q {
  margin-top: 12px; font-size: 25px; line-height: 1.08; letter-spacing: -0.03em;
  font-weight: 600; color: #fff;
}

/* poll options */
.opts { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.opt {
  position: relative; overflow: hidden;
  text-align: left; cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff; font-size: 16px; font-weight: 500; font-family: var(--font-sans);
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
  display: flex; align-items: center; justify-content: space-between;
}
.opt:hover { border-color: rgba(199,242,62,0.5); background: rgba(255,255,255,0.08); }
.opt:active { transform: scale(0.99); }
.opt .opt-bar {
  position: absolute; inset: 0 auto 0 0; width: 0%;
  background: rgba(199,242,62,0.18);
  border-right: 2px solid var(--lime);
  transition: width .9s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.opt .opt-label, .opt .opt-pct { position: relative; z-index: 1; }
.opt .opt-pct { font-family: var(--font-mono); font-size: 14px; color: var(--lime); opacity: 0; transition: opacity .3s ease .3s; }
.opts.revealed .opt { cursor: default; pointer-events: none; }
.opts.revealed .opt .opt-pct { opacity: 1; }
.opt.chosen { border-color: var(--lime); }

.poll-foot {
  margin-top: 18px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.45);
  opacity: 0; transition: opacity .4s ease .4s; text-transform: uppercase;
}
.opts.revealed ~ .poll-foot { opacity: 1; }

/* reveal/offer step */
.reveal-card {
  margin-top: 24px;
  border-radius: 16px;
  border: 1px dashed rgba(199,242,62,0.5);
  background: rgba(199,242,62,0.06);
  padding: 30px 24px; text-align: center; cursor: pointer;
  transition: background .2s ease;
}
.reveal-card:hover { background: rgba(199,242,62,0.1); }
.reveal-card .hint { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.reveal-card .prize { margin-top: 12px; font-size: 30px; font-weight: 700; letter-spacing: -0.03em; color: var(--lime); opacity: 0; transform: translateY(6px); transition: all .4s ease; }
.reveal-card .prize-sub { margin-top: 8px; font-size: 13.5px; color: rgba(255,255,255,0.7); opacity: 0; transition: opacity .4s ease .15s; }
.reveal-card.opened .prize, .reveal-card.opened .prize-sub { opacity: 1; transform: none; }
.reveal-card.opened .hint { opacity: .35; }

/* rating step */
.stars { margin-top: 28px; display: flex; gap: 10px; justify-content: center; }
.star {
  width: 46px; height: 46px; cursor: pointer; color: rgba(255,255,255,0.2);
  transition: color .12s ease, transform .12s ease;
}
.star:hover { transform: scale(1.12); }
.star.on { color: var(--lime); }
.rating-msg { margin-top: 22px; text-align: center; font-size: 15px; color: rgba(255,255,255,0.7); min-height: 22px; }

/* summary step */
.summary { text-align: center; padding-top: 18px; }
.summary .big { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; color: #fff; line-height: 1.05; }
.summary .big b { color: var(--lime); }
.summary .stats-mini { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.summary .sm { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 16px 10px; }
.summary .sm .v { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--lime); }
.summary .sm .k { margin-top: 6px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* demo progress dots + footer */
.demo-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.07);
}
.dots { display: flex; gap: 8px; }
.dots i { width: 7px; height: 7px; border-radius: 999px; background: rgba(255,255,255,0.18); transition: background .2s ease, width .2s ease; }
.dots i.active { background: var(--lime); width: 20px; }
.demo-restart {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); cursor: pointer;
  background: none; border: none; display: inline-flex; align-items: center; gap: 7px;
  transition: color .15s ease;
}
.demo-restart:hover { color: #fff; }

/* ============================================================
   METRICS
   ============================================================ */
.metrics { background: var(--ink); color: #fff; }
.metrics .eyebrow { color: rgba(255,255,255,0.7); }
.metrics .sec-head h2 { color: #fff; }
.metrics-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.metric-cell {
  padding: 14px 40px 14px 0;
}
.metric-cell + .metric-cell { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 48px; }
.metric-cell .v {
  font-size: clamp(54px, 6vw, 84px); font-weight: 700; letter-spacing: -0.045em;
  line-height: 0.95; color: var(--lime);
}
.metric-cell .v.ink { color: #fff; }
.metric-cell .k {
  margin-top: 16px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  max-width: 24ch;
}

/* ============================================================
   VENUE
   ============================================================ */
.venue-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.venue-copy h2 { font-size: clamp(34px, 4vw, 54px); line-height: 0.98; letter-spacing: -0.04em; margin-top: 18px; }
.venue-copy p { margin-top: 20px; font-size: 18px; color: var(--ink-2); line-height: 1.45; max-width: 46ch; text-wrap: pretty; }
.venue-steps { margin-top: 30px; display: flex; flex-direction: column; gap: 2px; }
.vstep { display: flex; gap: 16px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
.vstep:last-child { border-bottom: 1px solid var(--line); }
.vstep .n { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); width: 28px; flex: none; }
.vstep .t { font-size: 16px; font-weight: 500; }
.vstep .t span { color: var(--ink-2); font-weight: 400; }
.venue-cta { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.venue-cta .note { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }

/* venue visual: revenue card */
.venue-visual { display: grid; gap: 20px; }
.rev-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-card); padding: 32px;
}
.rev-card .rc-top { display: flex; align-items: center; justify-content: space-between; }
.rev-card .rc-place { font-size: 15px; font-weight: 600; }
.rev-card .rc-place span { display: block; color: var(--ink-3); font-weight: 400; font-size: 12.5px; font-family: var(--font-mono); letter-spacing: 0.04em; margin-top: 3px; text-transform: uppercase; }
.rev-amount { margin-top: 26px; display: flex; align-items: baseline; gap: 10px; }
.rev-amount .amt { font-size: 52px; font-weight: 700; letter-spacing: -0.04em; }
.rev-amount .per { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.05em; }
.rev-delta { margin-top: 6px; font-family: var(--font-mono); font-size: 12px; color: var(--lime-deep); letter-spacing: 0.03em; }
.rev-bars { margin-top: 26px; display: flex; align-items: flex-end; gap: 8px; height: 90px; }
.rev-bars span { flex: 1; background: var(--bg-alt); border-radius: 6px 6px 3px 3px; }
.rev-bars span.hot { background: var(--lime); }
.rev-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases { background: var(--bg-alt); }
.case-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.case-nav { display: flex; gap: 10px; }
.case-nav button {
  width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); cursor: pointer; display: grid; place-items: center;
  color: var(--ink); transition: background .15s ease, border-color .15s ease, opacity .15s;
}
.case-nav button:hover { background: var(--bg); border-color: var(--ink-3); }
.case-nav button:disabled { opacity: .4; cursor: default; }
.case-track-wrap { margin-top: 44px; overflow: hidden; }
.case-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.case-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-card); padding: 34px;
  display: flex; flex-direction: column; min-height: 320px;
}
.case-card .logo-ph {
  width: 100%; height: 96px; border-radius: 14px; margin-bottom: 24px;
  background:
    repeating-linear-gradient(135deg, var(--bg-alt) 0 10px, var(--bg) 10px 20px);
  border: 1px dashed var(--line);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3);
}
.case-card .c-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.case-card h3 { margin-top: 12px; font-size: 22px; line-height: 1.1; letter-spacing: -0.03em; font-weight: 600; }
.case-card .grow { flex: 1; }
.case-card .result { margin-top: 22px; }
.case-card .result .r { font-size: 38px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); }
.case-card .result .r b { color: var(--lime-deep); }
.case-card .result .rl { margin-top: 6px; font-size: 14px; color: var(--ink-2); line-height: 1.4; }

/* ============================================================
   DUAL CTA FOOTER
   ============================================================ */
.dual { background: var(--ink); color: #fff; }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dual-col { padding: 18px 56px 18px 0; }
.dual-col + .dual-col { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 64px; padding-right: 0; }
.dual-col .eyebrow { color: rgba(255,255,255,0.7); }
.dual-col h2 { margin-top: 18px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.0; letter-spacing: -0.035em; font-weight: 700; max-width: 14ch; }
.dual-col .cta-row { margin-top: 28px; }
.dual-col .sub { margin-top: 18px; color: rgba(255,255,255,0.55); font-size: 15px; }

footer.foot {
  background: var(--ink); color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.foot-inner { padding: 40px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 11px; color: #fff; }
.foot-brand img { width: 26px; height: 26px; }
.foot-brand .name { font-weight: 600; font-size: 16px; letter-spacing: -0.02em; }
.foot-links { display: flex; gap: 26px; font-size: 14px; }
.foot-links a { color: rgba(255,255,255,0.6); transition: color .15s ease; }
.foot-links a:hover { color: #fff; }
.foot-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LEAD CAPTURE — build my demo
   ============================================================ */
.lead { background: var(--bg-alt); }
.lead.partner { background: var(--bg); }
.lead.partner .lead-form { background: var(--bg-alt); }
.lead.partner .field input, .lead.partner .field select, .lead.partner .field textarea,
.lead.partner .chip-toggle, .lead.partner .seg { background: var(--surface); }
.lead.partner .lead-success { background: var(--bg-alt); }
.lead-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: 64px; align-items: start;
}
.lead-copy { position: sticky; top: 104px; }
.lead-copy h2 { font-size: clamp(34px, 4vw, 54px); line-height: 0.98; letter-spacing: -0.04em; margin-top: 18px; }
.lead-copy > p { margin-top: 18px; font-size: 18px; color: var(--ink-2); line-height: 1.4; text-wrap: pretty; max-width: 40ch; }
.lead-incl { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.lead-incl li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.lead-incl .tick { flex: none; width: 22px; height: 22px; border-radius: 999px; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.lead-promise { margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3); }
.lead-promise i { width: 7px; height: 7px; border-radius: 999px; background: var(--lime); box-shadow: 0 0 0 4px rgba(199,242,62,0.25); }

/* form card */
.lead-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-card); padding: 44px; position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field:last-of-type { margin-bottom: 0; }
.field label {
  display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 9px;
}
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-button);
  padding: 13px 15px; letter-spacing: -0.01em; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 92px; line-height: 1.4; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(11,11,12,0.06);
}
.field.select-wrap { position: relative; }
.field.select-wrap::after {
  content: "▾"; position: absolute; right: 16px; bottom: 14px; color: var(--ink-3);
  pointer-events: none; font-size: 12px;
}
.field.bad input, .field.bad select { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,106,61,0.12); }
.field .err { display: none; margin-top: 7px; font-size: 12.5px; color: var(--coral); }
.field.bad .err { display: block; }

/* chip multiselect */
.chip-select { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-toggle {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-2);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-chip);
  padding: 9px 15px; cursor: pointer; user-select: none;
  transition: background .14s ease, border-color .14s ease, color .14s ease, transform .1s ease;
}
.chip-toggle:hover { border-color: var(--ink-3); }
.chip-toggle:active { transform: scale(0.97); }
.chip-toggle.on { background: var(--lime); border-color: var(--lime-deep); color: var(--ink); }

/* segmented budget */
.segmented { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.seg {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em;
  text-align: center; color: var(--ink-2);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-button);
  padding: 12px 6px; cursor: pointer; transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.seg:hover { border-color: var(--ink-3); }
.seg.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.field.bad .seg { border-color: var(--coral); }

/* "Other" reveal text field */
.other-input {
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  transition: max-height .32s ease, opacity .25s ease, margin-top .32s ease;
}
.other-input.show { max-height: 72px; opacity: 1; margin-top: 12px; }

/* honeypot — must stay reachable to bots, so no display:none */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.lead-form .submit { margin-top: 28px; }
.lead-form .submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.lead-form .privacy { margin-top: 16px; text-align: center; font-size: 12.5px; color: var(--ink-3); line-height: 1.4; }

/* in-flight state */
.lead-form .submit .btn[disabled] { opacity: 0.62; cursor: progress; }
.lead-form.sending .lead-fields { pointer-events: none; }

/* submission failure */
.form-error {
  margin-top: 16px; padding: 14px 16px;
  background: rgba(255,106,61,0.08); border: 1px solid rgba(255,106,61,0.35);
  border-radius: var(--r-button);
  font-size: 13.5px; line-height: 1.5; color: var(--ink-2);
}
.form-error[hidden] { display: none; }
.form-error b { color: var(--coral); }
.form-error a { color: var(--ink); font-weight: 600; text-decoration: underline; }
.form-error .retry-note { display: block; margin-top: 6px; color: var(--ink-3); font-size: 12.5px; }

/* success state */
.lead-success {
  position: absolute; inset: 0; background: var(--surface); border-radius: var(--r-card);
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px;
}
.lead-form.sent .lead-success { display: flex; animation: popin .5s cubic-bezier(.2,.8,.2,1); }
.lead-form.sent .lead-fields { visibility: hidden; }
@keyframes popin { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: none; } }
.lead-success .badge {
  width: 64px; height: 64px; border-radius: 999px; background: var(--lime);
  display: grid; place-items: center; color: var(--ink); font-size: 30px; font-weight: 700;
  box-shadow: 0 0 0 8px rgba(199,242,62,0.2);
}
.lead-success h3 { margin-top: 24px; font-size: 28px; letter-spacing: -0.03em; font-weight: 700; }
.lead-success p { margin-top: 12px; color: var(--ink-2); font-size: 15.5px; line-height: 1.45; max-width: 34ch; }
.lead-success .recap { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }

/* ============================================================
   EXCLUSIVE INVENTORY — Queen Alia Airport fleet
   ============================================================ */
.exclusive { background: var(--ink); color: #fff; overflow: hidden; }
.exclusive-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: 64px; align-items: center;
}
.excl-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
  background: var(--lime); border-radius: var(--r-chip);
  padding: 7px 14px 7px 11px; font-weight: 600;
}
.excl-badge svg { width: 13px; height: 13px; }
.exclusive h2 {
  margin-top: 22px; font-size: clamp(34px, 4.2vw, 56px); line-height: 0.98;
  letter-spacing: -0.04em; font-weight: 700; max-width: 16ch;
}
.exclusive h2 .serif { color: var(--lime); }
.exclusive .lead-p {
  margin-top: 22px; font-size: 18px; line-height: 1.45; color: rgba(255,255,255,0.66);
  max-width: 44ch; text-wrap: pretty;
}
.excl-stats { margin-top: 34px; display: flex; gap: 40px; flex-wrap: wrap; }
.excl-stat .v { font-size: 40px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--lime); }
.excl-stat .v.ink { color: #fff; }
.excl-stat .k { margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.55); max-width: 18ch; }
.excl-cta { margin-top: 36px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.excl-cta .note { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* in-cab headrest screen visual */
.cab-visual { position: relative; }
.cab-screen {
  background: #1a1c12;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow-screen);
}
.cab-top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.cab-top .live { color: var(--lime); display: inline-flex; align-items: center; gap: 7px; }
.cab-top .live i { width: 7px; height: 7px; border-radius: 999px; background: var(--lime); box-shadow: 0 0 0 4px rgba(199,242,62,0.18); animation: pulse 1.8s ease-in-out infinite; }
.cab-welcome { margin-top: 26px; }
.cab-welcome .small { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.cab-welcome .big { margin-top: 10px; font-size: 30px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; color: #fff; }
.cab-welcome .big em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--lime); }

/* route line */
.route { margin-top: 28px; }
.route-line { display: flex; align-items: center; gap: 0; }
.route-line .node { width: 13px; height: 13px; border-radius: 999px; flex: none; }
.route-line .node.start { background: #fff; }
.route-line .node.end { background: var(--lime); box-shadow: 0 0 0 5px rgba(199,242,62,0.18); }
.route-line .track { flex: 1; height: 3px; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0 7px, transparent 7px 14px); position: relative; }
.route-line .plane { position: absolute; top: -9px; left: 38%; color: var(--lime); font-size: 16px; }
.route-labels { display: flex; align-items: center; justify-content: space-between; margin-top: 11px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.cab-foot {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.cab-foot .dwell { font-family: var(--font-mono); font-size: 13px; color: var(--lime); font-weight: 600; }
.cab-foot .dwell span { color: rgba(255,255,255,0.5); font-weight: 400; }
.cab-foot .noskip {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 6px 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 460px; }
  .stat-callout { left: auto; right: -10px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 48px; }
  .venue-grid { grid-template-columns: 1fr; gap: 48px; }
  .exclusive-grid { grid-template-columns: 1fr; gap: 48px; }
  .cab-visual { max-width: 460px; }
  .lead-grid { grid-template-columns: 1fr; gap: 44px; }
  .lead-copy { position: static; }
  .cards { grid-template-columns: 1fr; }
  .case-card { flex: 0 0 calc((100% - 24px) / 2); }
  .dual-grid { grid-template-columns: 1fr; }
  .dual-col { padding: 0 0 40px; }
  .dual-col + .dual-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 40px 0 0; }
}

@media (max-width: 760px) {
  .wrap { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .sec-pad { padding: 72px 0; }
  .hero { padding: 48px 0 88px; }
  .hero-trust { gap: 12px; }
  .metrics-grid { grid-template-columns: 1fr; gap: 0; }
  .metric-cell { padding: 28px 0; }
  .metric-cell + .metric-cell { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; }
  .case-card { flex: 0 0 100%; }
  .excl-stats { gap: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 32px; }
  .segmented { grid-template-columns: 1fr 1fr; }
  .card { min-height: 0; padding: 32px; }
  .stat-callout { position: relative; left: 0; right: 0; bottom: 0; margin: 20px auto 0; max-width: none; }
  .hero-visual { margin: 0 auto; }
}
