/* SPOT — marketing site styles (v3 · "The Night Editorial")
   Brand source of truth: BRAND.md. Fonts: Fraunces (editorial serif — display, signature
   italic, wordmark) + Geist (UI, labels, body). The v3 look treats the page like a printed
   magazine about a night out: an editorial masthead, numbered sections, asymmetric layouts,
   a fine film grain, and Fraunces set the way a typographer would set it (real optical size).
   Palette + the purple-dusk surface stay the locked v2 tokens. */

:root {
  /* Core palette (BRAND.md §02) */
  --ink: #1E1F28;
  --cream: #F5F0E8;
  --purple: #7B6CF6;
  --purpletext: #5B4FCF;
  --lavender: #A89DF8;
  --mist: #ECEAFF;
  /* Cool family — live/now/secondary, used sparingly */
  --bluetext: #1E50C8;
  --blueaccent: #3D6EF5;
  --bluemist: #E7EDFF;
  /* Working tones */
  --muted: #c9c5d4;
  --dim: #8b8799;
  --faint: #7d7a8a;
  --line: rgba(245, 240, 232, 0.12);
  --line-strong: rgba(245, 240, 232, 0.22);
  --panel: rgba(20, 20, 26, 0.5);
  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Geist", -apple-system, system-ui, "Segoe UI", sans-serif;
  /* The app-wide purple-dusk gradient surface */
  --surface: linear-gradient(155deg, #2A2450 0%, #1F1D2B 46%, #131019 100%);
  --nav-h: 60px;
  /* Editorial rhythm */
  --gutter: 24px;
  --measure: 1180px;
}

/* Fraunces optical-size presets — used as font-variation-settings so display type gets the
   high-contrast editorial cut and body-adjacent serif stays soft. */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--cream);
  background: var(--surface) fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip (not hidden) prevents a horizontal scrollbar without making <body> a scroll
     container — which would break the scroll-driven view() timelines (the plate twist). */
  overflow-x: clip;
}

/* Film grain — the single biggest "made by a human" signal, and it fits the nightlife mood.
   An inline SVG turbulence tile (allowed by the CSP's img-src data:). Sits above everything,
   never intercepts clicks, low enough opacity that text stays crisp. */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
@media (prefers-reduced-motion: reduce) { body::after { opacity: 0.035; } }

a { color: var(--lavender); text-decoration: none; }
a:hover { color: var(--cream); }
img { max-width: 100%; display: block; }
::selection { background: rgba(123, 108, 246, 0.42); color: #fff; }

/* ---- Shared bits ---------------------------------------------------------- */

.container { width: 100%; max-width: var(--measure); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lavender);
}

/* Section kicker — the "01 — HOW IT WORKS" magazine-contents marker. */
.kicker {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim);
}
.kicker .n { color: var(--lavender); font-variant-numeric: tabular-nums; }
.kicker .n::after {
  content: ""; display: inline-block; width: 26px; height: 1px;
  background: var(--line-strong); margin: 0 2px 3px 12px; vertical-align: middle;
}

.wordmark {
  font-family: var(--serif); font-weight: 900; letter-spacing: 0.5px;
  font-variation-settings: "opsz" 40, "SOFT" 0, "WONK" 0;
}
.signature {
  font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--lavender);
  font-variation-settings: "opsz" 80, "SOFT" 40;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  border: none; border-radius: 12px; padding: 14px 22px; cursor: pointer;
  white-space: nowrap; transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 10px 28px rgba(123, 108, 246, 0.38); }
.btn-primary:hover { background: #8a7cf8; color: #fff; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .6; cursor: default; transform: none; }
.btn-ghost { background: rgba(245, 240, 232, 0.06); color: var(--cream); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--lavender); color: var(--cream); transform: translateY(-1px); }

/* App Store badge (coming soon — not a live link yet) */
.appstore {
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(245, 240, 232, 0.06); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 18px; color: var(--cream);
}
.appstore svg { width: 22px; height: 22px; flex: none; }
.appstore > span { display: flex; flex-direction: column; }
.appstore .small { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); line-height: 1.2; }
.appstore .big { display: block; font-family: var(--serif); font-weight: 700; font-size: 17px; line-height: 1.1; font-variation-settings: "opsz" 36; }

