/* Backstage Pass theme: one dark stage look everywhere (amber spotlight + pink). */
:root {
  --bg: #0e0b14;
  --surface: #17121f;
  --surface-2: #221a2d;
  --ink: #f6f1ea;
  --ink-2: #d3cadc;
  --muted: #a79fb4;
  --line: #2d2438;
  --brand: #ffb547;
  --brand-ink: #1a1206;
  --brand-soft: #33250f;
  --accent: #ff4f93;
  --accent-soft: #3a1528;
  --ok: #4ade80;
  --ok-soft: #12301f;
  --warn: #fbbf24;
  --warn-soft: #34270c;
  --bad: #f87171;
  --bad-soft: #3a1717;
  --info: #9fb8ff;
  --info-soft: #1a2446;
  --radius: 16px;
  --shadow: 0 1px 0 rgba(255, 255, 255, .03) inset, 0 12px 30px rgba(0, 0, 0, .28);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Syne", "Manrope", system-ui, sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 15px/1.6 var(--font); }
::selection { background: var(--accent); color: #fff; }
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.08rem; }
p { margin: 0 0 1em; }
small, .muted { color: var(--muted); }
code, .mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; }
hr { border: 0; border-top: 1px solid var(--line); margin: 1.5rem 0; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 16px; }
.narrow { max-width: 560px; }
.medium { max-width: 820px; }
main { padding: 24px 0 64px; }

