/* ==========================================================================
   CA$H KARAOKE - brand system
   Palette per client brief: white/off-white bg, charcoal text, black logo,
   metallic gold accent, black buttons w/ white text, gold "win cash" buttons,
   emerald green used sparingly for success highlights. No neon, no heavy
   green, no pure-white-on-black.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts - all self-hosted from assets/fonts/, no external CDN.
   Anton (display) is the Google Fonts build, split latin / latin-ext so most
   visitors only download the 12KB latin file. Play (body) is subset to the
   same ranges. Keep font-display:swap so text paints immediately.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/Anton-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/Anton-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Play";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/Play-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Play";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/Play-Bold.woff2") format("woff2");
}

:root {
  --bg: #faf9f6;
  --bg-alt: #f2f0ea;
  --charcoal: #232323;
  --charcoal-soft: #4a4a48;
  --black: #0c0c0c;
  --gold: #c9a227;
  --gold-bright: #e0bb46;
  --gold-deep: #9c7d1a;
  --emerald: #0f5c3c;
  --silver: #8b8d8f;
  --line: rgba(35, 35, 35, 0.12);
  --white: #ffffff;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Play", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--black);
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  line-height: 1.1;
  text-transform: uppercase;
}

p { margin: 0 0 1em; color: var(--charcoal-soft); }

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-display);
  color: var(--gold-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: inline-block;
}
.eyebrow-lg {
  font-size: 1.6rem;
}
.cash-shout {
  font-family: var(--font-display);
  font-size: 1.35em;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255,47,214,0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) scale(1.03); }

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.25); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--black);
  border-color: var(--gold-deep);
  font-weight: 700;
}
.btn-gold:hover { box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ============================== HEADER ============================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 34px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.main-nav a.active,
.main-nav a:hover { color: var(--gold-deep); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.mute-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.mute-toggle svg { width: 18px; height: 18px; fill: var(--charcoal); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { display: block; height: 2px; background: var(--black); border-radius: 2px; }

/* ============================== ENTRANCE GATE ============================== */
.entrance {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201,162,39,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(15,92,60,0.12), transparent 50%),
    #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.entrance.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.entrance-spotlights {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.beam {
  position: absolute;
  top: -20%;
  width: 240px;
  height: 140%;
  background: linear-gradient(to bottom, rgba(201,162,39,0.14), transparent 70%);
  transform: rotate(10deg);
  filter: blur(6px);
}
.beam.b1 { left: 8%; transform: rotate(14deg); }
.beam.b2 { left: 38%; transform: rotate(-6deg); width: 180px; opacity: 0.7; }
.beam.b3 { right: 10%; transform: rotate(-16deg); }

.entrance-content { position: relative; z-index: 1; max-width: 720px; }
.entrance-content .eyebrow { color: var(--neon-cyan); }
.entrance-content h1 {
  color: var(--neon-cyan);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  margin-bottom: 14px;
}
.entrance-content h1 .accent { color: var(--neon-purple); text-shadow: 0 0 22px rgba(162,57,255,0.45); }
.entrance-content h1 .accent-blue,
.hero h1 .accent-blue { color: var(--neon-purple); text-shadow: 0 0 22px rgba(162,57,255,0.45); }

/* Text-based logo lockup - replaces the logo.png image entirely, 3x larger, full rainbow */
.text-logo {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(4.5rem, 19vw, 12.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 auto 28px;
  background: linear-gradient(90deg,
    var(--neon-pink) 0%,
    var(--neon-purple) 30%,
    var(--neon-cyan) 60%,
    var(--neon-pink) 85%,
    var(--neon-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(255,47,214,0.35)) drop-shadow(0 0 40px rgba(34,195,255,0.25));
}
.text-logo-small {
  font-size: 1.6rem;
  margin: 0;
  filter: none;
}
.text-logo-footer {
  font-size: 1.7rem;
  margin: 0 0 14px;
  filter: none;
}
.entrance-content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.enter-btn {
  margin-top: 28px;
  font-size: 1.05rem;
  padding: 16px 44px;
}
.entrance-hint {
  margin-top: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================== HERO ============================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(ellipse at 75% 15%, rgba(201,162,39,0.22), transparent 45%),
    radial-gradient(ellipse at 15% 85%, rgba(15,92,60,0.16), transparent 50%),
    linear-gradient(180deg, #141414 0%, #0c0c0c 60%, #0a0a0a 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 5px);
  pointer-events: none;
}
.hero-stage-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.16), transparent 65%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 76px;
}
.hero-inner { max-width: 760px; }
.hero .eyebrow { color: var(--neon-cyan); }
.hero h1 {
  color: var(--neon-cyan);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--neon-purple); text-shadow: 0 0 22px rgba(162,57,255,0.45); }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 24px;
}
.hero-stat .num {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 1.7rem;
}
.hero-stat:nth-child(1) .num { color: var(--neon-pink); }
.hero-stat:nth-child(2) .num { color: var(--neon-cyan); }
.hero-stat:nth-child(3) .num { color: var(--neon-purple); }
.hero-stat .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
.hero-stat:nth-child(3) {
  display: flex;
  align-items: flex-end;
}

