/* ============================================================
   AURUM — Private Members Club  ·  main.css
   Visual: Quiet Luxury · iOS 17 Glassmorphism · Champagne Gold
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg-deep: #0d0e12;
  --bg-mid: #161324;
  --bg-top: #1a1430;
  --bg-grad: linear-gradient(160deg, #0d0e12 0%, #161324 55%, #1a1430 100%);

  --gold: #e6b050;
  --gold-soft: #f2cd88;
  --gold-dim: rgba(230, 176, 80, 0.35);
  --gold-bright: rgba(230, 176, 80, 0.7);

  --ink: #f5f1e8;
  --ink-2: rgba(245, 241, 232, 0.72);
  --ink-3: rgba(245, 241, 232, 0.48);
  --ink-4: rgba(245, 241, 232, 0.28);

  --glass: rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-gold: rgba(230, 176, 80, 0.35);

  --serif: "Cormorant Garamond", "Noto Serif SC", "Songti SC", "Times New Roman", serif;
  --sans: "Inter", "PingFang SC", "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-deep);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ---------- Background layer ---------- */
.bg-layer {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: var(--bg-grad);
}
.bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(90, 60, 140, 0.28), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(40, 30, 80, 0.35), transparent 60%);
}
.bg-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  will-change: transform;
}
.bg-glow--gold {
  width: 520px; height: 520px;
  right: -120px; top: 12%;
  background: radial-gradient(circle, rgba(230, 176, 80, 0.22), transparent 65%);
  animation: glowDrift 18s var(--ease) infinite alternate;
}
.bg-glow--violet {
  width: 620px; height: 620px;
  left: -180px; top: 55%;
  background: radial-gradient(circle, rgba(120, 80, 180, 0.20), transparent 65%);
  animation: glowDrift 22s var(--ease) infinite alternate-reverse;
}
.bg-grain {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
@keyframes glowDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, -30px, 0) scale(1.08); }
}

/* ---------- Glass primitive ---------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 60px -20px rgba(0, 0, 0, 0.6);
}
.glass--strong {
  background: linear-gradient(180deg, rgba(22, 19, 36, 0.85), rgba(13, 14, 18, 0.92));
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-color: var(--stroke-gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease),
              background 420ms var(--ease), border-color 420ms var(--ease),
              color 420ms var(--ease);
  white-space: nowrap;
  user-select: none;
}
.btn .btn__arrow { transition: transform 420ms var(--ease); }
.btn:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1208;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 10px 30px -10px rgba(230, 176, 80, 0.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(230, 176, 80, 0.7); }
.btn--gold:hover .btn__arrow { transform: translateX(4px); }
.btn--gold:active { transform: translateY(0); }
.btn--gold:disabled {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-3);
  box-shadow: none;
  cursor: not-allowed;
  border: 1px solid var(--stroke);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--stroke-gold);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--gold); background: rgba(230, 176, 80, 0.06); }

.btn--block { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 15px; }

/* ============================================================
   1. TICKER
   ============================================================ */
.ticker {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 14, 18, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--stroke);
}
.ticker__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex; align-items: center; gap: 16px;
  min-height: 42px;
}
.ticker__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--gold-dim);
  background: rgba(230, 176, 80, 0.08);
  flex-shrink: 0;
}
.ticker__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(230, 176, 80, 0.6);
  animation: dotPulse 1.8s var(--ease) infinite;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(230, 176, 80, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(230, 176, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 176, 80, 0); }
}
.ticker__viewport {
  flex: 1; overflow: hidden; height: 22px;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  position: absolute; left: 0; right: 0; top: 0;
  transition: transform 600ms var(--ease);
}
.ticker__item {
  height: 22px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.ticker__item strong {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ticker__item em {
  font-style: italic;
  color: var(--ink);
}
.ticker__emoji { font-size: 14px; }
.ticker__sep { color: var(--ink-4); margin: 0 4px; }
.ticker__num {
  font-family: var(--mono);
  color: var(--gold-soft);
  font-weight: 600;
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 24px 72px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__emblem {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink-3);
  margin-bottom: 36px;
}
.hero__emblem-line {
  display: inline-block; width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  font-style: italic;
  font-weight: 500;
}
.hero__subtitle {
  max-width: 620px;
  margin: 0 0 44px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
}
.hero__cta-row {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: 80px;
}
.hero__cta-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--stroke);
  width: min(560px, 100%);
}
.hero__stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero__stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: -0.01em;
}
.hero__stat-pct { font-size: 20px; }
.hero__stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto 44px;
  padding: 0 24px;
  text-align: center;
}
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  text-align: left;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-head__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-head__desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.section-head--row .section-head__desc { margin: 0; }