/* Header */
.site-header { background: rgba(14, 11, 20, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20; }
.site-header .container { display: flex; align-items: center; gap: 16px; min-height: 66px; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1.08rem; letter-spacing: .005em; }
.logo:hover { text-decoration: none; }
.logo-mark { width: 30px; height: 30px; border-radius: 50%; flex: none; background: conic-gradient(from 200deg, var(--brand), var(--accent), var(--brand)); box-shadow: inset 0 0 0 9px var(--bg); }
.nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; margin-left: auto; }
.nav a, .nav button.linklike { color: var(--muted); padding: 8px 12px; border-radius: 999px; font-weight: 600; font-size: 14px; }
.nav a:hover, .nav button.linklike:hover { color: var(--ink); background: var(--surface-2); text-decoration: none; }
.nav a.active { color: var(--brand); background: var(--brand-soft); }
.nav a.btn { color: var(--brand-ink); margin-left: 4px; }
.nav a.btn:hover { color: var(--brand-ink); background: var(--brand); }
.site-header .nav-toggle { display: none; }
@media (max-width: 760px) {
  .site-header .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-bottom: 12px; }
  .nav.open { display: flex; }
  .nav form { width: 100%; }
  .nav .btn { justify-content: center; }
}
.site-footer { border-top: 1px solid var(--line); padding: 36px 0 40px; color: var(--muted); font-size: 14px; background: #0b0910; }
.site-footer .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.site-footer h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); font-family: var(--font); font-weight: 800; margin: 0 0 10px; }
.site-footer a { color: var(--muted); display: block; padding: 3px 0; }
.site-footer a:hover { color: var(--brand); text-decoration: none; }
.site-footer .logo { display: flex; color: var(--ink); padding: 0; }
.site-footer .fine { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 16px; font-size: 13px; }
@media (max-width: 640px) { .site-footer .foot-grid { grid-template-columns: 1fr 1fr; } .site-footer .foot-grid > :first-child { grid-column: 1 / -1; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid transparent; border-radius: 999px; padding: 10px 18px; font: 800 14px/1.2 var(--font); cursor: pointer; background: var(--brand); color: var(--brand-ink); white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease, filter .15s ease; }
.btn:hover { filter: brightness(1.06); text-decoration: none; box-shadow: 0 8px 24px rgba(255, 181, 71, .25); }
.btn:active { transform: translateY(1px); }
a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-ghost { background: transparent; color: var(--ink); border-color: #4a3f57; }
.btn-ghost:hover { background: var(--surface-2); box-shadow: none; }
.btn-danger { background: var(--bad); color: #fff; }
.btn-ok { background: var(--ok); color: #fff; }
.btn-sm { padding: 7px 13px; font-size: 13px; }
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
button.linklike { background: none; border: 0; font: inherit; cursor: pointer; color: var(--brand); padding: 0; }

/* Layout helpers */
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.row.between { justify-content: space-between; }
.stack > * + * { margin-top: 16px; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.layout-side { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px) { .layout-side { grid-template-columns: 1fr 320px; } }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; } .mt { margin-top: 16px; } .mb { margin-bottom: 16px; }
.right { text-align: right; } .center { text-align: center; }
.page-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.page-head h1 { margin: 0; font-size: clamp(1.8rem, 4.2vw, 2.6rem); }
.page-head p { margin: 4px 0 0; color: var(--muted); }

/* Cards */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); min-width: 0; }
.card > h2:first-child, .card > h3:first-child { margin-top: 0; }
.card-flush { padding: 0; overflow: hidden; }
.card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.card-head h2, .card-head h3 { margin: 0; }

/* Sub navigation (tabs) */
.subnav { display: flex; gap: 4px; overflow-x: auto; border-bottom: 1px solid var(--line); margin-bottom: 20px; scrollbar-width: none; }
.subnav a { padding: 10px 14px; color: var(--ink-2); font-weight: 500; border-bottom: 2px solid transparent; white-space: nowrap; }
.subnav a:hover { text-decoration: none; color: var(--ink); }
.subnav a.active { color: var(--brand); border-bottom-color: var(--brand); }
.subnav a { font-weight: 600; }
.subnav .count { background: var(--surface-2); border-radius: 999px; padding: 0 7px; font-size: 12px; margin-left: 4px; }

/* Forms */
.field { margin-bottom: 16px; }
.field label, .label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.field .hint { font-size: 13px; color: var(--muted); margin-top: 4px; }
input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]), select, textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--ink); font: inherit;
}
input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]), select, textarea { background: #120e19; border-radius: 12px; padding: 11px 13px; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: transparent; }
input::placeholder, textarea::placeholder { color: #6f6780; }
input[type=checkbox], input[type=radio] { accent-color: var(--brand); }
input[type=file] { width: 100%; padding: 8px; border: 1px dashed var(--line); border-radius: 10px; background: var(--surface-2); color: var(--ink-2); }
textarea { min-height: 100px; resize: vertical; }
.field-row { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.check-pill { position: relative; }
.check-pill input { position: absolute; opacity: 0; }
.check-pill span { display: inline-block; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 14px; user-select: none; }
.check-pill input:checked + span { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }
.check-pill input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }
.inline-check { display: flex; gap: 8px; align-items: flex-start; font-weight: 400; }
.inline-check input { margin-top: 4px; }
.error { color: var(--bad); font-size: 13px; margin-top: 4px; }
.inline-form { display: inline; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; border: 1px solid transparent; }
.alert-ok { background: var(--ok-soft); color: var(--ok); }
.alert-bad { background: var(--bad-soft); color: var(--bad); }
.alert-warn { background: var(--warn-soft); color: var(--warn); }
.alert-info { background: var(--info-soft); color: var(--info); }
.alert ul { margin: 0; padding-left: 18px; }

/* Badges */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 2px 9px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--surface-2); color: var(--ink-2); white-space: nowrap; }
.badge-verified { background: var(--info-soft); color: var(--info); }
.badge-senior { background: var(--brand-soft); color: var(--brand); }
.badge-provisional { background: var(--accent-soft); color: var(--accent); }
.badge-paused { background: var(--warn-soft); color: var(--warn); }
.badge-ok, .badge-accepted, .badge-approved, .badge-active, .badge-paid, .badge-valid, .badge-resolved { background: var(--ok-soft); color: var(--ok); }
.badge-pending, .badge-submitted, .badge-in_review, .badge-invited, .badge-open, .badge-needs_more { background: var(--warn-soft); color: var(--warn); }
.badge-rejected, .badge-failed, .badge-suspended, .badge-expired { background: var(--bad-soft); color: var(--bad); }