/* ============================== SECTIONS ============================== */
section { padding: 100px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.05rem; }

.intro-blurb { padding: 56px 0; }
.intro-blurb .section-head { margin-bottom: 0; }

.format-section { padding: 72px 0 56px; }
.format-section .timeline-item { margin-bottom: 32px; }
.format-section .note-box { margin: 24px 0 0; }

.judging-section { padding-top: 56px; }

.faq-section { padding-bottom: 56px; }
.cta-tight-top { padding-top: 56px; }

.bg-alt { background: var(--bg-alt); }
.bg-dark {
  background: linear-gradient(180deg, #111 0%, #0c0c0c 100%);
  color: var(--white);
}
.bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.68); }
.bg-dark .eyebrow { color: var(--neon-cyan); }

/* Competition format - alternating vertical timeline */
.cash-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
}
.cash-tag.final { background: var(--emerald); color: var(--white); }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.week-pill {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 20px;
}

.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 50%, var(--emerald) 100%);
  transform: translateX(-50%);
  opacity: 0.5;
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
  margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-node {
  grid-column: 2;
  justify-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-bright);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  z-index: 2;
}
.timeline-text { grid-column: 1; text-align: right; }
.timeline-card { grid-column: 3; }
.timeline-item.reverse .timeline-text { grid-column: 3; text-align: left; }
.timeline-item.reverse .timeline-card { grid-column: 1; }

.timeline-text h3 { font-size: 1.3rem; margin-bottom: 8px; }
.timeline-text p { font-size: 0.95rem; margin-bottom: 0; }

.timeline-card-inner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
}
.timeline-card-inner ul { margin: 0; padding: 0; list-style: none; }
.timeline-card-inner li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}
.timeline-card-inner li:last-child { margin-bottom: 0; }
.timeline-card-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-item.final .timeline-card-inner {
  background: var(--black);
  border-color: rgba(201,162,39,0.35);
}
.timeline-item.final .timeline-card-inner li { color: rgba(255,255,255,0.72); }
.timeline-item.final .timeline-card-inner li::before { background: var(--emerald); }

