/* === Visbets — Direction B landing (vanilla port of handoff design) === */

:root {
  --bg-0: #0A0A0B;
  --bg-1: #131316;
  --bg-2: #1A1A1C;
  --bg-3: #2A2A2C;
  --bg-elev: #222225;
  --line: #2A2A2C;
  --line-2: #333333;
  --txt-0: #FFFFFF;
  --txt-1: #B3B3B3;
  --txt-2: #9A9A9A;
  --txt-3: #666666;
  --txt-4: #404040;
  --neon: #00FF88;
  --neon-light: #33FFA3;
  --neon-dark: #00CC6D;
  --neon-glow: rgba(0, 255, 136, 0.4);
  --neon-glow-soft: rgba(0, 255, 136, 0.15);
  --warning: #FFB800;
  --danger: #FF0055;
  --info: #00D4FF;
  --silver: #B8BCC4;
  --gold: #E8C547;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --font-sans: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  --font-display: "Space Grotesk", "Inter", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg-0); color: var(--txt-0); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body { line-height: 1.5; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
::selection { background: var(--neon); color: #000; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

.accent { color: var(--neon); }
.accent-bold { color: var(--neon); font-weight: 600; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.fine { font-size: 12px; color: var(--txt-3); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-xl { padding: 18px 34px; font-size: 16px; }
.btn-primary {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 0 1px var(--neon), 0 8px 24px -6px var(--neon-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--neon), 0 14px 32px -6px var(--neon-glow); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: 0 0 0 1px var(--neon); }
.btn-ghost {
  background: transparent;
  color: var(--txt-0);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); }
.btn.full { width: 100%; }
.btn.grow { flex: 1; }

/* === Chips / tags === */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.6px;
  background: var(--bg-2);
  color: var(--txt-1);
  border: 1px solid var(--line);
}
.chip-neon {
  background: rgba(0,255,136,0.08);
  color: var(--neon);
  border-color: rgba(0,255,136,0.3);
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}
@keyframes vb-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--neon-glow); }
  50% { opacity: .7; box-shadow: 0 0 0 6px rgba(0,255,136,0); }
}
.pulse { animation: vb-pulse 1.6s ease-in-out infinite; }

.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0,255,136,0.1);
  color: var(--neon);
  border: 1px solid rgba(0,255,136,0.25);
  letter-spacing: 0.5px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neon);
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
}
.eyebrow-sm {
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.link-u {
  border-bottom: 1px dashed var(--line-2);
  padding-bottom: 1px;
}
.link-u:hover { color: var(--neon); border-color: var(--neon); }

/* === Nav (Bloomberg terminal × casino) === */
.vb-nav {
  position: sticky; top: 0; z-index: 50;
  background: #000;
  border-bottom: 1px solid var(--neon);
  box-shadow: 0 0 32px rgba(0,255,136,0.18), inset 0 -1px 0 rgba(0,255,136,0.4);
}

/* Top ticker strip */
.vb-ticker {
  background: #050605;
  border-bottom: 1px solid rgba(0,255,136,0.18);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,255,136,0.7);
  overflow: hidden;
}
.vb-ticker-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 40px;
  gap: 24px;
}
.vb-ticker-left, .vb-ticker-right {
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.vb-ticker-item { display: inline-flex; align-items: center; gap: 6px; }
.vb-ticker-item .accent { color: var(--neon); text-shadow: 0 0 8px rgba(0,255,136,0.6); }
.vb-ticker-sep { color: rgba(0,255,136,0.25); }

.vb-led {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon), 0 0 14px rgba(0,255,136,0.6);
  animation: vb-led-pulse 1.4s ease-in-out infinite;
}
.vb-led-sm { width: 6px; height: 6px; }
@keyframes vb-led-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* Main nav row */
.vb-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  max-width: none;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,255,136,0.02) 0%, transparent 100%),
    repeating-linear-gradient(0deg, rgba(0,255,136,0.025) 0, rgba(0,255,136,0.025) 1px, transparent 1px, transparent 4px),
    #000;
}

