/* ==========================================================
   The Mission Men — Rhythm & Blues Revue
   BLUES BROTHERS palette: black suit + deep blue + cream +
   white highlights. Yellow/red used ONLY as spot accents.
   ========================================================== */

:root {
  /* core — blues dominate */
  --blue:          #0b1f4a;   /* main page background */
  --blue-deep:     #050f2b;   /* darker */
  --blue-night:    #1a2d5c;   /* panels */
  --blue-mid:      #2848a0;   /* mid accent */
  --blue-bright:   #3d6dd9;   /* highlight */
  --blue-electric: #69a6ff;   /* neon stage-light blue */
  --blue-sky:      #b4d4ff;   /* pale highlight */

  --black:         #000000;
  --ink:           #ffffff;   /* now pure white on dark blue */
  --ink-soft:      #c9d5ec;
  --cream:         #f4eede;   /* rare warm accent */

  --paper:         var(--blue);
  --paper-light:   var(--blue-night);
  --paper-dark:    var(--blue-deep);

  /* accents kept small: only for stamps / buttons */
  --mustard:       #e6b32a;
  --red:           #c6382b;

  --font-display: "Anton", "Oswald", "Impact", sans-serif;
  --font-serif:   "DM Serif Display", "Playfair Display", Georgia, serif;
  --font-mono:    "IBM Plex Mono", "Courier New", monospace;
  --font-body:    "DM Serif Text", Georgia, serif;

  --shadow-letterpress: 3px 3px 0 #000;
  --shadow-deep:        6px 6px 0 #000;
}

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

html {
  scroll-behavior: smooth;
}
html, body {
  background: var(--blue);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
/* vignette pulse */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9001;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%);
}

/* =========================
   NAV
   ========================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(6,9,18,0.94);
  color: var(--ink);
  border-bottom: 3px solid var(--blue-electric);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding 0.35s cubic-bezier(.2,.7,.2,1);
}
body.scrolled .nav-inner { padding-top: 8px; padding-bottom: 8px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo .brand { white-space: nowrap; }
.nav-logo .amp {
  color: var(--blue-electric);
  font-family: var(--font-serif);
  font-style: italic;
}
.nav-logo .sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--blue-sky);
  opacity: 0.75;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 4px 6px;
  background: var(--blue-mid);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s cubic-bezier(.7,.2,.3,1);
  z-index: -1;
}
.nav-links a:hover::before { transform: scaleY(1); }
.nav-links a.active { color: var(--blue-electric); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--blue-electric);
  box-shadow: 0 0 8px var(--blue-electric);
}

/* =========================
   Page + headers
   ========================= */
.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 32px 120px;
}

.page-header {
  padding: 40px 0 32px;
  border-bottom: 2px solid var(--blue-electric);
  margin-bottom: 48px;
  position: relative;
}
.page-header .kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 10px;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.85;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.page-header .deck {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 720px;
}
.page-header .stars {
  position: absolute;
  top: 48px;
  right: 0;
  font-size: 24px;
  color: var(--blue-electric);
  letter-spacing: 8px;
  animation: twinkle 2.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 1; text-shadow: 0 0 12px var(--blue-electric); }
  50%      { opacity: 0.35; text-shadow: none; }
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 26px;
  text-decoration: none;
  border: 2px solid #000;
  background: var(--blue-electric);
  color: #000;
  box-shadow: var(--shadow-letterpress);
  transition: transform 0.18s cubic-bezier(.2,.7,.2,1), box-shadow 0.18s cubic-bezier(.2,.7,.2,1), background 0.25s, letter-spacing 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
/* shine sweep on hover */
.btn::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn:hover::before {
  left: 130%;
  transition: left 0.55s ease;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000, 0 0 28px rgba(105,166,255,0.35);
  background: var(--blue-sky);
  letter-spacing: 2.6px;
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 #000;
}
.btn.red     { background: var(--red); color: #fff; }
.btn.blue    { background: var(--blue-mid); color: var(--ink); }
.btn.mustard { background: var(--mustard); color: #111; }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--blue-electric);
}
.btn.ghost:hover { box-shadow: 5px 5px 0 var(--blue-electric); background: rgba(61,109,217,0.15); }

/* Dividers */
.divider-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  margin: 48px 0;
}
.divider-stars::before,
.divider-stars::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--blue-electric);
}
.divider-stars span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-electric);
}

