/* ═══════════════════════════════════════════════════════════
   GET MOVERLY — On-demand · Big-ticket · DFW
   design system: slate & soft lime (Direction 3, wordmark-only)
   built by Claude Fable 5
   ═══════════════════════════════════════════════════════════ */

/* ─── fonts ─── */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-normal-200-800.woff2') format('woff2');
  font-weight: 200 800; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-italic-200-800.woff2') format('woff2');
  font-weight: 200 800; font-style: italic; font-display: block;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('../fonts/IBMPlexMono-normal-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('../fonts/IBMPlexMono-normal-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('../fonts/IBMPlexMono-italic-400.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: block;
}

/* ─── tokens ─── */
:root {
  --night: #0f141b;        /* night slate — page ground */
  --panel: #18202a;        /* panel slate */
  --slate-2: #232e3a;      /* lifted slate */
  --slate: #2b3440;        /* brand slate (logo) */
  --cream: #f2f0e8;        /* warm off-white */
  --cream-60: rgba(242, 240, 232, .6);
  --cream-35: rgba(242, 240, 232, .35);
  --hairline: rgba(242, 240, 232, .14);
  --lime: #c6e86c;         /* brand soft lime (logo) */
  --lime-soft: #e2f2a6;    /* lime tint */
  --mist: #93a8bd;         /* cool support */
  --steel: #5c6e80;        /* muted slate-blue */

  --f-display: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
  --f-grotesk: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
  --f-mono: 'Plex Mono', 'SF Mono', monospace;

  --gutter: clamp(20px, 4vw, 64px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-expo: cubic-bezier(.87, 0, .13, 1);
}

/* ─── reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: auto; }
body {
  background: var(--night);
  color: var(--cream);
  font-family: var(--f-grotesk);
  font-weight: 340;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--lime); color: var(--night); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
canvas { display: block; }
.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 400;
}
body.has-cursor, body.has-cursor a, body.has-cursor [data-hover] { cursor: none; }

/* ═══════════════ PRELOADER ═══════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.pre-curtain {
  position: absolute; left: 0; width: 100%; height: 50.5%;
  background: var(--panel);
  border-bottom: 1px solid var(--hairline);
  transition: transform 1.1s var(--ease-expo);
}
.pre-curtain-a { top: 0; }
.pre-curtain-b { bottom: 0; border-bottom: none; border-top: 1px solid var(--hairline); }
#preloader.done .pre-curtain-a { transform: translateY(-101%); }
#preloader.done .pre-curtain-b { transform: translateY(101%); }
.pre-center {
  position: relative; z-index: 2; text-align: center;
  transition: opacity .4s ease;
}
#preloader.done .pre-center { opacity: 0; }
.pre-word-mask { overflow: hidden; height: clamp(40px, 7vw, 90px); margin-bottom: 28px; }
#pre-word {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(32px, 5.6vw, 70px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.015em;
  color: var(--cream);
}
.pre-count-row {
  display: flex; justify-content: space-between; align-items: baseline;
  width: min(420px, 70vw); margin: 0 auto 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em;
  color: var(--cream-60);
}
#pre-count { font-size: 13px; color: var(--lime); }
.pre-bar {
  width: min(420px, 70vw); height: 1px; margin: 0 auto;
  background: var(--hairline); position: relative; overflow: hidden;
}
#pre-bar-fill {
  position: absolute; inset: 0; background: var(--lime);
  transform-origin: left; transform: scaleX(0);
}

/* ═══════════════ FIXED CHROME ═══════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  background: linear-gradient(180deg, rgba(15,20,27,.78), rgba(15,20,27,0));
  opacity: 0; transform: translateY(-12px);
  transition: opacity .8s ease .2s, transform .8s var(--ease-out) .2s;
}
body.loaded #site-header { opacity: 1; transform: none; }
.wordmark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-grotesk);
  font-weight: 640;
  font-size: 17px;
  letter-spacing: .14em;
}
.wordmark img { height: 32px; width: auto; display: block; border-radius: 8px; }
.tk-icon { height: 24px; width: auto; border-radius: 6px; }

/* the logo's chevron (from the "v" counter) — reused as the motion arrow */
.chev {
  display: inline-block; width: 0; height: 0;
  border-left: 7px solid var(--lime);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(0.5px);
  transition: transform .3s var(--ease-out);
}
.chev-dark { border-left-color: var(--night); }
a:hover .chev, button:hover .chev { transform: translateX(3px) translateY(0.5px); }

/* header: chapter nav + driver CTA */
.index-nav { display: flex; gap: clamp(12px, 2vw, 28px); }
.index-nav a {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cream-60);
  transition: color .3s ease;
  position: relative; padding-bottom: 3px;
}
.index-nav a i { font-style: normal; color: var(--lime); margin-right: 6px; font-size: 9px; }
.index-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--lime); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.index-nav a:hover, .index-nav a.active { color: var(--cream); }
.index-nav a:hover::after, .index-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.drive-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: .16em; color: var(--cream-60);
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 9px 16px;
  transition: color .3s ease, border-color .3s ease;
}
.drive-cta:hover { color: var(--lime); border-color: var(--lime); }
.wordmark .wm-tag {
  display: block;
  font-family: var(--f-mono); font-weight: 400;
  font-size: 7.5px; letter-spacing: .3em; color: var(--cream-60);
  margin-top: 3px;
}
.edition { color: var(--cream-60); }

#progress-track {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 101;
}
#progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--lime), var(--lime-soft));
  transform-origin: left; transform: scaleX(0);
}

#room-indicator {
  position: fixed; right: var(--gutter); top: 50%; z-index: 100;
  transform: rotate(90deg) translateX(-50%); transform-origin: right center;
  display: flex; align-items: center; gap: 12px;
  color: var(--cream-35); letter-spacing: .22em; font-size: 10px;
  opacity: 0; transition: opacity 1s ease .5s;
}
body.loaded #room-indicator { opacity: 1; }
#room-num { color: var(--lime); }
.ri-sep { width: 40px; height: 1px; background: var(--hairline); }

/* cursor */
#cursor { position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none; opacity: 0; }
body.has-cursor #cursor { opacity: 1; }
#cursor-dot {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--lime); transform: translate(-50%, -50%);
}
#cursor-ring {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--cream-35); transform: translate(-50%, -50%) scale(1);
  transition: width .35s var(--ease-out), height .35s var(--ease-out),
              border-color .35s ease, background-color .35s ease;
  display: flex; align-items: center; justify-content: center;
}
#cursor.is-hover #cursor-ring {
  width: 62px; height: 62px; border-color: var(--lime);
}
#cursor-label {
  font-family: var(--f-mono); font-size: 8px; letter-spacing: .2em;
  color: var(--cream); opacity: 0; transition: opacity .3s ease;
}
#cursor.has-label #cursor-ring { width: 74px; height: 74px; background: rgba(15,20,27,.55); backdrop-filter: blur(4px); }
#cursor.has-label #cursor-label { opacity: 1; }

