:root {
  --bg: #F6F4F0;
  --band: #EFECE6;
  --ink: #161412;
  --ink-2: #1F1C19;
  --line: #E6E1D8;
  --line-2: #E0DAD0;
  --line-dark: #2E2A26;
  --line-dark-2: #3a3530;
  --body: #3d3832;
  --body-2: #4a453e;
  --muted: #6b655c;
  --muted-dark: #b9b2a7;
  --body-dark: #cfc8bd;
  --accent: oklch(0.64 0.21 28);
  --accent-text: oklch(0.62 0.21 28);
  --accent-bright: oklch(0.7 0.19 28);
  --accent-deep: oklch(0.55 0.19 28);
  --display: 'Bricolage Grotesque', 'Geist', system-ui, sans-serif;
  --sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --gutter: clamp(20px, 4vw, 48px);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body { font-family: var(--sans); min-height: 100vh; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent-text); }
input, select, button { font: inherit; }
input::placeholder { color: #8a847b; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@keyframes monaPulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(3.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pulse { animation: none !important; }
}

/* ---------- shared ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-top: clamp(72px, 9vw, 128px); padding-bottom: clamp(72px, 9vw, 128px); }
.mono { font-family: var(--mono); }
.caps { letter-spacing: .08em; text-transform: uppercase; }
.tiny { font-size: 10px; }
.small { font-size: 12px; }
.muted { color: var(--muted); }
.muted-dark { color: var(--muted-dark); }
.accent-text { color: var(--accent-text); }
.balance { text-wrap: balance; }
.dark { background: var(--ink); color: var(--bg); }
.band { background: var(--band); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.kicker-dark { color: var(--muted-dark); }
.section-head { display: flex; flex-direction: column; gap: 14px; }
.h2 {
  margin: 0; font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 5vw, 72px); line-height: .95; letter-spacing: -.04em;
}
.h2-sm { font-size: clamp(36px, 4.2vw, 60px); }
.h2-xl { font-size: clamp(44px, 6vw, 88px); line-height: .92; letter-spacing: -.045em; }
.h3 { margin: 0; font-family: var(--display); font-weight: 700; font-size: 30px; letter-spacing: -.03em; }
.h3-lg { font-size: 34px; }
.lede-dark { margin: 0; font-size: 18px; line-height: 1.55; color: var(--body-dark); max-width: 28em; text-wrap: pretty; }

.hatch-a { background: repeating-linear-gradient(135deg, #E2DCD1 0 5px, #EEEAE3 5px 10px); }
.hatch-b { background: repeating-linear-gradient(45deg, #E2DCD1 0 5px, #EEEAE3 5px 10px); }
.hatch-pink-a { background: repeating-linear-gradient(135deg, #F2D6CE 0 5px, #F8E6E0 5px 10px); }
.hatch-pink-b { background: repeating-linear-gradient(45deg, #F2D6CE 0 5px, #F8E6E0 5px 10px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 244, 240, .86);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  padding-top: max(10px, env(safe-area-inset-top)); padding-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px oklch(0.64 0.21 28 / .18);
}
.brand-word { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -.03em; }
.nav-cta {
  background: var(--ink); color: var(--bg); padding: 0 20px; min-height: 44px;
  display: flex; align-items: center; border-radius: 999px; font-weight: 500; font-size: 15px;
  white-space: nowrap; flex: none;
}
.nav-cta:hover { color: var(--bg); background: #2a2622; }

/* ---------- hero ---------- */
.hero {
  padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(64px, 8vw, 112px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; }
.eyebrow-live {
  display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--body-2);
}
.eyebrow-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.hero-title {
  margin: 0; font-family: var(--display); font-weight: 800;
  font-size: clamp(56px, 8.4vw, 104px); line-height: .9; letter-spacing: -.045em;
}
.hero-lede { margin: 0; max-width: 30em; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; color: var(--body); text-wrap: pretty; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.btn {
  padding: 16px 26px; border-radius: 999px; font-size: 16px; white-space: nowrap; min-height: 54px;
  display: flex; align-items: center; justify-content: center;
}
.btn-accent { background: var(--accent); color: var(--ink); font-weight: 600; flex: 1 1 220px; }
.btn-accent:hover { color: var(--ink); filter: brightness(1.05); }
.btn-ghost { padding: 16px 22px; border: 1px solid #D6D0C5; font-weight: 500; flex: 1 1 160px; }

/* phone mock */
.phone-stage { display: flex; justify-content: center; position: relative; }
.phone-glow {
  position: absolute; inset: 8% 4%; border-radius: 50%;
  background: radial-gradient(closest-side, oklch(0.64 0.21 28 / .22), transparent);
}
.phone {
  position: relative; width: 320px; max-width: 100%; border-radius: 48px; background: var(--ink);
  padding: 10px; box-shadow: 0 40px 80px -30px rgba(22, 20, 18, .45);
}
.screen {
  border-radius: 39px; background: var(--bg); padding: 18px 16px 16px;
  display: flex; flex-direction: column; gap: 14px; min-height: 600px;
}
.status { display: flex; justify-content: space-between; font-size: 11px; color: var(--body-2); padding: 0 6px; }
.match-row { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.avatars { display: flex; }
.av { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg); }
.av + .av { margin-left: -12px; }
.match-meta { text-align: right; }
.match-title { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.match-sub { font-size: 12px; color: var(--muted); }
.clock-card {
  background: var(--ink); color: var(--bg); border-radius: 22px; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.clock-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; color: var(--muted-dark); }
.clock { font-weight: 500; font-size: 54px; line-height: 1; letter-spacing: -.03em; color: var(--accent-bright); font-variant-numeric: tabular-nums; }
.clock-track { height: 4px; border-radius: 4px; background: #34302b; overflow: hidden; }
.clock-fill { height: 100%; width: 99%; border-radius: 4px; background: var(--accent-bright); }
.chat { display: flex; flex-direction: column; gap: 8px; font-size: 13px; line-height: 1.35; }
.bubble { max-width: 80%; padding: 9px 13px; }
.bubble.them { align-self: flex-start; background: #E9E4DC; border-radius: 16px 16px 16px 4px; }
.bubble.us { align-self: flex-end; background: var(--ink); color: var(--bg); border-radius: 16px 16px 4px 16px; }
.suggest {
  margin-top: auto; border: 1px solid var(--line-2); background: #fff; border-radius: 20px; padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.venue { display: flex; gap: 12px; align-items: center; }
.venue-img { width: 48px; height: 48px; flex: none; border-radius: 12px; }
.venue-meta { display: flex; flex-direction: column; gap: 2px; }
.venue-name { font-weight: 600; font-size: 15px; }
.venue-sub { font-size: 12px; color: var(--muted); }
.perk {
  align-self: flex-start; font-size: 11px; font-weight: 500; background: oklch(0.64 0.21 28 / .14);
  color: oklch(0.45 0.16 28); padding: 5px 10px; border-radius: 999px;
}
.lock { background: var(--accent); color: var(--ink); text-align: center; font-weight: 600; font-size: 14px; padding: 12px; border-radius: 14px; }

/* ---------- problem ---------- */
.problem {
  padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 40px; align-items: end;
}
.problem-title {
  margin: 0; font-family: var(--display); font-weight: 700; font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02; letter-spacing: -.035em; text-wrap: balance;
}
.problem-body { margin: 0; font-size: 18px; line-height: 1.55; color: var(--body); max-width: 32em; text-wrap: pretty; }

/* ---------- how ---------- */
.how { display: flex; flex-direction: column; gap: 56px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 20px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.step p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--body-2); text-wrap: pretty; }
.step-n { font-family: var(--mono); font-size: 14px; color: var(--accent-deep); }
.step-dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.step-dark p { color: var(--body-dark); }
.step-dark .step-n { color: var(--accent-bright); }

/* ---------- nearby ---------- */
.nearby {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(40px, 6vw, 72px); align-items: center;
}
.nearby-copy { display: flex; flex-direction: column; gap: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line-dark-2); border-radius: 999px; padding: 8px 14px; font-size: 14px; color: #e8e2d8; white-space: nowrap; }
.viewer { border-radius: 32px; background: var(--ink-2); border: 1px solid var(--line-dark); overflow: hidden; display: flex; flex-direction: column; }
.viewer-bar { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--line-dark); gap: 12px; }
.seg { display: flex; gap: 4px; background: var(--ink); padding: 4px; border-radius: 999px; }
.seg-btn {
  border: none; cursor: pointer; min-height: 40px; padding: 0 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500; background: transparent; color: var(--muted-dark);
}
.seg-btn[aria-pressed="true"] { background: var(--bg); color: var(--ink); }
.map {
  position: relative; height: 440px; background-color: var(--ink-2);
  background-image: linear-gradient(#2A2622 2px, transparent 2px), linear-gradient(90deg, #2A2622 2px, transparent 2px);
  background-size: 64px 64px, 88px 88px; overflow: hidden;
}
.map-road { position: absolute; left: -10%; top: 52%; width: 130%; height: 14px; background: var(--line-dark); transform: rotate(-18deg); }
.map-park { position: absolute; right: 6%; top: 8%; width: 26%; height: 30%; border-radius: 14px; background: #22291F; }
.map-radius { position: absolute; left: 50%; top: 50%; width: 260px; height: 260px; margin: -130px 0 0 -130px; border-radius: 50%; border: 1px dashed #4a443d; }
.map-you { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.you-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--bg); box-shadow: 0 0 0 5px rgba(246, 244, 240, .18); }
.pin { position: absolute; display: flex; align-items: center; gap: 8px; }
.pin-dot { position: relative; width: 14px; height: 14px; flex: none; }
.pin-dot .pulse, .pin-dot .core { position: absolute; inset: 0; border-radius: 50%; background: var(--accent-bright); }
.pin-dot .pulse { animation: monaPulse 2.2s ease-out infinite; }
.pin-label {
  background: var(--bg); color: var(--ink); border-radius: 12px; padding: 6px 10px; font-size: 12px; line-height: 1.3;
  white-space: nowrap; box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}
.pin-label b { font-weight: 600; }
.list { min-height: 440px; display: flex; flex-direction: column; }
.row { display: flex; align-items: center; gap: 14px; padding: 16px; border-bottom: 1px solid var(--line-dark); }
.row-av { width: 52px; height: 52px; flex: none; border-radius: 50%; background: repeating-linear-gradient(135deg, #34302b 0 5px, #2A2622 5px 10px); }
.row-meta { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.row-who { font-weight: 600; font-size: 15px; }
.row-sub { font-size: 13px; color: var(--muted-dark); }
.row-dist { font-size: 12px; color: var(--accent-bright); }

/* ---------- modes ---------- */
.modes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 20px; }
.modes-head { grid-column: 1 / -1; margin-bottom: 28px; }
.mode-card {
  border-radius: 28px; background: #fff; border: 1px solid var(--line); padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.mode-accent { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.mode-avs { display: flex; align-items: center; gap: 10px; }
.av-lg { width: 56px; height: 56px; border-radius: 50%; }
.ring { border: 3px solid var(--accent); }
.pair { display: flex; }
.pair .av-lg + .av-lg { margin-left: -16px; }
.plus { font-size: 13px; color: var(--muted); }
.mode-accent .plus { color: var(--ink); }
.mode-copy { display: flex; flex-direction: column; gap: 10px; }
.mode-copy p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--body-2); text-wrap: pretty; }
.mode-accent .mode-copy p { color: var(--ink); }
.profile {
  grid-column: 1 / -1; border-radius: 28px; border: 1px solid var(--line); padding: 32px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 28px;
}
.profile-lead { display: flex; flex-direction: column; gap: 8px; grid-column: 1 / -1; }
.profile-title { max-width: 18em; }
.profile-title { margin: 0; font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1.1; letter-spacing: -.025em; text-wrap: balance; }
.bit { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--line); padding-top: 14px; }
.bit-t { font-weight: 600; font-size: 16px; }
.bit-d { font-size: 15px; line-height: 1.5; color: var(--body-2); }

/* ---------- safety ---------- */
.safety { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 40px; }
.safety > .section-head { grid-column: 1 / -1; }
.safe { display: flex; flex-direction: column; gap: 10px; }
.safe .step-n { font-size: 13px; }
.safe-t { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; }
.safe-d { font-size: 16px; line-height: 1.55; color: var(--body-2); text-wrap: pretty; }

/* ---------- cities ---------- */
.cities { display: flex; flex-direction: column; gap: 36px; }
.city-list { display: flex; flex-direction: column; }
.city { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; border-top: 1px solid var(--line-2); padding: 18px 0; }
.city-name { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 7vw, 96px); line-height: 1; letter-spacing: -.045em; color: var(--ink); }
.city-tag { font-family: var(--mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.city-tag-live { color: oklch(0.52 0.19 28); }
.city-next .city-name { color: #A39C91; }

/* ---------- apply ---------- */
.apply {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.apply-copy { display: flex; flex-direction: column; gap: 22px; }
.apply-copy .lede-dark { max-width: 26em; }
.form {
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 28px;
  padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-l { font-size: 13px; color: var(--muted-dark); }
.field input, .field select {
  background: var(--ink); border: 1px solid var(--line-dark-2); border-radius: 14px; padding: 14px 16px;
  color: var(--bg); font-size: 16px; outline: none; width: 100%;
}
.field select {
  -webkit-appearance: none; appearance: none; padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23b9b2a7' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input:focus, .field select:focus { border-color: var(--accent); }
.field input[aria-invalid="true"] { border-color: var(--accent-bright); }
.look { display: flex; gap: 6px; background: var(--ink); border: 1px solid var(--line-dark-2); border-radius: 14px; padding: 5px; }
.look-btn {
  flex: 1; border: none; cursor: pointer; min-height: 44px; padding: 10px; border-radius: 10px;
  font-size: 14px; font-weight: 500; background: transparent; color: var(--body-dark);
}
.look-btn[aria-checked="true"] { background: var(--accent); color: var(--ink); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.form-err { margin: 0; font-size: 14px; color: var(--accent-bright); }
.submit {
  margin-top: 6px; border: none; cursor: pointer; background: var(--accent); color: var(--ink);
  padding: 16px; min-height: 54px; border-radius: 999px; font-weight: 600; font-size: 16px;
}
.submit:disabled { opacity: .6; cursor: progress; }
.fine { font-size: 12px; line-height: 1.5; color: #8a847b; }
.done {
  background: var(--accent); color: var(--ink); border-radius: 28px; padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 14px;
}
.done-title { font-family: var(--display); font-weight: 800; font-size: 44px; line-height: .95; letter-spacing: -.04em; }
.done-body { font-size: 17px; line-height: 1.5; text-wrap: pretty; }
.again {
  align-self: flex-start; margin-top: 8px; border: 1px solid var(--ink); background: transparent; cursor: pointer;
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink);
}

/* ---------- footer ---------- */
.foot { background: var(--ink); color: var(--muted-dark); border-top: 1px solid var(--line-dark); }
.foot-in {
  padding-top: 28px; padding-bottom: calc(28px + env(safe-area-inset-bottom));
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px;
}
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.foot-word { font-family: var(--display); font-weight: 800; font-size: 18px; color: var(--bg); letter-spacing: -.03em; }

/* ---------- sticky apply bar ---------- */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; justify-content: center;
  pointer-events: none; padding: 0 12px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(130%); transition: transform .25s ease-out;
}
.bar.show { transform: translateY(0); }
.bar-in {
  pointer-events: auto; width: 100%; max-width: 520px; background: var(--ink); color: var(--bg);
  border-radius: 999px; padding: 8px 8px 8px 22px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 40px -12px rgba(22, 20, 18, .5);
}
.bar-clock { display: flex; flex-direction: column; line-height: 1.1; }
.bar-time { font-weight: 500; font-size: 20px; color: var(--accent-bright); font-variant-numeric: tabular-nums; }
.bar-cta {
  flex: 1; min-height: 48px; display: flex; align-items: center; justify-content: center; background: var(--accent);
  color: var(--ink); border-radius: 999px; font-weight: 600; font-size: 15px; white-space: nowrap;
}
.bar-cta:hover { color: var(--ink); }