.pointer-r::before { content: "☞"; margin-right: 8px; }
.pointer-l::after  { content: "☜"; margin-left: 8px; }

.ticket-stub {
  display: inline-block;
  background: var(--ink);
  color: #000;
  border: 2px dashed #000;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* =========================
   Marquee — black bar with blue highlights
   ========================= */
.marquee {
  background: #000;
  color: var(--blue-electric);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--blue-electric);
  position: relative;
}
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track {
  display: flex;
  will-change: transform;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 16px; }
.marquee-track .dot { color: var(--ink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   DANCING LETTERS — individual per-letter bob/sway
   (returned from v1, improved)
   ========================= */
.dance {
  display: inline-block;
  white-space: pre;
}
.dance .ltr {
  display: inline-block;
  transform-origin: 50% 100%;
  animation: letter-bop var(--dur, 1.4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}
@keyframes letter-bop {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-10px) rotate(-4deg); }
  50%      { transform: translateY(0) rotate(0deg); }
  75%      { transform: translateY(-6px) rotate(3deg); }
}

/* some letters get a color flash */
.dance .ltr.flash {
  animation-name: letter-bop, letter-flash;
  animation-duration: var(--dur, 1.4s), 3.2s;
  animation-iteration-count: infinite, infinite;
}
@keyframes letter-flash {
  0%, 80%, 100% { color: inherit; text-shadow: none; }
  82%, 92%      { color: var(--blue-electric); text-shadow: 0 0 14px var(--blue-electric); }
}

/* Subtle flicker (small titles) */
.flicker-sm {
  display: inline-block;
  animation: lite-flicker 5s infinite;
}
@keyframes lite-flicker {
  0%, 80%, 84%, 100% { opacity: 1; }
  82%, 83%           { opacity: 0.7; }
}

/* Sheen sweep */
.poster-sheen {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.poster-sheen::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -30%;
  width: 30%;
  background: linear-gradient(100deg,
    transparent 0%, rgba(180,212,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen {
  0%   { left: -40%; }
  40%, 100% { left: 130%; }
}

/* =========================
   Vinyl — pressed-wax look: tonal track bands, micro-grooves,
   a STATIC light sheen above the spinning disc, classic red label.
   Everything is concentric — no stray circles.
   ========================= */
.vinyl-wrap {
  --vinyl-size: 320px;
  position: relative;
  width: var(--vinyl-size);
  height: var(--vinyl-size);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* soft, perfectly-centered stage glow behind the disc */
.vinyl-wrap::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(105,166,255,0.28) 0%,
    rgba(105,166,255,0.10) 45%,
    transparent 68%);
  animation: halo-pulse 5s ease-in-out infinite;
  z-index: 0;
}
@keyframes halo-pulse {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 0.45; }
}

/* the disc — spins as one piece, label included */
.vinyl {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      #111 0 19.5%,
      #050505 19.5% 26%,
      #0c0c0c 26% 26.4%,
      #060606 26.4% 40%,
      #0d0d0d 40% 40.4%,
      #050505 40.4% 56%,
      #0c0c0c 56% 56.4%,
      #060606 56.4% 72%,
      #0d0d0d 72% 72.4%,
      #050505 72.4% 90%,
      #141414 90% 93%,
      #020202 93% 100%);
  animation: spin 9s linear infinite;
  will-change: transform;
  box-shadow:
    0 26px 60px rgba(0,0,0,0.85),
    0 0 90px rgba(105,166,255,0.32);
  z-index: 1;
}
/* fine micro-grooves, only between label and rim */
.vinyl::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    rgba(255,255,255,0.05) 0 1px,
    transparent 1px 3px);
  -webkit-mask: radial-gradient(circle at center, transparent 0 23%, #000 24% 95%, transparent 96%);
          mask: radial-gradient(circle at center, transparent 0 23%, #000 24% 95%, transparent 96%);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* static light reflection — does NOT spin, sits above the wax */
.vinyl-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: conic-gradient(from 200deg at 50% 50%,
    transparent 0deg,
    rgba(170,205,255,0.05) 14deg,
    rgba(235,243,255,0.16) 30deg,
    rgba(170,205,255,0.06) 48deg,
    transparent 66deg,
    transparent 172deg,
    rgba(170,205,255,0.04) 192deg,
    rgba(235,243,255,0.12) 210deg,
    rgba(170,205,255,0.04) 228deg,
    transparent 248deg);
  -webkit-mask: radial-gradient(circle at center, transparent 0 22%, #000 23.5%);
          mask: radial-gradient(circle at center, transparent 0 22%, #000 23.5%);
}
.vinyl-sheen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.16),
    inset 0 -3px 5px rgba(0,0,0,0.65);
}

/* classic pressed-paper label */
.vinyl .label {
  position: absolute;
  top: 50%; left: 50%;
  width: 44%;
  height: 44%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,0.20), transparent 58%),
    repeating-radial-gradient(circle at center, rgba(0,0,0,0.10) 0 1px, transparent 1px 8px),
    radial-gradient(circle at center, #d24a3c 0 62%, var(--red) 100%);
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,0.45),
    inset 0 0 0 3px rgba(255,236,200,0.25),
    0 0 0 2px rgba(0,0,0,0.6);
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  padding: 8% 9%;
  text-align: center;
  color: var(--cream);
  z-index: 2;
}
.vinyl .label .l-top { grid-row: 1; align-self: center; }
.vinyl .label .hole  { grid-row: 2; }
.vinyl .label .l-bot { grid-row: 3; align-self: center; }
.vinyl .label .l-top {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(0,0,0,0.35);
}
.vinyl .label .l-top em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: lowercase;
  margin-top: 2px;
  opacity: 0.9;
}
.vinyl .label .l-bot {
  font-family: var(--font-mono);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.6;
  white-space: nowrap;
  opacity: 0.95;
}
/* spindle hole — dead centre (own grid row, can never overlap text) */
.vinyl .label .hole {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #10182e;
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.9),
    0 0 0 3px rgba(0,0,0,0.30),
    0 1px 0 rgba(255,255,255,0.18);
}