/* grain */
#grain {
  position: fixed; inset: -60px; z-index: 150; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05;
  animation: grain-shift 0.9s steps(3) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-25px, 18px); }
  66% { transform: translate(18px, -30px); }
  100% { transform: translate(0, 0); }
}

/* ═══════════════ SCROLL WORLD ═══════════════ */
#viewport { position: fixed; inset: 0; overflow: hidden; }
#scroll-content { will-change: transform; }
#scroll-spacer { width: 1px; }
body.native-scroll #viewport { position: static; overflow: visible; }
body.native-scroll #scroll-spacer { display: none; }

.room { position: relative; }
.room-pad { padding: clamp(90px, 14vh, 160px) var(--gutter); }

/* split-text reveal */
[data-split] .char {
  display: inline-block;
  transform: translateY(115%) rotate(4deg);
  transition: transform .9s var(--ease-expo);
  transition-delay: calc(var(--ci) * 34ms);
}
[data-split] { display: inline-block; overflow: hidden; vertical-align: bottom; white-space: nowrap; }
.in-view [data-split] .char, [data-split].in-view .char { transform: none; }

/* generic reveal */
[data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity 1s ease, transform 1s var(--ease-out);
}
[data-reveal].in-view { opacity: 1; transform: none; }

/* ═══════════════ 01 · THE ESTIMATE (landing) ═══════════════ */
#room-threshold { min-height: 100vh; overflow: hidden; position: relative; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-frame {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  padding: calc(70px + 2vh) var(--gutter) 6vh;
}
.hero-meta-top {
  display: flex; justify-content: space-between;
  color: var(--cream-60); letter-spacing: .18em; font-size: 10px;
  margin-bottom: clamp(24px, 5vh, 64px);
}
.hero-split {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(28px, 5vw, 96px);
  align-items: center;
}
.hero-brand { align-self: center; }
.hero-title {
  font-family: var(--f-display);
  font-weight: 750;
  font-size: min(clamp(42px, 6vw, 98px), 14vh);
  line-height: .98;
  letter-spacing: -.025em;
  text-align: left;
}
.ht-line { display: block; }
.ht-line-mid { display: flex; align-items: baseline; gap: clamp(10px, 1.4vw, 26px); margin-left: clamp(20px, 3.5vw, 70px); }
.ht-of {
  font-style: italic; font-weight: 400;
  font-size: .4em;
  color: var(--lime-soft);
  letter-spacing: 0;
}
.ht-imp { color: var(--lime); font-style: italic; font-weight: 800; }
.hero-sub {
  font-size: clamp(13px, 1.15vw, 16px); color: var(--cream-60); line-height: 1.7;
  max-width: 40ch; margin-top: clamp(20px, 3.5vh, 40px);
}
.hero-brand .scroll-cue { margin-top: clamp(22px, 4vh, 44px); }
.scroll-cue {
  display: flex; align-items: center; gap: 14px;
  color: var(--cream-60); font-size: 10px; letter-spacing: .22em; white-space: nowrap;
}
.cue-line { width: 56px; height: 1px; background: var(--cream-35); position: relative; overflow: hidden; }
.cue-line::after {
  content: ''; position: absolute; inset: 0; background: var(--lime);
  animation: cue-sweep 2.2s var(--ease-expo) infinite;
}
@keyframes cue-sweep {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--panel);
}
.marquee-inner { display: inline-block; will-change: transform; }
.marquee-inner span {
  font-family: var(--f-display);
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--cream-60);
}
.marquee-italic .marquee-inner span { font-style: italic; color: var(--lime-soft); font-weight: 600; }

/* ═══════════════ THE ESTIMATE CARD (hero) ═══════════════ */
.est-card {
  position: relative;
  width: 100%;
  background: linear-gradient(168deg, rgba(24, 32, 42, .84), rgba(15, 20, 27, .9) 70%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  padding: clamp(18px, 2vh, 28px) clamp(18px, 1.8vw, 30px) clamp(16px, 1.8vh, 24px);
  overflow: hidden;
}
.est-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-soft));
}
.est-card-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9px; letter-spacing: .22em; color: var(--cream-60);
  margin-bottom: clamp(12px, 1.6vh, 20px);
}
.est-card-head img { height: 24px; }

.est-step { display: flex; flex-direction: column; gap: clamp(12px, 1.7vh, 20px); }
.est-step[hidden] { display: none; }

.est-field { border-top: 1px solid var(--hairline); padding-top: clamp(9px, 1.2vh, 14px); }
.est-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em;
  color: var(--cream-60); margin-bottom: clamp(8px, 1.1vh, 12px); text-transform: uppercase;
}
.est-label b { color: var(--lime); font-weight: 500; }

