/* ==========================================================================
   travltime — MARKETING DESIGN SYSTEM  ·  "GOLDEN HOUR / INK"
   Responsive, conversion-focused web. Tokens lifted 1:1 from the app
   (mockups/assets/travltime.css) — same palette, fonts, orb, grain, motifs —
   re-scaled for a full-width editorial landing site (not a 390px phone).
   --------------------------------------------------------------------------
   Fonts (link in <head>): Fraunces (display), Hanken Grotesk (ui), Space Mono (mono)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1 · RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg, video, picture { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--sun-1); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(247,181,56,.28); color: var(--paper); }

/* --------------------------------------------------------------------------
   2 · ROOT TOKENS  (mirrors the app design system, +web-scale additions)
   -------------------------------------------------------------------------- */
:root {
  /* — ink base / surfaces — */
  --ink-900:#14110E;
  --ink-850:#191410;
  --ink-800:#1E1813;
  --ink-700:#272019;
  --ink-600:#322A21;

  /* — paper / text — */
  --paper:#F6EEE1;
  --paper-dim:#CBBFAE;
  --muted:#938678;

  /* — hairlines — */
  --line: rgba(246,238,225,0.12);
  --line-2: rgba(246,238,225,0.06);
  --line-strong: rgba(246,238,225,0.22);

  /* — sun (primary accent) — */
  --sun-1:#F7B538;
  --sun-2:#ED6A36;
  --sun: linear-gradient(135deg, var(--sun-1), var(--sun-2));
  --sun-soft: linear-gradient(135deg, rgba(247,181,56,.16), rgba(237,106,54,.16));
  --ember:#ED6A36;

  /* — jade (route / accents / distance) — */
  --jade:#5FB39C;
  --jade-dim: rgba(95,179,156,0.18);

  /* — fonts — */
  --font-display:"Fraunces", Georgia, "Times New Roman", serif;
  --font-ui:"Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono:"Space Mono", ui-monospace, "SF Mono", monospace;

  /* — fluid type scale (clamp: mobile → desktop) — */
  --fs-kicker: 0.72rem;
  --fs-body:   clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-lead:   clamp(1.125rem, 1.02rem + 0.55vw, 1.375rem);
  --fs-h3:     clamp(1.3rem, 1.15rem + 0.8vw, 1.75rem);
  --fs-h2:     clamp(2rem, 1.45rem + 2.6vw, 3.5rem);
  --fs-h1:     clamp(2.75rem, 1.7rem + 4.6vw, 5.5rem);

  /* — spacing scale — */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px; --sp-5: 20px;
  --sp-6: 24px; --sp-7: 32px; --sp-8: 40px; --sp-9: 56px; --sp-10: 72px;
  --sp-11: 96px; --sp-12: 128px;

  /* — section rhythm (fluid) — */
  --section-y: clamp(64px, 4vw + 40px, 128px);

  /* — layout — */
  --container: 1180px;
  --container-narrow: 760px;

  /* — radius — */
  --r-chip: 999px;
  --r-btn: 15px;
  --r-field: 16px;
  --r-card: 22px;
  --r-lg: 24px;
  --r-xl: 30px;

  /* — shadows (warm-tinted) — */
  --sh-soft: 0 8px 24px rgba(20,17,14,.5);
  --sh-card: 0 14px 40px rgba(20,17,14,.55);
  --sh-pop: 0 24px 70px rgba(20,17,14,.62);
  --sh-sun: 0 10px 30px rgba(237,106,54,.4), 0 2px 8px rgba(247,181,56,.3);

  /* — orb default — */
  --orb-size: 120px;
}

/* --------------------------------------------------------------------------
   3 · BASE BODY  + grain overlay + atmospheric golden wash
   -------------------------------------------------------------------------- */
html, body { background: var(--ink-900); }
body {
  position: relative;
  min-height: 100%;
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  font-weight: 400;
  overflow-x: hidden;
  isolation: isolate;
}

