/* ============================================================================
   WOOHOO — marketing site styles
   Design tokens are the single source of truth. Every colour below derives
   from a :root variable. No other hues.
   ========================================================================== */

:root {
  /* Surfaces */
  --ink: #0A0A0A;         /* background */
  --surface: #1A1A1A;     /* card surface */
  --surface-2: #202020;   /* raised chip surface (derived neutral, no new hue) */
  --line: #2A2A2A;        /* hairline */

  /* Brand */
  --lime: #C6FF3D;        /* primary */
  --orange: #FF7A00;      /* brand orange */
  --cream: #F5F5F0;       /* text */
  --muted: #999999;       /* muted text */

  /* Logo accents — small highlights only */
  --cyan: #00E5FF;
  --magenta: #FF2EE6;

  /* Category colours (venue pins) */
  --cat-1: #D97706;
  --cat-2: #EF4444;
  --cat-3: #A855F7;
  --cat-4: #14B8A6;
  --cat-5: #EC4899;
  --cat-6: #3B82F6;
  --cat-7: #84CC16;

  /* Seven activity-world colours (named aliases; same palette as the category tokens) */
  --food: #D97706;     /* Food & Drink */
  --active: #EF4444;   /* Active & Adventure */
  --arts: #A855F7;     /* Arts & Culture */
  --well: #14B8A6;     /* Wellness & Movement */
  --creative: #EC4899; /* Creative & Social */
  --games: #3B82F6;    /* Social Games & Entertainment */
  --outdoor: #84CC16;  /* Outdoor & Parks */

  /* Type */
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Inter Tight", system-ui, sans-serif;

  /* Geometry */
  --r-card: 24px;
  --r-md: 16px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-card: 0 30px 70px -30px rgba(0, 0, 0, 0.9), 0 2px 0 rgba(255, 255, 255, 0.03) inset;
}

/* ── Reset / base ────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
    border-color 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: #d4ff63; }

.btn-orange { background: var(--orange); color: var(--ink); }
.btn-orange:hover { background: color-mix(in srgb, var(--orange) 82%, var(--cream)); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--muted); background: rgba(255, 255, 255, 0.03); }

/* ── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  color: var(--muted);
  transition: color 0.15s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-cta { margin-left: 8px; padding: 10px 18px; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero { padding: 56px 24px 40px; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-logo { width: 220px; max-width: 60%; height: auto; margin-bottom: 26px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-title .line { display: block; }
.hl-lime { color: var(--lime); }
.hl-orange { color: var(--orange); }
.hl-meet { position: relative; color: var(--cream); display: inline-block; }
.hl-meet .swoosh {
  position: absolute;
  left: -2%;
  bottom: -0.28em;
  width: 104%;
  height: 0.4em;
  overflow: visible;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18.5px);
  max-width: 46ch;
  margin-bottom: 30px;
}

/* Intent chips */
.intent { margin-bottom: 30px; }
.intent-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--cream);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  cursor: pointer;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease),
    color 0.18s var(--ease), transform 0.18s var(--ease);
}
.chip:hover { transform: translateY(-2px); }

/* Active states — each intent uses its own accent */
.chip-friendly.is-active { border-color: var(--lime); background: rgba(198, 255, 61, 0.12); color: var(--lime); }
.chip-open.is-active { border-color: var(--cyan); background: rgba(0, 229, 255, 0.12); color: var(--cyan); }
.chip-romantic.is-active { border-color: var(--magenta); background: rgba(255, 46, 230, 0.12); color: var(--magenta); }

.intent-caption {
  margin-top: 14px;
  color: var(--cream);
  font-size: 15px;
  min-height: 1.5em;
}

/* CTA row */
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }

.launching {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14.5px;
}
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(198, 255, 61, 0.6);
  animation: pulse 1.8s var(--ease) infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(198, 255, 61, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(198, 255, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 255, 61, 0); }
}

