:root {
  --lime: #c7f23a;
  --lime-strong: #a9dc13;
  --lime-soft: #efffc0;
  --ink: #171816;
  --ink-2: #3e403a;
  --muted: #74786d;
  --line: #dedfd8;
  --paper: #f8f7f2;
  --surface: #ffffff;
  --surface-2: #f0f0e9;
  --danger: #d74c3f;
  --warning: #ef9f24;
  --shadow: 0 18px 48px rgba(25, 27, 21, 0.14);
  --font: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: #1d1f1a;
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(199, 242, 58, 0.62);
  outline-offset: 2px;
}
img { display: block; max-width: 100%; }

.desktop-backdrop { position: fixed; inset: 0; overflow: hidden; background: #20221d; }
.desktop-backdrop::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.route { position: absolute; width: 58vw; height: 22vw; border: 2px dashed rgba(199,242,58,.16); border-radius: 50%; transform: rotate(-22deg); }
.route-a { left: -10vw; top: 12vh; }
.route-b { right: -8vw; bottom: 8vh; transform: rotate(20deg); }
.city-label { position: absolute; color: rgba(199,242,58,.42); font: 600 11px/1 monospace; letter-spacing: .18em; }
.label-a { left: 5vw; bottom: 5vh; }
.label-b { right: 5vw; top: 5vh; }

.app-shell {
  position: relative; width: min(100%, 430px); min-height: 100dvh; margin: 0 auto;
  background: var(--paper); overflow: hidden; box-shadow: 0 0 80px rgba(0,0,0,.38);
}
.boot-screen { min-height: 100dvh; display: grid; place-content: center; justify-items: center; gap: 12px; }
.boot-screen img { width: 86px; border-radius: 24px; }
.boot-screen p { margin: 0; color: var(--muted); font-size: 13px; }
.app-frame { min-height: 100dvh; padding-bottom: calc(78px + env(safe-area-inset-bottom)); background: var(--paper); }
.page { min-height: calc(100dvh - 78px); }

.topbar {
  position: sticky; top: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between;
  min-height: 62px; padding: calc(8px + env(safe-area-inset-top)) 18px 8px;
  background: color-mix(in srgb, var(--paper) 91%, transparent); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(90,93,84,.08);
}
.brand-lockup { display: flex; align-items: center; gap: 9px; border: 0; background: none; padding: 0; cursor: pointer; }
.brand-lockup img { width: 34px; height: 34px; object-fit: cover; border-radius: 10px; }
.brand-lockup strong { display: block; font-size: 17px; letter-spacing: -.04em; }
.brand-lockup span { display: block; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-align: left; }
.city-trigger, .icon-button {
  border: 1px solid var(--line); background: var(--surface); min-height: 38px; border-radius: 12px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.city-trigger { padding: 0 11px; font-size: 13px; font-weight: 650; }
.icon-button { width: 40px; padding: 0; }
.icon { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.hero { padding: 22px 18px 14px; }
.eyebrow { margin: 0 0 7px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
.hero h1 { margin: 0; max-width: 310px; font-size: clamp(30px, 9vw, 42px); line-height: 1.04; letter-spacing: -.07em; }
.hero h1 em { font-style: normal; background: linear-gradient(transparent 56%, var(--lime) 56%); }
.hero-note { display: flex; align-items: center; gap: 8px; margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-strong); box-shadow: 0 0 0 4px var(--lime-soft); }

.search-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 0 18px 14px; }
.search-button {
  min-width: 0; height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface);
  display: flex; align-items: center; gap: 10px; color: var(--muted); cursor: pointer; text-align: left;
}
.search-button span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.filter-button { position: relative; width: 48px; height: 48px; border: 0; border-radius: 15px; background: var(--ink); color: white; cursor: pointer; }
.filter-button.active::after { content: ""; position: absolute; right: 7px; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }

.quick-filters { display: flex; gap: 8px; overflow-x: auto; padding: 0 18px 14px; scrollbar-width: none; }
.quick-filters::-webkit-scrollbar { display: none; }
.chip { flex: 0 0 auto; min-height: 36px; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); font-size: 12px; font-weight: 650; cursor: pointer; }
.chip.active { border-color: var(--ink); background: var(--ink); color: white; }
.chip.lime { border-color: var(--lime-strong); background: var(--lime); color: var(--ink); }