/* Logo picture-disc label — printed-paper centre carrying the brand logo */
.vinyl .label.label-logo {
  width: 47%;
  height: 47%;
  padding: 0;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 32%, #ffffff 0%, #f4f1ea 58%, #e7e2d6 100%);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.35),
    inset 0 0 14px rgba(0,0,0,0.28),
    inset 0 0 0 6px rgba(255,255,255,0.55),
    0 0 0 2px rgba(0,0,0,0.7),
    0 3px 9px rgba(0,0,0,0.55);
}
.vinyl .label.label-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 11%;
  mix-blend-mode: multiply;
}
/* thin printed ring + soft sheen so the label sits inside the wax */
.vinyl .label.label-logo::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.16);
  z-index: 2;
  pointer-events: none;
}
.vinyl .label.label-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(120deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.10) 22%,
    transparent 40%,
    transparent 60%,
    rgba(0,0,0,0.10) 100%);
}

@media (max-width: 520px) {
  .vinyl-wrap { --vinyl-size: 230px; }
  .vinyl .label .l-top { font-size: 10px; }
  .vinyl .label .l-top em { font-size: 7px; }
  .vinyl .label .l-bot { font-size: 6px; }
}

/* =========================
   CURTAIN — opens on load, closes on nav.
   Default state = CLOSED (prevents flash on load).
   ========================= */
#curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: auto;
  display: flex;
}
#curtain .half {
  flex: 1;
  will-change: transform;
  background:
    repeating-linear-gradient(90deg,
      #0a1a3d 0 10px,
      #14295c 10px 22px,
      #071229 22px 32px,
      #0d1f48 32px 44px);
  box-shadow:
    inset 0 -80px 120px rgba(0,0,0,0.8),
    inset 0 40px 60px rgba(0,0,0,0.55);
  /* DEFAULT = closed (at 0). Adding .open slides them off-screen. */
  transform: translateX(0);
  /* opening: ample et soyeux */
  transition: transform 1.05s cubic-bezier(.45,.02,.12,1);
  position: relative;
}
/* closing (nav): un peu plus vif mais toujours fluide */
#curtain:not(.open) .half { transition-duration: 0.7s; }
#curtain .half::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 24px;
  background: radial-gradient(circle at 20px 0, #0a1a3d 16px, transparent 17px) repeat-x;
  background-size: 40px 24px;
}
/* Opens away */
#curtain.open .half.left  { transform: translateX(-105%); }
#curtain.open .half.right { transform: translateX(105%); }