/* ── MATCH CARD (right column) ───────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; }
.match-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 420 / 360;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.mm-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Overlays */
.mm-phase {
  position: absolute;
  top: 16px; left: 18px;
  z-index: 3;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

.mm-pill {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  opacity: 0;
  transform: scale(0.6) translateY(-4px);
  transform-origin: top right;
  pointer-events: none;
}
.mm-pill.show { animation: pill-in 0.5s var(--ease) forwards; }
.mm-pill.locked { background: var(--cream); }
.mm-pill-icon { display: inline-flex; }
@keyframes pill-in {
  0%   { opacity: 0; transform: scale(0.5) translateY(-6px); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

.mm-caption {
  position: absolute;
  bottom: 16px; left: 18px;
  z-index: 3;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--cream);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.mm-caption.show { opacity: 1; }
.mm-caption::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 7px;
  vertical-align: middle;
}

.mm-ftr {
  position: absolute;
  left: 50%; top: 46%;
  z-index: 3;
  transform: translate(-50%, 0);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--lime);
  opacity: 0;
  pointer-events: none;
}
.mm-ftr.show { animation: ftr-float 1.4s var(--ease) forwards; }
@keyframes ftr-float {
  0%   { opacity: 0; transform: translate(-50%, 6px); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -40px); }
}

/* SVG scene pieces */
.mm-map line { opacity: 0.5; }
.mm-blocks rect { opacity: 0.55; }
.mm-ambient circle { opacity: 0.28; }
.mm-path { opacity: 0; }                 /* revealed by JS during MATCH */
.mm-keen { opacity: 0; }                 /* popped by JS during KEEN */
.mm-keen.pop { animation: keen-pop 0.5s var(--ease) forwards; }
@keyframes keen-pop {
  0%   { opacity: 0; transform: translateY(6px) scale(0.4); }
  60%  { opacity: 1; transform: translateY(0) scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}
.mm-keen-txt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  fill: var(--lime);
}
#mm-tick { opacity: 0; }                 /* shown in VERIFIED */
#mm-tickring { opacity: 0; }
#mm-arc { opacity: 0; }

/* Ripple (spawned by JS) */
.mm-ripple { animation: ripple 0.9s var(--ease) forwards; transform-box: fill-box; transform-origin: center; }
@keyframes ripple {
  0%   { opacity: 0.6; transform: scale(0.3); }
  100% { opacity: 0; transform: scale(3.4); }
}

/* ── ACTIVITY TICKER ─────────────────────────────────────────────────── */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  padding: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.ticker-group {
  display: flex;
  list-style: none;
  align-items: center;
}
.ticker-group li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--muted);
  padding: 20px 34px;
  white-space: nowrap;
  position: relative;
}
.ticker-group li::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--line);
  transform: translateY(-50%);
}
.ticker-group li b { font-weight: 700; color: var(--cat-1); }
.ticker-group li:hover { color: var(--cream); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 56px 0 32px; }
.footer-inner {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px;
  padding-bottom: 34px; border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 14px; }
.footer-tagline { color: var(--muted); font-size: 14.5px; max-width: 30ch; }
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.footer-col h4 {
  font-family: var(--font-body); font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: block; color: var(--cream); font-size: 14.5px;
  margin-bottom: 9px; transition: color 0.15s var(--ease);
}
.footer-col a:hover { color: var(--lime); }
.footer-legal {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding-top: 22px;
}
.footer-copy { color: var(--muted); font-size: 12.5px; }
.footer-legal-links { color: var(--muted); font-size: 12.5px; }
.footer-legal-links a { transition: color 0.15s var(--ease); }
.footer-legal-links a:hover { color: var(--cream); }

/* ── Screen-reader-only helper ───────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .match-card { max-width: 460px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .hero { padding: 36px 20px 32px; }
  .hero-logo { width: 168px; }
  .ticker-group li { font-size: 15px; padding: 16px 24px; }
}

@media (max-width: 400px) {
  .hero-cta .btn { flex: 1 1 auto; }
}

/* ── REDUCED MOTION ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; transform: translateX(0); }
  .pulse-dot { animation: none; }
  .btn:hover, .chip:hover { transform: none; }
  /* Match loop is disabled in JS; static VERIFIED state is rendered instead. */
  .mm-ripple, .mm-keen.pop, .mm-pill.show, .mm-ftr.show { animation: none; }
}

/* ============================================================================
   SECTIONS — How it works / Intent / Follow-through
   (appended; nav, hero, match card and ticker above are untouched)
   Colours derive only from the :root tokens (color-mix for token-based tints).
   ========================================================================== */