/* Feature grid (about / community) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  padding: 32px 26px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}
.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--black);
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card .icon svg { width: 22px; height: 22px; fill: currentColor; }
.feature-card h3 { font-size: 1.05rem; }
.feature-card p { font-size: 0.94rem; margin-bottom: 0; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.tracks-card {
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.tracks-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(201,162,39,0.25), transparent 55%);
}
.tracks-card * { position: relative; z-index: 1; }
.tracks-card h3 { color: var(--gold-bright); }
.tracks-card ul { margin: 20px 0 0; padding: 0; list-style: none; }
.tracks-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}
.tracks-card li:first-child { border-top: none; }
.tracks-card strong { color: var(--white); }

/* CTA / find event */
.cta-band {
  background: linear-gradient(120deg, #0c0c0c, #171410);
  color: var(--white);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ============================== VENUES ============================== */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.venue-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.venue-card.pending {
  background: transparent;
  border: 2px dashed var(--line);
}
.venue-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.venue-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.venue-badge.confirmed { background: var(--emerald); color: var(--white); }
.venue-badge.pending { background: var(--bg-alt); color: var(--charcoal-soft); border: 1px solid var(--line); }
.venue-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.venue-meta { margin-bottom: 22px; flex-grow: 1; }
.venue-meta p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.venue-meta p span:first-child { color: var(--gold-deep); font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.04em; min-width: 60px; }
.venue-actions { display: flex; flex-direction: column; gap: 10px; }
.venue-actions .btn { width: 100%; }
.btn-disabled {
  background: var(--bg-alt);
  color: var(--silver);
  border-color: var(--line);
  cursor: default;
}
.btn-disabled:hover { transform: none; }

.venue-note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.venue-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 26px 28px;
}
.venue-note h4 { font-size: 1.05rem; margin-bottom: 10px; }
.venue-note:nth-of-type(1) h4 { color: var(--neon-pink); }
.venue-note:nth-of-type(2) h4 { color: var(--neon-cyan); }
.venue-note p { font-size: 0.92rem; margin-bottom: 0; }
.venue-note .highlight { color: var(--gold-deep); font-weight: 600; }
.venue-note.muted { border-left-color: var(--silver); background: var(--bg-alt); }

.own-venue-band {
  margin-top: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.own-venue-band h2 { color: var(--white); margin-bottom: 8px; }
.own-venue-band p { color: rgba(255,255,255,0.68); max-width: 460px; margin-bottom: 0; }

/* ============================== CONTACT FORM ============================== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; }
.contact-info p { font-size: 1rem; }
.contact-reasons {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.contact-reasons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}
.contact-reasons li:first-child { border-top: none; }
.contact-reasons .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}
.contact-direct {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}
.contact-direct a { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
.contact-direct a:hover { text-decoration: underline; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--charcoal);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-submit { width: 100%; justify-content: center; }
.form-note { font-size: 0.8rem; color: var(--silver); margin-top: 14px; margin-bottom: 0; text-align: center; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.form-success.show { display: flex; }
.form-error { background: var(--neon-red); }

/* ============================== FAQ ============================== */
.faq-group { max-width: 820px; margin: 0 auto 48px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group h3 {
  font-size: 1.15rem;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 24px;
  margin-bottom: 14px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-item p {
  padding: 0 0 20px;
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

/* ============================== FOOTER ============================== */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.footer-brand img { height: 32px; margin-bottom: 14px; filter: invert(1); }
.footer-brand p { max-width: 320px; font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-credit {
  margin-top: 10px;
  font-size: 1.05rem;
  color: var(--neon-cyan);
  font-style: italic;
  font-weight: 600;
  text-shadow: 0 0 16px rgba(34,195,255,0.35);
}
.footer-credit-bottom {
  margin: 0 0 16px;
  text-align: center;
}
.footer-powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-powered-by:hover { color: var(--neon-cyan); }
.footer-powered-by img { height: 22px; width: auto; border-radius: 5px; }

/* ============================== INNER PAGE HEADER (how-it-works / terms) ============================== */
.page-hero {
  padding: 170px 0 70px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201,162,39,0.18), transparent 50%),
    #0c0c0c;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); }
.page-hero-mic h1 { font-size: clamp(3rem, 9vw, 5.5rem); }
.page-hero p { color: rgba(255,255,255,0.68); max-width: 560px; margin: 0 auto; }

.note-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

/* Terms page */
.terms-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 24px 120px;
}
.terms-body h2 {
  font-size: 1.4rem;
  margin-top: 2.2em;
  padding-top: 0.4em;
  border-top: 1px solid var(--line);
}
.terms-body h2:first-child { border-top: none; margin-top: 0; }
.terms-body h3 {
  font-size: 1.05rem;
  text-transform: none;
  margin-top: 1.6em;
}
.terms-body p, .terms-body li { color: var(--charcoal-soft); font-size: 0.96rem; }
.terms-body strong { color: var(--charcoal); }
.terms-body u { text-decoration-color: var(--gold-deep); }
.terms-callout { color: var(--neon-red); text-decoration-color: var(--neon-red); font-weight: 700; }
.terms-divider { border: none; border-top: 1px solid var(--line); margin: 2em 0; }
.terms-toc {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.terms-toc h4 { font-size: 0.85rem; letter-spacing: 0.06em; margin-bottom: 12px; }
.terms-toc ol { margin: 0; padding-left: 20px; columns: 2; gap: 24px; }
.terms-toc li { font-size: 0.88rem; margin-bottom: 8px; color: var(--charcoal-soft); }
.terms-toc a { text-decoration: none; color: var(--charcoal-soft); }
.terms-toc a:hover { color: var(--gold-deep); }
.updated-note { font-size: 0.85rem; color: var(--silver); margin-bottom: 30px; }

/* Back to top link on inner pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--charcoal-soft);
  font-size: 0.85rem;
  margin-bottom: 30px;
}
.back-link:hover { color: var(--gold-deep); }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { flex-direction: column; }
  .venue-note-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item.reverse {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .timeline-node { grid-column: 1; grid-row: 1; width: 40px; height: 40px; font-size: 1rem; }
  .timeline-text,
  .timeline-item.reverse .timeline-text {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    margin-bottom: 16px;
  }
  .timeline-card,
  .timeline-item.reverse .timeline-card {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 700px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 70px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 22px; }
  .terms-toc ol { columns: 1; }
  .own-venue-band { padding: 32px 24px; text-align: left; }
  .form-card { padding: 28px 22px; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
}

/* ============================================================
   CONCEPT: BLACK + ELECTRIC PINK / BLUE / PURPLE NEON
   No yellow or gold anywhere in this palette, by design.
   Layout/structure untouched - colours, surfaces, a neon
   silhouette back-splash, and flash lights only.
   ============================================================ */
:root {
  --bg: linear-gradient(160deg, #0a1230 0%, #050a1c 100%);
  --bg-alt: linear-gradient(160deg, #0d1638 0%, #070d22 100%);
  --surface: #10152c;
  --surface-line: rgba(255,255,255,0.14);
  --black: #060b1e;
  --white: #ffffff;

  --text-light: #d9d4f5;
  --text-muted: #aeb0d8;
  --silver: #7d7da8;

  --neon-pink: #ff2fd6;
  --neon-cyan: #22c3ff;
  --neon-purple: #a239ff;
  --neon-indigo: #3d4dff;
  --neon-red: #ff2438;

  /* re-point the original palette names so every existing rule
     that references them picks up the new neon system - no gold, no white */
  --gold: var(--neon-pink);
  --gold-bright: var(--neon-pink);
  --gold-deep: var(--neon-cyan);
  --emerald: var(--neon-red);
  --charcoal: var(--text-light);
  --charcoal-soft: var(--text-muted);
  --line: rgba(255,255,255,0.12);
}

body { background: var(--bg); }
h1, h2, h3, h4 { color: var(--text-light); }

.site-header {
  background: rgba(6,9,28,0.78);
  border-bottom-color: rgba(255,255,255,0.08);
}
.main-nav a { color: var(--text-light); }
.main-nav a.active, .main-nav a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 14px rgba(34,195,255,0.65);
}
.nav-toggle span { background: var(--neon-cyan); }
.mute-toggle { background: var(--surface); border-color: var(--surface-line); }
.mute-toggle svg { fill: var(--neon-cyan); }

.bg-alt { background: var(--bg-alt); }

.btn-black { background: var(--surface); color: var(--text-light); border-color: var(--surface-line); }
.btn-black:hover { box-shadow: 0 0 26px rgba(34,230,255,0.4); border-color: var(--neon-cyan); }

.btn-gold {
  background: linear-gradient(120deg, var(--neon-pink), var(--neon-purple) 55%, var(--neon-cyan));
  color: var(--black);
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255,47,214,0.35);
}
.btn-gold:hover { box-shadow: 0 0 34px rgba(255,47,214,0.55); }

.btn-outline { color: var(--text-light); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--text-light); color: var(--black); }

.btn-outline-light:hover { color: var(--black); }

.btn-disabled { background: var(--surface); color: var(--silver); border-color: var(--surface-line); }

/* Entrance + hero: the client's reference photo as the actual back-splash,
   with a dark + neon colour wash over top so text stays legible. */
.entrance {
  background:
    radial-gradient(ellipse at 50% 15%, rgba(255,47,214,0.22), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(34,195,255,0.24), transparent 50%),
    linear-gradient(180deg, rgba(3,3,8,0.55) 0%, rgba(3,3,8,0.8) 55%, rgba(3,3,8,0.94) 100%),
    url('../assets/hero-bg.jpg?v=4') center 30%/cover no-repeat;
  padding: 110px 24px 40px;
  overflow-y: auto;
}
.beam { background: linear-gradient(to bottom, rgba(34,195,255,0.2), transparent 70%); }
.beam.b2 { background: linear-gradient(to bottom, rgba(162,57,255,0.2), transparent 70%); }
.beam.b3 { background: linear-gradient(to bottom, rgba(255,47,214,0.16), transparent 70%); }
.beam.b4 {
  left: 62%;
  transform: rotate(8deg);
  width: 160px;
  opacity: 0.55;
  background: linear-gradient(to bottom, rgba(255,47,214,0.16), transparent 70%);
}
.beam.b5 {
  right: 26%;
  left: auto;
  transform: rotate(-10deg);
  width: 150px;
  opacity: 0.55;
  background: linear-gradient(to bottom, rgba(34,195,255,0.18), transparent 70%);
}

.entrance-content h1 { text-shadow: 0 0 30px rgba(34,195,255,0.3); }

.hero {
  background:
    radial-gradient(ellipse at 75% 10%, rgba(255,47,214,0.22), transparent 45%),
    radial-gradient(ellipse at 10% 85%, rgba(34,195,255,0.24), transparent 50%),
    linear-gradient(180deg, rgba(3,3,8,0.5) 0%, rgba(3,3,8,0.78) 55%, rgba(3,3,8,0.95) 100%),
    url('../assets/mic-bg.jpg?v=1') center 35%/cover no-repeat;
}
.hero-stage-glow {
  background: radial-gradient(ellipse at center, rgba(162,57,255,0.2), transparent 65%);
}
.hero h1 { text-shadow: 0 0 34px rgba(34,195,255,0.25); }

/* Light-spots: small scattered glints across the stage, like the dappled
   light a mirror ball throws across a floor or wall. */
.light-spots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,47,214,0.9) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(34,195,255,0.9) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(162,57,255,0.85) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(255,47,214,0.7) 1.3px, transparent 2px),
    radial-gradient(circle, rgba(34,195,255,0.7) 1.3px, transparent 2px),
    radial-gradient(circle, rgba(255,36,56,0.75) 1.4px, transparent 2px);
  background-size: 130px 130px, 170px 170px, 150px 150px, 190px 190px, 160px 160px, 210px 210px;
  background-position: 5% 20%, 60% 65%, 30% 80%, 80% 15%, 15% 55%, 70% 35%;
  animation: spotsTwinkle 3.6s ease-in-out infinite;
}
@keyframes spotsTwinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Multi-colour timeline nodes - each stage gets its own neon hue (no yellow) */
.timeline-item:nth-of-type(1) .timeline-node { background: var(--black); border-color: var(--neon-pink); color: var(--neon-pink); box-shadow: 0 0 16px rgba(255,47,214,0.5); }
.timeline-item:nth-of-type(2) .timeline-node { background: var(--black); border-color: var(--neon-cyan); color: var(--neon-cyan); box-shadow: 0 0 16px rgba(34,195,255,0.5); }
.timeline-item:nth-of-type(3) .timeline-node { background: var(--black); border-color: var(--neon-purple); color: var(--neon-purple); box-shadow: 0 0 16px rgba(162,57,255,0.5); }
.timeline-item:nth-of-type(4) .timeline-node { background: var(--black); border-color: var(--neon-red); color: var(--neon-red); box-shadow: 0 0 16px rgba(255,36,56,0.5); }

.timeline-item:nth-of-type(1) h3 { color: var(--neon-pink); }
.timeline-item:nth-of-type(2) h3 { color: var(--neon-cyan); }
.timeline-item:nth-of-type(3) h3 { color: var(--neon-purple); }
.timeline-item:nth-of-type(4) h3 { color: var(--neon-red); }

.timeline::before {
  background: linear-gradient(180deg, var(--neon-pink) 0%, var(--neon-cyan) 33%, var(--neon-purple) 66%, var(--neon-red) 100%);
  opacity: 0.75;
}

.cash-tag { color: var(--black); }
.cash-tag.final { background: var(--neon-red); color: var(--black); }

/* Surfaces: cards flip from white to elevated navy panels */
.feature-card, .venue-card, .faq-item, .form-card, .timeline-card-inner, .venue-note, .terms-toc, .note-box {
  background: var(--surface);
  border-color: var(--surface-line);
}
.venue-card.pending { border-color: rgba(255,255,255,0.25); background: transparent; }
.venue-note.muted { background: var(--bg-alt); border-left-color: var(--silver); }
.venue-badge.pending { background: var(--bg-alt); border-color: var(--surface-line); }
.faq-item .chev { background: var(--bg-alt); }

.feature-card:nth-of-type(1) .icon { background: var(--neon-pink); color: var(--black); }
.feature-card:nth-of-type(2) .icon { background: var(--neon-cyan); color: var(--black); }
.feature-card:nth-of-type(3) .icon { background: var(--neon-purple); color: var(--black); }
.feature-card:nth-of-type(1) h3 { color: var(--neon-pink); }
.feature-card:nth-of-type(2) h3 { color: var(--neon-cyan); }
.feature-card:nth-of-type(3) h3 { color: var(--neon-purple); }

.form-row input, .form-row select, .form-row textarea {
  background: var(--bg);
  color: var(--text-light);
  border-color: var(--surface-line);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(34,230,255,0.25);
}

.tracks-card::before { background: radial-gradient(circle at 80% 0%, rgba(255,47,214,0.3), transparent 55%); }
.cta-band { background: linear-gradient(120deg, #0d1130, #170c30); box-shadow: 0 0 40px rgba(162,57,255,0.15); }
.page-hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,47,214,0.22), transparent 50%),
    var(--black);
}
.page-hero-mic {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,47,214,0.28), transparent 50%),
    linear-gradient(180deg, rgba(3,3,8,0.55) 0%, rgba(3,3,8,0.92) 100%),
    url('../assets/mic-bg.jpg?v=1') center 35%/cover no-repeat;
}
.page-hero-venues {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(34,195,255,0.28), transparent 50%),
    linear-gradient(180deg, rgba(3,3,8,0.55) 0%, rgba(3,3,8,0.92) 100%),
    url('../assets/venues-bg.jpg?v=1') center 30%/cover no-repeat;
}
.page-hero-contact {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(162,57,255,0.28), transparent 50%),
    linear-gradient(180deg, rgba(3,3,8,0.55) 0%, rgba(3,3,8,0.92) 100%),
    url('../assets/contact-bg.jpg?v=1') center 30%/cover no-repeat;
}
.page-hero-terms {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,47,214,0.25), transparent 50%),
    linear-gradient(180deg, rgba(3,3,8,0.6) 0%, rgba(3,3,8,0.93) 100%),
    url('../assets/terms-bg.jpg?v=1') center 30%/cover no-repeat;
}