/* Tables */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 800; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; background: var(--surface-2); }
tbody tr:hover td { background: rgba(255, 255, 255, .02); }
tr:last-child td { border-bottom: 0; }

/* Stats */
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.stat .n { font-family: var(--display); font-size: 1.8rem; font-weight: 700; line-height: 1.1; }
.stat .l { color: var(--muted); font-size: 13px; }
a.stat:hover { text-decoration: none; border-color: var(--brand); }

/* Progress / score */
.meter { height: 10px; background: var(--surface-2); border-radius: 999px; overflow: hidden; position: relative; }
.meter > span { display: block; height: 100%; background: var(--brand); border-radius: 999px; }
.meter .mark { position: absolute; top: -3px; bottom: -3px; width: 2px; background: var(--ink); }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: 0; }
.tick { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; background: var(--surface-2); color: var(--muted); }
.tick.done { background: var(--ok); color: #fff; }

/* Avatars & DJ tiles */
.avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: linear-gradient(160deg, #3a2b4d, #1a1322); color: var(--brand); display: grid; place-items: center; font-family: var(--display); font-weight: 700; flex: none; }
.avatar-lg { width: 112px; height: 112px; font-size: 2rem; }
.avatar-sm { width: 36px; height: 36px; font-size: 13px; }
.dj-tile { display: flex; gap: 14px; align-items: center; color: inherit; transition: transform .18s ease, border-color .18s ease; }
.dj-tile:hover { text-decoration: none; transform: translateY(-3px); border-color: rgba(255, 181, 71, .45); }
.dj-tile .avatar { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(255, 181, 71, .5); }
.dj-tile .name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 12px; padding: 2px 8px; border-radius: 6px; background: var(--surface-2); color: var(--ink-2); }

/* Member card */
@media print {
  .site-header, .site-footer, .subnav, .no-print { display: none !important; }
  body { background: #fff; }
  .pass { -webkit-print-color-adjust: exact; print-color-adjust: exact; box-shadow: none; }
}

/* Verify result */
.verify-result { text-align: center; padding: 32px 20px; }
.verify-result .big { font-size: 56px; line-height: 1; margin-bottom: 8px; }

/* Timeline */
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { padding: 12px 0 12px 18px; border-left: 2px solid var(--line); position: relative; }
.timeline li::before { content: ""; position: absolute; left: -6px; top: 18px; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); }

.item { border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: var(--surface); }
.item + .item { margin-top: 10px; }
.item-head { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; align-items: flex-start; }
.empty { text-align: center; color: var(--muted); padding: 28px 12px; }
details.box { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: var(--surface); }
details.box summary { cursor: pointer; font-weight: 600; }
details.box[open] summary { margin-bottom: 12px; }

.pagination { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.pagination a, .pagination span { padding: 6px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--ink-2); }
.pagination .current { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }

.bell-count { display: inline-block; min-width: 18px; padding: 0 5px; margin-left: 3px; border-radius: 999px; background: var(--bad); color: #fff; font-size: 11px; font-weight: 700; line-height: 18px; text-align: center; vertical-align: 1px; }
.notice { display: flex; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); color: inherit; }
.notice:hover { background: var(--surface-2); text-decoration: none; }
.notice.unread { background: var(--brand-soft); }
.notice .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; margin-top: 8px; background: transparent; }
.notice.unread .dot { background: var(--brand); }
.bar-row { display: grid; grid-template-columns: minmax(90px, 40%) 1fr auto; gap: 10px; align-items: center; font-size: 14px; padding: 3px 0; }
.bar-row .meter { height: 8px; }
.candidate { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--line); }
.candidate label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; flex: 1; font-weight: 400; }
.candidate input[type=radio] { margin-top: 12px; }

/* ===== Home: Backstage Pass ===== */
.kicker { font-weight: 800; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--brand); }
.stage-hero { position: relative; overflow: hidden; padding: 48px 0 64px; }
.stage-hero::before { content: ""; position: absolute; inset: -30% -10% auto; height: 140%; pointer-events: none;
  background: radial-gradient(38% 50% at 80% 32%, rgba(255, 181, 71, .26), transparent 70%), radial-gradient(34% 46% at 14% 8%, rgba(255, 79, 147, .2), transparent 70%); }
