/* ════════════════════════════════════════════════════════════
   URBAN PLAYGROUND - landing prototype
   palette: cream #F4F1E8 · ink #16170F · night #1A1C12
            volt #D9FF4B · olive #8A8C77
   type:    Anton (display) · Instrument Serif (accent)
            Space Grotesk (body) · Space Mono (captions)
   ════════════════════════════════════════════════════════════ */

:root {
  --cream: #F4F1E8;
  --cream-soft: #EFEBDE;
  --ink: #16170F;
  --night: #1A1C12;
  --volt: #D9FF4B;
  --olive: #8A8C77;
  --olive-dark: #4A4D3A;
  --hairline: rgba(22, 23, 15, 0.16);
  --hairline-cream: rgba(244, 241, 232, 0.16);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --pad: clamp(20px, 4vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.display { font-family: "Anton", sans-serif; font-weight: 400; letter-spacing: 0.01em; }
.mono { font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.08em; }
.serif { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; text-transform: none; }
.volt { color: var(--volt); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

section { position: relative; }
.section--dark { background: var(--night); color: var(--cream); }

/* ─── film grain ─── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 60;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 0.9s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1%); }
  100% { transform: translate(1%, -1.5%); }
}

/* ─── reveal system ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

.line { display: block; overflow: hidden; }
.line__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.is-lines-in .line__inner, .line__inner.is-in { transform: translateY(0); }
.line:nth-child(2) .line__inner { transition-delay: 0.12s; }
.line:nth-child(3) .line__inner { transition-delay: 0.24s; }

/* ─── fixed nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: color 0.5s ease;
}
.nav__left { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 26px); }
.nav__wordmark { font-weight: 700; letter-spacing: 0.04em; font-size: 14px; }
.nav__wordmark sup { font-size: 8px; }
.nav__mode {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid rgba(244, 241, 232, 0.4); border-radius: 999px;
  padding: 3px;
}
body:not([data-nav="dark"]) .nav__mode { border-color: rgba(22, 23, 15, 0.32); }
.nav__mode-opt { padding: 7px 14px; border-radius: 999px; white-space: nowrap; }
.nav__mode-opt.is-active { background: var(--cream); color: var(--ink); }
body:not([data-nav="dark"]) .nav__mode-opt.is-active { background: var(--ink); color: var(--cream); }
a.nav__mode-opt { opacity: 0.8; transition: opacity 0.25s ease, color 0.25s ease; }
a.nav__mode-opt:hover { opacity: 1; color: var(--volt); }
body:not([data-nav="dark"]) a.nav__mode-opt:hover { color: var(--olive-dark); }
.nav__links { display: flex; align-items: center; gap: clamp(12px, 2.5vw, 28px); }
.nav__link { position: relative; padding: 4px 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.08em;
  padding: 10px 18px; border-radius: 999px; white-space: nowrap;
  background: var(--ink); color: var(--cream);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-bounce);
}
@media (max-width: 1060px) {
  .nav__mode { display: none; }
}
@media (max-width: 680px) {
  .nav { padding: 14px 20px; }
  .nav__link { display: none; }
  .nav__wordmark { font-size: 12px; }
  .nav__cta { padding: 9px 14px; font-size: 10px; }
}
.nav__cta:hover { background: var(--volt); color: var(--ink); transform: scale(1.05); }
body[data-nav="dark"] .nav { color: var(--cream); }
body[data-nav="dark"] .nav__cta { background: var(--volt); color: var(--ink); }
body[data-nav="dark"] .nav__cta:hover { background: var(--cream); }

/* ─── left rail section counter ─── */
.rail {
  position: fixed; left: 22px; bottom: 26px; z-index: 50;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.5s ease;
}
.rail__rule { width: 28px; height: 1px; background: currentColor; opacity: 0.5; }
body[data-nav="dark"] .rail { color: var(--cream); }
body.rail-hidden .rail {
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
@media (max-width: 900px) { .rail { display: none; } }

/* Mobile App Store prompt. The app shell uses the same storage keys and cadence. */
.app-download-prompt {
  position: fixed;
  z-index: 1000;
  right: 12px;
  bottom: max(calc(env(safe-area-inset-bottom, 0px) + 12px), 16px);
  left: 12px;
  display: block;
  width: min(420px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(22, 23, 15, 0.24);
  border-radius: 8px;
  background: rgba(244, 241, 232, 0.96);
  box-shadow: 0 18px 48px rgba(22, 23, 15, 0.3);
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.app-download-prompt[hidden] { display: none; }
.app-download-prompt.is-visible { opacity: 1; transform: translateY(0); }
.app-download-prompt__head { display: flex; align-items: flex-start; gap: 12px; }
.app-download-prompt__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(22, 23, 15, 0.18);
  border-radius: 8px;
}
.app-download-prompt__copy { min-width: 0; flex: 1; }
.app-download-prompt__kicker {
  margin: 0;
  color: var(--olive-dark);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}
.app-download-prompt h2 {
  margin: 2px 0 0;
  font-size: 18px;
  line-height: 1.15;
}
.app-download-prompt__copy > p:last-child {
  margin: 5px 0 0;
  color: var(--olive-dark);
  font-size: 13px;
  line-height: 1.35;
}
.app-download-prompt__close {
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}
.app-download-prompt__close:hover { background: rgba(22, 23, 15, 0.07); }
.app-download-prompt__cta {
  display: flex;
  min-height: 48px;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--volt);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
@media (prefers-reduced-motion: reduce) {
  .app-download-prompt { transition: none; }
}

/* ─── shared atoms ─── */
.crosshair {
  position: relative; display: inline-block;
  width: 13px; height: 13px; flex: none;
}
.crosshair::before, .crosshair::after {
  content: ""; position: absolute; background: currentColor;
}
.crosshair::before { left: 50%; top: 0; width: 1px; height: 100%; }
.crosshair::after { top: 50%; left: 0; height: 1px; width: 100%; }

.h2 { font-size: clamp(40px, 7vw, 96px); line-height: 0.96; text-transform: uppercase; }
.h2--big { font-size: clamp(52px, 9vw, 150px); line-height: 0.92; text-transform: uppercase; }

/* ════════ 01 · HERO (photo) ════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(72px + var(--pad)) var(--pad) 104px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; background: #0B0C08; }
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero__photo.is-on { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 12, 8, 0.84) 0%, rgba(11, 12, 8, 0.6) 38%, rgba(11, 12, 8, 0.24) 72%, rgba(11, 12, 8, 0.08) 100%),
    linear-gradient(180deg, rgba(11, 12, 8, 0.55) 0%, rgba(11, 12, 8, 0) 24%, rgba(11, 12, 8, 0) 58%, rgba(11, 12, 8, 0.66) 100%);
}

@keyframes draw { to { stroke-dashoffset: 0; } }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero__stack {
  position: relative; z-index: 2;
  max-width: 730px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero__title {
  font-size: clamp(44px, 6.9vw, 112px);
  line-height: 0.94; text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.hero__dot { color: var(--volt); }
.hero__lede {
  margin-top: clamp(20px, 3vh, 30px);
  max-width: 600px;
  font-size: clamp(15px, 1.35vw, 19px); line-height: 1.5;
  color: rgba(244, 241, 232, 0.92);
}
.hero__fact {
  margin-top: clamp(14px, 2vh, 20px);
  max-width: 560px;
  color: rgba(244, 241, 232, 0.56);
  line-height: 1.7;
}
.hero__ask {
  position: relative;
  margin-top: clamp(24px, 4vh, 40px);
  width: min(660px, 100%);
  border: 1px solid rgba(244, 241, 232, 0.42);
  border-radius: 22px;
  background: rgba(11, 12, 8, 0.34);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 20px 88px 20px 22px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.hero__ask:focus-within { border-color: rgba(244, 241, 232, 0.85); background: rgba(11, 12, 8, 0.5); }
.hero__ask textarea {
  display: block; width: 100%;
  min-height: 58px;
  background: none; border: none; outline: none; resize: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px; line-height: 1.45;
  color: var(--cream);
  scrollbar-width: none;
}
.hero__ask textarea::-webkit-scrollbar { display: none; }
.hero__ask textarea::placeholder { color: rgba(244, 241, 232, 0.62); }
.hero__ask-send {
  position: absolute; right: 16px; bottom: 16px;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(244, 241, 232, 0.6);
  color: var(--cream);
  font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-bounce);
}
.hero__ask-send:hover { background: var(--volt); border-color: var(--volt); color: var(--ink); transform: scale(1.06); }
.hero__prompts {
  margin-top: clamp(14px, 2.4vh, 22px);
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero__prompt {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  border: 1px solid rgba(244, 241, 232, 0.42);
  background: rgba(11, 12, 8, 0.28);
  color: var(--cream);
  font-size: 10px;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.hero__prompt:hover { border-color: var(--volt); color: var(--volt); }
.hero__prompt--store { border-color: rgba(217, 255, 75, 0.7); color: var(--volt); }
.hero__prompt--store:hover { background: var(--volt); color: var(--ink); border-color: var(--volt); }
.hero__apple { width: 12px; height: 15px; fill: currentColor; }

.hero__ticker {
  position: absolute; z-index: 2;
  left: var(--pad); bottom: 30px;
  display: flex; align-items: center; gap: 10px;
  color: rgba(244, 241, 232, 0.75);
}
#cityTicker { transition: opacity 0.25s ease, transform 0.25s ease; }
#cityTicker.is-flipping { opacity: 0; transform: translateY(-6px); }

.hero__pager {
  position: absolute; z-index: 2;
  right: var(--pad); bottom: 22px;
  display: flex; align-items: center; gap: 10px;
  color: rgba(244, 241, 232, 0.75);
}
.hero__pager-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(244, 241, 232, 0.4);
  color: var(--cream);
  font-size: 17px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.hero__pager-btn:hover { border-color: var(--volt); color: var(--volt); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (max-width: 760px) {
  .grain { animation: none; }
  .hero { padding: calc(70px + var(--pad)) var(--pad) 150px; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(11, 12, 8, 0.62) 0%, rgba(11, 12, 8, 0.34) 30%, rgba(11, 12, 8, 0.42) 62%, rgba(11, 12, 8, 0.78) 100%);
  }
  .hero__ask { padding: 16px 74px 16px 18px; }
  .hero__ask textarea { font-size: 16px; min-height: 90px; }
  .hero__ask-send { width: 46px; height: 46px; right: 12px; bottom: 12px; }
  .hero__ticker { bottom: 24px; }
  .hero__pager { bottom: 16px; }
}

/* ════════ 02 · CHAT ════════ */
.chat {
  padding: clamp(90px, 14vh, 160px) var(--pad);
  background:
    repeating-linear-gradient(90deg, var(--hairline) 0 1px, transparent 1px calc(100% / 12));
  background-color: var(--cream);
  background-blend-mode: normal;
  text-align: center;
}
.chat { background-image: repeating-linear-gradient(90deg, rgba(22,23,15,0.05) 0 1px, transparent 1px 8.333%); }
.chat__title { margin-bottom: clamp(48px, 7vh, 90px); }

.chat__stage { position: relative; display: inline-block; }

.phone {
  position: relative; width: min(400px, 88vw);
  background: var(--ink); color: var(--cream);
  border-radius: 28px; padding: 18px;
  text-align: left;
  box-shadow: 0 40px 80px -30px rgba(22, 23, 15, 0.45);
}
.phone__head {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 6px 14px; border-bottom: 1px solid var(--hairline-cream);
}
.phone__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--volt); animation: blink 2s ease infinite; }
.phone__title { flex: 1; opacity: 0.85; }
.phone__time { opacity: 0.5; }

.phone__feed { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; min-height: 320px; }
.bubble {
  max-width: 82%; padding: 12px 16px; border-radius: 18px;
  font-size: 15px; line-height: 1.35;
  opacity: 0; transform: translateY(12px) scale(0.96);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-bounce);
}
.bubble.is-on { opacity: 1; transform: none; }
.bubble--user {
  align-self: flex-end;
  background: var(--volt); color: var(--ink);
  border-bottom-right-radius: 6px;
  font-weight: 500;
}
.bubble--bot {
  align-self: flex-start;
  background: var(--cream); color: var(--ink);
  border-bottom-left-radius: 6px;
}
.bubble--typing {
  align-self: flex-start;
  background: rgba(244, 241, 232, 0.12);
  display: flex; gap: 5px; padding: 14px 18px;
}
.bubble--typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cream); opacity: 0.5;
  animation: typing 1s ease infinite;
}
.bubble--typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble--typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.bubble--typing.is-done { display: none; }