/* ============================================================
   3. MATCH
   ============================================================ */
.match { padding: 40px 24px 100px; }
.match__panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 36px;
}
.match__group { margin-bottom: 28px; }
.match__label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.chip-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chip {
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  transition: all 360ms var(--ease);
}
.chip:hover {
  color: var(--ink);
  border-color: var(--gold-dim);
  background: rgba(230, 176, 80, 0.05);
}
.chip.is-active {
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  box-shadow: 0 6px 20px -8px rgba(230, 176, 80, 0.6);
}
.match__hint {
  margin: 18px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.match__hint.is-ready { color: var(--gold-soft); }

/* scan / pulse */
.match__scan {
  text-align: center;
  padding: 30px 0 10px;
}
.pulse {
  position: relative;
  width: 160px; height: 160px;
  margin: 20px auto 30px;
  display: grid; place-items: center;
}
.pulse__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: pulseRing 3.5s var(--ease) infinite;
}
.pulse__ring:nth-child(2) { animation-delay: 1.15s; }
.pulse__ring:nth-child(3) { animation-delay: 2.3s; }
@keyframes pulseRing {
  0%   { transform: scale(0.35); opacity: 0; }
  15%  { opacity: 0.9; }
  100% { transform: scale(1.15); opacity: 0; }
}
.pulse__core {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow:
    0 0 0 1px rgba(230, 176, 80, 0.4),
    0 10px 30px -6px rgba(230, 176, 80, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.45) inset;
}
.match__scan-title {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.match__scan-sub {
  margin: 0; color: var(--ink-3); font-size: 13.5px;
}
.dots i {
  display: inline-block;
  font-style: normal;
  animation: dot 1.4s steps(4, end) infinite;
  width: 14px; text-align: left;
}
.dots i:nth-child(2) { animation-delay: 0.2s; }
.dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot {
  0%, 20% { content: ""; }
  40%     { content: "."; }
  60%     { content: ".."; }
  80%,100%{ content: "..."; }
}

/* result */
.match__result { padding: 8px 0 0; }
.match__result-title {
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 24px;
  color: var(--ink);
}
.match__result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.match-user {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: 3 / 4;
}
.match-user__media { position: absolute; inset: 0; }
.match-user__media img { width: 100%; height: 100%; object-fit: cover; }
.match-user__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,14,18,0.1) 0%, rgba(13,14,18,0.4) 45%, rgba(13,14,18,0.95) 100%);
  filter: blur(0.4px);
}
.match-user__score {
  position: absolute;
  top: 12px; right: 12px;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
}
.match-user__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 16px;
}
.match-user__name {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.match-user__loc {
  display: block;
  font-size: 12px;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.match-user__tags {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  padding: 3px 8px;
  border: 1px solid var(--stroke);
  border-radius: 6px;
}

/* ============================================================
   4. LOUNGE
   ============================================================ */
.lounge {
  padding: 40px 0 100px;
  overflow: hidden;
}
.lounge > .section-head { padding-left: 24px; padding-right: 24px; }
.lounge__nav { display: flex; gap: 10px; }
.lounge__arrow {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink-2);
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 360ms var(--ease);
}
.lounge__arrow:hover {
  color: var(--ink);
  border-color: var(--gold-dim);
  background: rgba(230, 176, 80, 0.08);
  transform: translateY(-1px);
}

.lounge__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  grid-template-rows: 1fr;
  gap: 20px;
  padding: 8px 24px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-left: 24px;
}
.lounge__track::-webkit-scrollbar { display: none; }