.vb-brand { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.vb-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.vb-logo-img {
  width: 40px; height: 40px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(0,255,136,0.4);
  box-shadow: 0 0 16px rgba(0,255,136,0.25);
}
.vb-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--txt-0);
  text-transform: uppercase;
}
.vb-wordmark .accent {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0,255,136,0.55), 0 0 24px rgba(0,255,136,0.35);
}
.vb-parent-tag {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: 52px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,255,136,0.45);
  text-decoration: none;
  transition: color 120ms ease, text-shadow 120ms ease;
}
.vb-parent-tag:hover {
  color: var(--neon);
  text-shadow: 0 0 8px rgba(0,255,136,0.5);
}
.vb-parent-tag .vb-parent-name { color: rgba(0,255,136,0.75); }
.vb-parent-tag:hover .vb-parent-name { color: var(--neon); }
.vb-ext { opacity: 0.7; }

.vb-nav-links {
  display: flex; align-items: center; gap: 4px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.vb-nav-links a {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,255,136,0.7);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid transparent;
  background: transparent;
  transition: color 120ms ease, background 120ms ease, border-color 120ms ease, text-shadow 120ms ease;
}
.vb-nav-links a:hover {
  color: var(--neon);
  background: rgba(0,255,136,0.06);
  border-color: rgba(0,255,136,0.4);
  text-shadow: 0 0 10px rgba(0,255,136,0.5);
}
.vb-nav-links .vb-bracket {
  color: rgba(0,255,136,0.35);
  margin: 0 4px;
  transition: color 120ms ease;
}
.vb-nav-links a:hover .vb-bracket { color: var(--neon); }
.vb-nav-invest {
  color: var(--neon) !important;
  text-shadow: 0 0 12px rgba(0,255,136,0.45);
}
.vb-nav-invest .vb-bracket { color: var(--neon) !important; }

/* Terminal CTA button */
.btn-terminal {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: var(--neon);
  padding: 11px 18px;
  border: 1px solid var(--neon);
  border-radius: 0;
  text-decoration: none;
  box-shadow:
    0 0 0 1px #000,
    0 0 0 2px rgba(0,255,136,0.5),
    0 0 24px rgba(0,255,136,0.45);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.btn-terminal .vb-led { background: #000; box-shadow: 0 0 6px #000; animation: none; }
.btn-terminal:hover {
  transform: translateY(-1px);
  background: #00ff9c;
  box-shadow:
    0 0 0 1px #000,
    0 0 0 2px var(--neon),
    0 0 36px rgba(0,255,136,0.7);
}
.btn-terminal .vb-arrow { font-weight: 800; }

/* === Hero === */
.hero {
  position: relative;
  padding: 70px 40px 40px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 40%, rgba(0,255,136,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-scan {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,255,136,0.03) 0, rgba(0,255,136,0.03) 1px, transparent 1px, transparent 4px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  padding: 40px 0 0;
}
.hero-inner .chip { margin-bottom: 28px; }

.hero-logo {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  filter: drop-shadow(0 0 80px rgba(0,255,136,0.4));
}
.hero-logo-img {
  width: clamp(280px, 42vw, 520px);
  height: auto;
  border-radius: 36px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 9.5vw, 140px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
}
.hero-headline .hl-row { display: block; }
.hl-house {
  background: linear-gradient(180deg, #00FF88, #00CC6D);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(0,255,136,0.5));
}
.hero-sub {
  font-size: 19px; color: var(--txt-1);
  max-width: 620px; margin: 0 auto 36px;
  line-height: 1.5;
}

/* === Screens === */
.screens {
  padding: 80px 40px 100px;
  position: relative; overflow: hidden;
}
.screens-head { text-align: center; margin-bottom: 64px; }
.screens-head .eyebrow { display: block; margin-bottom: 14px; letter-spacing: 0.3em; }
.screens-head .display { font-size: clamp(48px, 6vw, 80px); }

.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.screen-card {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.screen-card > .phone-frame {
  transform: rotate(var(--angle, 0deg));
  transition: transform .3s ease;
}
.screen-card:hover > .phone-frame {
  transform: rotate(0deg) scale(1.04);
}
.screen-card figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--neon);
}

.phone-frame {
  width: 230px; height: 500px;
  position: relative;
  background: #000;
  border: 1px solid var(--line-2);
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(0,255,136,0.08);
  overflow: hidden;
}
.phone-inner {
  position: absolute; inset: 6px;
  background: #000;
  border-radius: 30px;
  overflow: hidden;
}
.phone-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}

/* === Countdown === */
.countdown-section {
  padding: 100px 20px 120px;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
}
.countdown-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,255,136,0.14), transparent 70%);
  pointer-events: none;
}
.countdown-scan {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,255,136,0.025) 0, rgba(0,255,136,0.025) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
}
.countdown-inner { position: relative; text-align: center; max-width: 1400px; }
.countdown-inner .eyebrow { display: inline-block; margin-bottom: 48px; }
.countdown-wrap { width: 100%; overflow: visible; }