/* distance slider */
.est-slider-row { display: flex; align-items: center; gap: 20px; }
.est-slider {
  -webkit-appearance: none; appearance: none;
  flex: 1; height: 2px; background: var(--hairline);
  outline: none; cursor: pointer;
}
.est-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--lime); border: 2px solid var(--night);
  box-shadow: 0 0 0 1px var(--lime);
  cursor: pointer;
}
.est-slider::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--lime); border: 2px solid var(--night);
  box-shadow: 0 0 0 1px var(--lime);
  cursor: pointer;
}
.est-miles {
  font-family: var(--f-display); font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 700; min-width: 3.2ch; text-align: right;
  letter-spacing: -.02em;
}
.est-miles small { font-family: var(--f-mono); font-size: 10px; color: var(--cream-60); letter-spacing: .15em; margin-left: 4px; }
.est-presets { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

/* chips — shared by presets, sizes, extras */
.chip {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em;
  padding: 7px 12px; border: 1px solid var(--hairline); border-radius: 999px;
  color: var(--cream-60); background: transparent;
  transition: color .3s ease, border-color .3s ease, background .3s ease;
  user-select: none;
}
.chip:hover { border-color: var(--cream-60); color: var(--cream); }
.chip.on {
  border-color: var(--lime); color: var(--night);
  background: var(--lime); font-weight: 500;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }

/* date input */
.est-date {
  background: transparent; border: none; border-bottom: 1px solid var(--hairline);
  color: var(--cream); font-family: var(--f-display); font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 600; padding: 2px 2px 7px; outline: none; width: 100%;
  border-radius: 0;
  transition: border-color .3s ease;
  color-scheme: dark;
}
.est-date:focus { border-color: var(--lime); }
.est-date-note { margin-top: 7px; font-family: var(--f-mono); font-size: 8px; letter-spacing: .14em; color: var(--lime-soft); min-height: 10px; }

/* contact capture — step 2 */
.est-contact-lede {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.5; color: var(--cream);
}
.fld { border-top: 1px solid var(--hairline); padding-top: clamp(9px, 1.2vh, 14px); flex: 1; min-width: 0; }
.fld-row { display: flex; gap: 16px; }
.est-input {
  background: transparent; border: none; border-bottom: 1px solid var(--hairline);
  color: var(--cream); font-family: var(--f-display); font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 600; padding: 2px 2px 7px; outline: none; width: 100%;
  border-radius: 0;
  transition: border-color .3s ease;
}
.est-input::placeholder { color: var(--cream-35); font-style: italic; font-weight: 340; }
.est-input:focus { border-color: var(--lime); }
.est-input.invalid { border-color: var(--lime); }
.est-input.invalid::placeholder { color: var(--lime); }

.est-check {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .16em;
  color: var(--cream-60); text-transform: uppercase;
}
.est-check input { position: absolute; opacity: 0; pointer-events: none; }
.est-check-box {
  width: 16px; height: 16px; border: 1px solid var(--cream-35); flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, border-color .25s ease;
}
.est-check-box::after {
  content: '✓'; font-size: 11px; color: var(--night); opacity: 0;
  transition: opacity .2s ease;
}
.est-check input:checked + .est-check-box { background: var(--lime); border-color: var(--lime); }
.est-check input:checked + .est-check-box::after { opacity: 1; }
.est-check:hover .est-check-box { border-color: var(--lime); }

.est-contact-actions { display: flex; align-items: center; gap: 18px; }
.est-back {
  background: none; border: none; color: var(--cream-60); cursor: inherit;
  font-size: 9px; letter-spacing: .18em;
  transition: color .3s ease;
}
.est-back:hover { color: var(--lime); }
.est-error { color: var(--lime-soft); font-size: 9px; letter-spacing: .12em; line-height: 1.6; }

/* confirmation — step 3 */
.est-step-done { align-items: flex-start; padding: clamp(10px, 2vh, 26px) 0; }
.done-mark {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--lime); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.done-title {
  font-family: var(--f-display); font-weight: 800; font-style: italic;
  font-size: clamp(28px, 2.8vw, 40px); line-height: 1;
  letter-spacing: -.02em;
}
.done-sub { font-size: 13px; line-height: 1.65; color: var(--cream-60); max-width: 38ch; }
.done-sub em { color: var(--lime); font-style: normal; }
.done-recap {
  border-top: 1px solid var(--hairline); padding-top: 12px; width: 100%;
  font-size: 9px; letter-spacing: .12em; color: var(--cream-60); line-height: 2;
}

/* persistent result footer */
.est-result {
  border-top: 1px solid var(--hairline);
  margin-top: clamp(12px, 1.8vh, 22px);
  padding-top: clamp(10px, 1.4vh, 16px);
}
.tk-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em; color: var(--cream-60); }
.tk-range {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.02em;
  margin: 4px 0 2px;
  color: var(--cream);
  white-space: nowrap;
}
.tk-range .tk-dash { color: var(--lime); font-weight: 400; }
.tk-sub { font-family: var(--f-mono); font-size: 8px; letter-spacing: .18em; color: var(--lime-soft); }
.tk-disclaimer {
  font-size: 10px; line-height: 1.55; color: var(--cream-35);
  margin-top: 12px;
}
.tk-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px;
  border: none; cursor: inherit;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em;
  color: var(--night); background: var(--lime);
  padding: 12px 20px; border-radius: 999px;
  transition: background .3s ease, transform .3s var(--ease-out);
}
.tk-cta:hover { background: var(--lime-soft); transform: translateY(-2px); }
.tk-road {
  position: relative; height: 2px; background: var(--hairline);
  margin: 12px 0 0; overflow: visible;
}
.tk-road::after {
  content: ''; position: absolute; right: -1px; top: -4px;
  border-left: 8px solid var(--lime); border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.tk-road span {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--lime); width: var(--road, 20%);
  transition: width .8s var(--ease-expo);
}
.tk-range.tk-pulse { animation: tk-pulse .5s var(--ease-out); }
@keyframes tk-pulse { 0% { color: var(--lime); } 100% { color: var(--cream); } }

/* ═══════════════ COLOPHON ═══════════════ */
#colophon { border-top: 1px solid var(--hairline); padding-bottom: 0; }
.colo-grid {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 48px;
  margin-bottom: clamp(70px, 10vh, 130px);
}
.colo-statement { max-width: 52ch; }
.colo-statement p {
  font-family: var(--f-display); font-weight: 480;
  font-size: clamp(17px, 1.6vw, 22px); line-height: 1.55;
  color: var(--cream);
}
.colo-credit { margin-top: 26px; color: var(--cream-60) !important; font-size: clamp(14px, 1.3vw, 17px) !important; }
.colo-credit strong { color: var(--lime); font-weight: 500; }
.colo-tech { display: flex; flex-direction: column; gap: 10px; color: var(--cream-60); font-size: 10px; letter-spacing: .14em; }
.colo-tech li { display: flex; gap: 24px; justify-content: space-between; border-bottom: 1px solid var(--hairline); padding-bottom: 10px; min-width: 300px; }
.colo-tech li span { color: var(--cream-35); }
.colo-return {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 40px; color: var(--cream-35); font-size: 10px; letter-spacing: .18em;
}
.colo-return a { color: var(--cream-60); transition: color .3s ease; }
.colo-return a:hover { color: var(--lime); }
.colo-wordmark {
  display: block;
  text-align: center; line-height: .78; overflow: hidden;
  transform: translateY(6%);
}
.colo-wordmark span {
  font-family: var(--f-display);
  font-size: clamp(48px, 12.2vw, 210px);
  font-weight: 800;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--cream-35);
  display: inline-block;
  transition: color .8s ease, -webkit-text-stroke-color .8s ease;
}
.colo-wordmark:hover span { color: var(--cream); -webkit-text-stroke-color: transparent; }

/* ─── responsive ─── */
@media (max-width: 900px) {
  #room-indicator { display: none; }
  .edition { display: none; }
  .hero-meta-top span:nth-child(2),
  .hero-meta-top span:nth-child(3) { display: none; }
  .colo-return { flex-direction: column; gap: 10px; }
  .hero-split { grid-template-columns: 1fr; align-items: start; gap: 34px; }
  .hero-frame { padding-bottom: 40px; }
  .hero-title { font-size: min(12.5vw, 11vh); }
  .ht-line-mid { margin-left: 5vw; gap: 3vw; }
  .hero-sub { margin-top: 16px; }
  .hero-brand .scroll-cue { display: none; }
  .fld-row { flex-direction: column; gap: clamp(12px, 1.7vh, 20px); }
  .tk-range { font-size: clamp(30px, 8.5vw, 42px); }
}

/* deterministic screenshots — scoped: #scroll-content's transform must
   NOT become transitionable or offset math reads stale rects */
