/* ============================================================
   HTPM Event Hub — High Ticket Premium Mastermind
   Dark charcoal + brushed teal, modeled on the HTPM landing page
   ============================================================ */

:root {
  --bg: #060a09;
  --bg-2: #0a1211;
  --panel: rgba(19, 32, 30, 0.55);
  --panel-solid: #0d1716;
  --line: rgba(94, 234, 212, 0.14);
  --line-strong: rgba(94, 234, 212, 0.32);
  --teal: #35e0c6;
  --teal-2: #0ea5a4;
  --teal-dim: #7fd4c6;
  --ink: #f2f7f6;
  --muted: #93aca6;
  --gold: #f5c76a;
  --gold-2: #c99a3a;
  --grad: linear-gradient(100deg, #45f0d2 0%, #17c2ad 55%, #0e9c95 100%);
  --grad-gold: linear-gradient(100deg, #ffe3a1 0%, #f0b94f 55%, #d99e2b 100%);
  --font: "Archivo", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --r: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--teal); }

/* ---------- ambient background ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(23, 194, 173, 0.10), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(23, 194, 173, 0.07), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(14, 156, 149, 0.08), transparent 65%),
    var(--bg);
}
.bg-fx::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(94, 234, 212, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 234, 212, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
}

/* ---------- sidebar brand ---------- */
.side-brand {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 6px 14px 20px;
}
.side-brand img {
  width: 176px; height: auto;
  filter: drop-shadow(0 4px 18px rgba(53, 224, 198, 0.25));
}
.side-brand-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--teal-dim); white-space: nowrap;
}
.live-dot {
  display: inline-block; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 12px var(--teal);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .45; transform: scale(.8);} }

/* ---------- shell ---------- */
.shell {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: 264px minmax(0, 1fr) 320px;
  gap: 28px; padding: 28px;
  align-items: start;
}

/* ---------- sidebar ---------- */
.sidebar {
  position: sticky; top: 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.nav-heading {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  padding: 18px 14px 8px;
}
.nav-group { display: flex; flex-direction: column; gap: 4px; }
.nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 12px;
  background: transparent; border: 1px solid transparent;
  color: var(--muted); font-size: 14.5px; font-weight: 600;
  text-align: left; transition: all .18s ease; white-space: nowrap;
}
.nav-item svg { width: 19px; height: 19px; flex-shrink: 0; opacity: .85; }
.nav-item:hover { color: var(--ink); background: rgba(94, 234, 212, 0.06); }
.nav-item.active {
  color: #04211c;
  background: var(--grad);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 24px rgba(23, 194, 173, 0.28);
}
.nav-item--vip { color: var(--gold); }
.nav-item--vip:hover { color: var(--gold); background: rgba(245, 199, 106, 0.08); }
.nav-item--vip.active {
  background: var(--grad-gold); color: #2a1c02;
  box-shadow: 0 6px 24px rgba(240, 185, 79, 0.3);
}

/* ---------- main panels ---------- */
.main { min-width: 0; }
.panel { display: none; }
.panel.active { display: block; animation: panelIn .45s cubic-bezier(.22,.9,.3,1) both; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.crumb {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 18px;
}
.crumb .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.crumb--gold { color: var(--gold); }

.display {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900; line-height: 1.02; letter-spacing: -0.02em;
  text-transform: none; margin-bottom: 18px;
}
.display em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.display .gold, .display em.gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { color: var(--muted); font-size: 16.5px; max-width: 620px; margin-bottom: 30px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px; border-radius: 999px;
  font-weight: 700; font-size: 14.5px; letter-spacing: 0.01em;
  border: 1px solid transparent; text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:active { transform: scale(.97); }
.btn-ico { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad); color: #04211c;
  box-shadow: 0 8px 28px rgba(23, 194, 173, 0.32), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(23, 194, 173, 0.45), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-ghost {
  background: rgba(94, 234, 212, 0.06); color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(94, 234, 212, 0.12); transform: translateY(-2px); }
.btn-gold {
  background: var(--grad-gold); color: #2a1c02;
  box-shadow: 0 8px 28px rgba(240, 185, 79, 0.32), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(240, 185, 79, 0.45), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-lg { padding: 15px 32px; font-size: 15.5px; }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* ---------- lobby ---------- */
.video-frame {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 6px rgba(94,234,212,.04);
  margin-bottom: 26px; aspect-ratio: 16/9;
  background: radial-gradient(120% 140% at 20% 0%, #12211f 0%, #070d0c 70%);
  position: relative;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-frame--stream { margin: 0 0 28px; }
.stream-tier {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .18em;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(6, 10, 9, 0.72); color: var(--teal);
  border: 1px solid rgba(94, 234, 212, 0.35);
  backdrop-filter: blur(6px);
}
.stream-tier--vip { color: #f5c76a; border-color: rgba(240, 185, 79, 0.45); }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
}
.video-logo { height: 72px; width: auto; opacity: .9; }
.play-btn {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--grad); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(53, 224, 198, 0.12), 0 14px 40px rgba(23, 194, 173, 0.4);
  transition: transform .2s ease;
}
.play-btn:hover { transform: scale(1.08); }
.play-btn span {
  width: 0; height: 0; margin-left: 5px;
  border-left: 20px solid #04211c;
  border-top: 12px solid transparent; border-bottom: 12px solid transparent;
}
.video-caption { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.fact-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; margin-bottom: 30px;
}
.fact { background: var(--panel-solid); padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.fact-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.fact-value { font-weight: 700; font-size: 14.5px; }

.booth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.booth {
  position: relative; text-align: left;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ink); overflow: hidden;
  transition: all .2s ease;
}
.booth::after {
  content: "→"; position: absolute; right: 18px; top: 16px;
  color: var(--teal); font-size: 18px; opacity: 0;
  transform: translateX(-6px); transition: all .2s ease;
}
.booth:hover { border-color: var(--line-strong); background: rgba(23, 194, 173, 0.08); transform: translateY(-3px); }
.booth:hover::after { opacity: 1; transform: translateX(0); }
.booth-num { font-family: var(--mono); font-size: 11px; color: var(--teal); letter-spacing: .14em; }
.booth-name { font-weight: 800; font-size: 16.5px; letter-spacing: -0.01em; }
.booth-desc { color: var(--muted); font-size: 13px; }
.booth--vip .booth-num { color: var(--gold); }
.booth--vip:hover { background: rgba(240, 185, 79, 0.07); border-color: rgba(240, 185, 79, 0.35); }
.booth--vip::after { color: var(--gold); }

/* ---------- announcements ---------- */
.nav-badge {
  margin-left: auto; min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 999px; background: var(--grad); color: #04211c;
  font-size: 11px; font-weight: 800; line-height: 20px; text-align: center;
}
.nav-item.active .nav-badge { background: #04211c; color: var(--teal); }
.ann-list { display: flex; flex-direction: column; gap: 14px; max-width: 760px; }
.ann-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px 24px;
  animation: panelIn .4s ease both;
}
.ann-card--pinned { border-color: var(--line-strong); background: rgba(23, 194, 173, 0.07); }
.ann-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.ann-head h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.ann-pin {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(53, 224, 198, 0.14); color: var(--teal);
  border: 1px solid var(--line-strong);
}
.ann-date { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.ann-body { color: #c6d6d2; font-size: 14.5px; white-space: pre-line; }
.ann-empty { color: var(--muted); font-family: var(--mono); font-size: 13px; padding: 30px 0; }

/* ---------- founder ---------- */
.founder-grid { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; }
.founder-photo .photo-placeholder {
  aspect-ratio: 4/5; border-radius: var(--r);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(90% 70% at 50% 20%, rgba(53,224,198,.14), transparent 60%),
    var(--panel-solid);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.photo-placeholder > span {
  font-weight: 900; font-size: 64px; letter-spacing: -0.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.photo-note { font-family: var(--mono); font-size: 11px; color: var(--muted); text-align: center; padding: 0 20px; }
.photo-note code { color: var(--teal-dim); }
.founder-copy p { color: #c6d6d2; margin-bottom: 16px; font-size: 15.5px; max-width: 640px; }
.founder-copy strong { color: var(--ink); }
.stat-row { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.stat {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 22px; display: flex; flex-direction: column; min-width: 130px;
}
.stat b { font-size: 24px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- support ---------- */
.support-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.card h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 14px; flex: 1; }

/* ---------- skool ---------- */
.skool-card {
  display: grid; grid-template-columns: 150px 1fr; gap: 26px;
  background: var(--panel); border: 1px solid var(--line-strong);
  border-radius: var(--r); padding: 30px; align-items: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.skool-mark, .rail-skool-mark {
  font-weight: 900; letter-spacing: -0.05em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.skool-mark { font-size: 96px; line-height: 1; text-align: center; }
.skool-body h3 { font-size: 21px; font-weight: 800; margin-bottom: 12px; }
.skool-body .btn { margin-top: 18px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { position: relative; padding-left: 30px; color: #c6d6d2; font-size: 15px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 6px;
  background: rgba(53, 224, 198, 0.14); color: var(--teal);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.check-list b { color: var(--ink); }
.check-list--gold li::before { background: rgba(245, 199, 106, .14); color: var(--gold); }

/* ---------- sessions / countdown ---------- */
.day-tag {
  display: inline-block; font-family: var(--mono); font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal-dim);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 6px 16px; margin-bottom: 16px;
}
.day-countdown {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px 24px; margin: 6px 0 28px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.cd-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.cd-grid { display: flex; gap: 10px; }
.cd-cell {
  min-width: 68px; text-align: center;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 8px 8px;
}
.cd-cell b {
  display: block; font-size: 26px; font-weight: 900; line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cd-cell span { font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.day-countdown.is-live .cd-grid { display: none; }
.day-countdown.is-live .cd-label { color: var(--teal); }
.day-countdown.is-live::after {
  content: "● LIVE NOW"; font-family: var(--mono); font-weight: 600;
  color: var(--teal); letter-spacing: .2em; animation: pulse 1.6s infinite;
}
.day-countdown.is-done .cd-grid { display: none; }
.day-countdown.is-done::after {
  content: "COMPLETED ✓"; font-family: var(--mono); color: var(--muted); letter-spacing: .2em;
}
.session-copy p { color: #c6d6d2; font-size: 15.5px; margin-bottom: 14px; max-width: 660px; }
.session-copy strong { color: var(--ink); }
.session-copy .check-list { margin-top: 18px; }

/* ---------- speakers ---------- */
.speaker-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.speaker-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px;
  transition: all .2s ease;
}
.speaker-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.speaker-card--main { grid-column: 1 / -1; border-color: var(--line-strong); background: rgba(23, 194, 173, 0.06); }
.speaker-photo {
  width: 76px; height: 76px; flex-shrink: 0; border-radius: 50%;
  background: radial-gradient(100% 100% at 30% 20%, rgba(53,224,198,.28), rgba(14,156,149,.08));
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px; color: var(--teal);
}
.speaker-info { display: flex; flex-direction: column; gap: 3px; }
.speaker-info b { font-size: 17px; font-weight: 800; }
.speaker-info span { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dim); }
.speaker-info p { color: var(--muted); font-size: 13.5px; margin-top: 5px; }

/* ---------- event pass ---------- */
.pass-layout { display: grid; grid-template-columns: 380px 1fr; gap: 34px; align-items: start; }
.pass-form {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: 110px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field input {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 16px;
  color: var(--ink); font-family: var(--font); font-size: 15px;
  outline: none; transition: border .16s ease, box-shadow .16s ease;
}
.field input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(53, 224, 198, 0.12); }
.field input::placeholder { color: #4d635f; }
.form-msg { font-size: 13.5px; min-height: 20px; color: var(--muted); }
.form-msg.err { color: #ff8f8f; }
.form-msg.ok { color: var(--teal); }

.pass-stage { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pass-hint {
  width: 100%; aspect-ratio: 1/1.15; max-width: 420px;
  border: 1.5px dashed var(--line-strong); border-radius: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--muted);
}
.pass-hint svg { width: 56px; height: 56px; opacity: .6; }
.pass-hint p { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; }

.pass-card {
  width: 100%; max-width: 420px; position: relative;
  border-radius: 24px; padding: 26px 26px 22px;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(53, 224, 198, 0.16), transparent 55%),
    linear-gradient(160deg, #101d1b 0%, #070d0c 60%, #0a1413 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 8px rgba(94,234,212,.05);
  overflow: hidden;
  animation: passIn .8s cubic-bezier(.2,.9,.25,1.05) both;
}
@keyframes passIn {
  from { opacity: 0; transform: perspective(900px) rotateY(-28deg) translateY(24px) scale(.94); }
  to { opacity: 1; transform: perspective(900px) rotateY(0) translateY(0) scale(1); }
}
.pass-card.pass-card--vip {
  border-color: rgba(240, 185, 79, 0.45);
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(240, 185, 79, 0.16), transparent 55%),
    linear-gradient(160deg, #1b1710 0%, #0d0a07 60%, #14100a 100%);
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 8px rgba(240,185,79,.06);
}
.pass-shine {
  position: absolute; inset: -60% -30%;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.09) 50%, transparent 58%);
  animation: shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine { 0%, 60% { transform: translateX(-70%);} 100% { transform: translateX(70%);} }
.pass-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.pass-top img { height: 44px; width: auto; }
.pass-type {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .2em;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(53, 224, 198, 0.14); color: var(--teal);
  border: 1px solid var(--line-strong);
}
.pass-card--vip .pass-type { background: rgba(240, 185, 79, 0.14); color: var(--gold); border-color: rgba(240, 185, 79, 0.4); }
.pass-name { font-size: 30px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; }
.pass-role { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.pass-perforation { position: relative; height: 1px; margin: 20px -26px; border-top: 1.5px dashed rgba(148, 190, 182, 0.25); }
.pass-perforation i {
  position: absolute; top: -9px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line-strong);
}
.pass-perforation i:first-child { left: -9px; border-left-color: transparent; }
.pass-perforation i:last-child { right: -9px; border-right-color: transparent; }
.pass-bottom { display: flex; justify-content: space-between; gap: 18px; align-items: flex-end; }
.pass-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.pass-meta span { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.pass-meta b { font-size: 13px; font-weight: 700; }
.pass-meta b#passId { font-family: var(--mono); color: var(--teal); letter-spacing: .08em; }
.pass-card--vip .pass-meta b#passId { color: var(--gold); }
.pass-qr { background: #fff; border-radius: 12px; padding: 8px; flex-shrink: 0; }
.pass-qr img, .pass-qr svg { display: block; width: 92px; height: 92px; }
.pass-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; flex-direction: column; }
.pass-actions .btn { min-width: 260px; }

/* ---------- vip ---------- */
.vip-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }
.vip-cta-row { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.vip-login, .rail-viplogin { font-size: 13.5px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.vip-login:hover, .rail-viplogin:hover { color: var(--ink); }
.vip-visual {
  border-radius: var(--r); padding: 40px 28px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(240, 185, 79, 0.18), transparent 60%),
    var(--panel-solid);
  border: 1px solid rgba(240, 185, 79, 0.35);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.vip-crown { width: 72px; height: 72px; color: var(--gold); filter: drop-shadow(0 6px 24px rgba(240,185,79,.5)); }
.vip-crown svg { width: 100%; height: 100%; }
.vip-visual-text { font-weight: 800; font-size: 19px; line-height: 1.35; }

/* ---------- right rail ---------- */
.rail { position: sticky; top: 28px; display: flex; flex-direction: column; gap: 16px; }
.rail-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
}
.rail-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.25; }
.rail-card p { color: var(--muted); font-size: 13px; }
.rail-card .btn { width: 100%; margin-top: 4px; }
.rail-card--vip {
  border-color: rgba(240, 185, 79, 0.35);
  background:
    radial-gradient(140% 110% at 50% -20%, rgba(240, 185, 79, 0.14), transparent 60%),
    var(--panel-solid);
}
.rail-crown { width: 44px; height: 44px; color: var(--gold); filter: drop-shadow(0 4px 16px rgba(240,185,79,.5)); }
.rail-crown svg { width: 100%; height: 100%; }
.rail-viplogin { font-size: 12px; }
.rail-title { font-family: var(--font); }
.cd-grid--rail { justify-content: center; }
.cd-grid--rail .cd-cell { min-width: 58px; padding: 8px 6px 6px; }
.cd-grid--rail .cd-cell b { font-size: 21px; }
.rail-skool-mark { font-size: 44px; line-height: 1; }
.rail-card--pass { border-style: dashed; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 26px; text-align: center;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em;
  color: var(--muted);
}

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
  .shell { grid-template-columns: 236px minmax(0, 1fr); }
  .rail { grid-column: 1 / -1; position: static; flex-direction: row; flex-wrap: wrap; }
  .rail-card { flex: 1 1 260px; }
}
@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; padding: 18px; gap: 20px; }
  .sidebar {
    position: static; flex-direction: row; flex-wrap: wrap; gap: 8px;
    padding-bottom: 6px;
  }
  .side-brand { width: 100%; align-items: center; padding: 8px 0 14px; }
  .side-brand img { width: 190px; }
  .nav-heading { display: none; }
  .nav-group { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .nav-item { border: 1px solid var(--line); font-size: 13px; padding: 9px 14px; }
  .booth-grid, .support-cards { grid-template-columns: 1fr 1fr; }
  .fact-strip { grid-template-columns: 1fr 1fr; }
  .founder-grid, .pass-layout, .vip-grid, .skool-card { grid-template-columns: 1fr; }
  .pass-form { position: static; }
  .speaker-grid { grid-template-columns: 1fr; }
  .skool-mark { font-size: 64px; }
}
@media (max-width: 560px) {
  .booth-grid, .support-cards, .fact-strip { grid-template-columns: 1fr; }
  .cd-cell { min-width: 58px; }
  .display { font-size: 30px; }
}