.lounge-card {
  scroll-snap-align: start;
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 420ms var(--ease), border-color 420ms var(--ease),
              background 420ms var(--ease), box-shadow 420ms var(--ease);
  will-change: transform;
}
.lounge-card:hover {
  transform: translateY(-4px);
  background: var(--glass-strong);
  border-color: var(--stroke-gold);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(230, 176, 80, 0.2);
}
.lounge-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.lounge-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease);
}
.lounge-card:hover .lounge-card__media img { transform: scale(1.04); }
.lounge-card__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 14, 18, 0) 35%, rgba(13, 14, 18, 0.55) 75%, rgba(13, 14, 18, 0.95) 100%);
}
.lounge-card__verified {
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 4px 14px -4px rgba(230, 176, 80, 0.7);
}
.lounge-card__body {
  padding: 18px 20px 22px;
  position: relative;
  margin-top: -40px;
}
.lounge-card__head {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.lounge-card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.lounge-card__loc {
  font-size: 12.5px;
  color: var(--gold-soft);
}
.lounge-card__tags {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 9px;
  border: 1px solid var(--stroke);
  border-radius: 6px;
  margin-bottom: 12px;
}
.lounge-card__quote {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-2);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lounge__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 8px 0 0;
}
.lounge__dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--ink-4);
  transition: all 320ms var(--ease);
  padding: 0;
}
.lounge__dot.is-active {
  width: 22px;
  background: var(--gold);
}

/* ============================================================
   5. FEATURES
   ============================================================ */
.features { padding: 40px 24px 100px; }
.features__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.feature {
  padding: 36px 30px 32px;
  display: flex; flex-direction: column;
  transition: transform 420ms var(--ease), border-color 420ms var(--ease),
              background 420ms var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-gold);
  background: var(--glass-strong);
}
.feature--accent {
  border-color: var(--stroke-gold);
  background: linear-gradient(180deg, rgba(230, 176, 80, 0.06), rgba(255, 255, 255, 0.04));
}
.feature__icon {
  width: 84px; height: 84px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--stroke-gold);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 10px 30px -10px rgba(0, 0, 0, 0.6);
}
.feature__icon img { width: 100%; height: 100%; object-fit: cover; }
.feature__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.feature__desc {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.7;
  flex: 1;
}
.feature__meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--stroke);
}
.feature__meta li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 10px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
}

/* ============================================================
   6. CTA FINAL
   ============================================================ */