.countdown {
  --cell: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: calc(var(--cell) * 0.18);
}
.cd-group {
  display: flex; flex-direction: column; align-items: center;
  gap: calc(var(--cell) * 0.1);
}
.cd-digits {
  display: flex;
  gap: max(4px, calc(var(--cell) * 0.06));
}
.cd-label {
  font-family: var(--font-mono);
  font-size: max(10px, calc(var(--cell) * 0.08));
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--txt-2);
  font-weight: 600;
}
.cd-sep {
  font-family: var(--font-mono);
  font-size: calc(var(--cell) * 0.7);
  color: var(--neon);
  opacity: 0.5;
  font-weight: 700;
  padding-bottom: calc(var(--cell) * 0.25);
  text-shadow: 0 0 20px var(--neon-glow-soft);
  user-select: none;
  line-height: 1;
}

/* === Terminal digit cell === */
.fc-digit-cell {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: calc(var(--cell) * 0.72);
  height: var(--cell);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: calc(var(--cell) * 0.78);
  line-height: 1;
  flex-shrink: 0;
  background: linear-gradient(180deg, #0E0F10 0%, #050506 100%);
  border: 1px solid rgba(0,255,136,0.18);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    inset 0 0 24px rgba(0,255,136,0.06);
  overflow: hidden;
}
.fc-digit {
  color: #00FF88;
  text-shadow:
    0 0 4px rgba(0,255,136,0.9),
    0 0 12px rgba(0,255,136,0.7),
    0 0 28px rgba(0,255,136,0.45),
    0 0 60px rgba(0,255,136,0.25);
}
.fc-seam {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  transform: translateY(-0.5px);
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,136,0.22) 50%, transparent 100%);
  pointer-events: none;
}

/* === Signup === */
.signup-section {
  padding: 100px 40px;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
}
.signup-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 30%, rgba(0,255,136,0.15), transparent 60%);
  pointer-events: none;
}
.signup-inner {
  position: relative;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.signup-copy .chip { margin-bottom: 22px; }
.signup-copy .display {
  font-size: clamp(56px, 7vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.88;
  margin-bottom: 24px;
}
.signup-lead {
  font-size: 16px;
  color: var(--txt-1);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
}
.seat-counter {
  display: flex; gap: 16px; margin-bottom: 24px;
}
.seat-badge {
  padding: 12px 16px; border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.seat-badge-neon {
  background: rgba(0,255,136,0.08);
  border-color: rgba(0,255,136,0.35);
}
.seat-big {
  font-size: 20px; font-weight: 700; color: var(--txt-0);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.seat-badge-neon .seat-big { color: var(--neon); }
.seat-small {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-2);
}

.signup-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: 22px;
  box-shadow: 0 40px 100px -30px var(--neon-glow);
}
.signup-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}

.step-indicator { display: flex; gap: 6px; margin-bottom: 20px; }
.step-dot {
  flex: 1; height: 3px; border-radius: 2px;
  background: var(--line-2);
  transition: background .2s, box-shadow .2s;
}
.step-dot.on {
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}

.step { display: flex; flex-direction: column; gap: 14px; }
.step.hidden { display: none; }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-2);
  font-weight: 600;
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--txt-0);
  font-size: 14px;
  transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.15);
}

.segmented { display: flex; gap: 8px; }
.seg {
  flex: 1; padding: 12px; border-radius: 10px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  color: var(--txt-1);
  font-weight: 600; font-size: 14px;
  transition: all .15s;
}
.seg.on {
  background: rgba(0,255,136,0.08);
  border-color: var(--neon);
  color: var(--neon);
}

.chip-grid { display: grid; gap: 6px; }
.chip-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.chip-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pill {
  padding: 10px 6px;
  border-radius: 8px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  color: var(--txt-1);
  font-weight: 600; font-size: 13px;
  transition: all .15s;
}
.chip-grid.cols-3 .pill { font-size: 12px; }
.pill.on {
  background: rgba(0,255,136,0.1);
  border-color: var(--neon);
  color: var(--neon);
}