.caret {
  display: inline-block; width: 2px; height: 1em;
  background: var(--ink); margin-left: 2px; vertical-align: -2px;
  animation: blink 0.8s steps(1) infinite;
}
.caret.is-off { display: none; }

.event-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(244, 241, 232, 0.07);
  border: 1px solid var(--hairline-cream);
  border-radius: 14px; padding: 10px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
              background 0.3s ease, border-color 0.3s ease;
}
.event-card.is-on { opacity: 1; transform: none; }
.event-card:hover { background: rgba(217, 255, 75, 0.1); border-color: var(--volt); }
.event-card img { width: 46px; height: 60px; object-fit: cover; border-radius: 8px; }
.event-card__meta { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.event-card__meta strong { font-size: 13px; letter-spacing: 0.04em; }
.event-card__meta .mono { opacity: 0.55; font-size: 10px; }
.event-card__go { opacity: 0.6; transition: transform 0.3s var(--ease-out); }
.event-card:hover .event-card__go { transform: translateX(4px); color: var(--volt); opacity: 1; }

.chat__replay {
  margin-top: 22px; color: var(--olive-dark);
  opacity: 0; transition: opacity 0.4s ease;
}
.chat__replay.is-on { opacity: 0.8; }
.chat__replay:hover { color: var(--ink); }

/* ════════ 03 · RADAR ════════ */
.radar {
  min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.radar__map { position: absolute; inset: 0; width: 100%; height: 100%; }
.radar__map .street { stroke: #34372a; stroke-width: 1.2; fill: none; }
.radar__map .street--main { stroke: #3f422f; stroke-width: 2.4; }
.radar__map .contour { stroke: #2a2d1f; stroke-width: 1; fill: none; }

.radar__sweep {
  position: absolute; inset: -25%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 320deg, rgba(217, 255, 75, 0.08) 352deg, rgba(217, 255, 75, 0.14) 360deg);
  animation: sweep 7s linear infinite;
  pointer-events: none;
}
@keyframes sweep { to { transform: rotate(360deg); } }

.radar__pins { position: absolute; inset: 0; }
.pin {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 12px 2px rgba(217, 255, 75, 0.65);
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease, box-shadow 0.6s ease;
}
.pin::after {
  content: ""; position: absolute; inset: -10px;
  border: 1px dotted rgba(217, 255, 75, 0.8); border-radius: 50%;
  opacity: 0;
}
.pin--ping::after { animation: ping 2.6s ease-out infinite; }
.pin--ping:nth-child(3n)::after { animation-delay: 0.9s; }
.pin--ping:nth-child(3n+1)::after { animation-delay: 1.7s; }
@keyframes ping {
  0% { transform: scale(0.4); opacity: 0.9; }
  80% { transform: scale(2.6); opacity: 0; }
  100% { opacity: 0; }
}
.pin.is-dim { opacity: 0.14; box-shadow: none; }
.pin.is-dim::after { animation: none; opacity: 0; }

.radar__head { position: relative; z-index: 2; padding: calc(70px + var(--pad)) var(--pad) 0; }
.radar__title { text-shadow: 0 4px 40px rgba(26, 28, 18, 0.8); }

.radar__flyers {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.radar__popup {
  position: absolute; z-index: 2;
  display: flex; gap: 12px; align-items: center;
  min-width: clamp(220px, 18vw, 300px);
  max-width: min(86vw, 340px);
  background: var(--cream); color: var(--ink);
  border-radius: 14px; padding: 10px 16px 10px 10px;
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.7);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { margin-top: 0; } 50% { margin-top: -12px; } }
.radar__popup--primary { right: clamp(16px, 7vw, 140px); top: 34%; }
.radar__popup--secondary { right: clamp(250px, 27vw, 520px); bottom: 19%; animation-delay: -1.4s; }
.radar__popup--tertiary { left: clamp(320px, 42vw, 760px); top: 21%; animation-delay: -2.2s; }
.radar__popup--quartet { left: clamp(28px, 7vw, 140px); bottom: 18%; animation-delay: -3s; }
.radar__popup img { width: 48px; height: 62px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.radar__popup-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.radar__popup-meta strong,
.radar__popup-meta .mono { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.radar__popup-meta strong { font-size: 13px; letter-spacing: 0.04em; }
.radar__popup-meta .mono { opacity: 0.55; font-size: 10px; }
.radar__popup-pin {
  position: absolute; left: 50%; bottom: -26px;
  width: 1px; height: 26px; background: var(--cream); opacity: 0.5;
}

@media (max-width: 760px) {
  .radar__popup {
    min-width: min(78vw, 290px);
    padding-right: 14px;
  }
  .radar__popup--primary { right: 18px; top: 37%; }
  .radar__popup--secondary { left: 18px; right: auto; bottom: 22%; }
  .radar__popup--tertiary { right: 14px; left: auto; bottom: 9%; top: auto; }
  .radar__popup--quartet { display: none; }
}

/* ─── shared section atoms (lede, ctas, captions) ─── */
.lede {
  max-width: 560px; margin: 22px auto 0;
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.55;
  color: var(--olive-dark); text-align: center;
}
.lede--dark { color: var(--olive); }
.lede--tight { margin-bottom: clamp(40px, 6vh, 70px); }
.section-cta {
  display: inline-block; margin-top: clamp(36px, 5vh, 56px);
  color: var(--olive-dark); font-size: 12px;
  transition: color 0.3s ease, transform 0.3s var(--ease-out);
}
.section-cta:hover { color: var(--ink); transform: translateX(6px); }
.section-caption { margin-top: clamp(40px, 6vh, 64px); color: var(--olive-dark); }
.section-caption--dark { color: var(--olive); }

/* ════════ 04 · EXPLORE GRID ════════ */
.explore {
  padding: clamp(90px, 14vh, 160px) var(--pad);
  text-align: center;
}
.explore__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  max-width: 1080px; margin: clamp(44px, 6vh, 70px) auto 0;
}
.grid-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--hairline); border-radius: 14px;
  background: var(--cream); overflow: hidden; text-align: left;
  transition: transform 0.45s var(--ease-out), border-color 0.3s ease, box-shadow 0.45s ease;
}
.grid-card:hover {
  transform: translateY(-6px); border-color: var(--ink);
  box-shadow: 0 24px 50px -24px rgba(22, 23, 15, 0.4);
}
.grid-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.grid-card__meta {
  display: flex; flex-direction: column; gap: 5px;
  padding: 14px 16px 16px;
}
.grid-card__meta strong {
  font-size: 14px; letter-spacing: 0.04em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid-card__meta .mono {
  color: var(--olive-dark); font-size: 10px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.grid-card__tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--volt); color: var(--ink);
  padding: 5px 10px; border-radius: 999px; font-size: 9px;
}
@media (max-width: 760px) { .explore__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ════════ 04b · LISTEN ════════ */
.listen {
  padding: clamp(90px, 14vh, 160px) var(--pad);
  text-align: center;
}
.listen__cities {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  max-width: 680px; margin: clamp(28px, 4vh, 44px) auto 0;
}
.listen__city-tab {
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--ink);
  background: var(--cream); color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.listen__city-tab:hover { border-color: var(--volt); }
.listen__city-tab.is-active { background: var(--ink); color: var(--volt); border-color: var(--ink); }

.listen__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  max-width: 1080px; margin: clamp(32px, 5vh, 56px) auto 0;
}
.listen-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--hairline); border-radius: 14px;
  background: var(--cream); overflow: hidden; text-align: left;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.listen-card.is-in { opacity: 1; transform: none; }
.listen-card__embed { width: 100%; line-height: 0; }
.listen-card__embed iframe { display: block; width: 100%; height: 120px; border: 0; }
.listen-card__body { display: flex; flex-direction: column; gap: 4px; padding: 12px 14px 2px; }
.listen-card__genre {
  align-self: flex-start;
  margin-bottom: 3px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--volt);
  color: var(--ink);
  font-size: 9px;
}
.listen-card__body strong { font-size: 13px; letter-spacing: 0.02em; }
.listen-card__body .mono { color: var(--olive-dark); font-size: 10px; }
.listen-card__go {
  align-self: flex-start; margin: 6px 14px 14px; color: var(--olive-dark); font-size: 11px;
  transition: color 0.3s ease, transform 0.3s var(--ease-out);
}
.listen-card__go:hover { color: var(--ink); transform: translateX(4px); }
.listen-card--loading .listen-card__embed,
.listen-card--loading .listen-card__body strong,
.listen-card--loading .listen-card__body .mono,
.listen-card--loading .listen-card__go {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(22, 23, 15, 0.08);
}
.listen-card--loading .listen-card__embed { height: 120px; }
.listen-card--loading .listen-card__body strong { width: 58%; height: 14px; }
.listen-card--loading .listen-card__body .mono { width: 82%; height: 11px; }
.listen-card--loading .listen-card__go { width: 56px; height: 12px; }
.listen-card--loading .listen-card__embed::after,
.listen-card--loading .listen-card__body strong::after,
.listen-card--loading .listen-card__body .mono::after,
.listen-card--loading .listen-card__go::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(244, 241, 232, 0.55), transparent);
  transform: translateX(-100%);
  animation: listen-loading 1.15s ease infinite;
}
@keyframes listen-loading {
  to { transform: translateX(100%); }
}
@media (max-width: 760px) { .listen__grid { grid-template-columns: 1fr; } }