/* film grain — fixed SVG fractal-noise overlay, on top of everything but inert */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* soft golden-hour atmospheric wash anchored to the top of the page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(70% 42% at 82% -6%, rgba(247,181,56,.10), transparent 60%),
    radial-gradient(60% 38% at -8% 8%, rgba(237,106,54,.07), transparent 58%);
}

/* --------------------------------------------------------------------------
   4 · LAYOUT  · container · grid · section
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  position: relative;
  padding-block: var(--section-y);
}
.section--tight { padding-block: clamp(48px, 3vw + 28px, 88px); }
.section--alt { background: var(--ink-850); }
.section--hair { border-top: 1px solid var(--line-2); }

/* responsive auto-fit grid (cards/features) */
.grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

/* a two-column editorial split (text + visual) */
.split {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left  { grid-template-columns: 1.15fr 0.85fr; }
  .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
}

/* generic stack helpers */
.stack    { display: flex; flex-direction: column; }
.stack-2  { display: flex; flex-direction: column; gap: var(--sp-2); }
.stack-3  { display: flex; flex-direction: column; gap: var(--sp-3); }
.stack-4  { display: flex; flex-direction: column; gap: var(--sp-4); }
.stack-5  { display: flex; flex-direction: column; gap: var(--sp-5); }
.stack-6  { display: flex; flex-direction: column; gap: var(--sp-6); }
.row      { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); }
.center   { text-align: center; }
.measure  { max-width: 62ch; }
.measure-sm { max-width: 46ch; }
.mx-auto  { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5 · TYPOGRAPHY
   -------------------------------------------------------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: var(--fs-kicker);
  font-weight: 700;
  color: var(--ember);
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--sun);
  border-radius: 2px;
}
.kicker--bare::before { display: none; }
.kicker--muted { color: var(--muted); }
.kicker--muted::before { background: var(--line-strong); }
.kicker--center { justify-content: center; }

.h1, .h2, .h3, .display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-wrap: balance;
}
.h1 { font-size: var(--fs-h1); line-height: 1.0; letter-spacing: -0.03em; }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); line-height: 1.1; letter-spacing: -0.015em; }