/* ── Shared layout & headers ─────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section[id], .anchor-alias { scroll-margin-top: 78px; }
.anchor-alias { display: block; height: 0; }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-lime { color: var(--lime); }
.eyebrow-magenta { color: var(--magenta); }
.eyebrow-orange { color: var(--orange); }
.eyebrow-cyan { color: var(--cyan); }
.sec-h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.08;
  letter-spacing: -0.02em; color: var(--cream); margin-bottom: 14px;
}
.sec-sub { color: var(--muted); font-size: clamp(15px, 1.5vw, 18px); max-width: 60ch; margin: 0 auto; }
.sec-sub-tight { margin: 0 0 22px; }

/* ── Reveal-on-scroll utility ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Accent helper (each block declares its accent once) ─────────────── */
.accent-lime { --accent: var(--lime); }
.accent-orange { --accent: var(--orange); }
.accent-cyan { --accent: var(--cyan); }
.accent-magenta { --accent: var(--magenta); }

/* ── Shared phone frame ──────────────────────────────────────────────── */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(300px, 72vw);
  aspect-ratio: 9 / 19.5;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 8px;                 /* ink bezel */
  box-shadow:
    0 30px 60px -26px rgba(0, 0, 0, 0.9),
    0 0 60px -18px color-mix(in srgb, var(--accent, var(--lime)) 45%, transparent);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  transform: rotate(2.5deg);
}
.phone-tilt-b { transform: rotate(-2.5deg); }
.phone:hover { transform: rotate(0deg) translateY(-8px); }
.phone-cam {
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: color-mix(in srgb, var(--cream) 20%, transparent);
  z-index: 4;
}
.screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 28px; overflow: hidden; background: var(--ink);
  box-shadow: inset 0 0 40px 8px rgba(0, 0, 0, 0.55);   /* vignette */
  font-family: var(--font-body);
}

/* miniature UI atoms (shared) */
.mini-btn {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  border-radius: var(--r-pill); padding: 7px 10px; text-align: center;
}
.mini-btn-lime { background: var(--lime); color: var(--ink); }
.mini-btn-orange { background: var(--orange); color: var(--ink); }
.mini-btn-ghost { border: 1px solid var(--line); color: var(--cream); }
.mini-chip {
  font-size: 8.5px; font-weight: 500; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 2px 8px; white-space: nowrap;
}
.mini-h { font-family: var(--font-display); font-weight: 700; color: var(--cream); font-size: 15px; text-align: center; }

/* screen: MAP */
.screen-map {
  background:
    repeating-linear-gradient(0deg, transparent 0 27px, color-mix(in srgb, var(--line) 70%, transparent) 27px 28px),
    repeating-linear-gradient(90deg, transparent 0 27px, color-mix(in srgb, var(--line) 70%, transparent) 27px 28px),
    var(--ink);
}
.map-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; transform: translate(-50%, -50%); }
.map-dot-live::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--orange); animation: ring-pulse 1.8s var(--ease) infinite;
}
@keyframes ring-pulse { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }
.mini-sheet {
  position: absolute; left: 8px; right: 8px; bottom: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 9px;
}
.mini-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.mini-thumb {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--surface-2), color-mix(in srgb, var(--orange) 30%, var(--surface)));
}
.mini-titles { display: flex; flex-direction: column; line-height: 1.25; }
.mini-titles b { font-size: 11px; color: var(--cream); }
.mini-titles i { font-size: 8.5px; color: var(--muted); font-style: normal; }
.mini-chips { display: flex; gap: 5px; margin-bottom: 9px; }

/* screen: MATCH */
.screen-match { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; padding: 16px; }
.match-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--orange) 30%, transparent), transparent 62%); }
.mini-avatars { display: flex; position: relative; z-index: 1; }
.mini-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--cream);
  background: var(--surface-2);
}
.ring-lime { border: 2.5px solid var(--lime); }
.ring-magenta { border: 2.5px solid var(--magenta); margin-left: -12px; }
.mini-chip-ctr { position: relative; z-index: 1; }
.mini-btns { display: flex; gap: 7px; position: relative; z-index: 1; margin-top: 4px; }