/* Flash lights - soft camera-flash style bloom, deliberately slow and
   low-contrast so it reads as "exciting" without strobing (accessibility). */
.flash-light {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
}
.flash-light.f1 {
  background: radial-gradient(ellipse at 20% 25%, rgba(255,47,214,0.55), transparent 60%);
  animation: flashPulse 6s ease-in-out infinite;
}
.flash-light.f2 {
  background: radial-gradient(ellipse at 80% 30%, rgba(34,195,255,0.5), transparent 60%);
  animation: flashPulse 7.5s ease-in-out infinite;
  animation-delay: 2.4s;
}
.flash-light.f3 {
  background: radial-gradient(ellipse at 50% 70%, rgba(162,57,255,0.45), transparent 60%);
  animation: flashPulse 9s ease-in-out infinite;
  animation-delay: 4.6s;
}
.flash-light.f4 {
  background: radial-gradient(ellipse at 65% 20%, rgba(255,47,214,0.45), transparent 60%);
  animation: flashPulse 8s ease-in-out infinite;
  animation-delay: 1.2s;
}
.flash-light.f5 {
  background: radial-gradient(ellipse at 30% 80%, rgba(34,195,255,0.45), transparent 60%);
  animation: flashPulse 10s ease-in-out infinite;
  animation-delay: 6s;
}
@keyframes flashPulse {
  0%, 88%, 100% { opacity: 0; }
  92% { opacity: 1; }
  96% { opacity: 0.15; }
}