/* ember italic editorial flourish — the signature "time" / accent word */
.h1 em, .h2 em, .h3 em, .display em, .ink-accent {
  font-style: italic;
  font-weight: 400;
  background: var(--sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-family: var(--font-ui);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.5;
  color: var(--paper-dim);
  text-wrap: pretty;
}
.body { color: var(--paper-dim); line-height: 1.65; }
.coord, .mono { font-family: var(--font-mono); letter-spacing: .02em; }
.coord { font-size: 0.78rem; color: var(--paper-dim); }
.muted { color: var(--muted); }
.dim   { color: var(--paper-dim); }
.sun-text {
  background: var(--sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   6 · WORDMARK
   -------------------------------------------------------------------------- */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
}
.wordmark em {
  font-style: italic;
  font-weight: 400;
  background: var(--sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wordmark--lg { font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem); }

/* --------------------------------------------------------------------------
   7 · NAV  (sticky · blur · wordmark + links + CTA + mobile toggle)
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20,17,14,.72);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled {
  background: rgba(20,17,14,.86);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: 72px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}
.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--paper-dim);
  transition: color .18s ease;
}
.nav__links a:hover { color: var(--paper); }
.nav__cta { display: flex; align-items: center; gap: var(--sp-4); }

/* mobile hamburger toggle */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(246,238,225,.02);
  color: var(--paper);
  place-items: center;
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .ico-close { display: none; }
.nav.is-open .nav__toggle .ico-menu  { display: none; }
.nav.is-open .nav__toggle .ico-close { display: block; }

@media (max-width: 860px) {
  .nav__toggle { display: grid; }
  /* mobile menu panel */
  .nav__menu {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-4) clamp(20px, 5vw, 40px) var(--sp-7);
    background: rgba(20,17,14,.97);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-pop);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav.is-open .nav__menu { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav__links a {
    padding: var(--sp-4) var(--sp-1);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line-2);
  }
  .nav__cta { flex-direction: column; align-items: stretch; margin-top: var(--sp-4); }
  .nav__cta .btn { width: 100%; }
}
/* combined nav__menu wrapper holds links + cta on desktop inline */
.nav__menu { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }

/* --------------------------------------------------------------------------
   8 · BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 26px;
  border-radius: var(--r-btn);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  color: var(--paper);
  white-space: nowrap;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease, background .2s ease, border-color .2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }
.btn:active { transform: translateY(1px) scale(.985); }

.btn-sun {
  background: var(--sun);
  color: var(--ink-900);
  font-weight: 700;
  box-shadow: var(--sh-sun);
}
.btn-sun::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.28), transparent 45%);
  pointer-events: none;
}
.btn-sun:hover {
  box-shadow: 0 16px 42px rgba(237,106,54,.5), 0 3px 10px rgba(247,181,56,.4);
  transform: translateY(-2px);
}
.btn-sun:active { transform: translateY(1px) scale(.985); box-shadow: var(--sh-sun); }

.btn-ghost {
  background: rgba(246,238,225,.02);
  border: 1px solid var(--line);
  color: var(--paper);
}
.btn-ghost:hover { background: rgba(246,238,225,.06); border-color: var(--line-strong); transform: translateY(-2px); }

.btn--lg { height: 60px; padding: 0 32px; font-size: 1.0625rem; }
.btn--sm { height: 44px; font-size: 0.9rem; padding: 0 18px; border-radius: 13px; }
.btn--block { width: 100%; }

/* round icon button */
.iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(246,238,225,.02);
  color: var(--paper);
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.iconbtn svg { width: 20px; height: 20px; }
.iconbtn:hover { background: rgba(246,238,225,.06); border-color: var(--line-strong); }
.iconbtn:active { transform: scale(.94); }

/* --------------------------------------------------------------------------
   9 · CHIPS  ·  PILLS  ·  META
   -------------------------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--r-chip);
  border: 1px solid var(--line);
  background: rgba(246,238,225,.025);
  color: var(--paper-dim);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: all .18s ease;
}
.chip svg { width: 15px; height: 15px; }
.chip:hover { border-color: var(--line-strong); color: var(--paper); }
.chip--active {
  background: var(--sun-soft);
  border-color: rgba(247,181,56,.55);
  color: var(--paper);
  box-shadow: 0 4px 14px rgba(237,106,54,.18);
}
.chip--active svg { color: var(--sun-1); }
.chip--mono { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: .04em; }

/* jade instrument meta (distance / time / stops) */
.chip-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  border-radius: var(--r-chip);
  border: 1px solid var(--jade-dim);
  background: var(--jade-dim);
  color: var(--jade);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: .03em;
}
.chip-meta svg { width: 13px; height: 13px; }

.chip-wrap { display: flex; flex-wrap: wrap; gap: 9px; }

/* eyebrow status pill (e.g. "Now in private beta") */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 36px;
  padding: 0 16px 0 12px;
  border-radius: var(--r-chip);
  border: 1px solid var(--line);
  background: rgba(246,238,225,.025);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 0 rgba(95,179,156,.5);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(95,179,156,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(95,179,156,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,179,156,0); }
}

/* --------------------------------------------------------------------------
   10 · APP-STORE BADGES  (.badge)
   -------------------------------------------------------------------------- */
.badge-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  height: 54px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(246,238,225,.025);
  color: var(--paper);
  transition: border-color .2s ease, background .2s ease, transform .18s ease;
}
.badge:hover { border-color: var(--line-strong); background: rgba(246,238,225,.05); transform: translateY(-2px); }
.badge svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--paper); }
.badge__txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.badge__small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.badge__big { font-family: var(--font-ui); font-weight: 600; font-size: 1rem; }

/* --------------------------------------------------------------------------
   11 · CARD  ·  FEATURE  ·  STEP
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  overflow: hidden;
}
.card--pad { padding: clamp(20px, 2.4vw, 32px); }
.card--glass {
  background: rgba(39,32,25,.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.card--interactive { transition: transform .22s cubic-bezier(.2,.7,.2,1), border-color .22s ease, box-shadow .22s ease; }
.card--interactive:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--sh-pop); }

/* sun-accented featured card (pricing recommended, etc.) */
.card--featured {
  border-color: rgba(247,181,56,.5);
  box-shadow: 0 0 0 1px rgba(247,181,56,.25), var(--sh-pop);
}
.card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--sun);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .55;
}