#curtain.open {
  pointer-events: none;
}

/* (no blackout layer — curtains close fully on their own) */

#curtain .rope {
  position: absolute;
  top: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--blue-electric), var(--blue-mid));
  height: 60px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.6), 0 0 10px var(--blue-electric);
  z-index: 3;
  opacity: 1;
  transition: opacity 0.3s 0.5s;
}
#curtain .rope.left  { left: calc(50% - 40px); }
#curtain .rope.right { right: calc(50% - 40px); }
#curtain.open .rope { opacity: 0; transition-delay: 0s; }

/* stage-sign removed — curtain shows the cloth only */
#curtain .stage-sign { display: none !important; }

/* =========================
   Cards
   ========================= */
.card {
  background: var(--blue-night);
  border: 2px solid #000;
  padding: 24px;
  box-shadow: var(--shadow-letterpress);
  position: relative;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* =========================
   Footer
   ========================= */
.footer {
  background: #000;
  color: var(--ink);
  padding: 60px 32px 32px;
  margin-top: 80px;
  border-top: 3px solid var(--blue-electric);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 12px;
}
.footer a {
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-family: var(--font-mono);
  font-size: 13px;
}
.footer a:hover { color: var(--blue-electric); }
.footer-bottom {
  max-width: 1400px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #333;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.78;
  display: flex;
  justify-content: space-between;
}

/* =========================
   Spotlight cursor — stage follow-spot, soft blue glow
   ========================= */
/* =========================
   Stage follow-spot — lights where the mouse is, gently dims the rest.
   One pre-painted layer moved by transform (GPU-only, no repaints).
   ========================= */
#spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 9002;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: transform;
}
#spotlight.lit { opacity: 1; }
/* the gentle darkness with a transparent hole at the beam */
#spotlight .sl-dark {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  /* rendered at 1/3 size and scaled ×3: the gradient is soft anyway,
     and the GPU texture is ~9× smaller — big startup-memory win */
  transform: scale(3);
  background: radial-gradient(circle,
    rgba(3,8,24,0)    0px,
    rgba(3,8,24,0)    83px,
    rgba(3,8,24,0.10) 120px,
    rgba(3,8,24,0.24) 207px,
    rgba(3,8,24,0.28) 100%);
}
/* the warm-blue beam itself */
#spotlight .sl-glow {
  position: absolute;
  top: 0; left: 0;
  width: 460px; height: 460px;
  margin: -230px 0 0 -230px;
  transform: scale(2);
  border-radius: 50%;
  mix-blend-mode: screen;
  background: radial-gradient(circle,
    rgba(180,212,255,0.36) 0%,
    rgba(105,166,255,0.17) 30%,
    rgba(61,109,217,0.05) 56%,
    transparent 70%);
}

/* selection + focus polish */
::selection { background: var(--blue-electric); color: #000; }
:focus-visible {
  outline: 2px solid var(--blue-electric);
  outline-offset: 3px;
}
a, button { -webkit-tap-highlight-color: transparent; }

/* Nav: on narrow screens the links collapse into the burger menu */
@media (max-width: 1024px) {
  .nav .nav-links { display: none; }
  .nav .nav-burger { display: flex; }
}

/* Touch / phone: drop GPU-heavy full-screen effects so the site stays smooth */
@media (hover: none), (max-width: 768px) {
  #spotlight { display: none !important; }
  body::before { display: none; }            /* grain blend layer */
  .hero-haze { opacity: 0.5; }
  .hero-photo img { animation: none; }        /* no continuous scale on mobile */
}

/* Responsive */
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .page-header .stars { display: none; }
}

/* =========================
   Reduced motion — calm everything, keep content visible
   ========================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  #spotlight { display: none; }
  #curtain { display: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  #scroll-progress, .stage-burst { display: none !important; }
}

/* ==========================================================
   V6 — "ALIVE" LAYER
   Scroll progress, silky reveals, click bursts, 3D tilt,
   countdown, parallax helpers, hover polish.
   ========================================================== */

