:root {
  --red: #dc2626;
  --gold: #f59e0b;
  --purple: #7c3aed;
  --pink: #ec4899;
  --bg: #080808;
  --surface: #111111;
  --text: #f0f0f0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
/* ── TYPOGRAPHY ── */
.font-mm { font-family: 'Malicious Moonlight', serif; }
.font-vt { font-family: 'VT323', monospace; }
/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,158,11,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
}
.nav-brand {
  font-family: 'Malicious Moonlight', serif;
  color: var(--gold);
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-brand span.red { color: var(--red); }
.nav-brand span.white { color: var(--text); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 0.35rem 1rem;
  border: 1px solid var(--red);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #b91c1c !important; color: white !important; }
/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}
/* Fishnet texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(220,38,38,0.07) 18px,
      rgba(220,38,38,0.07) 20px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(220,38,38,0.07) 18px,
      rgba(220,38,38,0.07) 20px
    );
  z-index: 0;
}
/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124,58,237,0.18) 0%, transparent 70%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.hero-title {
  font-family: 'Malicious Moonlight', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 1;
  color: white;
  margin-bottom: 0.25rem;
}
.hero-title .word-rocky { color: var(--red); }
.hero-title .word-the { color: var(--text); font-size: 0.6em; display: block; }
.hero-title .word-vote { color: var(--gold); }
.hero-sub {
  font-family: 'VT323', monospace;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--pink);
  letter-spacing: 0.12em;
  margin: 1.5rem 0 2.5rem;
  text-transform: uppercase;
}
.hero-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(240,240,240,0.85);
  max-width: 680px;
  margin: 0 auto 3rem;
}
.hero-body strong { color: var(--gold); font-weight: 700; }
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.btn-primary:hover { background: #b91c1c; border-color: #b91c1c; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-secondary:hover { background: rgba(245,158,11,0.1); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--purple);
  color: var(--purple);
}
.btn-ghost:hover { background: rgba(124,58,237,0.1); transform: translateY(-2px); }
/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--red);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
}
.marquee-inner span {
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0 3rem;
  color: white;
}
.marquee-inner span::after {
  content: '✦';
  margin-left: 3rem;
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ── SECTION WRAPPER ── */
section {
  padding: 6rem 2rem;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.section-title {
  font-family: 'Malicious Moonlight', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
/* ── TIME WARP VOTING STEPS ── */
.timewarp {
  background: var(--surface);
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
}
.timewarp-intro {
  text-align: center;
  margin-bottom: 4rem;
}
.timewarp-intro p {
  font-family: 'VT323', monospace;
  font-size: 1.4rem;
  color: var(--pink);
  letter-spacing: 0.1em;
  margin-top: 1rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.2);
}
.step {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
}
.step:hover { background: #141414; }
.step-number {
  font-family: 'VT323', monospace;
  font-size: 4rem;
  line-height: 1;
  color: rgba(245,158,11,0.2);
}
.step-lyric {
  font-family: 'Malicious Moonlight', serif;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.2;
}
.step-action {
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.5;
  flex-grow: 1;
}
.step-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.2s;
  align-self: flex-start;
}
.step-link-red { color: var(--red); border-color: var(--red); }
.step-link-red:hover { background: rgba(220,38,38,0.1); }
.step-link-gold { color: var(--gold); border-color: var(--gold); }
.step-link-gold:hover { background: rgba(245,158,11,0.1); }
.step-link-purple { color: var(--purple); border-color: var(--purple); }
.step-link-purple:hover { background: rgba(124,58,237,0.1); }
.step-link-pink { color: var(--pink); border-color: var(--pink); }
.step-link-pink:hover { background: rgba(236,72,153,0.1); }
/* ── WHY SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(240,240,240,0.85);
  margin-bottom: 1.5rem;
}
.why-text p strong { color: var(--red); font-weight: 700; }
.why-pullquote {
  border-left: 3px solid var(--red);
  padding: 1.5rem 2rem;
  background: rgba(220,38,38,0.05);
}
.why-pullquote p {
  font-family: 'Malicious Moonlight', serif;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--gold);
  margin: 0;
}
/* ── EMBED SECTION ── */
.embed-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0d0016 50%, var(--bg) 100%);
}
.embed-section .section-title { color: var(--purple); }
.embed-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(240,240,240,0.8);
  max-width: 700px;
  margin-bottom: 3rem;
}
.tool-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tool-tab {
  font-family: 'VT323', monospace;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.65);
  background: transparent;
  border: 1px solid rgba(124,58,237,0.35);
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.tool-tab:hover {
  color: var(--text);
  border-color: rgba(124,58,237,0.7);
}
.tool-tab.active {
  color: var(--text);
  border-color: var(--purple);
  background: rgba(124,58,237,0.15);
}
.tool-panel {
  display: none;
  border: 1px solid rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.04);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.tool-panel.active { display: block; }