/* ---- Masthead / nav ------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(19, 16, 25, 0.68);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.nav-brand svg { width: 20px; }
.nav-brand .wordmark { font-size: 21px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--sans); font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.nav-links a.navlink { position: relative; padding-bottom: 3px; }
/* underline that wipes in on hover — a small, purposeful micro-interaction */
.nav-links a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--lavender); transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.nav-links a.navlink:hover { color: var(--cream); }
.nav-links a.navlink:hover::after { transform: scaleX(1); }
.nav-links .btn { padding: 8px 16px; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 10px; }
@media (max-width: 720px) { .nav-links a.navlink { display: none; } }

/* ---- Editorial section frame --------------------------------------------- */

section { scroll-margin-top: calc(var(--nav-h) + 12px); }
.edition { padding: 96px 0; position: relative; }
.edition + .edition { padding-top: 0; }

/* A two-column editorial header: kicker + rule on the left rail, title + standfirst on the
   right. Replaces the old always-centered section-head — alignment now varies with intent. */
.head { display: grid; grid-template-columns: 200px 1fr; gap: 24px 40px; align-items: start; margin-bottom: 56px; }
.head .rail { padding-top: 8px; }
.head h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(32px, 5.2vw, 54px); line-height: 1.02; letter-spacing: -0.015em;
  font-variation-settings: "opsz" 120, "SOFT" 0, "WONK" 0;
  max-width: 15ch;
}
.head .standfirst { color: var(--muted); font-size: 18px; margin-top: 18px; max-width: 46ch; }
@media (max-width: 780px) {
  .head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
  .head .rail { padding-top: 0; }
}

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

.hero { position: relative; overflow: hidden; padding: 76px 0 60px; }
/* A single low directional light instead of the old stack of AI radial glows. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(70% 55% at 82% 8%, rgba(123, 108, 246, 0.26), transparent 66%),
    radial-gradient(46% 40% at 10% 92%, rgba(61, 110, 245, 0.14), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
/* Asymmetric: copy hangs wide on the left grid line, the product plate sits narrow + offset. */
.hero-grid { display: grid; grid-template-columns: 1.14fr 0.86fr; gap: 40px; align-items: center; }

.hero-index {
  display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
  font-family: var(--sans); font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim);
}
.hero-index .rule { flex: 1; height: 1px; background: var(--line); max-width: 120px; }
.hero-index .mark { color: var(--lavender); }

.hero-copy .signature { font-size: clamp(21px, 3.6vw, 30px); display: block; margin-bottom: 14px; }
.hero h1 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(42px, 6.6vw, 72px); line-height: 0.98; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  margin: 4px 0 22px; max-width: 13ch;
}
.hero h1 .soft { color: var(--lavender); }
.hero .lede { color: var(--muted); font-size: clamp(16px, 2.1vw, 19px); max-width: 46ch; margin-bottom: 30px; }
.hero .fineprint { color: var(--dim); font-size: 13px; margin-top: 14px; letter-spacing: 0.01em; }

/* Waitlist form */
.waitlist { display: flex; gap: 10px; max-width: 440px; }
.waitlist input[type="email"] {
  flex: 1; min-width: 0;
  font-family: var(--sans); font-size: 15px; color: var(--cream);
  background: rgba(20, 20, 26, 0.55); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.waitlist input[type="email"]::placeholder { color: var(--dim); }
.waitlist input[type="email"]:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(123, 108, 246, 0.18); }
.waitlist .thanks { display: none; }
.waitlist.done input, .waitlist.done .btn { display: none; }
.waitlist.done .thanks {
  display: block; font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--lavender);
  font-variation-settings: "opsz" 60, "SOFT" 50;
}

/* ---- The product "plate" (phone mockup, restaged as a magazine clipping) --- */

.plate { display: flex; flex-direction: column; align-items: center; gap: 16px; }
/* The plate's rotation is driven by /twist.js — a rAF-throttled scroll handler that sets
   --twist so the phone (and its ring) turn as you scroll. Works in every browser, and the
   script opts out under prefers-reduced-motion, leaving the static tilt below as the default. */
.plate-frame { position: relative; transform: rotate(var(--twist, -2.2deg)); will-change: transform; }
/* a hand-drawn purple ring, the "designer's mark", tucked behind the plate — twists with it */
.plate-frame::before {
  content: ""; position: absolute; inset: -26px -30px -34px -22px; z-index: -1;
  border: 1.5px solid rgba(168, 157, 248, 0.35); border-radius: 52% 48% 45% 55% / 48% 52% 48% 52%;
  transform: rotate(4deg);
}
.plate-cap {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em; color: var(--dim);
  text-align: center; max-width: 30ch;
}
.plate-cap b { color: var(--lavender); font-weight: 600; }

/* True iPhone 17 Pro Max proportions: body 163.4×78mm (2.095:1), display 2868×1320
   (2.173:1). The body wraps the display with a thin uniform bezel; the screen holds a
   fixed aspect-ratio and clips its content like a real screenshot (the trip runs past
   the fold). */
.phone {
  position: relative; width: 246px; max-width: 76vw;
  border-radius: 42px; padding: 9px;
  background: linear-gradient(180deg, #84848c, #5c5c64);  /* titanium band */
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.5), inset 0 0 0 3px #0a0a0c;
}
.phone-screen {
  border-radius: 33px; overflow: hidden; background: var(--surface);
  box-shadow: 0 0 0 4px #0a0a0c;
}
.phone-notch {
  width: 74px; height: 21px; background: #060608; border-radius: 999px;
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.scr-top { display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 18px; }
.scr-top svg { width: 14px; display: block; margin-top: -2px; }
.scr-top .city { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lavender); }
.scr-title { font-family: var(--serif); font-weight: 900; font-size: 26px; line-height: 1.1; margin-bottom: 4px; font-variation-settings: "opsz" 72; }
.scr-sub { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--lavender); margin-bottom: 20px; font-variation-settings: "opsz" 40, "SOFT" 50; }
.stop {
  background: rgba(245, 240, 232, 0.05); border: 1px solid var(--line);
  border-radius: 15px; padding: 13px 14px; margin-bottom: 11px;
}
.stop-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.stop-time { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; color: var(--muted); }
.stop-kind { font-family: var(--sans); font-weight: 600; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lavender); background: rgba(123, 108, 246, 0.16); border: 1px solid rgba(123, 108, 246, 0.3); border-radius: 20px; padding: 3px 9px; }
.stop-title { font-family: var(--serif); font-weight: 700; font-size: 17px; margin: 5px 0 4px; font-variation-settings: "opsz" 40; }
.stop-note { font-size: 12px; line-height: 1.45; color: var(--muted); }
.taste-badge { display: inline-flex; align-items: center; gap: 5px; margin-top: 9px; font-family: var(--sans); font-weight: 600; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); }
.taste-badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--purple); }

/* ---- Wanderlust trip screen (the detailed hero phone) --------------------- */

.phone-screen.wl { padding: 0; aspect-ratio: 1320 / 2868; }
.wl-bar { display: flex; align-items: center; justify-content: space-between; padding: 40px 13px 9px; }
.wl-place { display: flex; align-items: center; gap: 7px; font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lavender); }
.wl-place svg { width: 12px; display: block; margin-top: -2px; }
.wl-meta { font-family: var(--sans); font-weight: 500; font-size: 10px; letter-spacing: 0.06em; color: var(--dim); }

.wl-hero { position: relative; height: 120px; margin: 0 11px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.wl-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.wl-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,12,22,0) 28%, rgba(15,12,22,0.88) 100%); }
.wl-hero-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; }
.wl-kicker { font-family: var(--sans); font-weight: 600; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); }
.wl-title { font-family: var(--serif); font-weight: 900; font-size: 18px; line-height: 1.05; margin-top: 3px; color: #fff; font-variation-settings: "opsz" 60; }

.wl-days { display: flex; align-items: center; gap: 6px; padding: 11px 13px 5px; }
.wl-day { font-family: var(--sans); font-weight: 600; font-size: 10.5px; letter-spacing: 0.03em; color: var(--dim); padding: 5px 11px; border-radius: 20px; border: 1px solid var(--line); }
.wl-day.on { color: var(--cream); background: rgba(123, 108, 246, 0.18); border-color: rgba(123, 108, 246, 0.4); }
.wl-weather { margin-left: auto; font-family: var(--sans); font-weight: 500; font-size: 10px; letter-spacing: 0.05em; color: var(--muted); }

.wl-timeline { padding: 7px 13px 0; }
.wl-stop { display: grid; grid-template-columns: 12px 1fr; gap: 11px; }
.wl-rail { display: flex; justify-content: center; padding-top: 13px; }
.wl-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 3px rgba(123, 108, 246, 0.22); }
.wl-card { background: rgba(245, 240, 232, 0.05); border: 1px solid var(--line); border-radius: 13px; padding: 10px 12px; }
.wl-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.wl-time { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }
.wl-kind { font-family: var(--sans); font-weight: 600; font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lavender); background: rgba(123, 108, 246, 0.16); border: 1px solid rgba(123, 108, 246, 0.3); border-radius: 20px; padding: 3px 8px; }
.wl-name { font-family: var(--serif); font-weight: 700; font-size: 16px; margin: 4px 0 3px; font-variation-settings: "opsz" 40; }
.wl-note { font-size: 11.5px; line-height: 1.42; color: var(--muted); }
.wl-badge { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-family: var(--sans); font-weight: 600; font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); }
.wl-badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--purple); }
.wl-leg { padding: 6px 0 6px 22px; font-family: var(--sans); font-weight: 500; font-size: 10px; letter-spacing: 0.02em; color: var(--dim); }
.wl-leg .wl-legicon { font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lavender); margin-right: 6px; }

.wl-actions { display: flex; gap: 8px; padding: 14px 15px 8px; }
.wl-btn { flex: 1; text-align: center; font-family: var(--sans); font-weight: 600; font-size: 12px; padding: 11px 0; border-radius: 12px; background: var(--purple); color: #fff; }
.wl-btn.ghost { background: rgba(245, 240, 232, 0.06); color: var(--cream); border: 1px solid var(--line); }

/* ---- Marquee band ("I know a SPOT in ___") -------------------------------- */

.marquee {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0; background: rgba(10, 9, 14, 0.28);
}
.marquee-track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-weight: 900; font-variation-settings: "opsz" 90, "WONK" 1;
  font-size: clamp(24px, 4vw, 40px); line-height: 1; color: var(--cream);
  padding: 0 34px; white-space: nowrap; letter-spacing: -0.01em;
}
.marquee-track span.ghost { color: transparent; -webkit-text-stroke: 1px var(--line-strong); }
.marquee-track .dot { color: var(--purple); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: none; }
  .marquee { overflow-x: auto; }
}

/* ---- 01 · How it works — editorial numbered list -------------------------- */

