:root {
  --bg: #000000;
  --bg-2: #131316;
  --fg: #f6f6f7;
  --fg-dim: #a8a8b0;
  --accent: #ff2d55;
  --accent-2: #00e0ff;
  --border: #232328;
  --radius: 12px;
  --maxw: 1100px;
  --font-display: "Anton", "Bebas Neue", system-ui, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

/* --- Hero ---------------------------------------------------------------- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  background: var(--bg);
}

.logo-wrap {
  width: 100%;
  max-width: 720px;
  margin-bottom: 0;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  /* Animation classes will be applied here once Chad picks the vibe */
}

.event-meta {
  margin-bottom: 36px;
}

.tagline {
  font-family: "Iowan Old Style", "Source Serif 4", "Palatino", "Book Antiqua", Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 34px);
  color: var(--fg);
  letter-spacing: 0.01em;
  margin-bottom: 26px;
  opacity: 0.92;
}

.dates {
  font-family: var(--font-display);
  font-size: clamp(20px, 6vw, 44px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  white-space: nowrap;
}

.venue {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--fg-dim);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: var(--radius);
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.cta:hover { transform: translateY(-1px); }
.cta:active { transform: translateY(0); }

.cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 45, 85, 0.32);
}
.cta-primary:hover { background: #ff4068; }

.cta-secondary {
  background: var(--chaos-green);
  color: var(--chaos-ink);
  border: 1px solid var(--chaos-green);
  box-shadow: 0 8px 24px rgba(89, 171, 70, 0.32);
}
.cta-secondary:hover { background: #67c050; border-color: #67c050; }

/* --- Sizzle reel ------------------------------------------------------- */

/* Marquee divider between hero and video */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--chaos-magenta);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 13px 0;
}
.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
}
.marquee-track span {
  font-family: var(--chaos-display);
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #fff;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.sizzle {
  padding: 76px 24px 88px;
  background: var(--bg-2);
}
.sizzle-head {
  max-width: var(--maxw);
  margin: 0 auto 30px;
  text-align: left;
}
.sizzle-head .eyebrow {
  margin-bottom: 4px;
}
.sizzle-title {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.sizzle-frame {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 15px;
}
.sizzle-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f4ecd8;
  border-radius: 3px;
  filter: url(#torn);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}
.sizzle-video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}
.sizzle-sound {
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font: 600 14px var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  z-index: 2;
  transition: background 120ms ease, transform 120ms ease;
}
.sizzle-sound:hover { background: var(--chaos-green); color: var(--chaos-ink); transform: translateY(-1px); }
.sizzle-sound .icon-sound { display: none; }
.sizzle-sound[aria-pressed="true"] .icon-muted { display: none; }
.sizzle-sound[aria-pressed="true"] .icon-sound { display: inline; }
.sizzle-sound[aria-pressed="true"] .sizzle-sound-text { display: none; }

@media (max-width: 600px) {
  .sizzle { padding-bottom: 56px; }
  .sizzle-frame { padding: 10px; max-width: 460px; }
  .sizzle-video { aspect-ratio: 9 / 16; }
  .sizzle-sound { padding: 8px 12px; font-size: 13px; bottom: 20px; right: 20px; }
}

/* --- Modal form reveal -------------------------------------------------- */

.form-reveal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.form-reveal[hidden] { display: none; }

.form-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 0;
}

/* Close button */
.form-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--chaos-ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 120ms ease, transform 120ms ease;
}
.form-close:hover { background: rgba(0, 0, 0, 0.08); transform: scale(1.08); }
.form-close-light { color: var(--fg); }
.form-close-light:hover { background: rgba(255, 255, 255, 0.08); }

/* GHL iframe wrapper (vendor) */
.form-reveal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  overflow-y: auto;
}
.form-reveal iframe {
  width: 100%;
  min-height: 845px;
  border: none;
  border-radius: 8px;
  display: block;
}

/* --- Chaos custom form (brand-aligned: nostalgic, bright, textured) ---- */