.exp-list { display: flex; flex-direction: column; gap: 6px; }
.exp {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 12px;
  text-align: left;
  transition: all .15s;
}
.exp.on {
  background: rgba(0,255,136,0.08);
  border-color: var(--neon);
}
.exp-radio {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .15s;
}
.exp.on .exp-radio { border-color: var(--neon); }
.exp.on .exp-radio::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--neon);
}
.exp-text { display: flex; flex-direction: column; }
.exp-title { font-weight: 600; font-size: 14px; color: var(--txt-0); }
.exp.on .exp-title { color: var(--neon); }
.exp-sub { font-size: 12px; color: var(--txt-2); }

.row-btns { display: flex; gap: 8px; }

/* Checkboxes */
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--neon);
  cursor: pointer;
}
.checkbox-label {
  font-size: 13px;
  color: var(--txt-1);
  line-height: 1.5;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkbox-label a {
  color: var(--neon);
  text-decoration: underline;
  font-weight: 500;
}
.checkbox-label a:hover {
  opacity: 0.8;
}

/* Success */
.step-done { text-align: center; padding: 12px 0 8px; align-items: center; gap: 8px; }
.done-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,255,136,0.1);
  border: 2px solid var(--neon);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 30px var(--neon-glow);
}
.done-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--txt-0); }
.done-body { color: var(--txt-1); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.done-jump {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--txt-2); letter-spacing: 0.1em;
}

/* === Disclaimer === */
.disclaimer-section {
  padding: 40px 40px 20px;
  border-top: 1px solid var(--line);
}
.disclaimer {
  font-size: 12px; color: var(--txt-2); line-height: 1.6;
  text-align: center; max-width: 860px; margin: 0 auto;
  padding: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.disclaimer strong { color: var(--txt-1); }

/* === Footer === */
.site-footer {
  padding: 32px 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-0);
}
.site-footer .container { text-align: center; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(180deg, var(--txt-0) 0%, transparent 120%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.footer-wordmark .accent {
  color: var(--neon);
  -webkit-text-fill-color: var(--neon);
}
.footer-meta {
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  font-size: 11px; color: var(--txt-3);
}
.footer-meta small { font-size: 11px; color: var(--txt-3); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--txt-3); font-size: 11px; }
.footer-links a:hover { color: var(--neon); }

/* === Responsive === */
@media (max-width: 1200px) {
  .countdown { --cell: 140px; }
}
@media (max-width: 1000px) {
  .screens-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .signup-inner { grid-template-columns: 1fr; gap: 40px; }
  .countdown { --cell: 110px; }
}
@media (max-width: 900px) {
  .vb-nav-links { display: none; }
  .vb-parent-tag { margin-left: 0; font-size: 9px; }
  .vb-ticker-inner { padding: 6px 20px; gap: 12px; font-size: 9.5px; }
  .vb-ticker-item:not(:first-child) { display: none; }
  .vb-ticker-sep { display: none; }
  .vb-ticker-right .vb-ticker-item:first-child { display: inline-flex; }
}
@media (max-width: 720px) {
  .vb-nav-inner { padding: 12px 20px; }
  .vb-parent-tag { display: none; }
  .vb-wordmark { font-size: 18px; }
  .vb-logo-img { width: 34px; height: 34px; }
  .btn-terminal { padding: 9px 12px; font-size: 11px; letter-spacing: 0.12em; }
  .btn-terminal .vb-arrow { display: none; }
  .hero { padding: 40px 20px 24px; }
  .hero-inner { padding-top: 16px; }
  .hero-headline { font-size: clamp(44px, 14vw, 80px); margin-bottom: 24px; }
  .hero-sub { font-size: 16px; margin-bottom: 24px; }
  .screens { padding: 60px 20px 80px; }
  .screens-head { margin-bottom: 40px; }
  .screens-head .display { font-size: clamp(32px, 8vw, 48px); }
  .screens-grid { grid-template-columns: 1fr; gap: 32px; max-width: 280px; margin: 0 auto; }
  .countdown-section { padding: 60px 16px 72px; }
  .countdown-inner .eyebrow { margin-bottom: 32px; }
  .countdown { --cell: 62px; gap: calc(var(--cell) * 0.1); }
  .cd-sep { font-size: calc(var(--cell) * 0.55); }
  .signup-section { padding: 60px 20px; }
  .signup-copy .display { font-size: clamp(40px, 10vw, 64px); }
  .seat-counter { flex-wrap: wrap; }
  .signup-card { padding: 24px; }
  .container { padding: 0 20px; }
  .site-footer { padding: 24px 20px; }
  .disclaimer-section { padding: 32px 20px 12px; }
}
@media (max-width: 420px) {
  .countdown { --cell: 48px; gap: calc(var(--cell) * 0.12); }
  .chip-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