body.shot [data-reveal], body.shot [data-split] .char,
body.shot #site-header, body.shot #room-indicator,
body.shot .chip,
body.shot .tk-range, body.shot .tk-road span, body.shot .tk-cta,
body.shot .est-input, body.shot .est-check-box, body.shot .est-back,
body.shot .est-date {
  transition-duration: .001s !important;
  transition-delay: 0s !important;
}
/* native date-picker icon paints outside the transformed world in
   headless composites — hide it there (field stays editable) */
body.shot .est-date::-webkit-calendar-picker-indicator { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
}

/* ═══════════════ CHAPTER HEADERS (shared) ═══════════════ */
.room-head {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-end; gap: 32px;
  margin-bottom: clamp(44px, 7vh, 88px);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--hairline);
}
.room-index { color: var(--lime); display: block; margin-bottom: 16px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; }
.room-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.4vw, 84px);
  font-weight: 780;
  line-height: .98;
  letter-spacing: -.025em;
}
.room-lede {
  max-width: 46ch; font-size: clamp(13.5px, 1.2vw, 16px);
  color: var(--cream-60); line-height: 1.65;
}
/* giant ghost numeral behind each chapter head */
.room-pad[data-room-num]::before {
  content: attr(data-room-num);
  position: absolute;
  top: clamp(-30px, -1.5vw, -10px);
  right: var(--gutter);
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(200px, 30vw, 460px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 240, 232, .06);
  pointer-events: none;
  z-index: 0;
}
.room-pad { position: relative; }
.room-pad > * { position: relative; z-index: 1; }

/* ═══════════════ 02 · HOW IT WORKS ═══════════════ */
.journey-grid {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
}
.journey-steps { display: flex; flex-direction: column; }
.j-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: clamp(14px, 2vh, 22px) 14px;
  border-top: 1px solid var(--hairline);
  border-left: 2px solid transparent;
  transition: background .35s ease, border-left-color .35s ease, padding-left .35s var(--ease-out);
}
.j-step:last-child { border-bottom: 1px solid var(--hairline); }
.j-step.on {
  background: linear-gradient(90deg, rgba(198,232,108,.07), transparent 70%);
  border-left-color: var(--lime);
  padding-left: 22px;
}
.j-num { color: var(--cream-35); font-size: 10px; letter-spacing: .18em; padding-top: 5px; transition: color .3s ease; }
.j-step.on .j-num { color: var(--lime); }
.j-name {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(16px, 1.5vw, 21px); letter-spacing: -.015em;
  margin-bottom: 4px; color: var(--cream-60); transition: color .3s ease;
}
.j-step.on .j-name { color: var(--cream); }
.j-desc { font-size: 12.5px; line-height: 1.55; color: var(--cream-35); max-width: 34ch; }
.journey-stage {
  position: relative;
  border: 1px solid var(--hairline);
  background: var(--panel);
  overflow: hidden;
  min-height: 380px;
}
#journey-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.j-tag {
  position: absolute; left: 14px; bottom: 12px;
  font-size: 9px; letter-spacing: .16em; color: var(--cream-60);
  background: rgba(15,20,27,.75); padding: 7px 12px; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ═══════════════ 03 · WHAT WE MOVE ═══════════════ */
.what-list { border-top: 1px solid var(--hairline); }
.what-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  padding: clamp(18px, 3vh, 30px) 6px;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left .5s var(--ease-out), background .4s ease;
}
.what-row:hover {
  padding-left: clamp(14px, 1.6vw, 28px);
  background: linear-gradient(90deg, rgba(198,232,108,.05), transparent 60%);
}
.what-icon { width: 52px; height: 52px; display: block; }
.what-icon svg { width: 100%; height: 100%; }
.wi-body {
  fill: none; stroke: var(--cream-60); stroke-width: 2;
  stroke-linejoin: round;
  transition: stroke .4s ease;
}
.wi-chev {
  fill: var(--lime);
  transition: transform .45s var(--ease-out);
}
.what-row:hover .wi-body { stroke: var(--cream); }
.what-row:hover .wi-chev { transform: translateX(7px); }
.what-copy h3 {
  font-family: var(--f-display); font-weight: 740;
  font-size: clamp(20px, 2.3vw, 32px); letter-spacing: -.02em;
  margin-bottom: 3px;
}
.what-copy p { font-size: 13px; color: var(--cream-60); line-height: 1.55; max-width: 58ch; }
.what-eta { font-size: 9px; letter-spacing: .16em; color: var(--lime); text-align: right; white-space: nowrap; }

/* ═══════════════ 04 · THE CRAFT ═══════════════ */
.specimen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(24px, 4vw, 64px);
}
.specimen { position: relative; }
.specimen-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--panel);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: border-color .5s ease;
}
.specimen:hover .specimen-frame { border-color: rgba(242,240,232,.35); }
.specimen-frame canvas { width: 100%; height: 100%; }
.specimen-frame::after {
  content: 'LIVE';
  position: absolute; top: 10px; right: 12px;
  font-family: var(--f-mono); font-size: 8px; letter-spacing: .22em;
  color: var(--cream-35);
}
.specimen-frame::before {
  content: ''; position: absolute; top: 13px; right: 47px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--lime);
  animation: live-blink 1.6s steps(2) infinite;
  z-index: 1;
}
@keyframes live-blink { 50% { opacity: .25; } }
.placard {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "no name medium" "no desc medium";
  gap: 2px 18px;
  padding: 16px 2px 0;
  align-items: baseline;
}
.placard-no { grid-area: no; color: var(--lime); font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; }
.placard-name {
  grid-area: name;
  font-family: var(--f-display); font-style: italic; font-weight: 720;
  font-size: clamp(18px, 2vw, 26px); letter-spacing: -.015em;
}
.placard-medium { grid-area: medium; color: var(--cream-35); font-family: var(--f-mono); font-size: 9px; letter-spacing: .14em; text-align: right; }
.placard-desc { grid-area: desc; color: var(--cream-60); font-size: 13px; }

/* ═══════════════ 05 · TRUST ═══════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.trust-tile {
  border: 1px solid var(--hairline);
  background: linear-gradient(170deg, var(--panel), var(--night) 80%);
  padding: clamp(22px, 2.4vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: border-color .4s ease, transform .4s var(--ease-out);
}
.trust-tile:hover { border-color: rgba(198,232,108,.4); transform: translateY(-4px); }
.trust-tile::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent 70%);
}
.trust-num { color: var(--cream-35); font-size: 9px; letter-spacing: .2em; }
.trust-title {
  font-family: var(--f-display); font-weight: 760;
  font-size: clamp(19px, 1.9vw, 27px); letter-spacing: -.02em; line-height: 1.1;
}
.trust-copy { font-size: 13px; line-height: 1.65; color: var(--cream-60); flex: 1; }
.trust-foot { display: flex; align-items: center; gap: 9px; color: var(--lime); font-size: 8.5px; letter-spacing: .18em; }

/* ═══════════════ 06 · VOICES ═══════════════ */
.voice-note { display: block; margin-top: 10px; font-size: 8.5px; letter-spacing: .18em; color: var(--lime); }
.voice-label { margin: 26px 0 10px; color: var(--cream-35); font-size: 9px; letter-spacing: .2em; }
.voice-label-right { text-align: right; }
.voice-strip { border: none; background: transparent; padding: 6px 0; overflow: hidden; }
.voice-row { display: inline-flex; gap: 16px; padding-right: 16px; }
.voice-card {
  display: inline-flex; flex-direction: column; gap: 10px;
  width: 340px; white-space: normal; vertical-align: top;
  border: 1px solid var(--hairline);
  background: var(--panel);
  padding: 20px 22px;
}
.voice-card q {
  quotes: '\201C' '\201D';
  font-family: var(--f-display); font-weight: 600; font-style: italic;
  font-size: 16px; line-height: 1.45; letter-spacing: -.01em;
}
.voice-card em { font-style: normal; font-family: var(--f-mono); font-size: 9px; letter-spacing: .14em; color: var(--cream-35); }
.voice-card-driver { border-color: rgba(198,232,108,.25); }
.voice-card-driver q { color: var(--lime-soft); }

/* ═══════════════ 07 · THE APP ═══════════════ */
.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
}
.app-copy .room-title { margin-bottom: 20px; }
.app-copy .room-index { margin-bottom: 16px; }
.app-copy .room-lede { margin-bottom: 28px; }
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--hairline); border-radius: 12px;
  padding: 13px 18px; font-size: 9px; letter-spacing: .16em; color: var(--cream-60);
}
.app-driver { font-size: 13.5px; color: var(--cream-60); line-height: 1.7; }
.app-driver-link { color: var(--lime); font-weight: 600; }
.app-driver .mono { font-size: 8.5px; letter-spacing: .16em; color: var(--cream-35); }
.phone-wrap { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(280px, 70vw); aspect-ratio: 9 / 19;
  border-radius: 40px;
  border: 1px solid rgba(242,240,232,.25);
  background: var(--night);
  padding: 10px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6), 0 0 0 6px rgba(24,32,42,.8);
  animation: phone-float 7s ease-in-out infinite;
}
@keyframes phone-float { 50% { transform: translateY(-10px) rotate(-0.6deg); } }
.phone-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 16px; border-radius: 999px;
  background: var(--night); z-index: 2;
  border: 1px solid rgba(242,240,232,.12);
}
.phone-screen {
  height: 100%; border-radius: 30px; overflow: hidden;
  background: var(--panel);
  display: flex; flex-direction: column;
}
.ph-head {
  display: flex; align-items: center; gap: 8px;
  padding: 34px 16px 12px;
}
.ph-head img { height: 20px; border-radius: 5px; }
.ph-head .mono { font-size: 8px; letter-spacing: .2em; color: var(--cream-60); }
.ph-map {
  flex: 1; position: relative;
  background:
    radial-gradient(circle at 30% 60%, rgba(198,232,108,.09), transparent 45%),
    repeating-linear-gradient(0deg, transparent 0 21px, rgba(242,240,232,.05) 21px 22px),
    repeating-linear-gradient(90deg, transparent 0 21px, rgba(242,240,232,.05) 21px 22px),
    var(--slate-2);
}
.ph-pin { position: absolute; width: 10px; height: 10px; border-radius: 50%; }
.ph-pin-a { left: 24%; top: 62%; background: var(--lime); box-shadow: 0 0 0 5px rgba(198,232,108,.2); }
.ph-pin-b { left: 72%; top: 22%; background: var(--cream); opacity: .6; }
.ph-driver {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  left: 24%; top: 62%;
  animation: ph-drive 6s ease-in-out infinite;
}
@keyframes ph-drive {
  0%, 12% { left: 24%; top: 62%; }
  55%, 62% { left: 52%; top: 38%; }
  90%, 100% { left: 72%; top: 22%; }
}
.ph-card {
  background: var(--night); padding: 14px 16px 18px;
  border-top: 1px solid var(--hairline);
}
.ph-label { font-size: 7.5px; letter-spacing: .18em; color: var(--lime); margin-bottom: 6px; }
.ph-quote { font-family: var(--f-display); font-weight: 800; font-size: 24px; letter-spacing: -.02em; margin-bottom: 10px; }
.ph-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--night);
  border-radius: 999px; padding: 9px 14px;
  font-size: 8px; letter-spacing: .16em; font-weight: 600;
}

/* hero dual CTA */
.hero-ctas { display: flex; align-items: center; gap: 18px; margin-top: clamp(18px, 3vh, 32px); flex-wrap: wrap; }
.hero-ctas .tk-cta { margin-top: 0; }
.ghost-cta {
  font-size: 9.5px; letter-spacing: .16em; color: var(--cream-60);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 4px;
  transition: color .3s ease, border-color .3s ease;
}
.ghost-cta:hover { color: var(--lime); border-color: var(--lime); }

/* new-chapter responsive */
@media (max-width: 900px) {
  .journey-grid, .app-grid { grid-template-columns: 1fr; }
  .journey-stage { min-height: 300px; }
  .trust-grid { grid-template-columns: 1fr; }
  .specimen-grid { grid-template-columns: 1fr; }
  .what-row { grid-template-columns: 44px 1fr; }
  .what-icon { width: 40px; height: 40px; }
  .what-eta { grid-column: 2; text-align: left; }
  .room-pad[data-room-num]::before { font-size: clamp(120px, 40vw, 240px); }
  .drive-cta { display: none; }
  .index-nav { display: none; }
  .phone-wrap { order: -1; }
  .voice-card { width: 270px; }
}
body.shot .j-step, body.shot .what-row, body.shot .trust-tile, body.shot .wi-chev { transition-duration: .001s !important; }

/* ── iteration pass 1 ── */
/* kinetic icons idle: the chevron breathes even before hover */
@keyframes chev-idle { 0%, 72%, 100% { transform: translateX(0); } 82% { transform: translateX(6px); } }
.what-row .wi-chev { animation: chev-idle 4.6s var(--ease-out) infinite; }
.what-row:nth-child(2) .wi-chev { animation-delay: .7s; }
.what-row:nth-child(3) .wi-chev { animation-delay: 1.4s; }
.what-row:nth-child(4) .wi-chev { animation-delay: 2.1s; }
.what-row:nth-child(5) .wi-chev { animation-delay: 2.8s; }
.what-row:hover .wi-chev { animation: none; transform: translateX(7px); }
.wi-body { stroke-width: 2.4; }