.cta-final { padding: 40px 24px 100px; }
.cta-final__card {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__card::before {
  content: "";
  position: absolute;
  top: -50%; left: 50%;
  width: 500px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(230, 176, 80, 0.18), transparent 65%);
  pointer-events: none;
}
.cta-final__eyebrow {
  position: relative;
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.cta-final__title {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-final__desc {
  position: relative;
  max-width: 480px;
  margin: 0 auto 36px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.7;
}
.cta-final .btn { position: relative; }
.cta-final__meta {
  position: relative;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 24px 48px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.foot__dot { margin: 0 10px; color: var(--gold-dim); }

/* ============================================================
   7. ZK OVERLAY
   ============================================================ */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(8, 8, 12, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: overlayIn 420ms var(--ease);
}
/* Critical: CSS display wins over the [hidden] UA rule, so force hidden explicitly */
.overlay[hidden] { display: none !important; }
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.overlay__panel {
  width: min(460px, 100%);
  padding: 40px 36px;
  position: relative;
  animation: panelIn 600ms var(--ease);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* loading */
.zk { text-align: center; }
.zk__spinner {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  position: relative;
}
.zk__spin {
  transform-origin: center;
  animation: zkSpin 1.2s linear infinite;
}
@keyframes zkSpin { to { transform: rotate(360deg); } }
.zk__title {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.zk__progress {
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.zk__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 999px;
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(230, 176, 80, 0.5);
}
.zk__hint {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.zk__hint #zkPct { color: var(--gold-soft); }

/* form */
.zk-form { text-align: center; }
.zk-form__check {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 30px -8px rgba(230, 176, 80, 0.6);
}
.zk-form__title {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 600;
}
.zk-form__desc {
  margin: 0 0 24px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}
.field {
  display: block;
  text-align: left;
  margin-bottom: 14px;
}
.field__label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  transition: border-color 320ms var(--ease), background 320ms var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: var(--ink-4); }
.field input:focus {
  outline: none;
  border-color: var(--gold-dim);
  background: rgba(230, 176, 80, 0.05);
}
.zk-form__or {
  display: flex; align-items: center; gap: 12px;
  margin: 6px 0 14px;
  color: var(--ink-4);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.zk-form__or::before,
.zk-form__or::after {
  content: ""; flex: 1; height: 1px;
  background: var(--stroke);
}
.zk-form.has-error { animation: shake 420ms var(--ease); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.zk-form__cancel {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 280ms var(--ease);
}
.zk-form__cancel:hover { color: var(--ink); }

/* success */
.zk-success { text-align: center; }
.zk-success__check {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 36px -8px rgba(230, 176, 80, 0.6);
  animation: successPop 600ms var(--ease);
}
@keyframes successPop {
  0% { transform: scale(0.6); opacity: 0; }
  60%{ transform: scale(1.08); }
  100%{ transform: scale(1); opacity: 1; }
}
.zk-success__title {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 600;
}
.zk-success__desc {
  margin: 0 0 28px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================================
   7b. PROFILE DETAIL MODAL
   ============================================================ */
.profile-overlay {
  align-items: center;
  padding: 24px;
}
.profile-modal {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: 340px 1fr;
  border-radius: 28px;
  overflow: hidden;
  animation: panelIn 600ms var(--ease);
}
.profile-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(13, 14, 18, 0.55);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 320ms var(--ease);
}
.profile-modal__close:hover {
  background: rgba(230, 176, 80, 0.15);
  border-color: var(--gold-dim);
  color: var(--gold-soft);
  transform: rotate(90deg);
}
.profile-modal__media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.profile-modal__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.profile-modal__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,14,18,0.05) 0%, rgba(13,14,18,0.25) 40%, rgba(13,14,18,0.85) 100%);
}
.profile-modal__verified {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(230, 176, 80, 0.6);
}
.profile-modal__content {
  padding: 40px 36px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.profile-modal__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.profile-modal__name {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.profile-modal__loc {
  margin: 0;
  font-size: 13.5px;
  color: var(--gold-soft);
}
.profile-modal__score {
  flex-shrink: 0;
  padding: 7px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
  white-space: nowrap;
}
.profile-modal__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.profile-modal__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 5px 11px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.profile-modal__bio {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.75;
}
.profile-modal__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.profile-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center;
}
.profile-stat__v {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: -0.005em;
}
.profile-stat__k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.profile-modal__interests {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.profile-modal__interests li {
  position: relative;
  padding: 6px 14px 6px 24px;
  font-size: 12.5px;
  color: var(--ink-2);
  background: rgba(230, 176, 80, 0.06);
  border: 1px solid rgba(230, 176, 80, 0.18);
  border-radius: 999px;
}
.profile-modal__interests li::before {
  content: "";
  position: absolute;
  left: 11px; top: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(230, 176, 80, 0.6);
}
.profile-modal__actions {
  margin-top: auto;
  padding-top: 8px;
}

/* lounge-card clickable state */
.lounge-card { cursor: pointer; }
.lounge-card:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .profile-modal {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
    width: min(460px, 100%);
    border-radius: 22px;
  }
  .profile-modal__media { min-height: 280px; max-height: 320px; }
  .profile-modal__content { padding: 28px 22px 24px; gap: 14px; }
  .profile-modal__name { font-size: 28px; }
  .profile-modal__stats { padding: 14px 0; }
  .profile-stat__v { font-size: 18px; }
}

/* ============================================================
   7c. FLOATING COUNTDOWN WIDGET
   ============================================================ */
.fab-timer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 40px);
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: rgba(22, 19, 36, 0.85);
  border: 1px solid var(--gold-dim);
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 10px 30px -10px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(230, 176, 80, 0.15),
    0 0 18px -4px rgba(230, 176, 80, 0.35);
  cursor: default;
  transition: transform 420ms var(--ease), background 420ms var(--ease),
              border-color 420ms var(--ease), color 420ms var(--ease),
              box-shadow 420ms var(--ease);
  animation: fabIn 700ms var(--ease) both;
}
@keyframes fabIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fab-timer__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(230, 176, 80, 0.12);
  border: 1px solid rgba(230, 176, 80, 0.3);
  animation: breathe 1.6s ease-in-out infinite;
}
.fab-timer__time {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  padding-left: 10px;
  border-left: 1px solid var(--stroke);
  min-width: 42px;
  text-align: center;
  animation: breathe 1.6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.94); }
}
.fab-timer__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink-2);
}

