:root {
  --plum-900: #2a0a2e;
  --plum-700: #5a1a57;
  --rose: #e3a894;
  --blush: #f2b8a0;
  --bg: #f8f5f5;
  --ink: #1e1420;
  --muted: #6b5a6d;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(1200px 500px at 70% -20%, #f4dbd1 0%, var(--bg) 45%, #f5eeee 100%);
  color: var(--ink);
}
.container { width: min(1080px, 92vw); margin: 0 auto; }
.topbar { position: sticky; top: 0; backdrop-filter: blur(8px); background: rgba(248,245,245,.72); border-bottom: 1px solid #eadfde; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo-wrap { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img { height: 56px; width: auto; display: block; }
.hero { padding: 76px 0 34px; }
.pill {
  display: inline-block; margin: 0 0 14px; padding: 7px 12px;
  border-radius: 999px; font-size: .84rem; font-weight: 700;
  color: var(--plum-700); border: 1px solid #e4c8bf; background: #fff3ef;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 10px; line-height: 1.04; color: var(--plum-900); max-width: 820px; }
.sub { font-size: 1.08rem; color: var(--muted); max-width: 760px; }
.hero-cta { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.city-banner { margin: 8px 0 0; color: var(--plum-700); font-weight: 600; }
.city-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.city-links a { color: var(--plum-700); text-decoration: none; border-bottom: 1px dashed #c9a9c4; }
.city-links a:hover { color: var(--plum-900); }
.btn {
  display: inline-block; border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--plum-900), var(--plum-700));
  color: #fff; padding: 12px 16px; text-decoration: none; font-weight: 700; cursor: pointer;
}
.btn-ghost { background: transparent; color: var(--plum-900); border: 1px solid #d8c7d7; }
.grid3 { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin: 16px auto 14px; }
.card {
  background: rgba(255,255,255,.84); border: 1px solid #eadfde; border-radius: 16px; padding: 18px;
  box-shadow: 0 10px 26px rgba(42,10,46,.06);
}
.card h3 { margin-top: 0; color: var(--plum-900); }
.value-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); margin-bottom: 20px; }
ul { margin: 0; padding-left: 18px; }
.waitlist { margin-bottom: 30px; }
.waitlist h2 { margin: 0; color: var(--plum-900); }
.row { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; margin: 11px 0; }
input, select {
  width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #decfda; background: #fff;
}
.status { min-height: 22px; margin-top: 12px; font-weight: 700; color: var(--plum-700); white-space: pre-line; }
.ref-note { background: #fff3ef; border: 1px solid #e4c8bf; padding: 8px 10px; border-radius: 10px; color: var(--plum-700); }
.leaderboard ol { margin: 0; padding-left: 20px; }
.leaderboard li { margin: 8px 0; }
.score { color: var(--plum-700); margin-left: 6px; font-weight: 700; }
.footer { border-top: 1px solid #eadfde; padding: 22px 0 34px; display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.muted { color: var(--muted); }
@media (max-width: 700px) { .row { grid-template-columns: 1fr; } }