.view-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 0 18px 10px; }
.result-count { color: var(--muted); font-size: 12px; }
.segmented { display: inline-flex; padding: 3px; border-radius: 12px; background: var(--surface-2); }
.segmented button { border: 0; background: transparent; min-height: 30px; padding: 0 10px; border-radius: 9px; color: var(--muted); font-size: 11px; font-weight: 700; cursor: pointer; }
.segmented button.active { background: var(--surface); color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.07); }

.map-wrap { padding: 0 12px; }
.city-map {
  position: relative; height: 380px; overflow: hidden; border-radius: 24px; background: #e8e9e2;
  border: 1px solid #d7d9cf; isolation: isolate;
}
.city-map::before {
  content: ""; position: absolute; inset: -20%; opacity: .7;
  background: linear-gradient(118deg, transparent 42%, #fafafa 42%, #fafafa 48%, transparent 48%), linear-gradient(25deg, transparent 60%, #d4d6ce 60%, #d4d6ce 62%, transparent 62%), linear-gradient(90deg, transparent 28%, rgba(255,255,255,.8) 28%, rgba(255,255,255,.8) 32%, transparent 32%);
  transform: rotate(-8deg);
}
.map-block { position: absolute; border: 1px solid rgba(76,80,70,.12); background: rgba(255,255,255,.46); border-radius: 8px; transform: rotate(-8deg); }
.map-block.a { left: 9%; top: 10%; width: 30%; height: 22%; }
.map-block.b { right: 7%; top: 10%; width: 34%; height: 18%; }
.map-block.c { left: 18%; bottom: 10%; width: 37%; height: 28%; }
.map-block.d { right: 7%; bottom: 18%; width: 25%; height: 28%; }
.map-word { position: absolute; color: rgba(35,38,31,.34); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.map-word.a { left: 7%; top: 50%; }.map-word.b { right: 8%; top: 47%; }.map-word.c { left: 45%; bottom: 5%; }
.map-pin {
  position: absolute; z-index: 4; transform: translate(-50%, -100%); border: 0; background: none; padding: 0; cursor: pointer;
  filter: drop-shadow(0 6px 5px rgba(34,37,26,.17));
}
.map-pin .pin-body { width: 38px; height: 42px; display: grid; place-content: center; border-radius: 50% 50% 50% 8px; transform: rotate(-45deg); background: var(--lime); border: 2px solid var(--ink); }
.map-pin .pin-body .icon { width: 18px; transform: rotate(45deg); }
.map-pin.closed .pin-body { background: #b9bbb3; }
.map-pin.selected { z-index: 6; }
.map-pin.selected .pin-body { transform: rotate(-45deg) scale(1.16); }
.map-pin-label { position: absolute; left: 50%; top: 46px; transform: translateX(-50%); width: max-content; max-width: 94px; padding: 5px 7px; border-radius: 7px; background: var(--ink); color: white; font-size: 9px; font-weight: 700; }
.locate-floating { position: absolute; z-index: 8; right: 13px; bottom: 13px; box-shadow: 0 8px 18px rgba(0,0,0,.14); }
.demo-ribbon { position: absolute; z-index: 7; left: 12px; top: 12px; padding: 6px 8px; border-radius: 8px; background: rgba(255,255,255,.88); color: var(--muted); font-size: 9px; font-weight: 700; backdrop-filter: blur(10px); }

.map-preview { margin: 10px 12px 0; padding: 13px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.map-preview h3 { margin: 0 0 4px; font-size: 15px; }
.map-preview p { margin: 0; color: var(--muted); font-size: 11px; }
.map-preview button { border: 0; background: var(--lime); border-radius: 11px; min-height: 38px; padding: 0 12px; font-size: 12px; font-weight: 750; cursor: pointer; }

.bar-list { display: grid; gap: 10px; padding: 0 12px 22px; }
.bar-card { display: grid; grid-template-columns: 88px 1fr; gap: 13px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); padding: 10px; cursor: pointer; text-align: left; }
.bar-card-art { position: relative; min-height: 104px; overflow: hidden; border-radius: 14px; background: var(--art, linear-gradient(135deg, var(--lime), #fff5b2)); }
.bar-card-art::before { content: ""; position: absolute; width: 78px; height: 78px; border: 14px solid rgba(255,255,255,.46); border-radius: 50%; right: -34px; top: -30px; }
.bar-card-art::after { content: ""; position: absolute; left: 13px; bottom: 13px; width: 24px; height: 34px; border: 3px solid var(--ink); border-top: 0; border-radius: 3px 3px 10px 10px; transform: rotate(-7deg); }
.art-letter { position: absolute; right: 9px; bottom: 7px; color: rgba(23,24,22,.58); font: 800 24px/1 monospace; }
.bar-card h3 { margin: 2px 0 5px; font-size: 17px; letter-spacing: -.03em; }
.bar-meta { color: var(--muted); font-size: 11px; line-height: 1.55; }
.bar-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.tiny-tag { padding: 4px 6px; border-radius: 6px; background: var(--surface-2); color: var(--ink-2); font-size: 9px; }
.open-state { color: #478217; font-weight: 700; }.open-state.closed { color: var(--muted); }

.section { padding: 18px; }
.section + .section { padding-top: 2px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.section-heading h2 { margin: 0; font-size: 22px; letter-spacing: -.05em; }
.section-heading p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.text-button { border: 0; background: none; color: var(--ink); font-size: 12px; font-weight: 750; padding: 6px 0; cursor: pointer; }
.feature-card { position: relative; min-height: 190px; overflow: hidden; padding: 22px; border-radius: 24px; background: var(--ink); color: white; }
.feature-card::after { content: "22°"; position: absolute; right: -6px; bottom: -19px; color: rgba(199,242,58,.18); font: 900 96px/1 monospace; }
.feature-card .kicker { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.feature-card h2 { position: relative; z-index: 1; max-width: 260px; margin: 28px 0 7px; font-size: 27px; line-height: 1.08; letter-spacing: -.05em; }
.feature-card p { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.7); font-size: 12px; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.area-card { border: 1px solid var(--line); border-radius: 18px; background: var(--surface); padding: 16px; text-align: left; cursor: pointer; }
.area-card strong { display: block; font-size: 17px; }.area-card span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.contribute-card { padding: 20px; border-radius: 22px; background: var(--lime); }
.contribute-card h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -.04em; }
.contribute-card p { margin: 0 0 16px; color: rgba(23,24,22,.68); font-size: 11px; line-height: 1.6; }

.empty-state { display: grid; place-items: center; min-height: 58vh; padding: 28px; text-align: center; }
.empty-graphic { width: 88px; height: 88px; display: grid; place-content: center; border-radius: 28px; background: var(--lime); transform: rotate(-5deg); }
.empty-graphic .icon { width: 38px; height: 38px; }
.empty-state h2 { margin: 24px 0 8px; font-size: 24px; letter-spacing: -.05em; }
.empty-state p { max-width: 290px; margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.primary, .secondary, .danger-button { min-height: 46px; padding: 0 18px; border-radius: 14px; font-weight: 750; cursor: pointer; }
.primary { border: 1px solid var(--ink); background: var(--ink); color: white; }
.primary.lime { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.secondary { border: 1px solid var(--line); background: var(--surface); }
.danger-button { border: 1px solid rgba(215,76,63,.25); background: rgba(215,76,63,.08); color: var(--danger); }
.button-row { display: flex; gap: 9px; }.button-row > * { flex: 1; }

.profile-head { padding: 26px 18px 18px; }
.avatar { width: 70px; height: 70px; display: grid; place-content: center; border-radius: 24px; background: var(--lime); font-size: 28px; font-weight: 850; transform: rotate(-3deg); }
.profile-head h1 { margin: 18px 0 5px; font-size: 28px; letter-spacing: -.06em; }
.profile-head p { margin: 0; color: var(--muted); font-size: 12px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 18px 18px; }
.stat { padding: 13px 9px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); }
.stat strong { display: block; font-size: 22px; letter-spacing: -.04em; }.stat span { color: var(--muted); font-size: 9px; }
.settings-list { display: grid; gap: 8px; }
.settings-row { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); padding: 0 14px; }
.settings-row button { border: 0; background: transparent; padding: 0; cursor: pointer; }
.settings-row .label { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 650; }
.toggle { width: 44px; height: 26px; padding: 3px; border: 0; border-radius: 20px; background: #c8cac2; cursor: pointer; transition: .2s ease; }
.toggle::after { content: ""; display: block; width: 20px; height: 20px; border-radius: 50%; background: white; box-shadow: 0 2px 6px rgba(0,0,0,.18); transition: .2s ease; }
.toggle.on { background: var(--lime-strong); }.toggle.on::after { transform: translateX(18px); }
.record-list { display: grid; gap: 8px; }
.record-item { display: grid; grid-template-columns: 58px 1fr auto; gap: 11px; align-items: center; padding: 9px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); cursor: pointer; text-align: left; }
.record-thumb { width: 58px; height: 58px; object-fit: cover; border-radius: 12px; background: var(--surface-2); }
.record-item strong { display: block; font-size: 13px; }.record-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }

.record-page { padding: calc(18px + env(safe-area-inset-top)) 18px 24px; }
.record-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.record-top h1 { margin: 0; font-size: 25px; letter-spacing: -.05em; }
.photo-drop { position: relative; min-height: 270px; display: grid; place-content: center; justify-items: center; overflow: hidden; border: 2px dashed #b9bcaf; border-radius: 26px; background: var(--surface-2); text-align: center; cursor: pointer; }
.photo-drop.has-photo { border-style: solid; }
.photo-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.photo-drop img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-drop .photo-copy { position: relative; z-index: 1; display: grid; justify-items: center; }
.photo-drop.has-photo .photo-copy { align-self: end; width: 100%; padding: 36px 10px 14px; color: white; background: linear-gradient(transparent, rgba(0,0,0,.68)); }
.camera-mark { width: 62px; height: 62px; display: grid; place-content: center; border-radius: 20px; background: var(--lime); color: var(--ink); margin-bottom: 12px; }
.camera-mark .icon { width: 28px; height: 28px; }
.photo-copy strong { font-size: 15px; }.photo-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; }.has-photo .photo-copy small { color: rgba(255,255,255,.74); }
.form-grid { display: grid; gap: 14px; margin-top: 18px; }
.field { display: grid; gap: 7px; }
.field label, .field-label { color: var(--ink-2); font-size: 11px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); color: var(--ink); padding: 12px 13px;
}
.field textarea { min-height: 88px; resize: vertical; }
.inline-check { display: flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: 12px; }
.inline-check input { accent-color: var(--lime-strong); width: 17px; height: 17px; }
.mood-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.mood { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); min-height: 48px; font-size: 19px; cursor: pointer; }.mood.active { border-color: var(--ink); background: var(--lime); }
.privacy-note { color: var(--muted); font-size: 10px; line-height: 1.5; }

.bottom-nav {
  position: fixed; z-index: 35; left: 50%; bottom: 0; transform: translateX(-50%); width: min(100%, 430px);
  height: calc(72px + env(safe-area-inset-bottom)); padding: 7px 8px env(safe-area-inset-bottom);
  display: grid; grid-template-columns: repeat(5, 1fr); align-items: end;
  background: color-mix(in srgb, var(--surface) 94%, transparent); border-top: 1px solid var(--line); backdrop-filter: blur(20px);
}
.nav-button { height: 55px; display: grid; place-content: center; justify-items: center; gap: 3px; border: 0; background: none; color: var(--muted); font-size: 9px; cursor: pointer; }
.nav-button .icon { width: 20px; height: 20px; }.nav-button.active { color: var(--ink); font-weight: 800; }
.nav-button.record { align-self: start; transform: translateY(-19px); }
.nav-button.record .record-circle { width: 57px; height: 57px; display: grid; place-content: center; border-radius: 20px; background: var(--lime); color: var(--ink); border: 4px solid var(--surface); box-shadow: 0 8px 22px rgba(24,26,20,.18); transform: rotate(-3deg); }
.nav-button.record .icon { width: 25px; height: 25px; }.nav-button.record span:last-child { margin-top: 1px; color: var(--ink); font-weight: 800; }

.overlay { position: fixed; z-index: 100; inset: 0; display: grid; place-items: end center; background: rgba(13,14,12,.55); backdrop-filter: blur(5px); }
.overlay.center { place-items: center; padding: 20px; }
.sheet { width: min(100%, 430px); max-height: 91dvh; overflow: auto; border-radius: 28px 28px 0 0; background: var(--paper); padding: 10px 18px calc(22px + env(safe-area-inset-bottom)); box-shadow: var(--shadow); animation: slideUp .24s ease both; }
.modal { width: min(100%, 390px); max-height: 88dvh; overflow: auto; border-radius: 26px; background: var(--paper); padding: 20px; box-shadow: var(--shadow); animation: popIn .22s ease both; }
.sheet-grabber { width: 42px; height: 5px; margin: 2px auto 14px; border-radius: 9px; background: #c9cbc3; }
.sheet-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.sheet-head h2 { margin: 0; font-size: 23px; letter-spacing: -.05em; }.sheet-head p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.close-button { flex: 0 0 auto; width: 36px; height: 36px; display: grid; place-content: center; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; }
.choice-list { display: grid; gap: 8px; }
.choice-row { width: 100%; min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); padding: 0 14px; cursor: pointer; text-align: left; }
.choice-row.active { border-color: var(--ink); background: var(--lime-soft); }.choice-row.disabled { opacity: .55; }
.choice-row strong { display: block; font-size: 13px; }.choice-row small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }
.login-logo { width: 66px; height: 66px; border-radius: 20px; margin-bottom: 18px; }
.modal h2 { margin: 0 0 7px; font-size: 25px; letter-spacing: -.05em; }.modal > p { margin: 0 0 18px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.demo-code { margin: 10px 0; padding: 9px 11px; border-radius: 10px; background: var(--lime-soft); font-size: 11px; }

.bar-hero { position: relative; min-height: 210px; margin: 0 -18px 18px; padding: 18px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg, #252821, #555d3e); color: white; }
.bar-hero::before { content: ""; position: absolute; width: 210px; height: 210px; border: 32px solid rgba(199,242,58,.18); border-radius: 50%; right: -75px; top: -80px; }
.bar-hero::after { content: ""; position: absolute; left: 24px; top: 36px; width: 48px; height: 72px; border: 5px solid var(--lime); border-top: 0; border-radius: 4px 4px 18px 18px; transform: rotate(-9deg); }
.bar-hero h2 { position: relative; z-index: 1; margin: 0 0 6px; font-size: 30px; letter-spacing: -.06em; }.bar-hero p { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.72); font-size: 11px; }
.bar-info { display: grid; gap: 9px; margin-bottom: 18px; }
.info-line { display: grid; grid-template-columns: 20px 1fr; gap: 8px; color: var(--ink-2); font-size: 11px; line-height: 1.55; }
.info-line .icon { width: 17px; height: 17px; }
.menu-head { display: flex; align-items: center; justify-content: space-between; margin: 22px 0 8px; }.menu-head h3 { margin: 0; font-size: 18px; }.menu-head span { color: var(--muted); font-size: 9px; }
.menu-list { display: grid; gap: 7px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 10px; border-bottom: 1px solid var(--line); padding: 11px 0; }.menu-item:last-child { border-bottom: 0; }
.menu-item strong { display: block; font-size: 13px; }.menu-item p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }.menu-item .price { font-size: 14px; font-weight: 800; }.soldout { opacity: .48; }
.sticky-actions { position: sticky; bottom: calc(-22px - env(safe-area-inset-bottom)); display: grid; grid-template-columns: 46px 46px 1fr 1fr; gap: 8px; margin: 18px -18px calc(-22px - env(safe-area-inset-bottom)); padding: 12px 18px calc(14px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(15px); border-top: 1px solid var(--line); }

.range-line { display: flex; align-items: center; justify-content: space-between; margin: 14px 0 7px; font-size: 12px; }.range-input { width: 100%; accent-color: var(--lime-strong); }
.search-input-wrap { position: sticky; top: 0; background: var(--paper); padding-bottom: 12px; z-index: 2; }
.search-input-wrap input { width: 100%; height: 48px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); padding: 0 14px; font-size: 15px; }
.search-results { display: grid; gap: 8px; }
.search-result { width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); text-align: left; cursor: pointer; }
.search-result strong { display: block; font-size: 13px; }.search-result span { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }
.age-gate { text-align: left; }.age-gate .age-mark { width: 78px; height: 78px; display: grid; place-content: center; border: 4px solid var(--ink); border-radius: 50%; background: var(--lime); font: 900 27px/1 monospace; margin-bottom: 20px; transform: rotate(-5deg); }
.age-gate h1 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.06em; }.age-gate p { margin: 0 0 20px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.age-note { display: block; margin-top: 12px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.toast-region { position: fixed; z-index: 200; left: 50%; bottom: calc(88px + env(safe-area-inset-bottom)); transform: translateX(-50%); width: min(calc(100% - 32px), 390px); pointer-events: none; }
.toast { padding: 12px 14px; border-radius: 13px; background: var(--ink); color: white; font-size: 11px; box-shadow: var(--shadow); animation: toastIn .22s ease both; }
.fineprint { color: var(--muted); font-size: 9px; line-height: 1.55; }
.hidden { display: none !important; }

html[data-theme="dark"] { color-scheme: dark; --ink: #f2f3ed; --ink-2: #d4d6cd; --muted: #989c91; --line: #3a3d35; --paper: #151613; --surface: #20221d; --surface-2: #2a2c26; --lime-soft: #2a3719; --shadow: 0 18px 50px rgba(0,0,0,.42); }
html[data-theme="dark"] .map-pin .pin-body, html[data-theme="dark"] .feature-card { color: #171816; }
html[data-theme="dark"] .feature-card { background: #f0f1e9; }.feature-card .kicker { color: var(--lime-strong); }
html[data-theme="dark"] .feature-card h2 { color: #171816; } html[data-theme="dark"] .feature-card p { color: rgba(23,24,22,.62); }
html[data-theme="dark"] .city-map { filter: brightness(.72) contrast(1.05); }

@keyframes slideUp { from { transform: translateY(22px); opacity: 0; } }
@keyframes popIn { from { transform: scale(.97); opacity: 0; } }
@keyframes toastIn { from { transform: translateY(10px); opacity: 0; } }
@media (max-width: 360px) { .hero h1 { font-size: 31px; }.city-map { height: 350px; }.bar-card { grid-template-columns: 76px 1fr; }.mood-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .app-shell { margin-top: 28px; margin-bottom: 28px; min-height: calc(100dvh - 56px); border-radius: 28px; }.bottom-nav { bottom: 28px; border-radius: 0 0 28px 28px; }.overlay { place-items: center; }.sheet { max-width: 430px; border-radius: 28px; max-height: 88dvh; }.app-frame { min-height: calc(100dvh - 56px); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }
