/* ============================================================
   RAIDEN — house music, struck by lightning
   Theming: html[data-light] swaps the lighting rig.
   ============================================================ */

:root {
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --bg: #07070b;
  --bg-2: #0d0d15;
  --panel: #101018;
  --panel-2: #16161f;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eceaf4;
  --text-dim: #9b98ab;

  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --accent-soft: rgba(139, 92, 246, 0.16);
  --glow: rgba(139, 92, 246, 0.55);

  --radius: 14px;
  --nav-h: 64px;
}

html[data-light="ember"] {
  --accent: #f59e0b;
  --accent-2: #ef4444;
  --accent-soft: rgba(245, 158, 11, 0.14);
  --glow: rgba(245, 158, 11, 0.5);
}

html[data-light="acid"] {
  --accent: #a3e635;
  --accent-2: #22d3ee;
  --accent-soft: rgba(163, 230, 53, 0.13);
  --glow: rgba(163, 230, 53, 0.45);
}

html[data-light="ice"] {
  --accent: #60a5fa;
  --accent-2: #e2e8f0;
  --accent-soft: rgba(96, 165, 250, 0.15);
  --glow: rgba(96, 165, 250, 0.5);
}

/* unlocked by typing the name — the thunder god's own lighting */
html[data-light="overdrive"] {
  --accent: #fbbf24;
  --accent-2: #fef3c7;
  --accent-soft: rgba(251, 191, 36, 0.16);
  --glow: rgba(251, 191, 36, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip; /* clip, not hidden: hidden makes body a scroll container and breaks scrollIntoView */
  transition: background 0.6s ease;
}

::selection { background: var(--accent); color: #0a0a0f; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* ---------- scrollbar ---------- */
html { scrollbar-color: #2a2a3a #0a0a10; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a10; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), #1c1c28);
  border-radius: 5px;
  border: 2px solid #0a0a10;
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.preloader svg { animation: preFlicker 0.9s steps(3) infinite; filter: drop-shadow(0 0 22px var(--glow)); }
@keyframes preFlicker { 0%, 100% { opacity: 1; } 45% { opacity: 0.25; } 70% { opacity: 0.8; } }
.preloader.done { opacity: 0; visibility: hidden; }
@media (prefers-reduced-motion: reduce) { .preloader { display: none; } }

/* ---------- ambient layers ---------- */
.spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 640px; height: 640px;
  margin: -320px 0 0 -320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}
body.spotlight-on .spotlight { opacity: 0.9; }

.beat-veil {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 110%, var(--glow) 0%, transparent 55%);
  opacity: 0;
  will-change: opacity;
}

.grain {
  position: fixed;
  inset: -120px;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  animation: grainShift 1.1s steps(6) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-34px, 22px); }
  40% { transform: translate(18px, -40px); }
  60% { transform: translate(-46px, -12px); }
  80% { transform: translate(30px, 34px); }
  100% { transform: translate(0, 0); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent);
  color: #0a0a0f;
  box-shadow: 0 0 24px var(--accent-soft);
}
.btn-accent:hover { box-shadow: 0 0 42px var(--glow); }

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-small { padding: 0.55rem 1.1rem; font-size: 0.68rem; }
.btn-big { padding: 1rem 2.2rem; font-size: 0.85rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--text);
}
.nav-logo svg { color: var(--accent); transition: color 0.4s ease; }

.nav-vu {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 13px;
  margin-left: 0.5rem;
}
.nav-vu.on { display: inline-flex; }
.nav-vu i {
  width: 3px;
  height: 3px;
  border-radius: 1px;
  background: var(--accent);
  box-shadow: 0 0 6px var(--glow);
  transition: height 0.09s linear;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.8rem);
}
.nav-links > a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav-links > a:hover { color: var(--accent); }
.nav-links > a.nav-book { color: #0a0a0f; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* lighting desk */
.light-desk {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.light-desk-label {
  font-size: 0.58rem;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.light-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.light-dot:hover { transform: scale(1.25); }
.light-dot[data-light="storm"] { background: #8b5cf6; }
.light-dot[data-light="ember"] { background: #f59e0b; }
.light-dot[data-light="acid"]  { background: #a3e635; }
.light-dot[data-light="ice"]   { background: #60a5fa; }
.light-dot[data-light="overdrive"] {
  background: #fbbf24;
  display: none;
}
.light-dot[data-light="overdrive"].unlocked { display: block; animation: godGlow 1.6s ease-in-out infinite; }
@keyframes godGlow { 50% { box-shadow: 0 0 12px 3px #fbbf24; } }
.light-dot.active { box-shadow: 0 0 10px 2px currentColor; transform: scale(1.2); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 1.2rem;
}
.hero-kicker {
  font-size: clamp(0.68rem, 1.6vw, 0.85rem);
  letter-spacing: 0.5em;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
.hero-title {
  --tg: 60px;
  font-size: clamp(3.2rem, 14vw, 10.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow:
    2px 0 0 rgba(255, 60, 90, 0.18),
    -2px 0 0 rgba(60, 220, 255, 0.18),
    0 0 var(--tg) var(--glow);
  transition: transform 0.2s ease;
}
.hero-title.jolt {
  transform: scale(1.014);
  text-shadow:
    3px 0 0 rgba(255, 60, 90, 0.3),
    -3px 0 0 rgba(60, 220, 255, 0.3),
    0 0 90px var(--glow),
    0 0 26px var(--accent);
}
.hero-title span {
  display: inline-block;
  animation: charIn 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.2) backwards;
}
.hero-title span:nth-child(1) { animation-delay: 0.05s; }
.hero-title span:nth-child(2) { animation-delay: 0.13s; }
.hero-title span:nth-child(3) { animation-delay: 0.21s; }
.hero-title span:nth-child(4) { animation-delay: 0.29s; }
.hero-title span:nth-child(5) { animation-delay: 0.37s; }
.hero-title span:nth-child(6) { animation-delay: 0.45s; }
@keyframes charIn {
  from { opacity: 0; transform: translateY(0.4em) scale(0.9); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}
/* the E flickers like a tired neon sign, rarely */
.hero-title span:nth-child(5) {
  animation:
    charIn 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.2) 0.37s backwards,
    letterFlicker 13s linear 7s infinite;
}
@keyframes letterFlicker {
  0%, 90.8%, 93.4%, 100% { opacity: 1; }
  91.4%, 94% { opacity: 0.3; }
  92.4% { opacity: 0.75; }
}

.hero-kanji {
  position: absolute;
  z-index: 1;
  font-size: clamp(9rem, 30vh, 19rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
  transition: color 0.6s ease;
}
.hero-kanji-l { left: 2vw; top: 12%; }
.hero-kanji-r { right: 2vw; bottom: 10%; }
@media (max-width: 900px) {
  .hero-kanji { font-size: clamp(6rem, 16vh, 10rem); opacity: 0.04; }
  .hero-kanji-l { left: -2vw; top: 6%; }
  .hero-kanji-r { right: -2vw; bottom: 4%; }
}
.hero-tagline {
  margin: 1.1rem 0 2rem;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-line {
  display: block;
  width: 1px; height: 52px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}
.hero-hint {
  position: absolute;
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: 1.6rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  opacity: 0.5;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .hero-hint { display: none; } }

.hero-nowplaying {
  position: absolute;
  left: clamp(1rem, 3vw, 2.4rem);
  bottom: 1.5rem;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text);
  background: rgba(7, 7, 12, 0.6);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 18px var(--accent-soft);
}
.hero-nowplaying.on { display: inline-flex; }
.hero-nowplaying i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 8px #ff3b3b;
  animation: recBlink 1.2s steps(2) infinite;
}

/* hero entrance stagger */
.hero-kicker, .hero-tagline, .hero-ctas { animation: fadeUp 0.8s ease backwards; }
.hero-kicker { animation-delay: 0.15s; }
.hero-tagline { animation-delay: 0.65s; }
.hero-ctas { animation-delay: 0.85s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- ticker ---------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 0.7rem 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  padding-right: 1rem;
}
.ticker-track b {
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */
.section {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.1rem, 4vw, 2.5rem);
}
.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); max-width: 640px; }
.section-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  transition: color 0.4s ease;
}
.section-num::before { content: "[ "; opacity: 0.6; }
.section-num::after { content: " ]"; opacity: 0.6; }
.section-head h2 {
  font-size: clamp(1.9rem, 5.5vw, 3.2rem);
  font-weight: 700;
  margin: 0.5rem 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section-head p { color: var(--text-dim); font-size: 1.02rem; }

.section-tag {
  position: absolute;
  top: clamp(4.5rem, 9vw, 7.5rem);
  right: clamp(1.1rem, 4vw, 2.5rem);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--text-dim);
  opacity: 0.55;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   THE STREAM (boiler-room frame)
   ============================================================ */
.stream {
  display: grid;
  grid-template-columns: 1fr 250px;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #05050a;
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 1);
}

.stream-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.stream-rec { display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; }
.stream-rec i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4a4a58;
  flex: none;
}
.stream-rec.live i { background: #ff3b3b; box-shadow: 0 0 10px #ff3b3b; animation: recBlink 1.2s steps(2) infinite; }
@keyframes recBlink { 50% { opacity: 0.35; } }
.stream-rec.live { color: var(--text); }
.stream-rec b { font-weight: 600; font-variant-numeric: tabular-nums; }
.stream-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  flex: 1;
}
.stream-viewers { white-space: nowrap; font-variant-numeric: tabular-nums; }

.stream-stage {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.8rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(255, 255, 255, 0.05), transparent 55%),
    #050509;
}
.beams-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.crowd-canvas {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}
.stream-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 3px);
  opacity: 0.55;
}
.stream-scan::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.5) 100%);
}

/* chat rail */
.chat {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: #07070d;
  min-height: 0;
}
.chat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}
.chat-head em { font-style: normal; opacity: 0.55; letter-spacing: 0.08em; }
.chat-join {
  background: none;
  border: none;
  color: var(--accent-2);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.chat-join:hover { opacity: 1; text-shadow: 0 0 8px var(--accent-2); }
.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 0.6rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.45;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
  min-height: 0;
}
.chat-msg { animation: chatIn 0.25s ease backwards; word-break: break-word; }
@keyframes chatIn { from { opacity: 0; transform: translateY(6px); } }
.chat-msg b { font-weight: 600; margin-right: 0.4em; }
.chat-msg span { color: var(--text-dim); }

/* ============================================================
   THE BOOTH
   ============================================================ */
.booth {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  align-items: stretch;
  perspective: 1400px;
  transition: transform 0.18s ease-out;
  will-change: transform;
}

/* ----- CDJ ----- */
.cdj {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.9);
}

.cdj-screen {
  background: #05050a;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem 0.6rem;
}
.cdj-track-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  transition: color 0.4s ease;
}
.cdj-track-artist {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 0.45rem;
}
.cdj-wave { width: 100%; height: 30px; display: block; }
.cdj-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.cdj-meta .cdj-time { color: var(--text); }

/* platter */
.platter {
  position: relative;
  width: min(64%, 190px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.platter-ring {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: radial-gradient(circle, transparent 58%, rgba(255, 255, 255, 0.03) 60%);
}
.platter-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #1a1a24 0%, #0c0c13 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}
.platter.spinning .platter-disc { animation: spin 1.82s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.platter-grooves {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0px,
    transparent 3px,
    rgba(255, 255, 255, 0.04) 4px
  );
}
.platter-label {
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.platter.spinning .platter-label { box-shadow: 0 0 26px var(--glow); }
.platter-label span {
  font-size: 1.3rem;
  color: #0a0a0f;
  font-weight: 700;
}

/* transport */
.cdj-controls {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}
.cdj-btn {
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--text-dim);
  border-radius: 10px;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cdj-btn:hover { color: var(--text); border-color: var(--accent); }
.cdj-btn.play { min-width: 64px; }
.cdj-btn.play .ic-pause { display: none; }
.cdj-btn.play.on {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 18px var(--accent-soft);
}
.cdj-btn.play.on .ic-play { display: none; }
.cdj-btn.play.on .ic-pause { display: block; }
.cdj-btn.cue:active { color: var(--accent-2); border-color: var(--accent-2); }
.cdj-model {
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

/* ----- MIXER ----- */
.mixer {
  background: linear-gradient(180deg, #14141d 0%, #0b0b12 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.9);
}
.mixer-brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
}
.mixer-brand span:first-child {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}
.mixer-brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}

.mixer-strips {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
  flex: 1;
}
.strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.5rem 0.15rem 0.6rem;
}
.strip-label {
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* LED meter */
.meter {
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  height: 54px;
  justify-content: flex-start;
}
.meter i {
  width: 5px; height: 4px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.05s linear, box-shadow 0.05s linear;
}
.meter i.lit { background: var(--accent); box-shadow: 0 0 6px var(--glow); }
.meter i:nth-child(7).lit,
.meter i:nth-child(8).lit { background: var(--accent-2); }

/* fader: horizontal range rotated for cross-browser vertical */
.fader-slot {
  position: relative;
  height: 110px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fader-slot::before {
  content: "";
  position: absolute;
  top: 4px; bottom: 4px;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
.fader {
  -webkit-appearance: none;
  appearance: none;
  width: 104px;
  height: 30px;
  background: transparent;
  transform: rotate(-90deg);
  cursor: ns-resize;
}
.fader::-webkit-slider-runnable-track { height: 3px; background: transparent; }
.fader::-moz-range-track { height: 3px; background: transparent; }
.fader::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 26px;
  margin-top: -11.5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #3a3a4a, #1c1c28);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.fader::-moz-range-thumb {
  width: 14px; height: 26px;
  border-radius: 3px;
  background: linear-gradient(180deg, #3a3a4a, #1c1c28);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.strip-mute {
  width: 22px; height: 14px;
  border-radius: 3px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  font-size: 0;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.strip-mute.muted { background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }

/* master row */
.mixer-master {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}
.knob-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.knob {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a2a38, #12121a 70%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: ns-resize;
  touch-action: none;
}
.knob:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.knob-indicator {
  position: absolute;
  top: 5px; left: 50%;
  width: 3px; height: 16px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--accent);
  transform-origin: 50% 23px;
  box-shadow: 0 0 8px var(--glow);
  transition: background 0.4s ease;
}
.knob-label {
  font-family: var(--font-display);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.knob-sub {
  display: flex;
  gap: 1.6rem;
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.knob-sub i { font-style: normal; }

.rise-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--accent-2);
  background: rgba(34, 211, 238, 0.06);
  color: var(--accent-2);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}
.rise-btn:hover { box-shadow: 0 0 20px rgba(34, 211, 238, 0.35); transform: translateY(-1px); }
.rise-btn.armed { animation: riseArm 0.5s steps(2) infinite; }
.rise-btn.building {
  background: var(--accent-2);
  color: #06060c;
  animation: riseBuild 0.24s steps(2) infinite;
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.6);
}
@keyframes riseArm { 50% { background: rgba(34, 211, 238, 0.2); } }
@keyframes riseBuild { 50% { opacity: 0.75; } }

.master-readout {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.tempo {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 110px;
  height: 18px;
  margin-top: 0.35rem;
  background: transparent;
  cursor: ew-resize;
}
.tempo::-webkit-slider-runnable-track { height: 3px; background: rgba(255, 255, 255, 0.12); border-radius: 2px; }
.tempo::-moz-range-track { height: 3px; background: rgba(255, 255, 255, 0.12); border-radius: 2px; }
.tempo::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px; height: 14px;
  margin-top: -5.5px;
  border-radius: 2px;
  background: linear-gradient(180deg, #3a3a4a, #1c1c28);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.tempo::-moz-range-thumb {
  width: 10px; height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #3a3a4a, #1c1c28);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.master-bpm {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.4s ease;
  line-height: 1;
}
.master-bpm-label {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}

/* crossfader */
.mixer-xfade {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.mixer-xfade > span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
}
.crossfader {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 30px;
  background: transparent;
}
.crossfader::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.crossfader::-moz-range-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.crossfader::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 16px;
  margin-top: -6px;
  border-radius: 3px;
  background: linear-gradient(180deg, #4a4a5c, #23232f);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.crossfader::-moz-range-thumb {
  width: 26px; height: 16px;
  border-radius: 3px;
  background: linear-gradient(180deg, #4a4a5c, #23232f);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.booth-hint {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 1.6rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   MIXES
   ============================================================ */
.mix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}
.mix-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.mix-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px -24px var(--glow);
}
.mix-art {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mix-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 10, 0.75));
}
/* lighthouse beam sweeps the artwork on hover */
.mix-art::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg, transparent 0 8%, rgba(255, 255, 255, 0.14) 10%, transparent 13% 100%);
  animation: beamSweep 3.2s linear infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mix-card:hover .mix-art::before { animation-play-state: running; opacity: 1; }
@keyframes beamSweep { to { transform: rotate(360deg); } }
.mix-art-1 { background: conic-gradient(from 210deg at 60% 40%, #1b1030, var(--accent), #05050a 65%); }
.mix-art-2 { background: conic-gradient(from 40deg at 30% 70%, #05050a, var(--accent-2), #101018 70%); }
.mix-art-3 { background: conic-gradient(from 120deg at 70% 60%, #14061f, var(--accent), var(--accent-2) 55%, #05050a 75%); }
.mix-art-bolt {
  font-size: 2.6rem;
  filter: drop-shadow(0 0 18px var(--glow));
  position: relative;
  z-index: 1;
}
.mix-card-body { padding: 1rem 1.1rem 1.2rem; }
.mix-card-body h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.mix-meta { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 0.7rem; }
.mix-rt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.85;
  margin-left: 0.5em;
}
.mix-status {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  opacity: 0.85;
}

.mix-follow {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.mix-follow p { color: var(--text-dim); font-size: 0.92rem; }
.newsletter { display: flex; gap: 0.6rem; flex: 1; min-width: 260px; max-width: 430px; }
.newsletter input {
  flex: 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  padding: 0.6rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter input:focus { outline: none; border-color: var(--accent); }

/* ============================================================
   VISUALS — generative gallery
   ============================================================ */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}
.art-tile {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.art-tile:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 18px 46px -22px var(--glow);
}
.art-tile canvas {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.art-tile figcaption {
  padding: 0.65rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.art-tile figcaption::after {
  content: "↻";
  opacity: 0;
  transition: opacity 0.2s ease;
  color: var(--accent);
}
.art-tile:hover figcaption::after { opacity: 1; }

/* ============================================================
   MERCH
   ============================================================ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.merch-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.merch-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px -24px var(--glow);
}
.merch-art {
  aspect-ratio: 1;
  position: relative;
  background: #08080f;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.merch-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.merch-card:hover .merch-art img { transform: scale(1.045); }
/* lighthouse beam sweep on hover (matches mix cards) */
.merch-art::before {
  content: "";
  position: absolute;
  inset: -60%;
  z-index: 2;
  background: conic-gradient(from 0deg, transparent 0 8%, rgba(255, 255, 255, 0.07) 10%, transparent 13% 100%);
  animation: beamSweep 3.2s linear infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.merch-card:hover .merch-art::before { animation-play-state: running; opacity: 1; }
.merch-body { padding: 1rem 1.1rem 1.2rem; }
.merch-body h3 { font-size: 0.92rem; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.merch-body p { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 0.7rem; }
.merch-drop {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  border-radius: 999px;
  padding: 0.26rem 0.7rem;
  opacity: 0.85;
  position: relative;
  overflow: hidden;
}
.merch-drop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: chargeSweep 3.2s ease-in-out infinite;
}
@keyframes chargeSweep { 60%, 100% { transform: translateX(100%); } }

/* ============================================================
   DATES
   ============================================================ */
.dates-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.date-row {
  display: grid;
  grid-template-columns: 90px 1.4fr 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  transition: background 0.2s ease;
}
.date-row:last-child { border-bottom: none; }
.date-row:hover { background: var(--panel-2); }
.date-when {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.date-venue { font-weight: 700; letter-spacing: 0.02em; }
.date-city { color: var(--text-dim); font-size: 0.9rem; }
.date-row-open { background: linear-gradient(90deg, var(--accent-soft), transparent 60%); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.about-lead {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.about-copy p + p { margin-top: 1rem; color: var(--text-dim); }

.rig-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}
.rig-card h3 {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.9rem;
  transition: color 0.4s ease;
}
.rig-card ul { list-style: none; }
.rig-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  font-weight: 500;
}
.rig-card li:last-child { border-bottom: none; }
.rig-card li span {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 0.9rem;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  padding: 0.85rem 0.4rem;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  transition: color 0.4s ease;
}
.stat span { font-size: 0.68rem; color: var(--text-dim); letter-spacing: 0.06em; }

/* ============================================================
   PRESS
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.press-tile {
  aspect-ratio: 3 / 4;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, var(--accent-soft), transparent 60%),
    var(--panel);
  transition: border-color 0.25s ease;
}
.press-tile:hover { border-color: var(--accent); }
.press-tile span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}
.press-actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.press-note { color: var(--text-dim); font-size: 0.85rem; max-width: 460px; }

/* ============================================================
   BOOKING
   ============================================================ */
.section-book {
  max-width: 1080px;
}
.book-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.3rem;
  align-items: start;
}
.book-info {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}
.book-info h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.9rem;
  transition: color 0.4s ease;
}
.book-info ul { list-style: none; }
.book-info li {
  display: flex;
  gap: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
}
.book-info li:last-child { border-bottom: none; }
.book-info li span {
  flex: none;
  width: 62px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.2em;
}
.book-info-note {
  margin-top: 0.9rem;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.book-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.book-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.book-form input,
.book-form textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.book-form input:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.book-form .btn { align-self: flex-start; }
.form-note { font-size: 0.85rem; color: var(--accent-2); min-height: 1.2em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 2.2rem 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.4rem, 12.5vw, 10.5rem);
  line-height: 0.9;
  text-align: center;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  user-select: none;
  margin-bottom: 2rem;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.25));
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.25));
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.14em;
}
.footer-brand svg { color: var(--accent); transition: color 0.4s ease; }
.footer-brand em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.footer-socials { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-socials a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.footer-socials a:hover { color: var(--accent); }
.footer-fine { font-size: 0.75rem; color: var(--text-dim); opacity: 0.7; }
.footer-achv { display: flex; gap: 0.7rem; }
.footer-achv .achv {
  font-size: 1.05rem;
  filter: grayscale(1);
  opacity: 0.25;
  cursor: help;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.2s ease;
}
.footer-achv .achv.got { filter: none; opacity: 1; }
.footer-achv .achv:hover { transform: scale(1.25); }

/* ---------- scroll progress + back to top ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 95;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}
.back-top {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 80;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(12, 12, 20, 0.8);
  color: var(--accent);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s ease;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: none; }
.back-top:hover { border-color: var(--accent); box-shadow: 0 0 18px var(--accent-soft); }

/* nav active section */
.nav-links > a.active { color: var(--accent); }

/* about → booking cross-link */
.about-cta { margin-top: 1.2rem; }
.about-cta a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.about-cta a:hover { border-bottom-color: var(--accent); }

/* footer quick links */
.footer-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--panel-2);
  border: 1px solid var(--accent);
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  max-width: min(92vw, 480px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .booth { grid-template-columns: 1fr; }
  .mixer { order: 3; }
  .about-grid { grid-template-columns: 1fr; }
  .stream { grid-template-columns: 1fr; }
  .chat { border-left: none; border-top: 1px solid var(--line); }
  .chat-log { max-height: 190px; }
  .stream-title { display: none; }
  .book-grid { grid-template-columns: 1fr; }
  .section-tag { display: none; }
}

@media (max-width: 760px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(7, 7, 11, 0.96);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.4rem 1.6rem 1.8rem;
    gap: 1.1rem;
    transform: translateX(110%);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
  }
  .nav-links.open { transform: none; }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .form-row { grid-template-columns: 1fr; }
  .date-row { grid-template-columns: 70px 1fr; row-gap: 0.3rem; }
  .date-row .btn { grid-column: 1 / -1; justify-self: start; }
  .mixer-strips { gap: 0.3rem; }
  .spotlight { display: none; }
}

/* ---------- ?static=1 deterministic render ---------- */
html.static-mode { scroll-behavior: auto; }
.static-mode *, .static-mode *::before, .static-mode *::after {
  animation: none !important;
  transition: none !important;
}
.static-mode .reveal { opacity: 1; transform: none; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-title span { animation: none; }
  .ticker-track { animation: none; }
  .hero-scroll-line { animation: none; }
  .platter.spinning .platter-disc { animation-duration: 6s; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .spotlight, .beat-veil { display: none; }
  .grain { animation: none; opacity: 0.035; }
  .stream-rec.live i { animation: none; }
  .chat-msg { animation: none; }
  .booth { transition: none; }
  .hero-title span:nth-child(5) { animation: none; }
  .mix-art::before { animation: none; opacity: 0; }
  .hero-title.jolt { transform: none; }
  .hero-kicker, .hero-tagline, .hero-ctas { animation: none; }
  .merch-drop::after { animation: none; }
  .hero-nowplaying i { animation: none; }
  .back-top { transition: none; }
  .merch-art::before { animation: none; opacity: 0; }
  .merch-card:hover .merch-art img { transform: none; }
}