.steps { border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px 40px; align-items: start;
  padding: 34px 0; border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.step:hover { background: rgba(245, 240, 232, 0.02); }
.step-num {
  font-family: var(--serif); font-weight: 900; font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: clamp(56px, 8vw, 88px); line-height: 0.8; color: var(--lavender);
  opacity: 0.9; letter-spacing: -0.03em;
}
.step-body { max-width: 52ch; }
.step h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 3vw, 28px); margin-bottom: 10px; font-variation-settings: "opsz" 60; }
.step p { color: var(--muted); font-size: 16px; }
@media (max-width: 780px) {
  .step { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .step-num { font-size: 54px; }
}

/* ---- 02 · City plates ----------------------------------------------------- */

.cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
/* staggered vertical offsets break the rigid three-equal-cards grid */
.cities .city-card:nth-child(2) { margin-top: 40px; }
.cities .city-card:nth-child(3) { margin-top: 14px; }
.city-card { position: relative; }
.city-plate {
  position: relative; aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line-strong); isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  transition: transform .35s ease, box-shadow .35s ease;
}
.city-card:hover .city-plate { transform: translateY(-6px); box-shadow: 0 34px 64px rgba(0,0,0,0.45); }
.city-plate .neon { position: absolute; inset: 0; z-index: 0; }
.city-plate img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.02); }
.city-plate .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,12,22,0) 40%, rgba(15,12,22,0.85) 100%); }
.city-plate .label { position: relative; z-index: 2; padding: 18px; }
.city-plate .label .eyebrow { color: var(--mist); }
.city-plate .label .name { font-family: var(--serif); font-weight: 900; font-size: clamp(24px, 3vw, 30px); line-height: 1.02; margin-top: 4px; color: #fff; font-variation-settings: "opsz" 72; }
/* magazine plate caption: index no. + place, under the image */
.city-cap {
  display: flex; align-items: baseline; gap: 10px; margin-top: 12px;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; color: var(--dim);
}
.city-cap .no { color: var(--lavender); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.city-cap .rule { flex: 1; height: 1px; background: var(--line); }
.neon-nyc { background: radial-gradient(120% 90% at 20% 10%, #ff4d8d 0%, transparent 45%), radial-gradient(120% 90% at 90% 20%, #3d6ef5 0%, transparent 50%), linear-gradient(160deg, #7B6CF6, #1E1F28); }
.neon-tokyo { background: radial-gradient(120% 90% at 80% 12%, #ff5ea3 0%, transparent 46%), radial-gradient(110% 90% at 10% 30%, #3d6ef5 0%, transparent 48%), linear-gradient(160deg, #5B4FCF, #131019); }
.neon-vegas { background: radial-gradient(120% 90% at 30% 12%, #ffb14d 0%, transparent 44%), radial-gradient(120% 90% at 85% 30%, #7B6CF6 0%, transparent 50%), linear-gradient(160deg, #1E50C8, #1E1F28); }

/* ---- 03 · Why SPOT — editorial list (not a 6-up icon grid) ---------------- */

.reasons { border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
.reason {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start;
  padding: 30px 8px 30px 0; border-bottom: 1px solid var(--line);
  position: relative; transition: padding-left .25s ease;
}
/* left column stays single on the 2-col grid's odd/even by natural flow; the divider between
   columns is drawn with a vertical rule */
.reasons { position: relative; }
.reasons::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--line);
}
.reason:hover { padding-left: 8px; }
.reason .rno {
  font-family: var(--serif); font-weight: 900; font-variation-settings: "opsz" 40, "WONK" 1;
  font-size: 15px; color: var(--lavender); line-height: 1.7; letter-spacing: 0.02em;
}
.reason .ic { width: 30px; height: 30px; color: var(--lavender); margin: 2px 0 0 -2px; }
.reason .rbody h3 { font-family: var(--serif); font-weight: 700; font-size: 21px; margin-bottom: 7px; font-variation-settings: "opsz" 48; }
.reason .rbody p { color: var(--muted); font-size: 15px; max-width: 40ch; }
.reason .rhead { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.reason .rhead h3 { margin: 0; }
@media (max-width: 780px) {
  .reasons { grid-template-columns: 1fr; }
  .reasons::before { display: none; }
}

/* ---- Pull quote interstitial ---------------------------------------------- */

.pull { padding: 20px 0 96px; }
.pull blockquote {
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-size: clamp(34px, 6.4vw, 78px); line-height: 1.0; letter-spacing: -0.02em;
  color: var(--cream); max-width: 18ch;
}
.pull blockquote .accent { color: var(--lavender); }
.pull .attrib { margin-top: 22px; font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); display: flex; align-items: center; gap: 14px; }
.pull .attrib .rule { width: 48px; height: 1px; background: var(--line-strong); }

/* ---- Closing CTA — the back cover ----------------------------------------- */

.cta { position: relative; overflow: hidden; padding: 0 0 100px; }
.cta-inner { border-top: 1px solid var(--line-strong); padding: 76px 0 0; position: relative; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(56% 60% at 50% 24%, rgba(123, 108, 246, 0.22), transparent 72%);
}
.cta .container { position: relative; z-index: 1; text-align: center; }
.cta .kicker { justify-content: center; margin-bottom: 22px; }
.cta h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(36px, 7vw, 74px); line-height: 0.98; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  max-width: 16ch; margin: 0 auto;
}
.cta h2 .you { color: var(--lavender); }
.cta .signature { font-size: clamp(20px, 3.2vw, 26px); display: block; margin-top: 18px; }
.cta .waitlist { margin: 36px auto 0; }
.cta .ctarow { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.cta .ctahint { margin-top: 12px; color: var(--dim); font-size: 13px; }

/* ---- Footer — the colophon ------------------------------------------------ */

/* Flex (not grid) so the same rule serves both the home page's two-group colophon footer
   and the legal pages' three-child footer (brand · links · copy) without regressions. */
.footer { border-top: 1px solid var(--line); padding: 44px 0 52px; }
.footer .container { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand svg { width: 20px; }
.footer-brand .wordmark { font-size: 19px; }
.footer-colophon { margin-top: 14px; max-width: 34ch; color: var(--faint); font-size: 12.5px; line-height: 1.7; }
.footer-colophon .set { color: var(--dim); }
.footer-right { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; letter-spacing: 0.08em; color: var(--dim); }
.footer-links a:hover { color: var(--cream); }
.footer .copy { color: var(--faint); font-size: 12.5px; letter-spacing: 0.04em; }
@media (max-width: 600px) {
  .footer .container { flex-direction: column; }
}

/* ---- Legal pages (privacy / eula / support) — shared, preserved ----------- */

.legal { max-width: 720px; margin: 0 auto; padding: 60px 24px 76px; }
.legal h1 { font-family: var(--serif); font-weight: 900; font-size: clamp(32px, 7vw, 46px); margin-bottom: 6px; font-variation-settings: "opsz" 144; letter-spacing: -0.015em; }
.legal .updated { color: var(--dim); font-size: 14px; margin-bottom: 24px; font-style: italic; }
.legal .lede { color: var(--muted); font-size: 17px; margin: 18px 0; }
.legal h2 { font-family: var(--serif); font-weight: 700; font-size: 23px; color: var(--lavender); margin: 38px 0 10px; font-variation-settings: "opsz" 48; }
.legal h3 { font-family: var(--serif); font-weight: 700; font-size: 18px; margin: 24px 0 6px; font-variation-settings: "opsz" 36; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; }
.legal p { margin: 10px 0; }
.legal ul { margin: 8px 0 8px 22px; }
.legal li { margin: 7px 0; }
.legal strong { color: var(--cream); font-weight: 600; }

/* ---- Scroll reveal (progressive, motion-safe) ----------------------------- */
/* Default: everything visible. Only when the browser supports scroll-driven animations AND
   the user hasn't asked to reduce motion do we fade sections up. Content can never get stuck
   hidden on unsupported browsers. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal { animation: reveal-up linear both; animation-timeline: view(); animation-range: entry 2% cover 22%; }
    @keyframes reveal-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  }
}

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

@media (max-width: 860px) {
  .hero { padding: 56px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: left; }
  .plate { margin: 0 auto; }
  .cities { grid-template-columns: 1fr 1fr; }
  .cities .city-card:nth-child(2), .cities .city-card:nth-child(3) { margin-top: 0; }
}
@media (max-width: 560px) {
  .edition { padding: 64px 0; }
  .waitlist { flex-direction: column; }
  .cities { grid-template-columns: 1fr; }
  .head h2 { font-size: clamp(30px, 9vw, 40px); }
}

/* ===== Footer menus: consistent labeled columns across every app page ===== */
.footer-lead { max-width: 340px; }
.footer-menu { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-menu h4 { font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin: 0 0 3px; }
.footer-menu a { font-size: 12px; letter-spacing: 0.06em; color: var(--dim); }
.footer-menu a:hover, .footer-menu a[aria-current="page"] { color: var(--cream); }
.footer-bottom { flex-basis: 100%; border-top: 1px solid var(--line); margin-top: 20px; padding-top: 18px; }

/* ===== Legibility sweep: balanced display type, no orphaned words ===== */
h1, h2, h3, .lede, .lead, .colophon, .footer-colophon, blockquote, .pull, .pullquote { text-wrap: balance; }
p, li { text-wrap: pretty; }