/* ---- scroll progress bar ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 0;
  will-change: transform;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-electric), var(--blue-sky));
  box-shadow: 0 0 14px rgba(105,166,255,0.8);
  z-index: 9600;
  pointer-events: none;
}

/* ---- silky scroll reveal (shared, all pages) ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  filter: blur(4px);
  transition:
    opacity   0.85s cubic-bezier(.2,.7,.2,1),
    transform 0.85s cubic-bezier(.2,.7,.2,1),
    filter    0.85s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ---- click burst (spotlight pop) ---- */
.stage-burst {
  position: fixed;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  border: 2px solid var(--blue-electric);
  box-shadow: 0 0 18px rgba(105,166,255,0.7), inset 0 0 10px rgba(180,212,255,0.6);
  pointer-events: none;
  z-index: 9500;
  animation: stage-burst 0.65s cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes stage-burst {
  0%   { opacity: 0.95; transform: scale(0.3); }
  100% { opacity: 0;    transform: scale(5);   }
}

/* ---- countdown ---- */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.cd-unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 8px 6px 6px;
  border: 2px solid var(--blue-electric);
  background: rgba(61,109,217,0.12);
  box-shadow: inset 0 0 18px rgba(105,166,255,0.10);
}
.cd-unit b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 16px rgba(105,166,255,0.45);
}
.cd-unit i {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-top: 5px;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--blue-electric);
  animation: cd-blink 1s steps(2) infinite;
}
@keyframes cd-blink { 50% { opacity: 0.15; } }

/* ---- "live" kicker dot ---- */
.ns-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 8px;
}
.live-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
  animation: live-pulse 1.8s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(198,56,43,0.55); }
  70%  { box-shadow: 0 0 0 11px rgba(198,56,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(198,56,43,0); }
}

/* ---- vinyl hover ---- */
.vinyl-wrap {
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.vinyl-wrap:hover { transform: scale(1.05); }
.vinyl-wrap:hover .vinyl {
  box-shadow:
    0 22px 50px rgba(0,0,0,0.85),
    0 0 110px rgba(105,166,255,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* ---- footer socials come alive ---- */
.footer a[aria-label] {
  transition: transform 0.2s cubic-bezier(.2,.7,.2,1), background 0.2s, color 0.2s, box-shadow 0.2s;
}
.footer a[aria-label]:hover {
  background: var(--blue-electric);
  color: #000 !important;
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: 0 6px 18px rgba(105,166,255,0.45);
}

/* =========================
   Site-wide fluidity polish
   ========================= */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
/* every link eases its color change */
a { transition: color 0.18s ease; }
/* the news ticker pauses politely under the cursor */
.marquee:hover .marquee-track { animation-play-state: paused; }
/* footer links slide on hover */
.footer-inner a {
  transition: color 0.18s ease, translate 0.22s cubic-bezier(.2,.7,.2,1);
}
.footer-inner a:hover { translate: 4px 0; color: var(--blue-electric); }
/* music toggle breathes while playing */
#music-toggle.playing {
  animation: music-breathe 2.4s ease-in-out infinite;
}
@keyframes music-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(105,166,255,0.45); }
  50%      { box-shadow: 0 0 0 10px rgba(105,166,255,0); }
}

/* ---- nav logo glow on hover ---- */
.nav-logo .amp { transition: text-shadow 0.3s; }
.nav-logo:hover .amp { text-shadow: 0 0 18px rgba(105,166,255,0.9); }

/* ---- tilt: transform is set inline by JS only while hovering;
   no blanket will-change — promoting every card to its own GPU layer
   at load was costing memory and startup jank ---- */

/* ---- date box breathing glow ---- */
.date-box {
  animation: date-glow 3.2s ease-in-out infinite;
}
@keyframes date-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(105,166,255,0); }
  50%      { box-shadow: 0 0 34px rgba(105,166,255,0.30); }
}

/* ==========================================================
   V7 — PREMIUM LAYER
   Back-to-top, giant footer wordmark, song-title marquee,
   scroll cue, neon flicker, image-placeholder polish.
   ========================================================== */