/* journey: taller stage + visible auto-advance progress on the active step */
.journey-stage { min-height: 440px; }
.j-step { position: relative; overflow: hidden; }
.j-step.on::after {
  content: ''; position: absolute; left: 0; bottom: -1px; height: 2px;
  background: var(--lime); width: 100%;
  transform-origin: left; transform: scaleX(0);
  animation: j-progress 4.2s linear forwards;
}
@keyframes j-progress { to { transform: scaleX(1); } }

/* app phone: dashed route on the mini map */
.ph-map::after {
  content: ''; position: absolute;
  left: 26%; top: 24%; width: 48%; height: 40%;
  border: 1.5px dashed rgba(198,232,108,.5);
  border-left: none; border-bottom: none;
  border-top-right-radius: 60% 45%;
}

/* ── iteration pass 2 ── */
.match-feed {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: clamp(16px, 2.4vh, 26px);
  font-size: 9px; letter-spacing: .16em; color: var(--cream-60);
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 8px 14px;
}
.match-feed #match-feed-text { transition: opacity .35s ease; }
.mf-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex: none;
  animation: live-blink 1.6s steps(2) infinite;
}
.chev-down { transform: rotate(90deg); }
a:hover .chev-down { transform: rotate(90deg) translateX(3px); }

.trust-stat {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(38px, 3.6vw, 56px); letter-spacing: -.03em;
  color: var(--lime); line-height: 1;
}
.trust-stat em {
  font-style: normal; font-family: var(--f-mono); font-weight: 400;
  font-size: 10px; letter-spacing: .16em; color: var(--cream-35);
  margin-left: 8px;
}
.voice-card { transition: transform .4s var(--ease-out), border-color .4s ease; }
.voice-card:hover { transform: translateY(-3px); border-color: rgba(198,232,108,.4); }

/* ═══════════════ 02 · CHOOSE YOUR MOVERLY ═══════════════ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.4vw, 22px);
}
.tier-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 7px;
  text-align: left;
  background: linear-gradient(170deg, var(--panel), var(--night) 85%);
  border: 1px solid var(--hairline);
  padding: clamp(16px, 1.6vw, 26px) clamp(14px, 1.4vw, 22px);
  color: var(--cream);
  transition: border-color .4s ease, transform .4s var(--ease-out), background .4s ease;
  position: relative; overflow: hidden;
}
.tier-card:hover { transform: translateY(-4px); border-color: rgba(242,240,232,.35); }
.tier-card.on { border-color: var(--lime); }
.tier-card.on::after {
  content: 'SELECTED';
  position: absolute; top: 10px; right: 12px;
  font-family: var(--f-mono); font-size: 7.5px; letter-spacing: .18em;
  color: var(--night); background: var(--lime);
  padding: 3px 8px; border-radius: 999px;
}
.tier-art { width: 100%; max-width: 150px; height: auto; margin-bottom: 4px; }
.tier-art .wi-body { stroke-width: 2.2; }
.tier-card.on .tier-art .wi-body { stroke: var(--cream); }
.tier-name {
  font-family: var(--f-display); font-weight: 780;
  font-size: clamp(18px, 1.8vw, 26px); letter-spacing: -.02em;
}
.tier-desc { font-size: 12px; color: var(--cream-60); line-height: 1.45; min-height: 2.6em; }
.tier-meta { font-size: 8px; letter-spacing: .14em; color: var(--cream-35); }
.tier-price { font-size: 9.5px; letter-spacing: .14em; color: var(--lime); font-weight: 500; }
.tier-note { margin-top: 22px; font-size: 9px; letter-spacing: .16em; color: var(--cream-35); text-align: center; }

/* ═══════════════ mini · FOR MARKETPLACE SELLERS ═══════════════ */
.sellers-band {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(160deg, var(--panel), var(--night) 75%);
  padding: clamp(56px, 9vh, 110px) var(--gutter);
}
.sellers-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(220px, 3fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
}
.sellers-title {
  font-family: var(--f-display); font-weight: 780;
  font-size: clamp(26px, 3.4vw, 52px); letter-spacing: -.025em; line-height: 1.05;
  margin: 16px 0 14px;
}
.sellers-title em { font-style: italic; color: var(--lime); }
.sellers-lede { color: var(--cream-60); font-size: clamp(13px, 1.2vw, 16px); line-height: 1.65; max-width: 52ch; }
.paste-box {
  margin-top: 22px;
  border: 1px dashed rgba(198,232,108,.45);
  background: rgba(15,20,27,.5);
  padding: 18px 20px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  max-width: 720px;
}
#paste-text {
  flex: 1; min-width: 260px;
  font-family: var(--f-mono); font-size: 12px; line-height: 1.7;
  color: var(--lime-soft);
}
.paste-btn { margin-top: 0; flex: none; }
.sellers-hooks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.sellers-qr { text-align: center; }
.sellers-qr img {
  width: min(190px, 44vw); image-rendering: pixelated;
  border-radius: 14px; border: 6px solid var(--cream);
  background: var(--cream); display: inline-block;
}
.sellers-qr figcaption { margin-top: 12px; font-size: 8.5px; letter-spacing: .18em; color: var(--cream-35); line-height: 1.9; }

/* ═══════════════ 08 · DRIVE WITH MOVERLY ═══════════════ */
.drive-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(360px, 6fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.drive-props { display: flex; flex-direction: column; }
.drive-props li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: clamp(14px, 2.2vh, 22px) 4px;
  border-top: 1px solid var(--hairline);
}
.drive-props .chev { margin-top: 7px; flex: none; }
.drive-props h3 {
  font-family: var(--f-display); font-weight: 740;
  font-size: clamp(16px, 1.6vw, 22px); letter-spacing: -.015em; margin-bottom: 3px;
}
.drive-props p { font-size: 13px; color: var(--cream-60); line-height: 1.55; max-width: 46ch; }
.drive-reqs { margin-top: 26px; border: 1px solid var(--hairline); padding: 20px 22px; }
.drive-reqs h4 { font-size: 9px; letter-spacing: .2em; color: var(--lime); margin-bottom: 12px; }
.drive-reqs ul { display: flex; flex-direction: column; gap: 8px; }
.drive-reqs li { font-size: 9px; letter-spacing: .12em; color: var(--cream-60); }
.drive-reqs li::before { content: '▸ '; color: var(--lime); }
.drive-card { width: 100%; }
.drive-fields { display: flex; flex-direction: column; gap: clamp(12px, 1.7vh, 20px); }
.drive-fields[hidden] { display: none; }
.drive-done { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; padding: clamp(10px, 2vh, 26px) 0; }
.drive-done[hidden] { display: none; }
.est-select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 49%, var(--lime) 50%, var(--lime) 60%, transparent 61%),
                    linear-gradient(-45deg, transparent 49%, var(--lime) 50%, var(--lime) 60%, transparent 61%);
  background-position: calc(100% - 14px) 55%, calc(100% - 8px) 55%;
  background-size: 7px 7px;
  background-repeat: no-repeat;
  cursor: inherit;
}
.est-select option { background: var(--night); color: var(--cream); }