/* Unlocked state: becomes a gold CTA pill */
.fab-timer.is-unlocked {
  cursor: pointer;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 14px 36px -10px rgba(230, 176, 80, 0.7),
    0 0 24px -4px rgba(230, 176, 80, 0.6);
  animation: fabPop 600ms var(--ease), fabGlow 2.4s ease-in-out infinite 600ms;
}
.fab-timer.is-unlocked .fab-timer__icon {
  color: #1a1208;
  background: rgba(26, 18, 8, 0.12);
  border-color: rgba(26, 18, 8, 0.25);
  animation: none;
}
.fab-timer.is-unlocked .fab-timer__time {
  color: #1a1208;
  border-left-color: rgba(26, 18, 8, 0.2);
  animation: none;
}
.fab-timer.is-unlocked .fab-timer__text { color: #1a1208; }
.fab-timer.is-unlocked:hover { transform: translateY(-1px); }
@keyframes fabPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@keyframes fabGlow {
  0%, 100% { box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 14px 36px -10px rgba(230,176,80,0.7), 0 0 20px -4px rgba(230,176,80,0.5); }
  50%      { box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 18px 44px -8px rgba(230,176,80,0.85), 0 0 32px -2px rgba(230,176,80,0.75); }
}

@media (max-width: 640px) {
  .fab-timer {
    top: auto;
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
    justify-content: center;
    padding: 11px 16px;
    font-size: 12px;
  }
  .fab-timer__text { display: none; }
  .fab-timer__time { padding-left: 0; border-left: 0; }
  .fab-timer.is-unlocked .fab-timer__text { display: inline; }
}
@media (max-width: 380px) {
  .fab-timer.is-unlocked .fab-timer__text { font-size: 11.5px; }
}

/* ============================================================
   7d. VOICE UNLOCK MODAL
   ============================================================ */
.voice-modal {
  width: min(440px, 100%);
  padding: 36px 32px 28px;
  text-align: center;
  position: relative;
}
.voice-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  transition: all 320ms var(--ease);
}
.voice-modal__close:hover {
  color: var(--gold-soft);
  border-color: var(--gold-dim);
  background: rgba(230, 176, 80, 0.08);
}
.voice-modal__trophy {
  width: 64px; height: 64px;
  margin: 4px auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 32px -8px rgba(230, 176, 80, 0.6);
  animation: successPop 600ms var(--ease);
}
.voice-modal__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.voice-modal__desc {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
}
.voice-modal__desc strong { color: var(--gold-soft); font-weight: 600; }

.voice-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  margin-bottom: 22px;
  text-align: left;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
}
.voice-node__avatar {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--gold-dim);
}
.voice-node__avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-node__live {
  position: absolute;
  bottom: -2px; right: -2px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 6px;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
  border: 1.5px solid rgba(13, 14, 18, 0.9);
}
.voice-node__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #1a1208;
  animation: nodePulse 1.4s ease-in-out infinite;
}
@keyframes nodePulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.voice-node__meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.voice-node__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.voice-node__loc {
  font-size: 12px;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voice-node__match {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.voice-modal .btn--gold .btn__bolt { margin-right: -2px; }

.voice-success { text-align: center; padding: 8px 0 4px; }
.voice-success__ring {
  width: 64px; height: 64px;
  margin: 4px auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 32px -8px rgba(230, 176, 80, 0.6);
  animation: successPop 600ms var(--ease);
}
.voice-success__title {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 600;
}
.voice-success__desc {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 480px) {
  .voice-modal { padding: 30px 22px 22px; }
  .voice-modal__title { font-size: 21px; }
  .voice-node__loc { font-size: 11px; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.lounge__track .lounge-card.reveal { transition-delay: calc(var(--i, 0) * 80ms); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .features__grid { grid-template-columns: 1fr; }
  .feature { padding: 30px 26px; }

  .match__result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .lounge__track {
    grid-auto-columns: 78%;
    grid-template-columns: none;
  }
  .lounge__dots { display: flex; }
  .lounge__nav { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 64px 20px 56px; }
  .hero__stats { gap: 24px; padding-top: 32px; }
  .hero__stat-num { font-size: 26px; }
  .hero__stat-label { font-size: 9.5px; letter-spacing: 0.14em; }

  .section-head { margin-bottom: 32px; }
  .match__panel { padding: 28px 22px; }
  .cta-final__card { padding: 48px 26px; }
  .overlay__panel { padding: 32px 24px; }

  .ticker__badge { font-size: 10px; padding: 3px 8px; }
  .ticker__item { font-size: 12px; }

  .lounge__track { grid-auto-columns: 84%; gap: 14px; padding: 8px 20px 20px; scroll-padding-left: 20px; }
  .lounge-card__body { padding: 14px 16px 18px; }
  .lounge-card__name { font-size: 20px; }

  .match-user__name { font-size: 16px; }
  .match-user__tags { font-size: 10px; }
}

@media (max-width: 380px) {
  .hero__emblem-text { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .bg-glow { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