/* ---- back to top ---- */
#to-top {
  position: fixed;
  right: 24px; bottom: 92px;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid var(--blue-electric);
  background: rgba(0,0,0,0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--blue-electric);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 9100;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, background 0.2s, color 0.2s, box-shadow 0.3s;
}
#to-top.show { opacity: 1; transform: none; pointer-events: auto; }
#to-top:hover {
  background: var(--blue-electric);
  color: #000;
  box-shadow: 0 0 28px rgba(105,166,255,0.65);
}

/* ---- giant footer wordmark ---- */
.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(105,166,255,0.22);
  margin: 56px auto 0;
  max-width: 1400px;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  transition: -webkit-text-stroke-color 0.6s;
}
.footer-mark:hover { -webkit-text-stroke-color: rgba(105,166,255,0.55); }

/* ---- song-title marquee strip ---- */
.songs-strip {
  background: var(--blue-deep);
  border-top: 2px solid var(--blue-electric);
  border-bottom: 2px solid var(--blue-electric);
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.songs-strip:hover .songs-track { animation-play-state: paused; }
.songs-track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 55s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(180,212,255,0.5);
}
.songs-track .song {
  transition: color 0.25s, text-shadow 0.25s;
  cursor: default;
}
.songs-track .song:hover {
  color: var(--blue-electric);
  -webkit-text-stroke-color: var(--blue-electric);
  text-shadow: 0 0 36px rgba(105,166,255,0.55);
}
.songs-track .sep {
  color: var(--blue-electric);
  -webkit-text-stroke: 0;
  font-size: 0.5em;
}

/* ---- hero scroll cue ---- */
.scroll-cue {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue-sky);
  opacity: 0.75;
  pointer-events: none;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--blue-electric), transparent);
  animation: cue-drop 1.9s cubic-bezier(.4,0,.4,1) infinite;
}
@keyframes cue-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- neon flicker (use on a hero word) ---- */
.neon-word { animation: neon-word 7s infinite; }
@keyframes neon-word {
  0%, 91%, 94%, 97%, 100% { opacity: 1; }
  92%  { opacity: 0.55; }
  95.5% { opacity: 0.7; }
}

/* ---- dead-image placeholders keep their cover fit ---- */
img.img-ph { object-fit: cover; }

/* ==========================================================
   V8 — MUSIQUE D'AMBIANCE + MENU MOBILE
   ========================================================== */

/* ---- background-music toggle (never autoplays) ---- */
#music-toggle {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid var(--blue-electric);
  background: rgba(0,0,0,0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--blue-electric);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 9100;
  opacity: 0.9;
  transition: opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.3s;
}
#music-toggle:hover {
  opacity: 1;
  transform: scale(1.07);
  box-shadow: 0 0 22px rgba(105,166,255,0.5);
}
#music-toggle.playing {
  background: var(--blue-electric);
  color: #000;
  animation: music-pulse 2s ease-in-out infinite;
}
@keyframes music-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(105,166,255,0.5); }
  50%      { box-shadow: 0 0 0 11px rgba(105,166,255,0); }
}

/* ---- burger button ---- */
.nav-burger {
  display: none;
  align-items: center;
  gap: 9px;
  height: 46px;
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(61,109,217,0.18);
  border: 2px solid var(--blue-electric);
  cursor: pointer;
  padding: 0 14px;
}
.nav-burger .bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
}
.nav-burger .bars i {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--blue-electric);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), opacity 0.25s;
}
.nav-burger .lbl {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-electric);
  line-height: 1;
}
body.menu-open .nav-burger .bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger .bars i:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger .bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- fullscreen mobile menu ---- */
#mobile-menu {
  position: fixed; inset: 0;
  z-index: 8000;
  background: rgba(2,6,20,0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
body.menu-open #mobile-menu { opacity: 1; pointer-events: auto; }
#mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 44px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 18px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.4s cubic-bezier(.2,.7,.2,1),
    transform 0.4s cubic-bezier(.2,.7,.2,1),
    color 0.2s;
  transition-delay: var(--md, 0s);
}
body.menu-open #mobile-menu a { opacity: 1; transform: none; }
#mobile-menu a.active,
#mobile-menu a:hover { color: var(--blue-electric); }
#mobile-menu .mm-foot {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-sky);
  opacity: 0.7;
}