/* screen: PLAN */
.screen-plan { display: grid; place-items: center; padding: 14px; }
.mini-card { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px; text-align: center; }
.mini-card-title { font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--cream); display: block; margin-bottom: 10px; }
.mini-days { display: flex; gap: 5px; justify-content: center; margin-bottom: 8px; }
.mini-day { font-size: 9px; color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px 9px; }
.mini-day.is-sel { background: var(--lime); color: var(--ink); border-color: var(--lime); font-weight: 600; }
.mini-time { font-size: 10px; color: var(--cream); display: block; margin-bottom: 8px; }
.mini-count { margin-bottom: 10px; }
.mini-count i { display: block; font-size: 8px; color: var(--muted); font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; }
.mini-count b { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--cream); letter-spacing: 0.01em; }

/* screen: CHECK-IN */
.screen-checkin { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 16px; }
.mini-h-top { margin-bottom: 2px; }
.mini-code-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; }
.mini-code { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.22em; color: var(--cream); }
.mini-verified { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mini-tick { width: 26px; height: 26px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; }
.mini-verified i { font-style: normal; font-size: 10px; color: var(--cream); }
.mini-ftr { position: absolute; top: 18px; right: 16px; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--lime); }

/* ── SECTION 1: HOW ──────────────────────────────────────────────────── */
.how { padding: 90px 0; }
.how-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; margin-bottom: 76px;
}
.how-row:last-child { margin-bottom: 0; }
.how-row-rev .phone-wrap { order: -1; }
.num-pill {
  display: inline-flex; font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--ink); border-radius: var(--r-pill);
  padding: 4px 13px; margin-bottom: 16px;
}
.num-lime { background: var(--lime); }
.num-orange { background: var(--orange); }
.num-cyan { background: var(--cyan); }
.num-magenta { background: var(--magenta); }
.how-h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.4vw, 28px); color: var(--cream); margin-bottom: 10px; }
.how-body { color: var(--muted); font-size: 16.5px; max-width: 44ch; }

/* ── SECTION 2: INTENT band ──────────────────────────────────────────── */
.intent-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 90px 0; }
.intent-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.intent-card {
  background: var(--ink); border: 1px solid var(--line); border-radius: 20px; padding: 26px;
  border-top: 3px solid var(--accent);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.7s var(--ease);
}
.intent-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px color-mix(in srgb, var(--accent) 60%, transparent); }
.intent-icon { display: inline-flex; margin-bottom: 14px; }
.icon-lime { color: var(--lime); }
.icon-cyan { color: var(--cyan); }
.icon-magenta { color: var(--magenta); }
.intent-tag { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 12px; border-radius: var(--r-pill); padding: 4px 12px; }
.tag-lime { color: var(--lime); background: color-mix(in srgb, var(--lime) 12%, transparent); border: 1px solid color-mix(in srgb, var(--lime) 45%, transparent); }
.tag-cyan { color: var(--cyan); background: color-mix(in srgb, var(--cyan) 12%, transparent); border: 1px solid color-mix(in srgb, var(--cyan) 45%, transparent); }
.tag-magenta { color: var(--magenta); background: color-mix(in srgb, var(--magenta) 12%, transparent); border: 1px solid color-mix(in srgb, var(--magenta) 45%, transparent); }
.intent-h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--cream); margin: 14px 0 8px; }
.intent-body { color: var(--muted); font-size: 15.5px; }

/* ── SECTION 3: FOLLOW-THROUGH ───────────────────────────────────────── */
.ftr { padding: 90px 0; }
.ftr-grid { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: center; }
.ftr-ring-col { display: flex; justify-content: center; }
.ftr-ring { position: relative; width: min(280px, 78vw); aspect-ratio: 1; }
/* overflow:visible lets the glow spill past the svg box (no rectangular clip). */
.ftr-ring svg { width: 100%; height: 100%; overflow: visible; }
/* Two stacked drop-shadows — a tight core + a wide faint halo — fade out radially. */
#ftr-ring-progress {
  filter:
    drop-shadow(0 0 3px color-mix(in srgb, var(--lime) 70%, transparent))
    drop-shadow(0 0 14px color-mix(in srgb, var(--lime) 30%, transparent));
}
.ftr-ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ftr-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(42px, 6vw, 56px); color: var(--lime); line-height: 1; }
.ftr-num-label { font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.ftr-list { list-style: none; margin-top: 24px; }
.ftr-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; color: var(--cream); font-size: 16px; }
.ftr-tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; margin-top: 1px; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .how-row { grid-template-columns: 1fr; gap: 26px; margin-bottom: 56px; }
  .how-row .phone-wrap, .how-row-rev .phone-wrap { order: -1; }   /* phone above text on mobile */
  .intent-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .ftr-grid { grid-template-columns: 1fr; gap: 40px; justify-items: center; text-align: center; }
  .ftr-list li { text-align: left; }
  .ftr-copy { max-width: 560px; }
}
@media (max-width: 720px) {
  .how, .intent-band, .ftr { padding: 64px 0; }
  .sec-head { margin-bottom: 40px; }
}