.tool-panel h3 {
  font-family: 'VT323', monospace;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.5rem;
}
.tool-panel > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(240,240,240,0.75);
  margin-bottom: 1.25rem;
  max-width: 640px;
}
.tool-embed {
  /* background: #fff; */
  /* background: rgba(124, 58, 237, 0.04); */
  background: transparent;
  min-height: 400px;
}
.tool-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  /* background: #fff; */
  /* background: rgba(124, 58, 237, 0.04); */
  background: transparent;
}
.embed-note {
  border: 1px solid rgba(245,158,11,0.25);
  background: rgba(245,158,11,0.04);
  padding: 2rem;
  max-width: 700px;
}
.embed-note h4 {
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.embed-note p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(240,240,240,0.7);
}
.embed-note a { color: var(--gold); }
/* ── MANIFESTO ── */
.manifesto {
  text-align: center;
  background: linear-gradient(0deg, #000 0%, var(--red) 80%, var(--gold) 100%);
  padding: 8rem 2rem;
}
.manifesto-title {
  font-family: 'Malicious Moonlight', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.manifesto-body {
  font-family: 'VT323', monospace;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  letter-spacing: 0.12em;
  line-height: 2;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 3rem;
  text-transform: uppercase;
}
/* ── FOOTER ── */
footer {
  background: #000;
  border-top: 1px solid rgba(245,158,11,0.2);
  padding: 3rem 2rem;
  text-align: center;
}
footer p {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.4);
  line-height: 2;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-brand {
  font-family: 'Malicious Moonlight', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* ── DEADLINES ── */
.deadlines-section {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(220,38,38,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(245,158,11,0.08) 0%, transparent 50%),
    var(--surface);
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
}
.deadlines-section .section-title { color: var(--gold); }
.deadlines-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(240,240,240,0.8);
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.deadline-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.deadline-picker label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.deadline-picker select {
  appearance: none;
  background: var(--bg)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f59e0b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 1rem center;
  color: var(--text);
  border: 1px solid rgba(245,158,11,0.45);
  padding: 0.85rem 2.75rem 0.85rem 1.1rem;
  font-family: 'VT323', monospace;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  min-width: min(100%, 320px);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.deadline-picker select:hover,
.deadline-picker select:focus {
  border-color: var(--gold);
  outline: none;
  background-color: #141414;
}
.deadline-picker select option {
  background: #111;
  color: var(--text);
}
.deadline-result {
  display: none;
  border: 1px solid rgba(245,158,11,0.25);
  background: rgba(8,8,8,0.55);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.deadline-result.is-visible { display: block; }
.deadline-countdown-label {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.55);
  margin-bottom: 0.75rem;
}
.deadline-countdown-label strong {
  color: var(--gold);
  font-weight: 400;
}
.countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.countdown-unit {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.35);
}
.countdown-unit .num {
  font-family: 'VT323', monospace;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  line-height: 1;
  color: var(--red);
  display: block;
}
.countdown-unit .lbl {
  font-family: 'VT323', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.5);
  margin-top: 0.35rem;
  display: block;
}
.countdown-clock.is-urgent .countdown-unit {
  background: rgba(220,38,38,0.16);
  border-color: var(--red);
  animation: countdown-pulse 1.6s ease-in-out infinite;
}
.countdown-clock.is-passed .countdown-unit {
  background: rgba(240,240,240,0.04);
  border-color: rgba(240,240,240,0.2);
  animation: none;
}
.countdown-clock.is-passed .countdown-unit .num { color: rgba(240,240,240,0.45); }
@keyframes countdown-pulse {
  0%, 100% { box-shadow: inset 0 0 0 0 transparent; }
  50% { box-shadow: inset 0 0 24px rgba(220,38,38,0.15); }
}
.deadline-date-line {
  /* font-family: 'Malicious Moonlight', serif; */
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.deadline-date-line span { color: var(--gold); }
.deadline-status {
  font-family: 'VT323', monospace;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: rgba(240,240,240,0.7);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.deadline-status.passed { color: var(--pink); }
.deadline-status.same-day { color: var(--gold); }
.deadline-channels {
  display: grid;
  gap: 1px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.2);
  margin-bottom: 1.5rem;
}
.deadline-channel {
  background: var(--bg);
  padding: 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem 1rem;
}
.deadline-channel dt {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.deadline-channel dd {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(240,240,240,0.85);
}
.deadline-edr {
  border-left: 3px solid var(--pink);
  padding: 1rem 1.25rem;
  background: rgba(236,72,153,0.06);
  margin-bottom: 1.5rem;
}
.deadline-edr h4 {
  font-family: 'VT323', monospace;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.deadline-edr p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(240,240,240,0.8);
}
.deadline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.deadline-note {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(240,240,240,0.45);
}
.deadline-note a { color: var(--gold); }
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
  .deadline-channel { grid-template-columns: 1fr; gap: 0.35rem; }
  .countdown-clock { gap: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .countdown-clock.is-urgent .countdown-unit { animation: none; }
}
/* ── PARTY SECTION ── */
.party-section {
  background: var(--bg);
  border-top: 1px solid rgba(236,72,153,0.2);
}
.party-hero-line {
  font-family: 'VT323', monospace;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}
/* Format cards — the four event types */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(236,72,153,0.15);
  border: 1px solid rgba(236,72,153,0.2);
  margin: 3rem 0;
}
.format-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.format-card:hover { background: #0e0e0e; }
.format-card.active {
  background: rgba(236,72,153,0.07);
  border-left: 3px solid var(--pink);
}
.format-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.format-card h3 {
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.format-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240,240,240,0.65);
}
.format-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(236,72,153,0.3);
  padding: 0.15rem 0.4rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.format-card.active .format-badge { opacity: 1; }
/* Details panel */
.format-detail {
  display: none;
  border: 1px solid rgba(236,72,153,0.2);
  background: rgba(236,72,153,0.04);
  padding: 2.5rem;
  margin-top: -1px;
  margin-bottom: 3rem;
}
.format-detail.active { display: block; }
.format-detail h4 {
  font-family: 'Malicious Moonlight', serif;
  font-size: 1.8rem;
  color: var(--pink);
  margin-bottom: 1.5rem;
}
.detail-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.detail-col h5 {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(245,158,11,0.2);
}
.detail-col ul {
  list-style: none;
  padding: 0;
}
.detail-col ul li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(240,240,240,0.75);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.detail-col ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 0.6rem;
  top: 0.45rem;
}
@media (max-width: 768px) {
  .detail-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .formats-grid { grid-template-columns: 1fr 1fr; }
}
/* Kit download bar */
.kit-bar {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.kit-bar-text h4 {
  font-family: 'Malicious Moonlight', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.kit-bar-text p {
  font-size: 0.9rem;
  color: rgba(240,240,240,0.65);
  line-height: 1.5;
}
.kit-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.kit-tag {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 0.15rem 0.5rem;
  opacity: 0.8;
}
/* Script tabs */
.scripts-section {
  margin-top: 4rem;
}
.scripts-section > .section-label { margin-bottom: 0.5rem; }
.scripts-section h3 {
  font-family: 'Malicious Moonlight', serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 2rem;
}
.voice-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(240,240,240,0.1);
  margin-bottom: 0;
  overflow-x: auto;
}
.voice-tab {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  color: rgba(240,240,240,0.4);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.voice-tab:hover { color: rgba(240,240,240,0.8); }
.voice-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.voice-tab[data-voice="frank"].active { color: var(--red); border-bottom-color: var(--red); }
.voice-tab[data-voice="janet"].active { color: #60a5fa; border-bottom-color: #60a5fa; }
.voice-tab[data-voice="riff"].active { color: var(--purple); border-bottom-color: var(--purple); }
.voice-tab[data-voice="columbia"].active { color: var(--pink); border-bottom-color: var(--pink); }
.voice-panel {
  display: none;
  border: 1px solid rgba(240,240,240,0.08);
  border-top: none;
  padding: 2.5rem;
  background: var(--surface);
}
.voice-panel.active { display: block; }
.voice-panel[data-voice="frank"] { border-top: 2px solid var(--red); }
.voice-panel[data-voice="janet"] { border-top: 2px solid #60a5fa; }
.voice-panel[data-voice="riff"]  { border-top: 2px solid var(--purple); }
.voice-panel[data-voice="columbia"] { border-top: 2px solid var(--pink); }
.voice-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(240,240,240,0.08);
}
.voice-avatar {
  font-size: 3rem;
  flex-shrink: 0;
}
.voice-meta h4 {
  font-family: 'Malicious Moonlight', serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.voice-meta p {
  font-family: 'VT323', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}
.voice-panel[data-voice="frank"] .voice-meta h4 { color: var(--red); }
.voice-panel[data-voice="janet"] .voice-meta h4 { color: #60a5fa; }
.voice-panel[data-voice="riff"]  .voice-meta h4 { color: var(--purple); }
.voice-panel[data-voice="columbia"] .voice-meta h4 { color: var(--pink); }
.script-block {
  margin-bottom: 1.5rem;
}
.script-block .cue {
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.3);
  margin-bottom: 0.4rem;
}
.script-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240,240,240,0.85);
  font-style: italic;
  padding-left: 1rem;
  border-left: 2px solid rgba(240,240,240,0.1);
}
.voice-panel[data-voice="frank"] .script-block p { border-left-color: rgba(220,38,38,0.3); }
.voice-panel[data-voice="janet"] .script-block p { border-left-color: rgba(96,165,250,0.3); }
.voice-panel[data-voice="riff"]  .script-block p { border-left-color: rgba(124,58,237,0.3); }
.voice-panel[data-voice="columbia"] .script-block p { border-left-color: rgba(236,72,153,0.3); }
.script-note {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(240,240,240,0.35);
  margin-top: 0.25rem;
  font-style: normal;
  padding-left: 1rem;
}
/* ── MODE LAUNCHERS (party section) ── */
.mode-launchers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 3rem 0;
}
.mode-launcher {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.04);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
}
.mode-launcher:hover {
  background: rgba(245,158,11,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.mode-launcher-party {
  border-color: rgba(236,72,153,0.35);
  background: rgba(236,72,153,0.05);
}
.mode-launcher-party:hover {
  background: rgba(236,72,153,0.1);
  border-color: var(--pink);
}
.mode-launcher-label {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.mode-launcher-party .mode-launcher-label { color: var(--pink); }
.mode-launcher h3 {
  font-family: 'Malicious Moonlight', serif;
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1.15;
}
.mode-launcher p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(240,240,240,0.7);
}
@media (max-width: 640px) {
  .mode-launchers { grid-template-columns: 1fr; }
}
/* ── PARTY MODE ── */
.party-mode-ui,
.qr-mode-ui {
  display: none;
}
body.party-mode {
  overflow: hidden;
}
body.party-mode > nav,
body.party-mode > .hero,
body.party-mode > .marquee-strip,
body.party-mode > section,
body.party-mode > footer {
  display: none !important;
}
body.party-mode .party-mode-ui {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(236,72,153,0.12) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 22px,
      rgba(220,38,38,0.04) 22px,
      rgba(220,38,38,0.04) 24px
    );
}
.party-mode-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(245,158,11,0.25);
  background: rgba(8,8,8,0.95);
  flex-shrink: 0;
}
.party-mode-brand {
  font-family: 'Malicious Moonlight', serif;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.party-mode-brand .red { color: var(--red); }
.party-mode-brand .white { color: var(--text); }
.party-mode-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.party-mode-btn {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(240,240,240,0.25);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.party-mode-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.party-mode-home {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.party-mode-intro {
  text-align: center;
  max-width: 520px;
  margin-bottom: 2rem;
}
.party-mode-intro h1 {
  font-family: 'Malicious Moonlight', serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.party-mode-intro p {
  font-family: 'VT323', monospace;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}
.party-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  width: 100%;
  max-width: 720px;
}
@media (min-width: 900px) {
  .party-tool-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 420px) {
  .party-tool-grid { grid-template-columns: 1fr; }
}
.party-tool-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.4rem;
  min-height: 110px;
  padding: 1.25rem 1.15rem;
  border: 1px solid rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.08);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.party-tool-btn:hover,
.party-tool-btn:focus-visible {
  background: rgba(124,58,237,0.18);
  border-color: var(--purple);
  outline: none;
}
.party-tool-btn:active { transform: scale(0.98); }
.party-tool-btn[data-tool="register"] { border-color: rgba(220,38,38,0.45); background: rgba(220,38,38,0.08); }
.party-tool-btn[data-tool="register"]:hover { background: rgba(220,38,38,0.16); border-color: var(--red); }
.party-tool-btn[data-tool="verify"] { border-color: rgba(245,158,11,0.45); background: rgba(245,158,11,0.08); }
.party-tool-btn[data-tool="verify"]:hover { background: rgba(245,158,11,0.16); border-color: var(--gold); }
.party-tool-btn[data-tool="absentee"] { border-color: rgba(124,58,237,0.45); background: rgba(124,58,237,0.08); }
.party-tool-btn[data-tool="reminders"] { border-color: rgba(96,165,250,0.45); background: rgba(96,165,250,0.08); }
.party-tool-btn[data-tool="reminders"]:hover { background: rgba(96,165,250,0.16); border-color: #60a5fa; }
.party-tool-btn[data-tool="ballot"] { border-color: rgba(52,211,153,0.4); background: rgba(52,211,153,0.07); }
.party-tool-btn[data-tool="ballot"]:hover { background: rgba(52,211,153,0.14); border-color: #34d399; }
.party-tool-btn[data-tool="pledge"] { border-color: rgba(236,72,153,0.45); background: rgba(236,72,153,0.08); }
.party-tool-btn[data-tool="pledge"]:hover { background: rgba(236,72,153,0.16); border-color: var(--pink); }
.party-tool-num {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(240,240,240,0.4);
  text-transform: uppercase;
}
.party-tool-name {
  font-family: 'VT323', monospace;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.party-mode-tool-view {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  background: #fff;
}
body.party-mode.party-tool-open .party-mode-home { display: none; }
body.party-mode.party-tool-open .party-mode-tool-view { display: flex; }
.party-tool-view-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(245,158,11,0.25);
  flex-shrink: 0;
}
.party-tool-view-title {
  font-family: 'VT323', monospace;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  flex: 1;
}
.party-tool-frame-wrap {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.party-tool-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 100%;
  border: 0;
  background: #fff;
}
/* ── QR MODE ── */
body.qr-mode > nav,
body.qr-mode > .hero,
body.qr-mode > .marquee-strip,
body.qr-mode > section,
body.qr-mode > footer,
body.qr-mode .party-mode-ui {
  display: none !important;
}
body.qr-mode .qr-mode-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 2rem;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(245,158,11,0.1) 0%, transparent 65%);
  text-align: center;
}
.qr-mode-brand {
  font-family: 'Malicious Moonlight', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.qr-mode-brand .red { color: var(--red); }
.qr-mode-brand .white { color: var(--text); }
.qr-mode-sub {
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 2rem;
}
.qr-code-frame {
  padding: 1.25rem;
  background: #fff;
  border: 3px solid var(--gold);
  margin-bottom: 1.5rem;
}
.qr-code-frame canvas,
.qr-code-frame img,
.qr-code-frame table {
  display: block;
  width: min(70vw, 320px) !important;
  height: auto !important;
  margin: 0 auto;
}
.qr-code-frame img {
  height: min(70vw, 320px) !important;
}
.qr-mode-url {
  font-family: 'VT323', monospace;
  font-size: clamp(1rem, 3vw, 1.35rem);
  letter-spacing: 0.08em;
  color: var(--text);
  word-break: break-all;
  max-width: 90vw;
  margin-bottom: 2rem;
}
.qr-mode-hint {
  font-size: 0.9rem;
  color: rgba(240,240,240,0.5);
  margin-bottom: 1.5rem;
  max-width: 360px;
  line-height: 1.5;
}