/* feature tile */
.feature {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: clamp(22px, 2.4vw, 30px);
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: transform .22s cubic-bezier(.2,.7,.2,1), border-color .22s ease, background .22s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--ink-700); }
.feature__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.feature__body { color: var(--paper-dim); line-height: 1.6; }

/* icon coin — sun-tinted glyph badge */
.icoin {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--sun-soft);
  border: 1px solid rgba(247,181,56,.3);
  color: var(--sun-1);
  flex: 0 0 auto;
}
.icoin svg { width: 24px; height: 24px; }
.icoin--jade { background: var(--jade-dim); border-color: rgba(95,179,156,.35); color: var(--jade); }
.icoin--lg { width: 60px; height: 60px; border-radius: 18px; }
.icoin--lg svg { width: 28px; height: 28px; }

/* step (how-it-works) */
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: clamp(24px, 2.6vw, 34px);
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}
.step__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: .14em;
  color: var(--ember);
}
.step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: 1.1;
  color: var(--paper);
}
.step__body { color: var(--paper-dim); line-height: 1.6; }

/* a check list (pricing / features) */
.checklist { display: flex; flex-direction: column; gap: var(--sp-3); }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--paper-dim); }
.checklist svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--jade); margin-top: 2px; }
.checklist .x svg { color: var(--muted); }

/* --------------------------------------------------------------------------
   12 · PHOTO — duotone treatment (grayscale + sun multiply + ink scrim)
   <figure class="photo" style="aspect-ratio:4/3">
     <img src="https://picsum.photos/seed/SEED/1200/800?grayscale" alt="...">
     <span class="photo__sun"></span>
     <span class="photo__scrim"></span>
     <figcaption class="photo__body"> ... </figcaption>
   </figure>
   -------------------------------------------------------------------------- */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--ink-800);
  isolation: isolate;
  aspect-ratio: 4 / 3;
}
.photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03) brightness(.9);
  z-index: 0;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.photo--zoom:hover > img { transform: scale(1.05); }
.photo__sun {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--sun);
  mix-blend-mode: multiply;
  opacity: .5;
  pointer-events: none;
}
.photo__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, var(--ink-900) 2%, rgba(20,17,14,.35) 38%, transparent 72%);
  pointer-events: none;
}
.photo__scrim--full {
  background: linear-gradient(to top, rgba(20,17,14,.85), rgba(20,17,14,.25) 55%, rgba(20,17,14,.4));
}
.photo__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: clamp(18px, 2vw, 26px);
}
.photo__top {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 3;
  padding: clamp(16px, 1.8vw, 22px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-3);
}
.photo__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 0.9rem + 1vw, 1.6rem);
  letter-spacing: -.01em;
  color: var(--paper);
  line-height: 1.05;
}
.photo__kicker {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sun-1);
}

/* --------------------------------------------------------------------------
   13 · THE ORB — golden-hour sun guide (radial + bloom + pulse rings)
   <div class="orb"><div class="orb__core"></div><span class="orb__ring"></span><span class="orb__ring"></span></div>
   -------------------------------------------------------------------------- */
.orb {
  position: relative;
  width: var(--orb-size);
  height: var(--orb-size);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.orb__core {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 36% 32%, #FFE7A8 0%, var(--sun-1) 34%, var(--sun-2) 78%, #C9471F 100%);
  box-shadow:
    inset 0 2px 10px rgba(255,255,255,.4),
    inset 0 -10px 24px rgba(160,55,20,.45),
    0 0 calc(var(--orb-size) * .5) rgba(247,181,56,.55),
    0 0 calc(var(--orb-size) * .9) rgba(237,106,54,.35);
  animation: orb-breathe 4.4s ease-in-out infinite;
}
.orb__core svg { width: 38%; height: 38%; color: var(--ink-900); }
.orb::before {
  content: "";
  position: absolute;
  inset: calc(var(--orb-size) * -.42);
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,181,56,.4) 0%, rgba(237,106,54,.16) 40%, transparent 68%);
  filter: blur(2px);
  animation: orb-breathe 4.4s ease-in-out infinite;
}
.orb__ring {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(247,181,56,.5);
  animation: orb-pulse 3s ease-out infinite;
}
.orb__ring:nth-child(3) { animation-delay: 1.5s; }