/* ════════ 05 · CITIES ════════ */
.cities { padding: clamp(90px, 14vh, 160px) var(--pad); }
.cities__title { margin-bottom: clamp(40px, 6vh, 72px); }

.cities__table { border-top: 1px solid var(--hairline); }
.city-row {
  position: relative;
  display: flex; align-items: center; gap: clamp(12px, 2vw, 26px);
  padding: clamp(10px, 1.6vw, 20px) 6px;
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.city-row::before {
  content: ""; position: absolute; inset: 4px 0;
  background: var(--volt);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  z-index: 0;
}
.city-row:hover::before { transform: scaleX(1); }
.city-row > * { position: relative; z-index: 1; }
.city-row .crosshair { opacity: 0.45; transition: opacity 0.3s, transform 0.45s var(--ease-out); }
.city-row:hover .crosshair { opacity: 1; transform: rotate(90deg); }
.city-row__name {
  font-size: clamp(30px, 5.2vw, 72px); text-transform: uppercase; line-height: 1.04;
  transition: transform 0.45s var(--ease-out);
}
.city-row:hover .city-row__name { transform: translateX(14px); }
.city-row__rule { flex: 1; height: 1px; background: var(--hairline); }
.city-row__count { color: var(--olive-dark); font-size: 13px; }

.city-row--hot::before { transform: scaleX(1); }
.city-row--hot .city-row__count::after { content: " ● HOT"; color: var(--ink); font-weight: 700; }

.cities__vertical {
  position: absolute; right: 18px; top: 50%;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right top;
  color: var(--olive); white-space: nowrap;
}
@media (max-width: 900px) { .cities__vertical { display: none; } }

/* ════════ 05 · TASTE ════════ */
.taste {
  padding: clamp(100px, 16vh, 180px) var(--pad);
  text-align: center;
}
.taste__title { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 0 22px; }
.taste__word { position: relative; display: inline-block; }
.underline {
  position: absolute; left: -2%; bottom: -0.18em; width: 104%; height: 0.32em;
  overflow: visible; pointer-events: none;
}
.underline__path {
  stroke: var(--volt); stroke-width: 6; stroke-linecap: round;
  stroke-dasharray: 900; stroke-dashoffset: 900;
}
.taste__title.is-in .underline__path { animation: draw 0.9s var(--ease-out) 0.5s forwards; }

.taste__cloud {
  max-width: 760px; margin: clamp(48px, 7vh, 80px) auto 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 10px;
}
.chip {
  font-family: "Space Mono", monospace; font-size: 13px; letter-spacing: 0.08em;
  padding: 13px 22px; border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--cream); color: var(--ink);
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.5s var(--ease-out), transform 0.55s var(--ease-bounce),
              background 0.25s ease, color 0.25s ease, rotate 0.3s var(--ease-bounce);
  animation: chipfloat 4s ease-in-out infinite;
}
.chip.is-in { opacity: 1; transform: scale(1); }
.chip:nth-child(odd) { rotate: -3deg; animation-duration: 5s; }
.chip:nth-child(3n) { rotate: 2.5deg; animation-duration: 4.4s; animation-delay: 0.6s; }
.chip:nth-child(4n) { rotate: -1.5deg; animation-delay: 1.1s; }
@keyframes chipfloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
.chip:hover { rotate: 0deg; background: var(--ink); color: var(--cream); }
.chip--volt, .chip.is-picked { background: var(--volt); border-color: var(--ink); color: var(--ink); }
.chip--volt:hover, .chip.is-picked:hover { background: var(--ink); color: var(--volt); }
.chip--ink { background: var(--ink); color: var(--cream); }

/* ════════ 06 · WALL ════════ */
.wall {
  padding: 0 0 clamp(80px, 10vh, 130px);
  text-align: center; overflow: hidden;
}
.marquee {
  border-bottom: 1px solid var(--hairline-cream);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
  color: var(--olive);
}
.marquee__inner { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee__inner span { display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

.wall__title { margin: clamp(64px, 9vh, 110px) var(--pad) clamp(48px, 7vh, 90px); }

.wall__row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  padding: 30px var(--pad) 10px;
}
.poster {
  position: relative; width: clamp(120px, 15vw, 220px); flex: none;
  rotate: var(--tilt, 0deg);
  color: inherit;
  transition: rotate 0.55s var(--ease-out), scale 0.55s var(--ease-out);
  will-change: transform, translate;
}
.poster img {
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}
.poster:hover { rotate: 0deg; scale: 1.05; z-index: 3; }
.poster.is-empty { display: none; }
.poster--pick { width: clamp(160px, 19vw, 280px); z-index: 2; }
.poster--pick img { outline: 3px solid var(--volt); outline-offset: 6px; }
@media (max-width: 760px) {
  .wall__row { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scroll-snap-type: x mandatory; padding-bottom: 30px; }
  .poster { scroll-snap-align: center; width: 46vw; }
  .poster--pick { width: 56vw; }
}

/* ─── reduced motion / forced static (verification) ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], .line__inner, .bubble, .event-card, .chip { opacity: 1 !important; transform: none !important; }
  .underline__path { stroke-dashoffset: 0 !important; }
}
.force-static *, .force-static *::before, .force-static *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}
.force-static [data-reveal], .force-static .line__inner, .force-static .bubble,
.force-static .event-card, .force-static .chip { opacity: 1 !important; transform: none !important; }
.force-static .underline__path { stroke-dashoffset: 0 !important; }