.stage-hero .container { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.stage-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: -.025em; margin: 14px 0 18px; max-width: 13ch; }
.stage-hero h1 em { font-style: normal; color: var(--accent); }
.stage-hero .lede { color: var(--muted); font-size: 1.12rem; max-width: 46ch; margin-bottom: 26px; }
.stage-hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.stage-hero .proofline { margin-top: 24px; display: flex; gap: 10px 22px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.stage-hero .proofline strong { color: var(--brand); font-family: var(--display); font-size: 1.35rem; margin-right: 6px; font-variant-numeric: tabular-nums; }
.stage-hero .proofline .founding { color: var(--brand); font-weight: 800; }

.lanyard { justify-self: center; width: min(310px, 100%); position: relative; padding-top: 46px; transform: rotate(4deg); animation: sway 7s ease-in-out infinite; transform-origin: 50% 0; }
.lanyard::before { content: ""; position: absolute; top: 0; left: 50%; width: 46px; height: 60px; margin-left: -23px; border-radius: 0 0 8px 8px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 6px, #c3306f 6px 12px); }
@keyframes sway { 0%, 100% { transform: rotate(4deg); } 50% { transform: rotate(1.5deg); } }
.pass { position: relative; border-radius: 20px; padding: 20px; color: #17111e; overflow: hidden;
  background: linear-gradient(135deg, #fff7ea 0%, #ffe3f0 45%, #e6ecff 75%, #fff2d6 100%); box-shadow: 0 30px 70px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(255, 255, 255, .45); }
.pass::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .6) 45%, transparent 60%); mix-blend-mode: soft-light; }
.pass .slot { width: 56px; height: 8px; border-radius: 6px; background: rgba(23, 17, 30, .14); margin: -6px auto 14px; }
.pass .top { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-weight: 800; font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; }
.pass .aaa { background: #17111e; color: var(--brand); padding: 5px 8px; border-radius: 6px; white-space: nowrap; }
.pass .ph { width: 86px; height: 86px; border-radius: 14px; margin: 16px 0 12px; background: linear-gradient(160deg, #3a2b4d, #17111e); display: grid; place-items: center; color: var(--brand); font: 700 28px var(--display); }
.pass .nm { font: 700 1.5rem/1.05 var(--display); }
.pass .ct { font-size: 13px; color: #4f4560; margin: 4px 0 14px; }
.pass .row { justify-content: space-between; align-items: flex-end; flex-wrap: nowrap; }
.pass .no { font: 700 12px/1.4 ui-monospace, "SF Mono", Menlo, monospace; }
.pass .ok { display: inline-block; margin-top: 6px; font-weight: 800; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #0f6b3a; background: #d4f5e2; padding: 5px 8px; border-radius: 6px; }
.pass img.ph { object-fit: cover; }
.pass .qr-real { width: 84px; height: 84px; background: #fff; border: 0; padding: 5px; border-radius: 8px; position: relative; z-index: 1; }
.pass .foot { display: flex; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 10px; border-top: 1px dashed rgba(23, 17, 30, .2); font-size: 11.5px; color: #4f4560; }
.pass-solo { width: min(340px, 100%); }
.pass .qr { width: 64px; height: 64px; flex: none; border-radius: 6px; background: #17111e;
  background-image: repeating-linear-gradient(0deg, #fff7ea 0 3px, transparent 3px 7px), repeating-linear-gradient(90deg, #fff7ea 0 3px, transparent 3px 9px); background-blend-mode: difference; border: 5px solid #17111e; }

.city-ticker { background: var(--brand); color: var(--brand-ink); overflow: hidden; white-space: nowrap; padding: 12px 0; border-block: 1px solid rgba(0, 0, 0, .2); }
.city-ticker .track { display: inline-block; font: 700 1.25rem/1 var(--display); text-transform: uppercase; letter-spacing: .03em; animation: tick 40s linear infinite; }
.city-ticker .track span { margin: 0 16px; }
.city-ticker .track i { font-style: normal; color: #b13a6c; }
@keyframes tick { to { transform: translateX(-50%); } }

.band { padding: 64px 0; border-top: 1px solid var(--line); }
.band h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 8px; }
.band .sub { color: var(--muted); max-width: 58ch; margin-bottom: 30px; font-size: 1.05rem; }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.perk { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.perk .kicker { font-size: 11px; }
.perk h3 { font-size: 1.2rem; margin: 14px 0 8px; }
.perk p { margin: 0; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps .dot { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.steps .dot b { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font: 700 15px var(--display); background: var(--brand); color: var(--brand-ink); flex: none; }
.steps .dot i { height: 2px; flex: 1; background: linear-gradient(90deg, var(--brand), transparent); }
.steps h3 { font-size: 1.05rem; margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); font-size: 14.5px; }
.final-cta { display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap; border-radius: 24px; padding: 36px; background: radial-gradient(60% 120% at 100% 0%, rgba(255, 181, 71, .28), transparent 60%), linear-gradient(100deg, #2a1330, #3b2210); border: 1px solid #4a3040; }
.final-cta h2 { margin: 0 0 6px; }
.final-cta p { margin: 0; color: var(--ink-2); }
@media (max-width: 860px) {
  .stage-hero .container { grid-template-columns: 1fr; gap: 36px; }
  .perks { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } .final-cta { padding: 26px; } .stage-hero { padding-top: 32px; } }
@media (prefers-reduced-motion: reduce) { .lanyard, .city-ticker .track { animation: none; } .btn, .dj-tile { transition: none; } }

/* ===== Sign-up: form + what you get ===== */
.join { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: start; }
.join-aside { position: sticky; top: 90px; background: radial-gradient(80% 60% at 100% 0%, rgba(255, 181, 71, .16), transparent 70%), var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.join-aside h3 { font-size: 1.15rem; }
.join-aside ul { list-style: none; padding: 0; margin: 0 0 4px; display: grid; gap: 12px; }
.join-aside li { display: flex; gap: 10px; color: var(--ink-2); font-size: 14.5px; }
.join-aside li b { color: var(--brand); flex: none; }
@media (max-width: 860px) { .join { grid-template-columns: 1fr; } .join-aside { position: static; } }

/* Breadcrumbs and linked tags */
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.crumbs [aria-current] { color: var(--ink-2); }
a.tag:hover { background: var(--brand-soft); color: var(--brand); text-decoration: none; }
.city-links { display: flex; flex-wrap: wrap; gap: 8px; }
.city-links a { padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-2); font-weight: 600; font-size: 14px; background: var(--surface); }
.city-links a:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.city-links a small { color: var(--muted); font-weight: 500; margin-left: 4px; }
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.faq summary { cursor: pointer; font-weight: 800; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: var(--muted); }

/* Verification countdown */
.clock { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; padding: 14px 18px; border-radius: 14px; margin-bottom: 18px; background: var(--brand-soft); border: 1px solid rgba(255, 181, 71, .35); color: var(--ink-2); }
.clock > div:not(.clock-days) { flex: 1; min-width: 220px; }
.clock strong { color: var(--ink); }
.clock-days { display: grid; justify-items: center; min-width: 64px; line-height: 1; }
.clock-days b { font: 700 2rem var(--display); color: var(--brand); font-variant-numeric: tabular-nums; }
.clock-days span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: 4px; }
.clock-urgent { background: var(--bad-soft); border-color: rgba(248, 113, 113, .4); }
.clock-urgent .clock-days b { color: var(--bad); }
.clock-paused { background: var(--warn-soft); border-color: rgba(251, 191, 36, .4); }
.facts { display: grid; gap: 0; margin: 18px 0 22px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.facts > div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.facts > div:last-child { border-bottom: 0; }
.facts dt { color: var(--muted); font-size: 14px; }
.facts dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }
