/* Places landing - same system as Tipjar / Events, Aug 2026
 Cream light / nightlife dark. Gradient sampled from live Crony CTAs. */
:root {
 --g1: #95CEE9;
 --g2: #AFBAD7;
 --g3: #D3B5D4;
 --g4: #DCA0BC;
 --grad: linear-gradient(120deg, var(--g1), var(--g2) 40%, var(--g3) 65%, var(--g4));
 --grad-cta: linear-gradient(120deg, var(--g1), var(--g2) 30%, var(--g3) 50%, var(--g4) 70%, var(--g3) 85%, var(--g1));
 --display: "Archivo Black", "Arial Black", Impact, sans-serif;
 --body: "DM Sans", system-ui, -apple-system, sans-serif;
 --radius: 24px;
 --radius-sm: 18px;
 --radius-pill: 999px;
 --land-fade: rgba(240, 238, 233, 1);
 --land-fade-soft: rgba(240, 238, 233, 0.65);
 --grad-soft: linear-gradient(135deg, rgba(149,206,233,0.4), rgba(220,160,188,0.3));
 color-scheme: light dark;
}

:root, [data-theme="light"] {
 --bg: #F0EEE9;
 --text: #1F1E1D;
 --muted: #6B6760;
 --surface: #FFFFFF;
 --line: rgba(31, 30, 29, 0.12);
 --nav-bg: rgba(240, 238, 233, 0.88);
 --ink-bg: #1F1E1D;
 --ink-fg: #FFFFFF;
 --glow: rgba(220, 160, 188, 0.28);
 --card-shadow: 0 20px 50px rgba(31, 30, 29, 0.08);
 --ok: #2F8F4E;
 --err: #C44B3A;
 --logo-on-dark: none;
 --logo-on-light: block;
}

[data-theme="dark"] {
 --bg: #0A0A09;
 --text: #F5F4F0;
 --muted: #9A9790;
 --surface: #141412;
 --line: rgba(245, 244, 240, 0.12);
 --nav-bg: rgba(10, 10, 9, 0.88);
 --ink-bg: #FFFFFF;
 --ink-fg: #1F1E1D;
 --glow: rgba(149, 206, 233, 0.22);
 --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
 --ok: #77D183;
 --err: #FF9B85;
 --logo-on-dark: block;
 --logo-on-light: none;
 --land-fade: rgba(10, 10, 9, 1);
 --land-fade-soft: rgba(10, 10, 9, 0.55);
}

@media (prefers-color-scheme: dark) {
 :root:not([data-theme="light"]) {
 --bg: #0A0A09;
 --text: #F5F4F0;
 --muted: #9A9790;
 --surface: #141412;
 --line: rgba(245, 244, 240, 0.12);
 --nav-bg: rgba(10, 10, 9, 0.88);
 --ink-bg: #FFFFFF;
 --ink-fg: #1F1E1D;
 --glow: rgba(149, 206, 233, 0.22);
 --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
 --ok: #77D183;
 --err: #FF9B85;
 --logo-on-dark: block;
 --logo-on-light: none;
 --land-fade: rgba(10, 10, 9, 1);
 --land-fade-soft: rgba(10, 10, 9, 0.55);
 }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
 min-height: 100%;
 font-family: var(--body);
 background: var(--bg);
 color: var(--text);
}
input, textarea, select, button {
 font-family: inherit;
}
body.on-home {
 overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
 html { scroll-behavior: auto; }
 .land-hero .place-preview { transition: none; }
}

.app { position: relative; z-index: 1; width: 100%; min-height: 100dvh; }
.view { display: none; flex-direction: column; min-height: 100dvh; }
.view.active { display: flex; }

#view-home.view.active {
 display: flex;
 flex-direction: column;
 align-items: stretch;
 width: 100%;
 padding-top: 64px;
}

/* ---- nav ---- */
.land-nav {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 40;
 display: grid;
 grid-template-columns: 1fr auto 1fr;
 align-items: center;
 gap: 12px;
 padding: 14px clamp(18px, 4vw, 48px);
 background: var(--nav-bg);
 backdrop-filter: blur(14px);
 -webkit-backdrop-filter: blur(14px);
 transform: translateY(0);
 transition: transform 0.28s ease, opacity 0.2s ease;
}
.land-nav.is-hidden {
 transform: translateY(-110%);
 opacity: 0;
 pointer-events: none;
}
.nav-peek-zone {
 position: fixed; top: 0; left: 0; right: 0; height: 18px; z-index: 41;
 pointer-events: none;
}
.nav-peek-zone.on { pointer-events: auto; }
.land-nav .brand {
 display: flex; align-items: center; justify-content: center;
 justify-self: center; grid-column: 2;
 text-decoration: none;
}
.land-nav .brand img { height: 28px; width: auto; display: block; }
.land-nav .nav-jump {
 display: flex; grid-column: 1; justify-self: start; align-items: center; gap: 14px;
}
.land-nav .nav-mark {
 width: 22px; height: 22px; object-fit: contain;
 flex: 0 0 auto; display: block;
}
.land-nav .links { display: none; align-items: center; gap: 22px; }
.land-nav .links a {
 font-size: 13.5px; font-weight: 700; color: var(--muted);
 text-decoration: none;
}
.land-nav .links a:hover { color: var(--text); }
.land-nav .nav-cta {
 grid-column: 3; justify-self: end;
 display: flex; align-items: center; gap: 8px;
 flex-wrap: nowrap;
}
.user-chip {
 font-size: 12.5px; font-weight: 700; color: var(--muted);
 max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.land-pill {
 display: inline-flex; align-items: center; justify-content: center; gap: 8px;
 font-family: inherit; font-size: 14px; font-weight: 700;
 padding: 11px 18px; border-radius: var(--radius-pill); border: none; cursor: pointer;
 text-decoration: none; color: inherit; white-space: nowrap;
 transition: transform 0.12s ease, opacity 0.15s ease, box-shadow 0.15s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.land-pill:active { transform: scale(0.98); }
.land-pill.solid {
 color: #fff;
 background: var(--grad-cta);
 background-size: 250% 100%;
 animation: shimmer 7s ease-in-out infinite;
 box-shadow: 0 8px 28px var(--glow);
}
.land-pill.ink {
 background: var(--ink-bg);
 color: var(--ink-fg);
 border: 1.5px solid var(--ink-bg);
}
.land-pill.ink:hover,
.land-pill.ink:focus-visible {
 color: #fff;
 border-color: transparent;
 background: var(--grad-cta);
 background-size: 250% 100%;
 box-shadow: 0 8px 28px var(--glow);
 outline: none;
}
.land-pill.ink-outline,
.land-pill.ghost {
 background: transparent; color: var(--text);
 border: 1.5px solid var(--line);
}
.land-pill.ghost:hover,
.land-pill.ghost:focus-visible {
 color: #fff;
 border-color: transparent;
 background: var(--grad-cta);
 background-size: 250% 100%;
 box-shadow: 0 8px 28px var(--glow);
 outline: none;
}
.land-pill.white {
 background: #FFFFFF;
 color: #1F1E1D;
 border: 1.5px solid #FFFFFF;
}
.land-pill.black {
 background: var(--ink-bg);
 color: var(--ink-fg);
 border: 1.5px solid var(--ink-bg);
}
.land-pill.ring {
 border: 1.5px solid transparent;
 color: var(--text);
 background:
  linear-gradient(var(--surface), var(--surface)) padding-box,
  var(--grad-cta) border-box;
 background-size: auto, 250% 100%;
 background-origin: border-box;
 background-clip: padding-box, border-box;
 animation: shimmer 7s ease-in-out infinite;
}
.land-pill.white:hover,
.land-pill.white:focus-visible,
.land-pill.black:hover,
.land-pill.black:focus-visible,
.land-pill.ring:hover,
.land-pill.ring:focus-visible {
 color: #fff;
 border-color: transparent;
 background: var(--grad-cta);
 background-size: 250% 100%;
 background-clip: border-box;
 animation: shimmer 7s ease-in-out infinite;
 box-shadow: 0 8px 28px var(--glow);
 outline: none;
}
@keyframes shimmer {
 0%, 100% { background-position: 0% 50%; }
 50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
 .land-pill.solid,
 .land-pill.ring,
 .land-pill.white:hover,
 .land-pill.black:hover { animation: none; }
}

.ico { width: 18px; height: 18px; flex: 0 0 auto; }
.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;
}

/* ---- hero ---- */
.hero-band {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 48px) 24px;
  display: grid;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(160px, 1.2fr) minmax(120px, 1fr);
  gap: 10px;
  width: 100%;
  max-width: min(520px, 100%);
  margin-inline: auto;
  min-height: 300px;
}
.hero-collage .shot {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #1a1a18;
  min-height: 0;
}
.hero-collage .shot.wide {
  grid-column: 1 / -1;
}
.hero-collage .shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy { text-align: left; width: 100%; min-width: 0; max-width: 28em; }
.hero-copy .kicker {
  display: inline-flex;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 82px);
  line-height: 0.98; letter-spacing: -0.035em;
  font-weight: 400;
  max-width: 7ch;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.04em;
}
.hero-copy .lede {
  margin: 16px 0 0;
  font-size: clamp(16.5px, 2.4vw, 20px);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.55;
  max-width: 36em;
}
.trust-mini {
  display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 10px 16px;
  margin-top: 22px; font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.trust-mini span { display: inline-flex; align-items: center; gap: 6px; }

/* ---- sections ---- */
.land-section {
 width: 100%;
 max-width: 1040px;
 margin-inline: auto;
 padding: 56px clamp(18px, 4vw, 48px);
 text-align: center;
}
.land-section .eyebrow {
 font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
 text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.land-section h2 {
 font-family: var(--display);
 font-size: clamp(28px, 5vw, 44px);
 line-height: 1.05; letter-spacing: -0.03em; font-weight: 400;
}
.land-section .sub {
 margin: 12px auto 0; font-size: 15.5px; font-weight: 500;
 color: var(--muted); line-height: 1.55; max-width: 36em;
}
.line-band {
 padding-top: 28px;
 padding-bottom: 28px;
}
.line-band h2 {
 font-size: clamp(28px, 5.2vw, 46px);
 line-height: 1.12;
}

.how-grid {
 display: grid; gap: 14px; margin-top: 28px;
 text-align: left;
}
.how-card {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 22px 20px;
 box-shadow: 0 10px 28px rgba(31, 30, 29, 0.04);
 display: flex; flex-direction: column;
}
[data-theme="dark"] .how-card { box-shadow: none; }
.how-step {
 display: inline-flex; align-items: center; justify-content: center;
 width: 28px; height: 28px; border-radius: 999px;
 font-size: 13px; font-weight: 800; color: #fff;
 background: var(--grad);
 margin-bottom: 12px;
}
.how-card h3 {
 font-size: 18px; font-weight: 800; margin-bottom: 8px;
}
.how-card p {
 font-size: 14px; font-weight: 500; color: var(--muted); line-height: 1.5;
}
.how-card .land-pill {
 margin-top: 14px;
 align-self: flex-start;
}

.collab-panel {
 display: grid;
 gap: 28px;
 padding: 32px 26px;
 text-align: left;
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: 32px;
}
.collab-panel .copy {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 12px;
}
.collab-panel .copy > * {
 margin: 0;
 text-align: left;
}
.collab-panel .copy > h2 {
 font-size: clamp(30px, 4.6vw, 44px);
 line-height: 1.08;
}
.collab-panel .copy > .sub {
 max-width: 34em;
}
.collab-steps {
 list-style: none;
 display: flex;
 flex-direction: column;
 align-items: stretch;
 gap: 18px;
 margin: 0;
}
.collab-steps li {
 display: flex;
 align-items: flex-start;
 gap: 14px;
}
.collab-steps li:nth-child(2) { margin-left: clamp(36px, 10%, 88px); }
.collab-steps li:nth-child(3) { margin-left: clamp(72px, 20%, 176px); }
.collab-steps .how-step {
 margin-bottom: 0;
 flex: 0 0 auto;
 width: 32px;
 height: 32px;
 background: transparent;
 color: var(--text);
 border: 1.5px solid var(--text);
}
.collab-steps strong {
 display: block;
 font-size: 16px;
 font-weight: 800;
}
.collab-steps p {
 margin: 3px 0 0;
 font-size: 14px;
 font-weight: 500;
 color: var(--muted);
 line-height: 1.4;
}
.collab-wait {
 min-width: 0;
 width: 100%;
 margin-top: 18px;
}
.collab-note {
 margin: 10px 2px 0;
 max-width: none;
 font-size: 13.5px;
 font-weight: 500;
 color: var(--muted);
 line-height: 1.5;
 text-align: left;
}
.collab-card {
 display: flex;
 align-items: center;
 gap: 6px;
 width: 100%;
 padding: 6px 6px 6px 8px;
 background: var(--surface);
 border: 1.5px solid transparent;
 border-radius: var(--radius-pill);
 box-shadow: 0 8px 24px rgba(31, 30, 29, 0.06);
}
[data-theme="dark"] .collab-card { box-shadow: none; }
.collab-card:focus-within {
 background:
  linear-gradient(var(--surface), var(--surface)) padding-box,
  linear-gradient(
   120deg,
   #95CEE9,
   #AFBAD7 30%,
   #D3B5D4 50%,
   #DCA0BC 70%,
   #D3B5D4 85%,
   #95CEE9
  ) border-box;
 background-size: auto, 280% 100%;
 background-origin: border-box;
 background-clip: padding-box, border-box;
 animation: catOutlineDance 5.2s ease-in-out infinite;
}
.collab-form input {
 flex: 1 1 auto;
 min-width: 0;
 font: inherit;
 font-size: 15px;
 font-weight: 500;
 padding: 10px 12px;
 border: none;
 background: none;
 color: var(--text);
}
.collab-form input:focus {
 outline: none;
}
.collab-form .land-pill {
 flex: 0 0 auto;
 padding: 12px 20px;
}
@media (max-width: 520px) {
 .collab-card {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 10px;
  border-radius: 26px;
 }
 .collab-form .land-pill { width: 100%; }
}
#collab-msg {
 margin-top: 10px;
 min-height: 1.2em;
 font-size: 14px;
 font-weight: 600;
}
#collab-msg:empty { display: none; }
#collab-msg.ok { color: var(--ok); }
#collab-msg.err { color: var(--err); }

.chip-cloud {
 display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
 margin-top: 26px;
}
.vibe-chip {
 font-size: 14px;
 font-weight: 700;
 padding: 12px 16px;
 border-radius: var(--radius-pill);
 color: var(--text);
 border: 1.5px solid transparent;
 background:
  linear-gradient(var(--surface), var(--surface)) padding-box,
  linear-gradient(
   120deg,
   #95CEE9,
   #AFBAD7 30%,
   #D3B5D4 50%,
   #DCA0BC 70%,
   #D3B5D4 85%,
   #95CEE9
  ) border-box;
 background-size: auto, 280% 100%;
 background-origin: border-box;
 background-clip: padding-box, border-box;
 animation: catOutlineDance 6s ease-in-out infinite;
 cursor: default;
 transition: color 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.vibe-chip:hover,
.vibe-chip:focus-visible {
 color: #fff;
 border-color: transparent;
 background: var(--grad-cta);
 background-size: 250% 100%;
 background-clip: border-box;
 animation: shimmer 2.6s ease-in-out infinite;
 box-shadow: 0 4px 18px var(--glow);
 filter: brightness(1.03);
}
@keyframes catOutlineDance {
 0%, 100% { background-position: 0 0, 0% 50%; }
 50% { background-position: 0 0, 100% 50%; }
}
.vibe-chip:nth-child(6n+1) { animation-duration: 4.6s; animation-delay: 0s; }
.vibe-chip:nth-child(6n+2) { animation-duration: 7.2s; animation-delay: -1.1s; }
.vibe-chip:nth-child(6n+3) { animation-duration: 5.4s; animation-delay: -2.4s; }
.vibe-chip:nth-child(6n+4) { animation-duration: 8.1s; animation-delay: -0.6s; }
.vibe-chip:nth-child(6n+5) { animation-duration: 5.9s; animation-delay: -3.2s; }
.vibe-chip:nth-child(6n) { animation-duration: 6.7s; animation-delay: -1.8s; }
@media (prefers-reduced-motion: reduce) {
 .vibe-chip,
 .vibe-chip:hover,
 .vibe-chip:focus-visible {
  animation: none;
 }
}

.feat-grid {
 display: grid; gap: 14px; margin-top: 28px;
 text-align: left;
}
.feat-card {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 12px;
 background: var(--surface);
 border: 1.5px solid var(--line);
 border-radius: var(--radius);
 padding: 22px 20px 20px;
 min-height: 100%;
}
.feat-card h3 {
 font-family: var(--display);
 font-size: clamp(26px, 4.5vw, 34px);
 font-weight: 400;
 letter-spacing: -0.03em;
 text-transform: uppercase;
 line-height: 1;
 margin: 0;
 display: flex;
 align-items: center;
 gap: 10px;
}
.feat-card h3 .ico {
 width: 0.55em;
 height: 0.55em;
 flex: 0 0 auto;
}
.feat-card.paid h3 .ico { color: #95CEE9; }
.feat-card.share h3 .ico { color: #AFBAD7; }
.feat-card.trust h3 .ico { color: #D3B5D4; }
.feat-card.notes h3 .ico { color: #DCA0BC; }
.feat-card.paid { border-color: rgba(149, 206, 233, 0.45); }
.feat-card.share { border-color: rgba(175, 186, 215, 0.5); }
.feat-card.trust { border-color: rgba(211, 181, 212, 0.5); }
.feat-card.notes { border-color: rgba(220, 160, 188, 0.5); }
.feat-card p {
 font-size: 15px;
 font-weight: 500;
 color: var(--muted);
 line-height: 1.55;
 margin: 0;
 flex: 1;
}

.tip-panel {
 display: grid;
 gap: 0;
 border-radius: 32px;
 overflow: hidden;
 background: var(--surface);
 border: 1px solid var(--line);
 text-align: left;
}
.tip-shot {
 min-height: 300px;
 position: relative;
}
.tip-shot img {
 width: 100%;
 height: 100%;
 min-height: 300px;
 object-fit: cover;
 display: block;
}
.tip-panel .copy {
 padding: 32px 26px;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 justify-content: center;
 gap: 14px;
}
.tip-panel .copy > .eyebrow,
.tip-panel .copy > h2,
.tip-panel .copy > .sub {
 margin: 0;
 text-align: left;
}
.tip-panel .copy > h2 {
 font-family: var(--display);
 font-size: clamp(36px, 5.4vw, 54px);
 line-height: 1.05;
 letter-spacing: -0.03em;
 font-weight: 400;
 max-width: none;
}
.tip-panel .copy > .sub {
 font-size: 17px;
 font-weight: 500;
 color: var(--muted);
 line-height: 1.55;
 max-width: 34em;
}
.tip-cta-row {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 10px;
 margin-top: 4px;
}

/* Events map nod */
.nights {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 12px;
}
.nights .eyebrow { margin-bottom: 0; }
.nights h2 {
 margin: 0;
 white-space: nowrap;
}
.nights .sub {
 margin: 0;
 max-width: 28em;
}
.nights .land-pill { margin-top: 4px; }
.map-orb {
 position: relative;
 width: min(100%, 440px);
 aspect-ratio: 1;
 isolation: isolate;
 overflow: hidden;
 margin-top: 4px;
}
#placesMap.map-bg {
 position: absolute;
 inset: -10%;
 width: auto;
 height: auto;
 pointer-events: none;
 z-index: 0;
 border-radius: 50%;
 overflow: hidden;
 -webkit-mask-image: radial-gradient(circle, #000 58%, transparent 86%);
 mask-image: radial-gradient(circle, #000 58%, transparent 86%);
}
#tipjarMap .leaflet-container {
 width: 100%;
 height: 100%;
 background: #0B1E26;
}
#tipjarMap .leaflet-control-attribution {
 display: none !important;
}
.map-orb-wash {
 position: absolute;
 inset: 0;
 z-index: 1;
 pointer-events: none;
 background: radial-gradient(circle at 50% 50%, transparent 44%, var(--bg) 80%);
 -webkit-backdrop-filter: blur(18px);
 backdrop-filter: blur(18px);
 -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 38%, #000 70%);
 mask-image: radial-gradient(circle at 50% 50%, transparent 38%, #000 70%);
}
.map-band-pins {
 --pin-surface: #FFFFFF;
 --pin-border: rgba(31, 30, 29, 0.1);
 --pin-shadow: 0 2px 8px rgba(31, 30, 29, 0.16);
 --pin-face: #F2F2F7;
 position: absolute;
 inset: 0;
 z-index: 2;
 pointer-events: none;
}
[data-theme="dark"] .map-band-pins {
 --pin-surface: #2A2A27;
 --pin-border: rgba(245, 244, 240, 0.12);
 --pin-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
 --pin-face: #3A3A36;
}
.map-band-pins .pin,
.map-band-pins .person,
.map-band-pins .you {
 position: absolute;
 left: 0;
 top: 0;
 z-index: 4;
 opacity: 0;
 transform: translate(-50%, -50%) scale(0.15);
 transition: opacity 0.32s ease, transform 0.58s cubic-bezier(0.34, 1.35, 0.64, 1);
}
.map-band-pins .pin {
 transform: translate(-50%, -100%) scale(0.15);
 transform-origin: 50% 100%;
}
.map-band-pins .pin.show { opacity: 1; transform: translate(-50%, -100%) scale(1); }
.map-band-pins .pin.event { transform: translate(-50%, -50%) scale(0.15); transform-origin: 50% 50%; }
.map-band-pins .pin.event.show { transform: translate(-50%, -50%) scale(1); }
.map-band-pins .person.show,
.map-band-pins .you.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.map-band-pins .pin .bubble {
 width: 35px;
 height: 35px;
 border-radius: 50% 50% 50% 5px;
 background: var(--pin-surface);
 border: 1px solid var(--pin-border);
 box-shadow: var(--pin-shadow);
 display: grid;
 place-items: center;
 transform: rotate(-45deg);
}
.map-band-pins .pin .face {
 width: 29px;
 height: 29px;
 border-radius: 50%;
 background: var(--pin-face);
 display: grid;
 place-items: center;
 transform: rotate(45deg);
 font-size: 14px;
 line-height: 1;
}
.map-band-pins .pin.event .bubble {
 width: 34px;
 height: 34px;
 border-radius: 10px;
 transform: none;
}
.map-band-pins .pin.event .face {
 width: 25px;
 height: 25px;
 border-radius: 7px;
 transform: none;
 font-size: 12px;
}
.map-band-pins .person .rim {
 width: 35px;
 height: 35px;
 border-radius: 50%;
 background: var(--pin-surface);
 border: 1px solid var(--pin-border);
 box-shadow: var(--pin-shadow);
 padding: 3px;
}
.map-band-pins .person .rim img {
 width: 100%;
 height: 100%;
 border-radius: 50%;
 object-fit: cover;
 display: block;
 background: var(--pin-face);
}
.map-band-pins .you {
 width: 35px;
 height: 35px;
 z-index: 6;
 pointer-events: none;
}
.map-band-pins .you .pulse {
 position: absolute;
 inset: 0;
 border-radius: 50%;
 border: 2px solid #DCA0BC;
 opacity: 0;
 animation: youPulse 3.2s ease-out infinite;
}
.map-band-pins .you .pulse.p2 {
 animation-delay: 1.6s;
 border-color: #95CEE9;
}
@keyframes youPulse {
 0% { transform: scale(1); opacity: 0.35; }
 100% { transform: scale(2.75); opacity: 0; }
}
.map-band-pins .you .ring {
 position: relative;
 width: 35px;
 height: 35px;
 border-radius: 50%;
 padding: 3px;
 background: linear-gradient(135deg, #95CEE9, #D3B5D4, #DCA0BC);
 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
.map-band-pins .you .face {
 width: 100%;
 height: 100%;
 border-radius: 50%;
 background: #F2F2F7;
 display: grid;
 place-items: center;
 overflow: hidden;
}
.map-band-pins .you .face svg {
 width: 62%;
 height: 62%;
 fill: #2B2A29;
}
@media (prefers-reduced-motion: reduce) {
 .map-band-pins .you .pulse { animation: none; opacity: 0.25; }
}
.cta-faq {
 display: grid;
 gap: 28px;
 align-items: stretch;
 text-align: left;
}
.cta-faq .faq {
 min-width: 0;
}
.cta-faq .faq > .eyebrow,
.cta-faq .faq > h2 {
 text-align: left;
}
.cta-faq .faq > h2 {
 margin: 0;
 display: flex;
 flex-direction: column;
 font-size: clamp(32px, 4.5vw, 45px);
}
.cta-faq .faq > h2 .head-line {
 display: block;
 white-space: nowrap;
}
.cta-banner {
 position: relative;
 isolation: isolate;
 overflow: hidden;
 width: 100%;
 height: 100%;
 box-sizing: border-box;
 border-radius: 28px;
 padding: clamp(28px, 4.5vw, 44px) clamp(22px, 4vw, 36px);
 text-align: center;
 color: #fff;
 background: #1a1210;
 box-shadow: 0 18px 48px rgba(31, 30, 29, 0.22), inset 0 0 0 1px rgba(255,255,255,0.18);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 12px;
}
.cta-wash {
 position: absolute;
 inset: 0;
 z-index: 0;
 pointer-events: none;
}
.cta-wash img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 38%;
}
.cta-banner::after {
 content: "";
 position: absolute;
 inset: 0;
 z-index: 0;
 pointer-events: none;
 background:
  linear-gradient(180deg, rgba(20, 12, 16, 0.28) 0%, rgba(20, 12, 16, 0.58) 100%),
  linear-gradient(120deg, rgba(149, 206, 233, 0.18), rgba(220, 160, 188, 0.22));
}
.cta-banner > *:not(.cta-wash) {
 position: relative;
 z-index: 1;
}
.cta-banner h2,
.cta-banner .cta-lede {
 text-shadow: 0 2px 18px rgba(20, 12, 16, 0.55);
}
.cta-banner .cta-kicker {
 margin: 0;
 font-family: var(--body);
 font-size: 11px;
 font-weight: 800;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 opacity: 0.82;
}
.cta-banner h2 {
 margin: 0;
 font-family: var(--display);
 font-size: clamp(28px, 4.2vw, 42px);
 font-weight: 400;
 letter-spacing: -0.035em;
 line-height: 0.98;
}
.cta-banner .cta-lede {
 margin: 0;
 max-width: 18em;
 font-family: var(--body);
 font-size: 15px;
 font-weight: 500;
 line-height: 1.45;
 opacity: 0.92;
}
.cta-banner .land-pill.ink {
 background: #fff;
 color: #1F1E1D;
 border-color: #fff;
 padding: 15px 28px;
 font-size: 16px;
 margin-top: 4px;
 box-shadow: 0 10px 24px rgba(31, 30, 29, 0.18);
}
.cta-banner .land-pill.ink:hover,
.cta-banner .land-pill.ink:focus-visible {
 background: #1F1E1D;
 color: #fff;
 border-color: #1F1E1D;
 box-shadow: 0 10px 24px rgba(31, 30, 29, 0.28);
}
@media (prefers-reduced-motion: reduce) {
 .cta-banner { animation: none; }
 .cta-banner::after { animation: none; }
}

.faq-list { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.faq-item {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--radius-sm);
 padding: 4px 16px;
}
.faq-item summary {
 cursor: pointer; list-style: none;
 display: flex; align-items: center; justify-content: space-between; gap: 12px;
 padding: 14px 0; font-size: 15px; font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle::before { content: "+"; color: var(--muted); font-weight: 800; }
.faq-item[open] .faq-toggle::before { content: "-"; }
.faq-a { padding: 0 0 14px; }
.faq-a p { font-size: 14px; font-weight: 500; color: var(--muted); line-height: 1.5; }

.land-footer {
 margin-top: 12px;
 border-top: 1px solid var(--line);
 padding: 36px clamp(18px, 4vw, 48px) 48px;
 background: var(--bg);
 text-align: center;
}
.land-footer .inner { max-width: 880px; margin: 0 auto; }
.land-footer .brand-row { margin-bottom: 12px; display: flex; justify-content: center; }
.land-footer .logo-dark { display: var(--logo-on-dark); height: 26px; width: auto; }
.land-footer .logo-light { display: var(--logo-on-light); height: 26px; width: auto; }
.land-footer p {
 font-size: 14px; font-weight: 500; color: var(--muted); line-height: 1.5; max-width: 40em; margin-inline: auto;
}
.land-footer .contact {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 6px;
 margin-top: 16px;
 font-size: 15px;
 font-weight: 600;
}
.land-footer .contact a {
 color: var(--text);
 text-decoration: none;
}
.land-footer .contact a:hover { text-decoration: underline; }
.land-footer .policies {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 10px 18px;
 margin-top: 16px;
 font-size: 14px;
 font-weight: 700;
}
.land-footer .policies a {
 color: var(--text);
 text-decoration: none;
}
.land-footer .policies a:hover { text-decoration: underline; }
.land-footer .socials {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 10px;
 margin-top: 16px;
}
.land-footer .social {
 width: 42px;
 height: 42px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 1.5px solid var(--line);
 background: var(--surface);
 color: var(--text);
 text-decoration: none;
 transition: transform 0.15s ease, border-color 0.15s ease;
}
.land-footer .social svg {
 width: 18px;
 height: 18px;
 fill: currentColor;
}
.land-footer .social:hover {
 transform: translateY(-2px);
 border-color: color-mix(in srgb, var(--text) 28%, var(--line));
}
.land-footer .links {
 display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 18px; margin-top: 18px;
}
.land-footer .links.legal {
 margin-top: 12px;
}
.land-footer .links a {
 font-size: 13.5px; font-weight: 700; color: var(--text); text-decoration: none;
}
.land-footer .links a:hover { text-decoration: underline; }

/* ---- auth / onboard screens (keep polished) ---- */
.screen {
 width: 100%; max-width: 440px; margin: 0 auto;
 padding: max(28px, env(safe-area-inset-top)) 22px max(28px, env(safe-area-inset-bottom));
 display: flex; flex-direction: column; flex: 1;
 position: relative; z-index: 1;
}
.auth-screen {
 max-width: none; width: 100%; min-height: 100dvh;
 align-items: center; justify-content: center;
 padding-top: max(56px, env(safe-area-inset-top));
 padding-bottom: max(32px, env(safe-area-inset-bottom));
 background: var(--bg);
}
.screen-back {
 position: absolute;
 top: max(18px, env(safe-area-inset-top));
 left: clamp(16px, 4vw, 32px);
 width: 42px; height: 42px; border-radius: 999px;
 border: 1.5px solid var(--line); background: var(--surface);
 color: var(--text); font: inherit; font-size: 22px; font-weight: 500;
 line-height: 1;
 cursor: pointer; display: grid; place-items: center; z-index: 2;
}
.auth-card {
 width: 100%; max-width: 420px;
 padding: 28px 22px 24px; border-radius: 28px;
 border: 1.5px solid var(--line); background: var(--surface);
 box-shadow: var(--card-shadow); text-align: center;
}
.auth-logo { height: 34px; width: auto; display: block; margin: 0 auto 14px; }
.auth-kicker {
 display: inline-flex; font-family: var(--body);
 font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
 text-transform: uppercase; color: var(--muted);
 border: 1px solid var(--line); border-radius: 999px;
 padding: 6px 10px; margin-bottom: 12px;
}
.auth-title {
 font-family: var(--display);
 font-size: clamp(28px, 6vw, 36px); font-weight: 400;
 letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 8px;
 transition: opacity 0.16s ease;
}
.auth-lede {
 font-size: 14.5px; font-weight: 500; color: var(--muted);
 line-height: 1.45; margin: 0 auto 20px; max-width: 28em;
 transition: opacity 0.16s ease;
}
.auth-title.is-fading,
.auth-lede.is-fading,
#view-auth.is-in .auth-title.is-fading,
#view-auth.is-in .auth-lede.is-fading { opacity: 0; }
.tabs {
 position: relative;
 display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
 padding: 4px; border-radius: 999px;
 background: color-mix(in srgb, var(--muted) 10%, transparent);
 margin-bottom: 18px;
}
.tabs .tab-thumb {
 position: absolute;
 top: 4px; bottom: 4px; left: 4px;
 width: calc(50% - 6px);
 border-radius: 999px;
 background: var(--bg);
 border: 1px solid var(--line);
 box-shadow: 0 1px 3px rgba(31, 30, 29, 0.1);
 pointer-events: none;
 z-index: 0;
 transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.tabs.is-signup .tab-thumb {
 transform: translateX(calc(100% + 4px));
}
.tabs button {
 position: relative;
 z-index: 1;
 font: inherit; font-size: 14px; font-weight: 700; border: none; cursor: pointer;
 padding: 11px 12px; border-radius: 999px; background: transparent; color: var(--muted);
 transition: color 0.2s ease;
}
.tabs button.on {
 background: transparent; color: var(--text);
 box-shadow: none; border: none;
}
.fields { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.field-collapse {
 display: grid;
 grid-template-rows: 0fr;
 opacity: 0;
 margin: 0 0 -12px;
 transition:
  grid-template-rows 0.34s cubic-bezier(0.22, 1, 0.36, 1),
  opacity 0.28s ease,
  margin 0.34s ease;
}
.field-collapse.is-on {
 grid-template-rows: 1fr;
 opacity: 1;
 margin-bottom: 0;
}
.field-collapse > .field-inner {
 overflow: hidden;
 min-height: 0;
}
.field label {
 display: block; font-family: var(--body);
 font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 6px;
}
.field input, .field textarea, .field select {
 width: 100%; font-family: var(--body); font-size: 16px; font-weight: 500;
 padding: 14px 18px; border-radius: 999px; border: 1.5px solid var(--line);
 background: var(--bg); color: var(--text); outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
 border-color: color-mix(in srgb, var(--g4) 55%, var(--line));
 box-shadow: 0 0 0 3px color-mix(in srgb, var(--g4) 18%, transparent);
}
.field textarea { border-radius: 18px; min-height: 88px; resize: vertical; }
.field select {
 appearance: none;
 -webkit-appearance: none;
 padding-right: 46px;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236B6760' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.5 6 6 10.5 1.5'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 20px center;
 background-size: 12px 8px;
}
[data-theme="dark"] .field select {
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C8C5BE' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.5 6 6 10.5 1.5'/%3E%3C/svg%3E");
}
.btn {
 display: block; width: 100%; text-align: center; text-decoration: none;
 font-family: inherit; font-size: 15.5px; font-weight: 700;
 padding: 15px 18px; border-radius: 999px; border: none; cursor: pointer;
 color: #fff; background: var(--grad-cta); background-size: 250% 100%;
 animation: shimmer 7s ease-in-out infinite;
 box-shadow: 0 8px 22px var(--glow); margin-top: 4px;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; animation: none; }
.btn-ghost {
 background: transparent; color: var(--text);
 border: 1.5px solid var(--line); margin-top: 10px;
 box-shadow: none; animation: none;
}
.msg { margin-top: 10px; font-size: 13.5px; font-weight: 600; color: var(--err); min-height: 1.2em; text-align: center; }
.msg.ok { color: var(--ok); }
.auth-foot {
 margin-top: 16px; font-size: 12.5px; color: var(--muted); line-height: 1.5; text-align: center;
}
.auth-foot a { color: var(--text); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.progress-dots { display: flex; justify-content: center; gap: 8px; margin: 0 0 18px; }
.progress-dots span {
 width: 8px; height: 8px; border-radius: 999px;
 background: color-mix(in srgb, var(--muted) 35%, transparent);
}
.progress-dots span.on { background: var(--text); }
.ready-link {
 display: grid; gap: 8px; padding: 16px; border-radius: 18px;
 border: 1.5px solid color-mix(in srgb, var(--g4) 48%, var(--line));
 background: color-mix(in srgb, var(--g4) 10%, var(--bg));
 text-align: left;
}
.ready-link-kicker {
 font-family: var(--body); font-size: 11px; font-weight: 800;
 letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.ready-link strong {
 font-family: var(--body); font-size: 14px; line-height: 1.35;
 overflow-wrap: anywhere; color: var(--text);
}
.ready-link-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-action {
 appearance: none; display: inline-flex; align-items: center; justify-content: center;
 padding: 8px 11px; border-radius: 999px; border: 1px solid var(--line);
 background: var(--surface); color: var(--text); text-decoration: none;
 font-family: var(--body); font-size: 12px; font-weight: 700; cursor: pointer;
}
.payout-explain {
 font-family: var(--body); font-size: 13px; line-height: 1.5; color: var(--muted);
 padding: 0 2px;
}
.payout-explain strong { color: var(--text); }

.screen-view.active .screen-back,
.screen-view.active .auth-card {
 opacity: 0;
 transform: translateY(22px) scale(0.94);
}
.screen-view.is-in .screen-back,
.screen-view.is-in .auth-card {
 opacity: 1;
 transform: none;
 transition:
  opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.55s cubic-bezier(0.22, 1.2, 0.36, 1);
}
.screen-view.is-in .screen-back { transition-delay: 0.04s; }
.screen-view.is-in .auth-card { transition-delay: 0.1s; }
.screen-view.active .auth-card > * {
 opacity: 0;
 transform: translateY(16px);
}
.screen-view.is-in .auth-card > * {
 opacity: 1;
 transform: none;
 transition:
  opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}
.screen-view.is-in .auth-card > *:nth-child(1) { transition-delay: 0.16s; }
.screen-view.is-in .auth-card > *:nth-child(2) { transition-delay: 0.22s; }
.screen-view.is-in .auth-card > *:nth-child(3) { transition-delay: 0.28s; }
.screen-view.is-in .auth-card > *:nth-child(4) { transition-delay: 0.34s; }
.screen-view.is-in .auth-card > *:nth-child(5) { transition-delay: 0.4s; }
.screen-view.is-in .auth-card > *:nth-child(6) { transition-delay: 0.46s; }
.screen-view.is-in .auth-card > *:nth-child(7) { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
 .screen-view.active .screen-back,
 .screen-view.active .auth-card,
 .screen-view.active .auth-card > *,
 .screen-view.is-in .screen-back,
 .screen-view.is-in .auth-card,
 .screen-view.is-in .auth-card > * {
  opacity: 1;
  transform: none;
  transition: none;
 }
 .tabs .tab-thumb { transition: none; }
 .field-collapse { transition: none; }
 .auth-title, .auth-lede { transition: none; }
}
.link-preview {
 font-size: 13px; font-weight: 600; color: var(--muted);
 background: color-mix(in srgb, var(--muted) 8%, transparent);
 border-radius: 12px; padding: 10px 12px; word-break: break-all; text-align: left;
}

@media (max-width: 899px) {
  .land-nav {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
  }
  .land-nav .nav-jump { flex: 0 0 auto; }
  .land-nav .brand {
    flex: 1 1 auto;
    grid-column: auto;
    justify-self: auto;
    min-width: 0;
  }
  .land-nav .nav-cta {
    flex: 0 0 auto;
    grid-column: auto;
    justify-self: auto;
  }
}
@media (max-width: 639px) {
  .land-nav { gap: 10px; padding: 12px 14px; }
  .land-nav .nav-mark { width: 26px; height: 26px; }
  .land-nav .nav-cta { gap: 6px; }
  .land-nav .nav-cta .land-pill {
    padding: 9px 14px;
    font-size: 12.5px;
  }
  .chip-cloud { gap: 7px; margin-top: 20px; }
  .vibe-chip {
    font-size: 10.5px;
    padding: 9px 12px;
  }
}
@media (min-width: 900px) {
  .land-nav .links { display: flex; }
  .how-grid, .feat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-band {
    grid-template-columns: minmax(320px, 460px) minmax(0, 28em);
    justify-content: center;
    justify-items: stretch;
    gap: clamp(32px, 4vw, 52px);
    padding-top: 96px;
    padding-bottom: 48px;
    min-height: min(74dvh, 800px);
  }
  .hero-collage {
    margin-inline: 0;
    max-width: none;
    width: 100%;
    min-height: 420px;
    grid-template-rows: minmax(220px, 1.25fr) minmax(150px, 1fr);
    gap: 12px;
  }
  .hero-copy {
    max-width: none;
    width: 100%;
  }
  .tip-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.85fr);
    align-items: stretch;
  }
  .nights .map-orb { width: min(100%, 560px); max-width: 560px; }
  .collab-panel {
    padding: 32px 40px;
  }
  .collab-wait { margin-top: 22px; }
  .tip-shot {
    min-height: 100%;
    max-width: none;
    justify-self: stretch;
    width: 100%;
  }
  .tip-shot img { min-height: 100%; }
  .tip-panel .copy { padding: 48px 32px 48px 40px; }
  .cta-faq {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(18px, 2.5vw, 28px);
    align-items: stretch;
  }
  .cta-faq .faq,
  .cta-banner { height: 100%; min-height: 0; }
  .auth-card { padding: 36px 32px 30px; }
}

/* Scroll appear / disappear (only when JS enables .has-reveal) */
html.has-reveal [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.has-reveal [data-reveal="left"] {
  transform: translate3d(-28px, 0, 0);
}
html.has-reveal [data-reveal="right"] {
  transform: translate3d(28px, 0, 0);
}
html.has-reveal [data-reveal="pop"] {
  transform: translate3d(0, 18px, 0) scale(0.92);
}
html.has-reveal [data-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  html.has-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Place search / claim */
.place-card {
  text-align: left;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1.5px solid var(--line);
  background: var(--bg);
}
.place-card strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}
.place-card span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}
.place-card .listing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
}
.place-card .listing-row em {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}
.pac-container {
  z-index: 10050;
  font-family: var(--body);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  margin-top: 6px;
  overflow: hidden;
}

/* ---- Places v2: directory layout, placeholders, not a TipJar clone ---- */
.hero-split {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 48px) 12px;
  display: grid;
  gap: 32px;
  align-items: start;
}
.hero-split .hero-copy { max-width: 36em; }
.hero-split .hero-copy h1 { max-width: 12ch; }

.door-stack { display: flex; flex-direction: column; gap: 12px; }
.door-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 22px;
  padding: 20px 20px 18px;
  font: inherit;
  color: inherit;
  width: 100%;
  box-shadow: var(--card-shadow);
}
.door-card:hover { border-color: color-mix(in srgb, var(--g4) 45%, var(--line)); }
.door-card .door-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.door-card strong { display: block; font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.door-card span { font-size: 14px; font-weight: 500; color: var(--muted); line-height: 1.45; }
.door-card ol {
  list-style: none;
  counter-reset: how;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  text-align: left;
}
.door-card li {
  counter-increment: how;
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}
.door-card li::before {
  content: counter(how);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.03em;
}
.door-card li strong { color: var(--text); font-weight: 800; }
.door-card .land-pill {
  margin-top: 20px;
  width: 100%;
}

.add-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  text-align: left;
}
.add-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 18px 16px;
}
.add-grid .how-step { margin-bottom: 12px; }
.add-grid h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.add-grid p {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}
#add .land-pill {
  margin-top: 22px;
}

.trust-ico {
  display: grid;
  place-items: start;
  width: auto;
  height: auto;
  margin-bottom: 10px;
  background: none;
  color: var(--text);
  flex: 0 0 auto;
}
.trust-ico .ico { width: 22px; height: 22px; }

.family-card {
  margin: 28px auto 0;
  width: 100%;
  max-width: none;
  display: grid;
  text-align: left;
  color: inherit;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.family-art {
  position: relative;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(120deg, #95CEE9, #AFBAD7 35%, #D3B5D4 65%, #DCA0BC);
}
.family-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--surface));
  pointer-events: none;
  z-index: 1;
}
.family-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.family-art img.on { opacity: 1; }
.family-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 22px 22px;
  position: relative;
  z-index: 2;
}
.family-copy strong { font-size: 22px; font-weight: 800; }
.family-copy span { font-size: 15px; font-weight: 500; color: var(--muted); line-height: 1.45; }
.family-copy em {
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink-bg);
  color: var(--ink-fg);
}

.preview-row {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px clamp(18px, 4vw, 48px) 28px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.place-preview {
  min-width: 0;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.place-preview.lead {
  grid-column: span 3;
  border-radius: 20px;
}
.place-preview.tile {
  grid-column: span 2;
  border-radius: 16px;
}
.ph-cover {
  position: relative;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ph-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.place-preview.lead .ph-mark { font-size: 52px; }
.place-preview.tile .ph-mark { font-size: 32px; }
.ph-cover.ph-a { background: linear-gradient(135deg, #95CEE9, #AFBAD7 55%, #D3B5D4); }
.ph-cover.ph-b { background: linear-gradient(160deg, #D3B5D4, #DCA0BC 50%, #AFBAD7); }
.ph-cover.ph-c { background: linear-gradient(120deg, #AFBAD7, #95CEE9 40%, #DCA0BC); }
.ph-cover.ph-d { background: linear-gradient(150deg, #8FCBB5, #95CEE9 60%, #AFBAD7); }
.ph-cover.ph-e { background: linear-gradient(165deg, #A8C99A, #C5D98A 45%, #95CEE9); }
.ph-mark {
  font-size: 40px;
  line-height: 1;
  z-index: 1;
}
.place-preview .meta { padding: 12px 12px 14px; }
.place-preview .meta-row {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 5px;
}
.cat-chip {
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
}
.open-pill, .closed-pill, .verified-badge, .claim-ribbon {
  font-size: 11px; font-weight: 800; padding: 4px 8px; border-radius: 999px;
}
.open-pill { background: color-mix(in srgb, var(--ok) 18%, var(--surface)); color: var(--ok); }
.closed-pill { background: color-mix(in srgb, var(--muted) 16%, var(--surface)); color: var(--muted); }
.verified-badge { background: color-mix(in srgb, var(--g1) 28%, var(--surface)); color: var(--text); }
.claim-ribbon { background: color-mix(in srgb, var(--g4) 22%, var(--surface)); color: var(--text); }
.place-preview h3 {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.place-preview.lead h3 { font-size: 16px; }
.place-preview p { margin-top: 2px; font-size: 13px; font-weight: 500; color: var(--muted); }
.land-hero .place-preview {
  transition: opacity 0.4s ease;
}
.land-hero .preview-row.is-cycling .place-preview { opacity: 0; }

.split-how {
  display: grid; gap: 16px; margin-top: 28px; text-align: left;
}
.split-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}
.split-col h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.split-col ol {
  list-style: none; counter-reset: how;
  display: flex; flex-direction: column; gap: 14px;
}
.split-col li {
  counter-increment: how;
  padding-left: 36px; position: relative;
  font-size: 14.5px; font-weight: 500; color: var(--muted); line-height: 1.5;
}
.split-col li::before {
  content: counter(how);
  position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad); color: #fff;
  font-size: 12px; font-weight: 800; display: grid; place-items: center;
}
.split-col li strong { color: var(--text); font-weight: 800; }
.split-col p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.split-col .land-pill { margin-top: 18px; align-self: flex-start; }

.collab-head {
  text-align: left;
  margin-bottom: 20px;
}
.collab-head > * { margin: 0; }
.collab-head h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.08;
  max-width: none;
}
.collab-head h2 .grad { white-space: nowrap; }
.collab-head .sub {
  margin: 12px 0 0;
  max-width: 42em;
}

.owner-grid, .trust-grid {
  display: grid; gap: 12px; margin-top: 24px; text-align: left;
}
.owner-grid {
  grid-template-columns: 1fr 1fr;
}
.owner-grid article, .trust-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 18px 16px;
  min-width: 0;
}
.owner-grid h3, .trust-grid h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.owner-grid p, .trust-grid p { font-size: 14px; font-weight: 500; color: var(--muted); line-height: 1.5; }

.soon-card {
  margin-top: 22px;
  text-align: left;
  border: none;
  border-radius: 28px;
  padding: 24px 22px;
  color: #fff;
  background: var(--grad-cta);
  background-size: 250% 100%;
  animation: shimmer 7s ease-in-out infinite;
  box-shadow: 0 18px 48px var(--glow);
}
.soon-pill {
  display: inline-flex;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.16);
  margin-bottom: 18px;
}
.soon-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
}
.soon-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  transition: opacity 0.2s ease;
}
.soon-mock.is-loading .soon-spark,
.soon-mock.is-loading .soon-pies,
.soon-mock.is-loading .soon-money,
.soon-mock.is-loading .soon-queries {
  opacity: 0.28;
  filter: saturate(0.5);
}
.soon-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  margin: 0 0 14px;
}
.soon-tab {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--muted) 8%, var(--surface));
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .soon-tab { flex: 1 1 calc(33.33% - 6px); height: 36px; padding: 0 8px; font-size: 12px; }
}
.soon-tab:hover { border-color: color-mix(in srgb, var(--g1) 45%, var(--line)); }
.soon-tab.on {
  border-color: transparent;
  background: var(--grad);
}
.soon-tab:focus-visible {
  outline: 2px solid var(--g1);
  outline-offset: 2px;
}
.soon-live {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 55%, transparent);
  animation: soonPulse 1.6s ease-out infinite;
}
@keyframes soonPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 50%, transparent); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.soon-place {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.soon-place strong { display: block; font-size: 15px; font-weight: 800; }
.soon-place p { margin: 2px 0 0; font-size: 13px; font-weight: 500; color: var(--muted); }
.soon-spark {
  width: 100%;
  height: 64px;
  display: block;
  margin-bottom: 14px;
}
.soon-cat {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
}
.soon-pies {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .soon-pies { grid-template-columns: 1fr 1fr; }
}
.soon-pie {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  min-width: 0;
}
.soon-pie-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.soon-pie-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.soon-donut {
  width: 118px;
  height: 118px;
  flex: 0 0 auto;
}
.soon-track {
  fill: none;
  stroke: var(--line);
  stroke-width: 16;
}
.soon-slice {
  fill: none;
  stroke-width: 16;
  stroke-linecap: butt;
  stroke-dasharray: 0 252;
  stroke-dashoffset: 0;
  transition: stroke-dasharray 0.9s ease, stroke-dashoffset 0.9s ease;
}
.soon-slice.s1 { stroke: #95CEE9; }
.soon-slice.s2 { stroke: #AFBAD7; }
.soon-slice.s3 { stroke: #D3B5D4; }
.soon-slice.s4 { stroke: #DCA0BC; }
.soon-donut-num {
  fill: var(--text);
  font-family: var(--display);
  font-size: 18px;
  text-anchor: middle;
}
.soon-donut-unit {
  fill: var(--muted);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-anchor: middle;
}
.soon-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  flex: 1;
}
.soon-legend li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.soon-legend b {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.03em;
}
.soon-legend .swatch {
  width: 8px;
  height: 8px;
  border-radius: 99px;
}
.soon-legend .swatch.s1 { background: #95CEE9; }
.soon-legend .swatch.s2 { background: #AFBAD7; }
.soon-legend .swatch.s3 { background: #D3B5D4; }
.soon-legend .swatch.s4 { background: #DCA0BC; }
.soon-money {
  margin-bottom: 14px;
}
.soon-money-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.soon-money-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
}
.soon-money-card b {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.soon-money-card span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.soon-spark,
.soon-pies,
.soon-money,
.soon-queries {
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.soon-filters span.on {
  background: color-mix(in srgb, var(--g1) 16%, var(--surface));
}
.soon-searches {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.soon-queries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.soon-queries:last-child { margin-bottom: 0; }
.soon-queries span {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
}
@media (prefers-reduced-motion: reduce) {
  .soon-dot { animation: none; }
  .soon-card { animation: none; background-size: 100% 100%; }
  .soon-slice { transition: none; }
  .soon-mock.is-loading .soon-spark,
  .soon-mock.is-loading .soon-pies,
  .soon-mock.is-loading .soon-money,
  .soon-mock.is-loading .soon-queries {
    filter: none;
  }
}
.soon-note {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
}

.map-split {
  display: grid; gap: 22px; align-items: center; text-align: left;
}
.map-split .copy { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.map-split .copy > * { margin: 0; }
#map.land-section {
  max-width: none;
  width: 100%;
  padding: 0;
  text-align: left;
}
#map .map-split {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#map .copy {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px clamp(18px, 4vw, 48px) 24px;
}
#map .copy .land-pill { margin-top: 8px; }
#map .map-wait {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 48px) 56px;
}
#map .map-wait .collab-wait,
#map .map-wait.collab-wait { margin-top: 0; }
.map-frame {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 42vh, 480px);
  aspect-ratio: auto;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: transparent;
}
.map-frame #placesMap.map-bg {
  position: absolute;
  inset: 0;
  width: auto; height: auto;
  border-radius: 0;
  -webkit-mask-image: none;
  mask-image: none;
  pointer-events: none;
  z-index: 0;
}
.map-frame .leaflet-container {
  background: transparent;
  border: none;
  outline: none;
}
.map-frame .map-orb-wash {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, var(--bg) 100%);
  backdrop-filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}
.map-frame .map-band-pins { z-index: 2; }

.finale {
  text-align: center;
  padding-top: 12px;
  padding-bottom: 8px;
}
.finale h2 {
  font-family: var(--display);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.finale .cta-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px;
}

.faq-solo h2 .head-line { display: block; }

.land-hero {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 48px) 12px;
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}
.land-hero .hero-copy {
  max-width: none;
  min-width: 0;
}
.land-hero .hero-copy h1 {
  max-width: none;
  overflow: visible;
  font-size: clamp(44px, 8vw, 72px);
  line-height: 0.98;
}
.land-hero .hero-keep,
.land-hero .hero-copy .grad { white-space: nowrap; display: inline-block; }
.land-hero .preview-row {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.map-band {
  position: relative;
  margin: 12px 0 0;
  height: clamp(320px, 48vw, 520px);
  overflow: hidden;
  isolation: isolate;
  --pin-surface: #FFFFFF;
  --pin-border: rgba(31, 30, 29, 0.1);
  --pin-shadow: 0 2px 8px rgba(31, 30, 29, 0.16);
  --pin-face: #F2F2F7;
}
[data-theme="dark"] .map-band,
:root:not([data-theme="light"]) .map-band {
  --pin-surface: #2A2A27;
  --pin-border: rgba(245, 244, 240, 0.12);
  --pin-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  --pin-face: #3A3A36;
}
.map-band-mask { position: absolute; inset: 0; }
.map-band #placesMap.map-bg {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border-radius: 0;
  -webkit-mask-image: none;
  mask-image: none;
  pointer-events: none;
  z-index: 0;
}
.map-band .leaflet-container {
  width: 100%;
  height: 100%;
  background: #0B1E26;
  border: none;
}
.map-band .leaflet-control-attribution { display: none !important; }
.map-band-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
    background:
      linear-gradient(180deg, var(--land-fade) 0%, transparent 18%, transparent 82%, var(--land-fade) 100%),
      linear-gradient(90deg, var(--land-fade-soft), transparent 12%, transparent 88%, var(--land-fade-soft)),
      var(--grad-soft);
}
.map-band-copy {
  position: absolute;
  --map-label-pad: clamp(16px, 4vw, 48px);
  left: max(var(--map-label-pad), calc(50% - 560px + var(--map-label-pad)));
  top: 16%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: min(18em, calc(100% - 32px));
  pointer-events: none;
}
.map-band-label {
  font-family: var(--display);
  font-size: clamp(26px, 5vw, 48px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(10, 10, 9, 0.45);
  max-width: 12ch;
}
[data-theme="light"] .map-band-label {
  color: #12110f;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.75);
}
.map-loc {
  pointer-events: auto;
}
.map-band .map-band-pins {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (min-width: 800px) {
  .land-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 96px;
    padding-bottom: 40px;
    min-height: 0;
    align-items: start;
  }
  .land-hero .hero-copy { max-width: none; }
  .land-hero .preview-row { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .split-how { grid-template-columns: 1fr 1fr; gap: 18px; }
  .add-grid { grid-template-columns: 1fr 1fr 1fr; }
  .owner-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .family-card {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .family-art {
    aspect-ratio: auto;
    min-height: 320px;
    height: 100%;
  }
  .family-copy {
    justify-content: center;
    padding: 32px 28px 32px 24px;
  }
}