/* ── Reduced motion (new sections) ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .map-dot-live::after { animation: none; }
  .phone:hover { transform: rotate(0deg); }
}

/* ============================================================================
   DOODLE BACKGROUND — hand-drawn stroke-only tile, fixed, with scroll parallax
   ========================================================================== */
#doodle-layer {
  position: fixed;
  left: 0; right: 0;
  /* "a bit beyond the viewport" (spec: ~-15%) PLUS one tile of over-scan, so the
     parallax transform on a REPEATING tile can never expose an edge. */
  top: calc(-15vh - 640px);
  bottom: calc(-15vh - 640px);
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/doodles.svg");
  background-repeat: repeat;
  opacity: 0.06;
  will-change: transform;   /* stays on the compositor */
}

/* All real content stacks above the doodle layer. (Nav is sticky @ z-index 100.) */
main, .footer { position: relative; z-index: 1; }

/* Mobile: smaller tile, fainter, matching over-scan for the 480px tile. */
@media (max-width: 640px) {
  #doodle-layer {
    background-size: 480px;
    opacity: 0.04;
    top: calc(-15vh - 480px);
    bottom: calc(-15vh - 480px);
  }
}

/* Reduced motion: no parallax — the layer stays static (JS also no-ops). */
@media (prefers-reduced-motion: reduce) {
  #doodle-layer { transform: none !important; }
}

/* ============================================================================
   KINETIC HERO — "Keen on …" flipper + reactive map (approved design)
   ========================================================================== */

/* Flipping headline */
.hero-title .flip-line { display: flex; align-items: baseline; gap: 0.28em; flex-wrap: wrap; }
.flipper {
  display: inline-grid;
  height: 1.14em;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
}
.flipper span {
  grid-area: 1 / 1;
  white-space: nowrap;
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.25, 1), opacity 0.4s;
  will-change: transform;
}
.flipper span.out { transform: translateY(-110%); opacity: 0; }
.flipper span.in { transform: translateY(0); opacity: 1; }
.flipper span.below { transform: translateY(110%); opacity: 0; }

/* Category tag (colour synced to the flipper) */
.cat-tag {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  transition: color 0.4s;
}
.cat-tag .swatch { width: 10px; height: 10px; border-radius: 3px; transition: background 0.4s; }

/* Reactive map card */
.mapcard {
  position: relative; width: 100%; max-width: 520px;
  border-radius: var(--r-card); border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--surface), var(--ink));
  overflow: hidden; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.mapcard .maplabel {
  position: absolute; top: 16px; left: 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.maplabel .ldot { width: 8px; height: 8px; border-radius: 50%; transition: background 0.4s; box-shadow: 0 0 10px currentColor; }
.keenchip {
  position: absolute; right: 18px; bottom: 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 9px 20px; border-radius: var(--r-pill); color: var(--ink);
  transition: background 0.4s, box-shadow 0.4s; box-shadow: 0 0 22px rgba(0, 0, 0, 0.4);
}
#heroPin { transition: fill 0.4s; }
#pinRing { transition: stroke 0.4s; }
.venue-name { position: absolute; left: 18px; bottom: 18px; font-size: 13px; color: var(--muted); transition: opacity 0.3s; }
.venue-name b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--cream); }

/* The relocated match-loop demo, centred at the end of How-it-works */
.loop-demo { max-width: 720px; margin: 84px auto 0; text-align: center; }
.loop-demo-h { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.4vw, 28px); color: var(--cream); margin-bottom: 8px; }
.loop-demo-sub { color: var(--muted); font-size: 16px; margin-bottom: 26px; }
.loop-demo .match-card { margin: 0 auto; }