/* ═══════════════ mini · SERVICE AREA (metro grid) ═══════════════ */
.metro-band { padding: clamp(56px, 9vh, 110px) var(--gutter); border-top: 1px solid var(--hairline); }
.metro-head { max-width: 60ch; margin-bottom: clamp(28px, 4vh, 48px); }
.metro-head .sellers-title { margin: 14px 0 10px; }
.metro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.metro-grid a {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--night);
  padding: clamp(16px, 1.8vw, 26px);
  transition: background .35s ease;
}
.metro-grid a:hover { background: var(--panel); }
.metro-grid b {
  font-family: var(--f-display); font-weight: 740;
  font-size: clamp(15px, 1.5vw, 21px); letter-spacing: -.015em;
}
.metro-grid .mono { font-size: 8px; letter-spacing: .16em; color: var(--cream-35); }
.metro-grid a:hover .mono { color: var(--lime); }

/* voice price chips */
.voice-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.voice-price {
  font-size: 9px; letter-spacing: .1em; font-weight: 500;
  color: var(--night); background: var(--cream);
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.voice-payout { background: var(--lime); }

/* responsive for the new sections */
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .sellers-grid, .drive-grid { grid-template-columns: 1fr; }
  .metro-grid { grid-template-columns: repeat(2, 1fr); }
  .sellers-qr { order: -1; }
}
body.shot .tier-card, body.shot .metro-grid a, body.shot .drive-props li { transition-duration: .001s !important; }
.colo-drive { color: var(--lime); }

/* ═══════════════ 05 · THE MARK (3D showpiece) ═══════════════ */
#room-mark { height: 110vh; min-height: 700px; overflow: hidden; background: #0b1016; position: relative; }
#mark-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.relic-overlay {
  position: absolute; inset: 0; pointer-events: none;
  padding: clamp(80px, 12vh, 140px) var(--gutter);
  display: flex; flex-direction: column; justify-content: space-between;
}
.relic-head { text-align: center; }
.relic-head .room-index { margin-bottom: 12px; }
.relic-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8.4vw, 128px);
  font-weight: 800; line-height: .95;
  letter-spacing: -.03em;
  mix-blend-mode: difference;
}
.relic-annotations .ann {
  position: absolute; color: var(--cream-35); font-size: 9px; letter-spacing: .18em;
  font-family: var(--f-mono);
}
.ann-tl { top: 34%; left: var(--gutter); }
.ann-tr { top: 34%; right: var(--gutter); text-align: right; }
.ann-bl { bottom: 24%; left: var(--gutter); }
.ann-br { bottom: 24%; right: var(--gutter); text-align: right; color: var(--lime); }
.relic-caption {
  max-width: 52ch; margin: 0 auto; text-align: center;
  color: var(--cream-60); font-size: clamp(13px, 1.2vw, 16px); line-height: 1.7;
}

/* ═══════════════ 07 · LEXICON (typographic) ═══════════════ */
#room-lexicon { background: var(--panel); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.wave-line {
  text-align: center;
  padding: clamp(26px, 4.5vh, 54px) 0 clamp(52px, 8vh, 96px);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: clamp(36px, 5.5vh, 72px);
}
#wave-text {
  font-family: var(--f-display);
  font-size: clamp(24px, 4.1vw, 60px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.1;
  white-space: nowrap;
}
#wave-text .wchar { display: inline-block; }
.lex-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: clamp(13px, 2.2vh, 24px) 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left .6s var(--ease-out);
}
.lex-row:hover { padding-left: clamp(12px, 2vw, 36px); }
.lex-word {
  font-family: var(--f-display);
  font-size: clamp(38px, 6.4vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.025em;
  color: transparent;
  -webkit-text-stroke: 1px var(--cream-35);
  transition: color .5s ease, -webkit-text-stroke-color .5s ease;
}
.lex-row:hover .lex-word {
  color: var(--lime);
  -webkit-text-stroke: 1px transparent;
}
.lex-def { color: var(--cream-35); font-size: 10px; letter-spacing: .1em; text-align: right; transition: color .5s ease; font-family: var(--f-mono); }
.lex-row:hover .lex-def { color: var(--cream); }

/* chapter transition: the head rule draws in as the chapter reveals */
.room-head { border-bottom: none; }
.room-head::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: linear-gradient(90deg, var(--lime), var(--hairline) 40%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s var(--ease-expo) .15s;
}
.room-head:has(.in-view)::after { transform: scaleX(1); }

@media (max-width: 900px) {
  #wave-text { white-space: normal; font-size: clamp(20px, 6.6vw, 38px); }
  .relic-annotations .ann-tl, .relic-annotations .ann-tr { display: none; }
}
body.shot .lex-row, body.shot .lex-word, body.shot .lex-def,
body.shot .room-head::after { transition-duration: .001s !important; transition-delay: 0s !important; }

/* ── Lugg-aligned pricing pass ── */
.est-tier-rate { color: var(--lime) !important; font-weight: 500; }
.tk-anchors {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 10px;
  font-size: 7.5px; letter-spacing: .14em; color: var(--cream-35);
}
.tier-grid { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1200px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }

/* FAQ band */
.faq-band {
  padding: clamp(56px, 9vh, 110px) var(--gutter);
  border-top: 1px solid var(--hairline);
  background: linear-gradient(160deg, var(--panel), var(--night) 70%);
}
.faq-list { max-width: 860px; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  display: flex; align-items: center; gap: 14px;
  list-style: none; cursor: inherit;
  padding: clamp(15px, 2.2vh, 22px) 4px;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(15px, 1.5vw, 20px); letter-spacing: -.015em;
  color: var(--cream-60);
  transition: color .3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform .35s var(--ease-out); }
.faq-item[open] summary { color: var(--cream); }
.faq-item[open] summary .chev { transform: rotate(90deg); }
.faq-item:hover summary { color: var(--cream); }
.faq-item p {
  padding: 0 4px clamp(16px, 2.2vh, 24px) 35px;
  font-size: 13.5px; line-height: 1.65; color: var(--cream-60);
  max-width: 62ch;
}
body.shot .faq-item summary .chev { transition-duration: .001s !important; }

/* ═══════ clone-and-beat pass ═══════ */

/* hero DFW proof line + geo chip */
.hero-dfw {
  margin-top: 14px; font-size: 8.5px; letter-spacing: .14em;
  color: var(--lime); opacity: .85; max-width: 60ch; line-height: 2;
}
.chip-geo { border-style: dashed; color: var(--lime); }

/* service panels: right-side stack */
.what-row { grid-template-columns: 64px minmax(0, 1fr) auto; }
.what-side { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.what-tier { font-size: 8px; letter-spacing: .16em; color: var(--cream-35); }
.what-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 8.5px; letter-spacing: .16em; color: var(--cream-60);
  border-bottom: 1px solid var(--hairline); padding-bottom: 3px;
  transition: color .3s ease, border-color .3s ease;
}
.what-row:hover .what-cta { color: var(--lime); border-color: var(--lime); }

/* compare band */
.compare-band {
  padding: clamp(56px, 9vh, 110px) var(--gutter);
  border-top: 1px solid var(--hairline);
}
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 32px);
  max-width: 1060px;
}
.cmp-col { border: 1px solid var(--hairline); padding: clamp(22px, 2.4vw, 36px); }
.cmp-old { opacity: .75; background: var(--night); }
.cmp-new {
  background: linear-gradient(170deg, var(--panel), var(--night) 85%);
  border-color: rgba(198,232,108,.4);
  position: relative; overflow: hidden;
}
.cmp-new::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--lime), transparent 70%);
}
.cmp-head { font-size: 9px; letter-spacing: .2em; color: var(--cream-35); margin-bottom: 18px; }
.cmp-new .cmp-head { color: var(--lime); }
.cmp-col ul { display: flex; flex-direction: column; }
.cmp-col li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 11px 0; border-top: 1px solid var(--hairline);
  font-size: 13.5px; color: var(--cream-60); line-height: 1.5;
}
.cmp-new li { color: var(--cream); }
.cmp-new li .chev { flex: none; transform: translateY(1px); }
.cmp-x { color: var(--steel); font-weight: 700; flex: none; width: 12px; }
.cmp-new .tk-cta { margin-top: 20px; }