:root {
  /* CCC official brand palette */
  --chaos-yellow:  #ECE844;
  --chaos-magenta: #DF1A59;
  --chaos-green:   #59AB46;
  --chaos-navy:    #1D174B;
  --chaos-navy-deep: #120D32;
  --chaos-graphite:  #25272B;
  --chaos-cream:   #F1D89A;
  --chaos-ink:     #121212;
  /* Brand font stacks */
  --chaos-display: "Futura", "Futura PT", "Jost", "Trebuchet MS", system-ui, sans-serif;
  --chaos-serif:   "Iowan Old Style", "Source Serif 4", "Palatino", "Book Antiqua", Georgia, serif;
  --chaos-mono:    "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --chaos-text:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.chaos-form-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--chaos-graphite);
  color: #E9E7E2;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 0 30px 28px;
  font-family: var(--chaos-text);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.85),
    0 12px 30px -14px rgba(0, 0, 0, 0.7);
}

/* Paper texture for that nostalgic-zine feel */
.chaos-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9px;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* dark-card specifics */
.chaos-form-card .form-close { color: #E9E7E2; }
.chaos-form-card .form-close:hover { background: rgba(255, 255, 255, 0.12); }
.chaos-form-card .chaos-form-success h3 { color: #fff; }
.chaos-form-card .chaos-form-success p { color: #B9B7B0; }
.chaos-form-card .social-cta { border-top-color: rgba(255, 255, 255, 0.12); }
.chaos-form-card .social-cta-label { color: #B9B7B0; }
.chaos-form-card .social-cta-label strong { color: #fff; }

/* Corner stamps */
.sticker {
  position: absolute;
  font-family: var(--chaos-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  line-height: 1;
  border: 2px solid var(--chaos-ink);
  z-index: 2;
}
.sticker-tl {
  top: -14px;
  left: 18px;
  background: var(--chaos-magenta);
  color: var(--chaos-cream);
  font-size: 14px;
  text-align: center;
  transform: rotate(-4deg);
  box-shadow: 3px 3px 0 var(--chaos-ink);
}
.sticker-br {
  bottom: -14px;
  right: 18px;
  background: var(--chaos-green);
  color: var(--chaos-ink);
  font-size: 16px;
  letter-spacing: 0.12em;
  transform: rotate(3deg);
  box-shadow: 3px 3px 0 var(--chaos-ink);
}

/* Header */
/* Black masthead housing the real CHAOS logo lockup (full-bleed top) */
.form-masthead {
  position: relative;
  z-index: 1;
  margin: 0 -30px 22px;
  background: #000;
  border-radius: 17px 17px 0 0;
  overflow: hidden;
  text-align: center;
  padding: 40px 28px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.form-logo {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
}

.chaos-form-header { position: relative; z-index: 1; margin-bottom: 20px; text-align: center; }

.eyebrow {
  display: inline-block;
  background: none;
  color: var(--chaos-yellow);
  font-family: var(--chaos-mono);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.16em;
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
  transform: none;
}

.chaos-form-title {
  font-family: var(--chaos-display);
  font-weight: 800;
  font-size: clamp(27px, 4.6vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 10px;
}
.chaos-form-title .hl { color: var(--chaos-magenta); }

/* ---- Ransom-note cut-letter headline engine ----------------------------
   Each letter is a tile "cut" from a different printed source: different
   typeface + paper stock + rough-cut edge + slight rotation + a real
   drop-shadow so it physically sits on the page. Letters are built by
   buildRansom() in script.js from a .ransom[data-text] element. */
.ransom {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 3px 0;
  line-height: 0.78;
}
.ransom .sp { display: inline-block; width: 0.22em; }
/* tiles tuck under/over their neighbors, densely assembled, overlapping */
.ransom .ch + .ch { margin-left: -0.09em; }

.ransom .ch {
  --r: 0deg;
  --y: 0px;
  display: inline-block;
  position: relative;
  padding: 0.05em 0.16em 0.12em;
  font-size: clamp(30px, 5.4vw, 48px);
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
  color: var(--chaos-ink);
  background-color: #fbf7ea;
  transform: rotate(var(--r)) translateY(var(--y));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  filter:
    drop-shadow(1.5px 2px 0 rgba(0, 0, 0, 0.16))
    drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.26));
}

/* rough-cut paper edges (3 variants, kept shallow so glyphs stay intact) */
.ransom .ch.cut1 { clip-path: polygon(2% 5%,18% 1%,42% 4%,68% 0,90% 4%,99% 2%,98% 26%,100% 55%,97% 82%,99% 97%,74% 99%,46% 96%,22% 100%,4% 97%,1% 70%,3% 38%,0 16%); }
.ransom .ch.cut2 { clip-path: polygon(1% 3%,24% 0,50% 3%,77% 1%,98% 5%,96% 32%,100% 60%,98% 95%,78% 98%,52% 95%,28% 99%,3% 96%,2% 64%,0 33%); }
.ransom .ch.cut3 { clip-path: polygon(3% 2%,30% 4%,60% 0,88% 3%,97% 0,99% 28%,97% 58%,100% 88%,82% 96%,58% 100%,30% 97%,8% 100%,1% 72%,4% 40%,2% 14%); }

/* typefaces "cut" from different sources */
.ransom .f-anton   { font-family: "Anton", sans-serif; font-weight: 400; }
.ransom .f-archivo { font-family: "Archivo Black", sans-serif; font-weight: 400; }
.ransom .f-bebas   { font-family: "Bebas Neue", sans-serif; font-weight: 400; padding-left: 0.22em; padding-right: 0.22em; }
.ransom .f-bevan   { font-family: "Bevan", serif; font-weight: 400; font-size: clamp(26px, 4.8vw, 42px); }
.ransom .f-bungee  { font-family: "Bungee", sans-serif; font-weight: 400; font-size: clamp(24px, 4.4vw, 38px); }
.ransom .f-serif   { font-family: var(--chaos-serif); font-weight: 700; }
.ransom .f-mono    { font-family: var(--chaos-mono); font-weight: 500; }

/* paper stocks */
.ransom .p-white   { background-color: #fbf7ea; color: var(--chaos-ink); }
.ransom .p-cream   { background-color: var(--chaos-cream); color: var(--chaos-ink); }
.ransom .p-news    { background-color: #e8e2d1; color: #26221a; }
.ransom .p-kraft   { background-color: #cda46b; color: #2a2113; }
.ransom .p-yellow  { background-color: var(--chaos-yellow); color: var(--chaos-ink); }
.ransom .p-magenta { background-color: var(--chaos-magenta); color: #fff5f8; }
.ransom .p-green   { background-color: var(--chaos-green); color: #f3fbef; }
.ransom .p-navy    { background-color: var(--chaos-navy); color: var(--chaos-yellow); }
.ransom .p-ink     { background-color: var(--chaos-ink); color: var(--chaos-cream); }

/* faint printed-halftone texture on some tiles */
.ransom .ch.tex { background-image: radial-gradient(rgba(0, 0, 0, 0.16) 1px, transparent 1.6px); background-size: 5px 5px; }
.ransom .ch.tex.p-magenta,
.ransom .ch.tex.p-green,
.ransom .ch.tex.p-navy,
.ransom .ch.tex.p-ink { background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1.6px); }

.chaos-form-sub {
  font-family: var(--chaos-text);
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 420px;
  color: #B9B7B0;
}

/* Form body */
.chaos-form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.chaos-form[hidden] { display: none; }

.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field[hidden] { display: none; }
.field input, .field select, .field textarea { width: 100%; min-width: 0; max-width: 100%; }
.field-row { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.field-row-3 { grid-template-columns: 2fr 1fr 1fr; }
.field-row.even { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) {
  .field-row, .field-row-3, .field-row.even { grid-template-columns: 1fr; }
}

.field label,
.field-label-block {
  font-family: var(--chaos-text);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.req { color: var(--chaos-magenta); }
.opt { color: rgba(255, 255, 255, 0.45); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  font: inherit;
  font-family: var(--chaos-text);
  font-size: 17px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  color: #FAF9F5;
  transition: background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.field textarea {
  resize: vertical;
  min-height: 60px;
  font-family: var(--chaos-text);
  line-height: 1.45;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23B9B7B0' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field select option { color: #121212; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.42); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--chaos-magenta);
  box-shadow: 0 0 0 3px rgba(223, 26, 89, 0.25);
}

/* Area-requirements pills (Power / WiFi / Tablecloth) */
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.check-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  font-family: var(--chaos-text);
  font-weight: 500;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  color: #D8D6D0;
  transition: background 140ms ease, border-color 140ms ease;
  user-select: none;
}
.check-pill input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  position: relative;
}
.check-pill input:checked {
  background: var(--chaos-magenta);
  border-color: var(--chaos-magenta);
}
.check-pill input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chaos-cream);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.check-pill:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.28); }
.check-pill:has(input:checked) {
  background: rgba(223, 26, 89, 0.14);
  border-color: var(--chaos-magenta);
  color: #fff;
}

/* Category pills: same check-pill look, green accent (vs. magenta) */
.chips .check-pill { white-space: nowrap; }
.chips .check-pill input:checked {
  background: var(--chaos-green);
  border-color: var(--chaos-green);
}
.chips .check-pill:has(input:checked) {
  background: rgba(89, 171, 70, 0.16);
  border-color: var(--chaos-green);
  color: #fff;
}

.field-hint { font-size: 11px; color: rgba(255, 255, 255, 0.45); margin: 2px 0 0; }

/* Interest chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-family: var(--chaos-text);
  font-weight: 500;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  color: #D8D6D0;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
  user-select: none;
  min-height: 40px;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.chip span { white-space: nowrap; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.28); }
.chip:has(input:checked) { font-weight: 700; border-color: transparent; }
.chip.c1:has(input:checked)  { background: var(--chaos-magenta); color: var(--chaos-cream); }
.chip.c2:has(input:checked)  { background: var(--chaos-yellow); }
.chip.c3:has(input:checked)  { background: var(--chaos-green); color: var(--chaos-cream); }
.chip.c4:has(input:checked)  { background: var(--chaos-navy);    color: var(--chaos-yellow); }
.chip.c5:has(input:checked)  { background: var(--chaos-magenta); color: var(--chaos-cream); }
.chip.c6:has(input:checked)  { background: var(--chaos-yellow); }
.chip.c7:has(input:checked)  { background: var(--chaos-green);   color: var(--chaos-cream); }
.chip.c8:has(input:checked)  { background: var(--chaos-navy);    color: var(--chaos-yellow); }
.chip.c9:has(input:checked)  { background: var(--chaos-magenta); color: var(--chaos-cream); }
.chip.c10:has(input:checked) { background: var(--chaos-yellow); }

/* Vendor "Categories you cover": all selected chips highlight green */
#vendor-form .chip:has(input:checked) {
  background: var(--chaos-green);
  color: var(--chaos-cream);
}

/* SMS consent block */
.sms-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}
.sms-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--chaos-magenta);
  cursor: pointer;
}
.sms-consent label {
  font-size: 12px;
  line-height: 1.45;
  color: #A9A7A0;
  cursor: pointer;
}
.sms-consent label strong {
  display: block;
  font-family: var(--chaos-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.sms-consent a { color: var(--chaos-yellow); }
.sms-consent label span { display: block; }

/* Submit */
.chaos-submit {
  margin-top: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #E8225F 0%, #C2154B 100%);
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-family: var(--chaos-display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  min-height: 54px;
  box-shadow: 0 12px 28px -10px rgba(223, 26, 89, 0.7);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}
.chaos-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -12px rgba(223, 26, 89, 0.85);
  filter: brightness(1.06);
}
.chaos-submit:active { transform: translateY(0); }
.chaos-submit:disabled { opacity: 0.7; cursor: progress; }
.submit-arrow { color: #fff; font-size: 20px; }

.chaos-form-foot {
  font-family: var(--chaos-text);
  font-style: normal;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 6px 0 0;
}
.chaos-form-foot a { color: rgba(255, 255, 255, 0.7); text-decoration: underline; font-weight: 500; }

/* Success state */
.chaos-form-success { position: relative; z-index: 1; text-align: center; padding: 16px 0 8px; }
.chaos-form-success[hidden] { display: none; }
.success-stamp {
  display: inline-block;
  background: var(--chaos-green);
  color: #fff;
  font-family: var(--chaos-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 0;
  border-radius: 100px;
  transform: none;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px -8px rgba(89, 171, 70, 0.6);
}
.chaos-form-success h3 {
  font-family: var(--chaos-display);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--chaos-ink);
  margin: 0 0 8px;
}
.chaos-form-success p {
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 15px;
  max-width: 380px;
  margin: 0 auto;
  color: var(--chaos-navy);
}
/* Thank-you page message: clean, upright (not italic) */
.chaos-form-success .thanks-copy {
  font-family: var(--chaos-text);
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 440px;
}
.chaos-form-success .thanks-copy a { color: var(--chaos-yellow); text-decoration: underline; }

/* --- Social CTA on success state ----------------------------------------- */
.social-cta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 2px dashed var(--chaos-ink);
}

.social-cta-label {
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--chaos-navy);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.3;
}
.social-cta-label strong {
  display: block;
  font-family: var(--chaos-display);
  font-weight: 800;
  font-style: normal;
  font-size: 22px;
  color: var(--chaos-ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 2px;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  text-decoration: none;
  color: #E9E7E2;
  font-family: var(--chaos-display);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
}
.social-btn:active { transform: translateY(0); }

.social-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}

.social-btn .social-name {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.social-btn .social-handle {
  font-family: var(--chaos-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

/* Per-platform color treatments using brand palette */
.social-ig { background: var(--chaos-magenta); color: var(--chaos-cream); }
.social-ig .social-handle { color: var(--chaos-cream); opacity: 0.85; }
.social-tt { background: #000000;  color: #ffffff; }
.social-tt .social-handle { color: #ffffff; opacity: 0.8; }
.social-fb { background: #1877F2;  color: #ffffff; }
.social-fb .social-handle { color: #ffffff; opacity: 0.9; }

/* Mobile: stack rows of 3 buttons remain in a row but smaller */
@media (max-width: 480px) {
  .social-btn { padding: 12px 4px 10px; }
  .social-btn svg { width: 24px; height: 24px; }
  .social-btn .social-name { font-size: 12px; }
  .social-btn .social-handle { font-size: 9px; }
}

/* Step 2: interests question (replaces opt-in form) */
.interests-lede {
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 16px;
  color: #C9C7C1;
  margin: 0 0 4px;
  text-align: center;
}
.interests-lede strong {
  font-family: var(--chaos-display);
  font-weight: 800;
  font-style: normal;
  color: var(--chaos-magenta);
  letter-spacing: 0.02em;
}
#waitlist-interests-form .field-label-block {
  text-align: center;
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}
#waitlist-interests-form .opt {
  display: block;
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}
.interests-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.interests-actions .chaos-submit {
  flex: 1;
  margin-top: 0;
}
.skip-btn {
  background: transparent;
  border: 0;
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 8px 10px;
}
.skip-btn:hover { opacity: 1; text-decoration: underline; }

/* --- Mobile + small screen tuning --------------------------------------- */
@media (max-width: 600px) {
  .form-reveal { padding: 12px; }
  .chaos-form-card {
    padding: 0 18px 24px;
    max-height: calc(100vh - 24px);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8);
  }
  .form-masthead { margin: 0 -18px 20px; padding: 30px 18px 18px; }
  .form-logo { max-width: 280px; }
  .form-close { top: 10px; right: 12px; width: 36px; height: 36px; font-size: 26px; }
  .chaos-form-title { font-size: clamp(26px, 7vw, 36px); }
  .chaos-form-header { margin-bottom: 14px; }
  .chaos-form-sub { font-size: 13px; }
  .chaos-form { gap: 12px; }
  .sticker-tl { top: -10px; left: 12px; font-size: 12px; padding: 5px 8px; }
  .sticker-br { bottom: -10px; right: 12px; font-size: 13px; padding: 5px 8px; }
  .chips { grid-template-columns: repeat(2, 1fr); }
  .chaos-submit { font-size: 17px; padding: 13px 18px; }
  /* GHL vendor modal on mobile */
  .form-reveal-inner { max-height: calc(100vh - 24px); padding: 6px; }
  .form-reveal iframe { min-height: 700px; }
}

/* Prevent iOS zoom on focus by keeping base input font-size ≥ 16px (already set above) */

/* --- Standalone form page (e.g. /vendors) -------------------------------- */
body.subpage { background: var(--bg); color: var(--fg); }
.form-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}
.form-page-back {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--chaos-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: color 140ms ease;
}
.form-page-back:hover { color: #fff; }
.form-page-card {
  max-height: none;
  overflow: visible;
  margin: 0 auto;
}

/* Desktop: use the width — two-column form grid instead of one long column */
@media (min-width: 760px) {
  .form-page { max-width: 900px; }
  .form-page-card { max-width: 900px; }
  .form-page .chaos-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 14px;
    align-items: start;
  }
  /* multi-field rows and designated full-width fields span both columns */
  .form-page .chaos-form > .field-row,
  .form-page .chaos-form > .field-row-3,
  .form-page .chaos-form > .field.full,
  .form-page .chaos-form > .chaos-submit,
  .form-page .chaos-form > .chaos-form-foot {
    grid-column: 1 / -1;
  }
  .form-page .form-logo { max-width: 380px; }
}

/* --- Proof / experience --------------------------------------------------- */

.proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 96px 24px;
}

.proof-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.proof-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.proof-lead {
  color: var(--fg-dim);
  max-width: 760px;
  margin: 0 0 48px;
  font-size: clamp(15px, 1.4vw, 18px);
}

.proof-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Torn-from-magazine clippings (cream paper + tape, slightly tilted) */
.proof-item {
  position: relative;
  z-index: 0;
  padding: 32px 26px 28px;
  text-align: center;
  transition: transform 160ms ease;
}

.proof-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f4ecd8;
  border-radius: 3px;
  filter: url(#torn);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.proof-item:nth-child(1) { transform: rotate(-2deg); }
.proof-item:nth-child(2) { transform: rotate(1.2deg); }
.proof-item:nth-child(3) { transform: rotate(-1deg); }
.proof-item:hover { transform: rotate(0deg) translateY(-4px); }

.proof-item .tape {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 92px;
  height: 26px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(236, 232, 68, 0.45);
  border-left: 1px dashed rgba(0, 0, 0, 0.12);
  border-right: 1px dashed rgba(0, 0, 0, 0.12);
  mix-blend-mode: multiply;
  z-index: 2;
}

.proof-logo-well {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.proof-logo-well img {
  max-height: 100%;
  max-width: 82%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.proof-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1712;
}

.proof-item p {
  margin: 0;
  color: #4a4338;
  font-size: 15px;
}

/* Aggregate stat bar */
.stat-bar {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.01em;
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
}

.stat-feature .stat-num { color: var(--chaos-yellow); }
.stat-feature .stat-label { color: var(--chaos-cream); }

@media (max-width: 620px) {
  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

/* --- Venue section ----------------------------------------------------- */
.venue-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 96px 24px;
}
.venue-section::before {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: 0;
  background-image: url(/chaos-wm-tile.png);
  background-size: 270px auto;
  background-repeat: repeat;
  transform: rotate(-18deg);
  filter: grayscale(1) brightness(2.4);
  opacity: 0.07;
  pointer-events: none;
}
.venue-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.venue-head { max-width: 760px; }
.venue-section .eyebrow { margin-bottom: 8px; }
.venue-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.venue-lead {
  margin: 0 0 40px;
  max-width: 760px;
  color: var(--fg-dim);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
}
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
  gap: 22px;
  margin: 0 0 44px;
}
.venue-shot {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 11px;
  aspect-ratio: 4 / 3;
}
.venue-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f4ecd8;
  border-radius: 3px;
  filter: url(#torn);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}
.venue-shot:nth-child(odd) { transform: rotate(-1.5deg); }
.venue-shot:nth-child(even) { transform: rotate(1.5deg); }
.venue-feature { max-width: 720px; margin: 0 auto 44px; transform: rotate(-1.2deg); }
.venue-shot img,
.venue-shot .ph {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.venue-shot .ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cfc6b0;
  color: #6b6450;
  font: 600 12px var(--chaos-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.venue-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.venue-address {
  flex: 1 1 260px;
  color: var(--fg-dim);
  font-size: 15px;
}
.venue-address strong {
  display: block;
  margin-bottom: 2px;
  color: var(--fg);
  font-size: 16px;
}
.venue-perk {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(89, 171, 70, 0.16);
  color: var(--chaos-green);
  font: 600 12px var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.venue-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.venue-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font: 600 15px var(--font-body);
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.venue-cta:hover { transform: translateY(-1px); }
.venue-cta.primary { background: var(--chaos-magenta); color: #fff; }
.venue-cta.primary:hover { background: #e83a70; }
.venue-cta.ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.venue-cta.ghost:hover { border-color: #3a3a42; background: #1a1a1f; }

.venue-note {
  margin: 20px 0 0;
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.65;
}
.venue-note strong { color: var(--fg); }
.venue-note em { font-style: italic; }
.venue-note a { color: var(--chaos-green); text-decoration: none; }
.venue-note a:hover { text-decoration: underline; }
.venue-note .code {
  font-family: var(--chaos-mono);
  color: var(--chaos-yellow);
  background: rgba(236, 232, 68, 0.08);
  padding: 1px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.venue-directions { margin-top: 40px; }
.venue-subhead {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.route-list {
  display: grid;
  gap: 10px;
  max-width: 760px;
}
.route {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  overflow: hidden;
}
.route summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  font: 600 15px var(--font-body);
  list-style: none;
}
.route summary::-webkit-details-marker { display: none; }
.route summary::after {
  content: "+";
  color: var(--chaos-yellow);
  font-size: 20px;
  line-height: 1;
}
.route[open] summary::after { content: "\2212"; }
.route summary:hover { color: var(--chaos-yellow); }
.route p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
}
.venue-directions-note {
  margin: 16px 0 0;
  color: var(--fg-dim);
  font-size: 13px;
}

/* --- Site footer (centered, logo-forward) -------------------------------- */

.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 52px 24px 40px;
  text-align: center;
}
.site-footer-inner { max-width: 720px; margin: 0 auto; }

.footer-logo-link { display: inline-block; }
.footer-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.footer-event {
  font-family: var(--chaos-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--chaos-yellow);
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 12px;
  margin-bottom: 26px;
  font-family: var(--chaos-text);
  font-size: 14px;
}
.footer-links a { color: #D8D6D0; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-links .dot { color: rgba(255, 255, 255, 0.3); }

/* Produced by LiveBuys */
.footer-produced { margin-bottom: 26px; }
.footer-produced-label {
  display: block;
  font-family: var(--chaos-text);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}
.footer-produced img { width: 100%; max-width: 150px; height: auto; display: block; margin: 0 auto; }

/* Monochrome social + email icons */
.footer-socials-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}
.footer-socials-row a {
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  transition: color 140ms ease, transform 140ms ease;
}
.footer-socials-row a:hover { color: #fff; transform: translateY(-2px); }
.footer-socials-row svg { width: 24px; height: 24px; display: block; }

.footer-legal {
  font-family: var(--chaos-text);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}
.footer-legal a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }

.footer-fine {
  font-family: var(--chaos-text);
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
}
.footer-fine p { margin: 2px 0; }
.footer-fine a { color: rgba(255, 255, 255, 0.6); }
.footer-fine a:hover { color: #fff; }

/* --- Reduced motion ------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* --- Sticky site nav --------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid rgba(246, 246, 247, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.site-nav.solid {
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(246, 246, 247, 0.14);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px 13px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: var(--fg); text-decoration: none;
  font: 600 14px var(--font-body); opacity: 0.85;
}
.nav-links a:hover { opacity: 1; color: var(--chaos-yellow); }
.nav-countdown { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.cd-label {
  font: 700 10px var(--chaos-mono); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-dim);
}
.cd-unit { display: flex; flex-direction: column; align-items: center; line-height: 1; min-width: 30px; }
.cd-unit b { font: 400 18px var(--font-display); color: var(--fg); letter-spacing: 0.02em; }
.cd-unit span {
  font: 600 9px var(--chaos-mono); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-dim); margin-top: 3px;
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-vendor {
  color: var(--fg); text-decoration: none;
  font: 600 14px var(--font-body); opacity: 0.85; white-space: nowrap;
}
.nav-vendor:hover { opacity: 1; }
.nav-waitlist {
  background: var(--chaos-green); color: var(--chaos-ink);
  border: 0; border-radius: 999px; padding: 9px 18px;
  font: 700 14px var(--font-body); cursor: pointer; white-space: nowrap;
  transition: background 0.12s ease;
}
.nav-waitlist:hover { background: #67c050; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--fg); }
.nav-mobile { display: none; }
.nav-mobile a {
  color: var(--fg); text-decoration: none;
  font: 600 16px var(--font-body); padding: 13px 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 980px) {
  .nav-links, .nav-countdown, .nav-vendor { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle { display: flex; }
  .nav-mobile:not([hidden]) {
    display: flex; flex-direction: column;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  }
}

#top, #watch, #venue, #proof { scroll-margin-top: 84px; }