/* Small screens: flipper stays on the headline and wraps gracefully. */
@media (max-width: 720px) {
  .hero-title .flip-line { gap: 0.2em; }
  .loop-demo { margin-top: 60px; }
}

/* Reduced motion: no flip, no colour/opacity easing; the first world renders static.
   (The flipper interval and the pulse-ring SMIL are both disabled in main.js.) */
@media (prefers-reduced-motion: reduce) {
  .flipper span, .cat-tag, .cat-tag .swatch,
  .maplabel .ldot, #heroPin, #pinRing, .keenchip, .venue-name { transition: none; }
}

/* ============================================================================
   SEVEN WORLDS BENTO — equal tiles, animated scenes, click-to-expand selection
   ========================================================================== */
.worlds { padding: 90px 0; }

/* Equal-size grid: 4×2 desktop (7 worlds + 1 outro). No big/tall/wide spans. */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }

.tile {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font: inherit;
  color: inherit;
  transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.tile .glowbg {
  position: absolute; inset: 0; opacity: 0.1; transition: opacity 0.3s;
  background: radial-gradient(circle at 30% 20%, var(--c), transparent 65%);
}
.tile:hover .glowbg { opacity: 0.22; }

.tile .scene { position: absolute; top: 16px; left: 20px; right: 20px; height: 44%; pointer-events: none; }
.tile .t-in { position: absolute; inset: 0; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; }
.tile h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--cream); line-height: 1.1; }
.tile .count { font-family: var(--font-display); font-weight: 500; font-size: 12px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* Detail panel (fades in over the tile face when open) */
.tile .more {
  position: absolute; inset: 0; background: rgba(10, 10, 10, 0.92); padding: 20px;
  display: flex; flex-direction: column; justify-content: center; gap: 9px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.tile.open .more { opacity: 1; pointer-events: auto; }
.more .m-head { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--c); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.more ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.more li { font-size: 14px; color: var(--cream); display: flex; gap: 9px; align-items: center; }
.more li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c); flex: none; }
.more .mini-keen { margin-top: 10px; align-self: flex-start; font-family: var(--font-display); font-weight: 600; font-size: 13px; padding: 8px 18px; border-radius: var(--r-pill); background: var(--c); color: var(--ink); }

/* Selection: open tile grows + gets its colour; other worlds shrink + dim;
   the outro dims without scaling. Transform + opacity only (no reflow). */
.tile.open { transform: scale(1.07); z-index: 5; border-color: var(--c); box-shadow: 0 0 0 1px var(--c), 0 20px 50px rgba(0, 0, 0, 0.5); }
.bento.has-open .tile:not(.open):not(.tile-outro) { transform: scale(0.96); opacity: 0.55; }
.bento.has-open .tile-outro { opacity: 0.55; }

/* Eighth cell — quiet outro (not a world) */
.tile-outro {
  background: var(--ink);
  border: 1px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 20px; cursor: default;
}
.outro-line { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--muted); max-width: 22ch; }
.outro-pill { padding: 9px 18px; font-size: 14px; }

/* ── Animated micro-scenes ─────────────────────────────────────────────── */
.tile .scene { width: 100%; }
@keyframes clink  { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(3deg); } }
@keyframes clink2 { 0%, 100% { transform: rotate(7deg); } 50% { transform: rotate(-3deg); } }
.tile .g1 { transform-box: fill-box; transform-origin: bottom center; animation: clink 2.6s ease-in-out infinite; }
.tile .g2 { transform-box: fill-box; transform-origin: bottom center; animation: clink2 2.6s ease-in-out infinite; }
@keyframes bounceY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.tile .hold { animation: bounceY 1.6s cubic-bezier(0.5, 0, 0.5, 1) infinite; }
@keyframes draw { 0% { stroke-dashoffset: 120; } 55% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; } }
.tile .stroke { stroke-dasharray: 120; animation: draw 3.4s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { transform: scale(0.82); opacity: 0.7; } 50% { transform: scale(1.08); opacity: 1; } }
.tile .breath { transform-box: fill-box; transform-origin: center; animation: breathe 3.2s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0.25; transform: scale(0.7); } 50% { opacity: 1; transform: scale(1.1); } }
.tile .spark { transform-box: fill-box; transform-origin: center; animation: twinkle 1.8s ease-in-out infinite; }
.tile .spark.d2 { animation-delay: 0.5s; }
.tile .spark.d3 { animation-delay: 1s; }
@keyframes popq { 0%, 70%, 100% { transform: translateY(0) scale(1); } 80% { transform: translateY(-8px) scale(1.12); } }
.tile .qbub { transform-box: fill-box; transform-origin: center; animation: popq 2.4s ease-in-out infinite; }
@keyframes spinrays { to { transform: rotate(360deg); } }
.tile .rays { transform-box: fill-box; transform-origin: center; animation: spinrays 14s linear infinite; }

/* ── Bento responsive ──────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .worlds { padding: 64px 0; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 560px) {
  .bento { grid-auto-rows: 158px; gap: 12px; }
  .tile-outro { grid-column: 1 / -1; }   /* eighth spans full width at the end */
}

/* ── Bento reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .tile .g1, .tile .g2, .tile .hold, .tile .stroke,
  .tile .breath, .tile .spark, .tile .qbub, .tile .rays { animation: none; }
  .tile .stroke { stroke-dasharray: none; }        /* show the full stroke, solid */
  .tile.open { transform: none; }                  /* no scaling; panel + border still show */
  .bento.has-open .tile:not(.open):not(.tile-outro) { transform: none; opacity: 0.55; }
}

/* ============================================================================
   FOR VENUES / CITIES / WAITLIST  — page-closing sections + lead forms
   Colours derive only from the :root tokens (color-mix for token-based tints).
   ========================================================================== */

/* ── SECTION 4: FOR VENUES (full-bleed band) ─────────────────────────── */
.venues {
  /* subtle vertical gradient: surface into a barely-warm dark */
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--orange) 6%, var(--ink)));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
}
.venues-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.venues-copy .eyebrow { text-align: left; }
.venues-copy .sec-h2 { text-align: left; margin-bottom: 16px; max-width: 15ch; }
.venues-claim { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--cream); margin-bottom: 16px; }
.venues-body { color: var(--muted); font-size: 16px; max-width: 52ch; margin-bottom: 30px; }

.benefits { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.benefit { display: flex; gap: 15px; align-items: flex-start; }
.benefit-ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: var(--orange);
  background: color-mix(in srgb, var(--orange) 12%, transparent);
}
.benefit-txt h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--cream); margin-bottom: 4px; }
.benefit-txt p { color: var(--muted); font-size: 14.5px; max-width: 46ch; }

/* ── Lead form cards (shared by the venue application) ───────────────── */
.lead-card {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
}
.lead-h { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--cream); margin-bottom: 8px; }
.lead-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; margin-bottom: 14px; }
.field label {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--cream);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  width: 100%;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { resize: vertical; min-height: 78px; }
.field select { appearance: none; cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 22%, transparent);
}
/* Waitlist inputs focus lime to match their button */
.wl-form input:focus { border-color: var(--lime); box-shadow: 0 0 0 3px color-mix(in srgb, var(--lime) 22%, transparent); }

.lead-submit { width: 100%; margin-top: 6px; }
.lead-note { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 12px; }

/* Inline validation error (created by JS) */
.field-error { color: var(--orange); font-size: 12.5px; margin-top: 6px; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"],
.field textarea[aria-invalid="true"], .wl-input-wrap input[aria-invalid="true"] {
  border-color: var(--orange);
}

/* Honeypot: visually removed but NOT display:none (so bots still fill it) */
.hp-field {
  position: absolute !important;
  left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}

/* Success panel (replaces form contents on submit) */
.lead-success { text-align: center; padding: 14px 4px; }
.lead-success .succ-tick {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--lime); display: grid; place-items: center;
}
.lead-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--cream); margin-bottom: 8px; }
.lead-success p { color: var(--muted); font-size: 15px; }
.form-fail {
  color: var(--orange); font-size: 13.5px; text-align: center; margin-top: 12px;
}
.form-fail a { color: var(--orange); text-decoration: underline; }

/* ── SECTION 5: CITIES ───────────────────────────────────────────────── */
.cities { padding: 90px 0; }
.city-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.city-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.7s var(--ease);
}
.city-card:hover { transform: translateY(-6px); border-color: var(--muted); box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.8); }
.city-name { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--cream); margin-bottom: 12px; }
.city-pill {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--r-pill); padding: 4px 12px; margin-bottom: 14px;
}
.pill-lime { color: var(--lime); background: color-mix(in srgb, var(--lime) 12%, transparent); border: 1px solid color-mix(in srgb, var(--lime) 45%, transparent); }
.pill-cyan { color: var(--cyan); background: color-mix(in srgb, var(--cyan) 12%, transparent); border: 1px solid color-mix(in srgb, var(--cyan) 45%, transparent); }
.pill-soon { color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); }
.city-body { color: var(--muted); font-size: 15px; }

/* ── SECTION 6: WAITLIST (closing) ───────────────────────────────────── */
.waitlist { position: relative; padding: 100px 0; overflow: hidden; text-align: center; }
.wl-glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  filter: blur(120px); opacity: 0.1; pointer-events: none; z-index: 0;
}
.wl-glow-a { top: -140px; left: -120px; background: var(--lime); }
.wl-glow-b { bottom: -160px; right: -120px; background: var(--magenta); }
.wl-inner { position: relative; z-index: 1; max-width: 640px; }
.wl-h2 { text-align: center; margin-bottom: 14px; }
.wl-sub { margin: 0 auto 30px; }

.wl-form { display: flex; gap: 12px; justify-content: center; max-width: 520px; margin: 0 auto; position: relative; }
.wl-input-wrap { flex: 1 1 auto; }
.wl-input-wrap input {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--cream);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 13px 20px;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.wl-input-wrap input::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); }
.wl-input-wrap input:focus { outline: none; }
.wl-submit { flex: none; }
.wl-venue-link { margin-top: 16px; }
/* Waitlist error sits under the row, centred */
.wl-form + .field-error, .wl-inner .field-error { text-align: center; margin-top: 12px; }

/* ── Responsive (closing sections) ───────────────────────────────────── */
@media (max-width: 980px) {
  .venues-grid { grid-template-columns: 1fr; gap: 40px; }
  .venue-form-col { max-width: 560px; }
  .city-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .venues, .cities { padding: 64px 0; }
  .waitlist { padding: 72px 0; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .wl-form { flex-direction: column; }        /* email + button stack full-width */
  .wl-submit { width: 100%; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}

/* ── Reduced motion (closing sections) ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .city-card:hover { transform: none; }
}

/* ============================================================================
   DOC PAGES — Privacy Policy / Terms of Service (shared layout)
   Reuses the homepage tokens and components (nav, footer, doodle); no fork.
   ========================================================================== */
.doc { padding: 56px 0 90px; }
.doc-body { max-width: 760px; margin: 0 auto; }

.doc-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 5vw, 52px); line-height: 1.06;
  letter-spacing: -0.02em; color: var(--cream); margin-bottom: 10px;
}
.doc-updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.doc-intro { color: var(--cream); font-size: 17px; line-height: 1.78; margin-bottom: 8px; }

.doc-body h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(21px, 2.6vw, 27px); color: var(--cream);
  letter-spacing: -0.01em; margin: 42px 0 14px;
}
.doc-body p { color: var(--muted); font-size: 16px; line-height: 1.78; margin-bottom: 14px; }
.doc-body p:last-child { margin-bottom: 0; }
.doc-body p strong { color: var(--cream); font-weight: 600; }
.doc-body a { color: var(--lime); text-decoration: underline; text-underline-offset: 2px; }
.doc-body a:hover { color: #d4ff63; }
.doc-section { scroll-margin-top: 84px; }

/* In-page table of contents */
.doc-toc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 24px; margin: 28px 0 8px;
}
.doc-toc-h {
  font-family: var(--font-body); font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.doc-toc ol { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.doc-toc a { color: var(--cream); font-size: 14.5px; text-decoration: none; }
.doc-toc a:hover { color: var(--lime); text-decoration: underline; text-underline-offset: 2px; }

/* Doc-page doodle: half the homepage opacity, static (doc pages load no JS, so
   the parallax module never runs). Specificity beats the base #doodle-layer. */
.doc-page #doodle-layer { opacity: 0.03; }

@media (max-width: 640px) {
  .doc-toc ol { grid-template-columns: 1fr; }
  .doc-page #doodle-layer { opacity: 0.02; }
}