/* retailers band */
.retailer-band {
  padding: clamp(56px, 9vh, 110px) var(--gutter);
  border-top: 1px solid var(--hairline);
  background: linear-gradient(200deg, var(--panel), var(--night) 70%);
}
.retailer-points { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.retailer-points li { display: flex; align-items: baseline; gap: 10px; font-size: 8.5px; letter-spacing: .14em; color: var(--cream-60); }
.retailer-points .chev { flex: none; transform: translateY(1px); }
.retailer-card { max-width: 520px; justify-self: end; width: 100%; }
.retailer-fields { display: flex; flex-direction: column; gap: clamp(12px, 1.7vh, 20px); }
.retailer-fields[hidden] { display: none; }

/* the 45 promise */
.promise-strip {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 44px);
  border: 1px solid rgba(198,232,108,.45);
  background: linear-gradient(90deg, rgba(198,232,108,.08), transparent 60%);
  padding: clamp(18px, 2.2vw, 30px) clamp(20px, 2.4vw, 36px);
  margin-bottom: clamp(20px, 2.5vw, 40px);
  position: relative; overflow: hidden;
}
.promise-clock {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(34px, 3.6vw, 56px); letter-spacing: -.03em;
  color: var(--lime); white-space: nowrap; line-height: 1;
}
.promise-clock .mono { font-size: .5em; vertical-align: .35em; margin-right: 2px; }
.promise-copy h3 {
  font-family: var(--f-display); font-weight: 760;
  font-size: clamp(17px, 1.8vw, 25px); letter-spacing: -.02em; margin-bottom: 4px;
}
.promise-copy p { font-size: 12.5px; color: var(--cream-60); line-height: 1.55; max-width: 52ch; }
.promise-tag {
  margin-left: auto; font-size: 8px; letter-spacing: .18em; color: var(--night);
  background: var(--lime); border-radius: 999px; padding: 7px 13px; white-space: nowrap;
}

/* badge row */
.badge-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: clamp(20px, 2.5vw, 36px);
}
.badge-cell {
  font-size: 8px; letter-spacing: .16em; color: var(--cream-35);
  border: 1px solid var(--hairline); border-radius: 8px;
  padding: 10px 16px;
}

/* driver earnings widget */
.earn-widget {
  margin-top: 22px;
  border: 1px solid rgba(198,232,108,.4);
  background: linear-gradient(170deg, var(--panel), var(--night) 85%);
  padding: clamp(18px, 2vw, 28px);
}
.earn-widget .est-label b { color: var(--lime); }
.earn-widget .est-slider { width: 100%; margin: 14px 0 16px; }
.earn-out { display: flex; flex-direction: column; gap: 8px; }
.earn-range {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(30px, 3vw, 46px); letter-spacing: -.025em; line-height: 1;
}
.earn-note { font-size: 8px; letter-spacing: .14em; color: var(--cream-35); line-height: 1.9; }

/* phone: rotating app screens */
.ph-slides { flex: 1; position: relative; }
.ph-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 12px;
  padding: 8px 16px 18px;
  opacity: 0;
  animation: ph-cycle 16s infinite;
}
.ph-slide:nth-child(1) { animation-delay: 0s; }
.ph-slide:nth-child(2) { animation-delay: 4s; }
.ph-slide:nth-child(3) { animation-delay: 8s; }
.ph-slide:nth-child(4) { animation-delay: 12s; }
@keyframes ph-cycle {
  0%, 22% { opacity: 1; }
  27%, 95% { opacity: 0; }
  100% { opacity: 1; }
}
.ph-slide .ph-map { flex: 1; border-radius: 10px; position: relative; }
.ph-tier {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--hairline); border-radius: 10px;
  padding: 11px 13px;
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
}
.ph-tier .mono { font-size: 7px; letter-spacing: .12em; color: var(--cream-35); }
.ph-tier.on { border-color: var(--lime); background: rgba(198,232,108,.08); }
.ph-driver-card {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--hairline); border-radius: 12px; padding: 12px 14px;
}
.ph-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--lime); color: var(--night);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.ph-driver-card b { display: block; font-size: 13px; }
.ph-driver-card .mono { font-size: 7px; letter-spacing: .12em; color: var(--cream-35); }
.ph-chevs { display: flex; gap: 10px; padding: 12px 2px; }
.ph-chevs .chev { border-left-width: 12px; border-top-width: 8px; border-bottom-width: 8px; }
.ph-tipline { font-size: 7px; letter-spacing: .12em; color: var(--cream-60); }
.ph-slide .ph-cta { margin-top: auto; align-self: flex-start; }
.ph-slide .ph-quote { margin: 0; }
.ph-dots {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 2;
}
.ph-dots span { width: 4px; height: 4px; border-radius: 50%; background: var(--cream-35); animation: dot-cycle 16s infinite; }
.ph-dots span:nth-child(1) { animation-delay: 0s; }
.ph-dots span:nth-child(2) { animation-delay: 4s; }
.ph-dots span:nth-child(3) { animation-delay: 8s; }
.ph-dots span:nth-child(4) { animation-delay: 12s; }
@keyframes dot-cycle { 0%, 24% { background: var(--lime); } 26%, 100% { background: var(--cream-35); } }

@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
  .promise-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .promise-tag { margin-left: 0; }
  .what-side { align-items: flex-start; grid-column: 2; }
  .retailer-card { justify-self: stretch; }
}