@keyframes orb-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* --------------------------------------------------------------------------
   14 · ROUTE THREAD  ·  NODES  (vertical itinerary, reused on sample-tour)
   -------------------------------------------------------------------------- */
.route { position: relative; }
.route__line {
  position: absolute;
  left: 18px; top: 10px; bottom: 10px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--jade) 0 6px, transparent 6px 12px);
  opacity: .5;
}
.node {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--paper);
  background: var(--ink-700);
  border: 1.5px solid var(--line);
}
.node--active {
  background: var(--sun);
  color: var(--ink-900);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(237,106,54,.4);
}
.node--done {
  background: var(--jade-dim);
  border-color: rgba(95,179,156,.5);
  color: var(--jade);
}

/* --------------------------------------------------------------------------
   15 · INK MAP container (reusable for inline-SVG route maps)
   -------------------------------------------------------------------------- */
.map {
  position: relative;
  width: 100%;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--ink-850);
  border: 1px solid var(--line);
}
.map svg { width: 100%; height: 100%; display: block; }

/* --------------------------------------------------------------------------
   16 · CHAT / ASSISTANT bubbles (voice-chat section, app-styled)
   -------------------------------------------------------------------------- */
.ask {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 0.95rem + 1vw, 1.6rem);
  line-height: 1.25;
  color: var(--paper);
}
.answer {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 6px;
  padding: var(--sp-5);
  box-shadow: var(--sh-card);
}
.answer__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: var(--sp-3);
}
.answer__meta svg { width: 13px; height: 13px; }

/* --------------------------------------------------------------------------
   17 · FAQ accordion (details/summary)
   -------------------------------------------------------------------------- */
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: clamp(18px, 2vw, 26px) 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: 1.2;
  color: var(--paper);
  transition: color .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sun-1); }
.faq summary .faq__plus {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--sun-1);
  transition: transform .25s ease, border-color .2s ease;
}
.faq details[open] summary .faq__plus { transform: rotate(45deg); border-color: rgba(247,181,56,.5); }
.faq__answer {
  padding: 0 0 clamp(18px, 2vw, 26px);
  max-width: 64ch;
  color: var(--paper-dim);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   18 · FORMS  (waitlist email capture)
   -------------------------------------------------------------------------- */
.field {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 0 8px 0 18px;
  border-radius: var(--r-field);
  border: 1px solid var(--line);
  background: var(--ink-800);
  box-shadow: inset 0 1px 0 rgba(246,238,225,.03), var(--sh-soft);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field:focus-within {
  border-color: rgba(247,181,56,.4);
  box-shadow: inset 0 1px 0 rgba(246,238,225,.03), 0 0 0 3px rgba(247,181,56,.1);
}
.field__icon { color: var(--muted); flex: 0 0 auto; display: grid; place-items: center; }
.field__icon svg { width: 20px; height: 20px; }
.field input {
  flex: 1;
  height: 100%;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--paper);
}
.field input::placeholder { color: var(--muted); }

/* inline waitlist form — input + button side by side, wraps on mobile */
.waitlist {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.waitlist .field { flex: 1 1 260px; }
.waitlist .btn { flex: 0 0 auto; }
@media (max-width: 480px) { .waitlist .btn { width: 100%; } }
.waitlist__note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: .04em;
  color: var(--muted);
}
.waitlist.is-done .field, .waitlist.is-done .btn { display: none; }
.waitlist__success {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--jade);
  font-weight: 500;
}
.waitlist__success svg { width: 22px; height: 22px; color: var(--jade); }
.waitlist.is-done .waitlist__success { display: inline-flex; }

/* --------------------------------------------------------------------------
   19 · MARQUEE  (city names — anywhere/coverage band)
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  white-space: nowrap;
  will-change: transform;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  letter-spacing: -0.01em;
  color: var(--paper-dim);
}
.marquee__item .dot { color: var(--ember); padding: 0 .15em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* --------------------------------------------------------------------------
   20 · STAT / FIGURE
   -------------------------------------------------------------------------- */
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.stat__num em {
  font-style: italic; font-weight: 400;
  background: var(--sun); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* hairline divider */
.rule { height: 1px; background: var(--line); border: 0; width: 100%; }

/* --------------------------------------------------------------------------
   21 · FOOTER
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-850);
  padding-block: clamp(48px, 5vw, 80px) var(--sp-8);
}
.footer__grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-4);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a { color: var(--paper-dim); transition: color .18s ease; }
.footer__links a:hover { color: var(--paper); }
.footer__bottom {
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); letter-spacing: .03em; }
.footer__social { display: flex; gap: var(--sp-2); }

/* --------------------------------------------------------------------------
   22 · MOTION  ·  load reveal + scroll reveal
   -------------------------------------------------------------------------- */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* on-load staggered reveal (hero) */
.stagger > * { opacity: 0; animation: reveal-up .8s cubic-bezier(.2,.7,.2,1) forwards; }
.stagger > *:nth-child(1) { animation-delay: .06s; }
.stagger > *:nth-child(2) { animation-delay: .16s; }
.stagger > *:nth-child(3) { animation-delay: .26s; }
.stagger > *:nth-child(4) { animation-delay: .36s; }
.stagger > *:nth-child(5) { animation-delay: .46s; }
.stagger > *:nth-child(6) { animation-delay: .56s; }
.stagger > *:nth-child(7) { animation-delay: .66s; }
.stagger > *:nth-child(8) { animation-delay: .76s; }

.rv { opacity: 0; animation: reveal-up .8s cubic-bezier(.2,.7,.2,1) forwards; }
.d1{animation-delay:.08s}.d2{animation-delay:.16s}.d3{animation-delay:.24s}
.d4{animation-delay:.32s}.d5{animation-delay:.40s}.d6{animation-delay:.48s}
.d7{animation-delay:.56s}.d8{animation-delay:.64s}.d9{animation-delay:.72s}

/* on-scroll reveal — JS adds .in when the element enters the viewport */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
/* stagger children of a revealed container */
.reveal-group.in > * { animation: reveal-up .8s cubic-bezier(.2,.7,.2,1) backwards; }
.reveal-group.in > *:nth-child(1){animation-delay:.04s}
.reveal-group.in > *:nth-child(2){animation-delay:.12s}
.reveal-group.in > *:nth-child(3){animation-delay:.20s}
.reveal-group.in > *:nth-child(4){animation-delay:.28s}
.reveal-group.in > *:nth-child(5){animation-delay:.36s}
.reveal-group.in > *:nth-child(6){animation-delay:.44s}

@media (prefers-reduced-motion: reduce) {
  .stagger > *, .rv,
  .reveal-group.in > * { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb__core, .orb::before, .orb__ring, .eyebrow .dot { animation: none; }
}

/* --------------------------------------------------------------------------
   23 · UTILITIES
   -------------------------------------------------------------------------- */
.hidden { display: none !important; }
.full   { width: 100%; }
.nowrap { white-space: nowrap; }
.relative { position: relative; }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-4{margin-top:var(--sp-4)} .mt-5{margin-top:var(--sp-5)} .mt-6{margin-top:var(--sp-6)}
.mt-7{margin-top:var(--sp-7)} .mt-8{margin-top:var(--sp-8)}
.mb-4{margin-bottom:var(--sp-4)} .mb-6{margin-bottom:var(--sp-6)} .mb-8{margin-bottom:var(--sp-8)}

/* section header block helper (kicker + h2 + lead, centered) */
.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 720px;
}
.section-head--center { margin-inline: auto; align-items: center; text-align: center; }
