/* ==============================================
   ENYP Guitar-Duo — V3 ULTRA WILD
   GLITCH / NEON / TECHNO / PSYCHEDELIC
   ============================================== */

/* Fonts */
@font-face { font-family: 'Outfit'; src: url('../assets/fonts/Outfit-Thin.ttf') format('truetype'); font-weight: 100; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../assets/fonts/Outfit-ExtraLight.ttf') format('truetype'); font-weight: 200; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../assets/fonts/Outfit-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../assets/fonts/Outfit-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../assets/fonts/Outfit-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../assets/fonts/Outfit-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../assets/fonts/Outfit-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../assets/fonts/Outfit-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../assets/fonts/Outfit-Black.ttf') format('truetype'); font-weight: 900; font-display: swap; }

/* ==============================================
   VARIABLES
   ============================================== */
:root {
  --bg-void: #020108;
  --bg-deep: #08051A;
  --bg-surface: #100C22;
  --bg-elevated: #1A1530;

  --neon-cyan: #00F5D4;
  --neon-magenta: #F72585;
  --neon-violet: #B429F9;
  --neon-orange: #FF6B35;
  --neon-green: #39FF14;
  --neon-gold: #FFD700;
  --neon-blue: #00D4FF;
  --neon-pink: #FF00FF;
  --neon-red: #FF0044;

  --goa-gradient: linear-gradient(135deg, #00F5D4 0%, #B429F9 35%, #F72585 65%, #FF6B35 100%);
  --goa-gradient-h: linear-gradient(90deg, #00F5D4 0%, #B429F9 35%, #F72585 65%, #FF6B35 100%);
  --acid-gradient: linear-gradient(135deg, #39FF14, #00F5D4, #B429F9, #F72585, #FF6B35, #FFD700);

  --text-light: #E8E0F0;
  --text-muted: rgba(232, 224, 240, 0.5);
  --text-dim: rgba(232, 224, 240, 0.12);

  --glow-cyan: rgba(0, 245, 212, 0.5);
  --glow-magenta: rgba(247, 37, 133, 0.5);
  --glow-violet: rgba(180, 41, 249, 0.5);

  --font: 'Outfit', sans-serif;
  --nav-h: 70px;
  --max-w: 1200px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==============================================
   RESET
   ============================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg-void);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; }
blockquote { margin: 0; }
input, textarea { cursor: none; }

/* ==============================================
   GLITCH OVERLAY — persistent noise
   ============================================== */
.glitch-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0,245,212,0.02) 3px, rgba(0,245,212,0.02) 6px);
  animation: glitch-flicker 0.15s infinite steps(2);
}

@keyframes glitch-flicker {
  0% { opacity: 0.035; }
  50% { opacity: 0.05; }
  100% { opacity: 0.03; }
}

/* ==============================================
   CUSTOM CURSOR — core + ring + trail canvas
   ============================================== */
.cursor-core {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--neon-cyan), 0 0 30px var(--glow-cyan), 0 0 60px rgba(0,245,212,0.2);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,245,212,0.3);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(.18,.89,.32,1.28), height 0.4s cubic-bezier(.18,.89,.32,1.28), border-color 0.3s;
}

.cursor-core.hovering {
  width: 16px; height: 16px;
  background: var(--neon-magenta);
  box-shadow: 0 0 20px var(--neon-magenta), 0 0 50px var(--glow-magenta);
}

.cursor-ring.hovering {
  width: 60px; height: 60px;
  border-color: var(--neon-magenta);
}

.cursor-trail {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

/* ==============================================
   BEAT VISUALIZER — corner bars
   ============================================== */
.beat-viz {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  z-index: 9997;
  opacity: 0.4;
  height: 30px;
  pointer-events: none;
}

.beat-bar {
  width: 3px;
  background: var(--goa-gradient);
  border-radius: 1px 1px 0 0;
  animation: beat-pulse 0.8s ease-in-out infinite alternate;
  box-shadow: 0 0 6px var(--glow-magenta);
}

.beat-bar:nth-child(1) { height: 8px; animation-delay: 0s; animation-duration: 0.5s; }
.beat-bar:nth-child(2) { height: 15px; animation-delay: 0.05s; animation-duration: 0.6s; }
.beat-bar:nth-child(3) { height: 20px; animation-delay: 0.1s; animation-duration: 0.45s; }
.beat-bar:nth-child(4) { height: 28px; animation-delay: 0.02s; animation-duration: 0.55s; }
.beat-bar:nth-child(5) { height: 22px; animation-delay: 0.08s; animation-duration: 0.4s; }
.beat-bar:nth-child(6) { height: 30px; animation-delay: 0.12s; animation-duration: 0.65s; }
.beat-bar:nth-child(7) { height: 18px; animation-delay: 0.03s; animation-duration: 0.5s; }
.beat-bar:nth-child(8) { height: 25px; animation-delay: 0.15s; animation-duration: 0.45s; }
.beat-bar:nth-child(9) { height: 12px; animation-delay: 0.06s; animation-duration: 0.55s; }
.beat-bar:nth-child(10) { height: 20px; animation-delay: 0.09s; animation-duration: 0.6s; }
.beat-bar:nth-child(11) { height: 16px; animation-delay: 0.04s; animation-duration: 0.5s; }
.beat-bar:nth-child(12) { height: 10px; animation-delay: 0.11s; animation-duration: 0.45s; }

@keyframes beat-pulse {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* ==============================================
   UTILITY CLASSES
   ============================================== */
.display-text {
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.body-text {
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.label-text {
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.goa-text {
  background: var(--goa-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--text-muted); }

/* ==============================================
   GLITCH HOVER — text chromatic split
   ============================================== */
.glitch-hover {
  position: relative;
}

.glitch-hover::before,
.glitch-hover::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.glitch-hover::before {
  color: var(--neon-cyan);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translateX(-3px);
}

.glitch-hover::after {
  color: var(--neon-magenta);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translateX(3px);
}

.glitch-hover:hover::before,
.glitch-hover:hover::after {
  opacity: 0.8;
  animation: glitch-split 0.3s steps(2) infinite;
}

@keyframes glitch-split {
  0% { transform: translateX(-3px) skewX(-1deg); }
  25% { transform: translateX(2px) skewX(0.5deg); }
  50% { transform: translateX(-1px) skewX(-0.5deg); }
  75% { transform: translateX(3px) skewX(1deg); }
  100% { transform: translateX(-2px) skewX(0deg); }
}

/* CTA link */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  transition: gap 0.4s var(--ease), border-color 0.3s, text-shadow 0.3s;
  text-shadow: 0 0 20px var(--glow-cyan);
}

.cta-link:hover {
  gap: 1.5rem;
  border-color: var(--neon-magenta);
  color: var(--neon-magenta);
  text-shadow: 0 0 30px var(--glow-magenta);
}

.neon-cta {
  border-bottom: 2px solid;
  border-image: var(--goa-gradient-h) 1;
}

.neon-cta:hover {
  filter: brightness(1.3);
  border-image: linear-gradient(90deg, var(--neon-magenta), var(--neon-cyan)) 1;
}

.cta-arrow {
  font-size: 1.5rem;
  transition: transform 0.4s;
}

.cta-link:hover .cta-arrow {
  transform: translateX(6px);
}

/* ==============================================
   NEON FRAME effects
   ============================================== */
.neon-frame {
  position: relative;
  border: 1px solid rgba(180,41,249,0.3) !important;
  box-shadow: 0 0 15px var(--glow-violet), inset 0 0 15px rgba(180,41,249,0.05);
  transition: box-shadow 0.4s, border-color 0.4s;
}

.neon-frame:hover {
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 0 30px var(--glow-cyan), 0 0 60px rgba(0,245,212,0.15), inset 0 0 20px rgba(0,245,212,0.05);
}

.neon-frame--subtle {
  box-shadow: 0 0 15px var(--glow-violet);
  border-radius: 6px;
}

/* Neon top border on sections */
.neon-border-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--goa-gradient-h);
  box-shadow: 0 0 20px var(--glow-cyan), 0 0 40px var(--glow-magenta);
  z-index: 2;
  animation: neon-border-glow 3s ease-in-out infinite alternate;
}

@keyframes neon-border-glow {
  0% { box-shadow: 0 0 20px var(--glow-cyan), 0 0 40px var(--glow-magenta); }
  100% { box-shadow: 0 0 40px var(--glow-magenta), 0 0 80px var(--glow-violet); }
}

/* Neon ring for avatars */
.neon-ring {
  border: 2px solid var(--neon-violet) !important;
  box-shadow: 0 0 20px var(--glow-violet), 0 0 40px rgba(180,41,249,0.2), inset 0 0 20px rgba(180,41,249,0.1);
  animation: ring-pulse 3s ease-in-out infinite alternate;
}

@keyframes ring-pulse {
  0% { box-shadow: 0 0 20px var(--glow-violet), 0 0 40px rgba(180,41,249,0.2); }
  100% { box-shadow: 0 0 30px var(--glow-magenta), 0 0 60px rgba(247,37,133,0.3); }
}

/* Neon text color cycle */
.neon-text-cycle {
  animation: neon-color-cycle 4s linear infinite;
}

@keyframes neon-color-cycle {
  0% { color: var(--neon-cyan); text-shadow: 0 0 20px var(--glow-cyan); }
  25% { color: var(--neon-violet); text-shadow: 0 0 20px var(--glow-violet); }
  50% { color: var(--neon-magenta); text-shadow: 0 0 20px var(--glow-magenta); }
  75% { color: var(--neon-orange); text-shadow: 0 0 20px rgba(255,107,53,0.4); }
  100% { color: var(--neon-cyan); text-shadow: 0 0 20px var(--glow-cyan); }
}

/* Neon glass form */
.neon-glass {
  border: 1px solid rgba(180,41,249,0.25) !important;
  box-shadow: 0 0 40px rgba(180,41,249,0.15), inset 0 0 40px rgba(0,245,212,0.03);
  animation: glass-breathe 5s ease-in-out infinite alternate;
}

@keyframes glass-breathe {
  0% { box-shadow: 0 0 40px rgba(180,41,249,0.15), inset 0 0 40px rgba(0,245,212,0.03); }
  100% { box-shadow: 0 0 60px rgba(0,245,212,0.2), inset 0 0 50px rgba(180,41,249,0.05); }
}

/* Neon button */
.neon-btn {
  position: relative;
  overflow: hidden;
}

.neon-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255,255,255,0.3) 10%, transparent 20%);
  animation: btn-shine 3s linear infinite;
}

@keyframes btn-shine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Photo glitch layer */
.photo-frame-neon {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.photo-glitch-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 0%, rgba(0,245,212,0.05) 50%, transparent 100%);
  mix-blend-mode: screen;
  animation: photo-glitch-scan 4s linear infinite;
  pointer-events: none;
}

@keyframes photo-glitch-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Video glitch scan */
.video-glitch-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 0%, rgba(247,37,133,0.08) 50%, transparent 100%);
  mix-blend-mode: screen;
  animation: photo-glitch-scan 3s linear infinite;
  pointer-events: none;
}

/* ==============================================
   ENTRANCE ANIMATIONS — reveal on scroll
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.45s; }

/* ==============================================
   LANGUAGE SWITCHER
   ============================================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-divider {
  color: var(--text-dim);
  font-size: 0.6rem;
  user-select: none;
}

.lang-opt {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.3rem;
  border-radius: 2px;
  color: var(--text-muted);
  transition: color 0.3s, opacity 0.3s;
  opacity: 0.5;
}

.lang-opt:hover {
  opacity: 1;
  color: var(--text-light);
}

.lang-opt--active {
  color: var(--text-light);
  font-weight: 700;
  opacity: 1;
}

/* ==============================================
   NAV
   ============================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(2,1,8,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--text-dim);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(2,1,8,0.92);
  box-shadow: 0 2px 30px rgba(180,41,249,0.15);
}

.nav-logo img {
  height: 30px;
  opacity: 0.8;
  transition: opacity 0.3s, filter 0.3s;
  filter: drop-shadow(0 0 8px var(--glow-cyan));
}

.nav-logo:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 15px var(--neon-cyan));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  box-shadow: 0 0 6px var(--glow-cyan);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--neon-magenta);
}
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--neon-magenta);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--goa-gradient-h);
  box-shadow: 0 0 10px var(--glow-cyan);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--glow-cyan);
}

.nav-links a:hover::after { width: 100%; }

/* ==============================================
   SECTION GENERIC
   ============================================== */
.section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-heading {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  text-shadow: 0 0 40px var(--glow-violet);
}

/* ==============================================
   HERO — immersive glitch
   ============================================== */
.section-hero {
  display: flex;
  align-items: center;
  background: var(--bg-void);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: contrast(1.4) saturate(1.6) hue-rotate(15deg);
}

/* Scanlines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 1;
  animation: scanline-move 10s linear infinite;
}

@keyframes scanline-move {
  0% { background-position: 0 0; }
  100% { background-position: 0 1000px; }
}

/* VHS tracking distortion */
.hero-vhs {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    transparent 0%, transparent 45%,
    rgba(0,245,212,0.04) 45%, rgba(0,245,212,0.04) 46%,
    transparent 46%, transparent 100%
  );
  animation: vhs-track 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes vhs-track {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Neon grid on hero background */
.hero-neon-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,245,212,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,212,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 20s linear infinite;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse at 50% 80%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 80%, black 0%, transparent 70%);
}

@keyframes grid-drift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 4rem) 6vw 6rem;
  max-width: 900px;
}

.hero-logo {
  width: clamp(120px, 15vw, 200px);
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 30px var(--glow-cyan)) drop-shadow(0 0 60px rgba(0,245,212,0.2));
  animation: logo-breathe 4s ease-in-out infinite alternate;
}

@keyframes logo-breathe {
  0% { filter: drop-shadow(0 0 20px var(--glow-cyan)) drop-shadow(0 0 40px rgba(0,245,212,0.15)); }
  100% { filter: drop-shadow(0 0 40px var(--glow-magenta)) drop-shadow(0 0 80px rgba(247,37,133,0.2)); }
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  text-shadow: 0 0 40px rgba(180, 41, 249, 0.3);
  white-space: nowrap;
  margin-bottom: 0.3em;
  padding-bottom: 0.05em;
}

.hero-line--neon {
  white-space: normal;
  margin-bottom: 0.05em;
  background: var(--acid-gradient);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: acid-shift 6s ease-in-out infinite;
  text-shadow: none;
  filter: drop-shadow(0 0 40px var(--glow-magenta));
}

@supports (-moz-appearance: none) {
  .hero-line--neon {
    filter: none;
    overflow: visible;
    padding-bottom: 0.1em;
  }
}

@keyframes acid-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-sub,
.hero-subline {
  font-weight: 400;
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* BPM counter */
.hero-bpm {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--text-dim);
  border-radius: 4px;
  background: rgba(2,1,8,0.5);
  animation: bpm-flash 0.47s ease-in-out infinite alternate;
}

@keyframes bpm-flash {
  0% { border-color: var(--text-dim); box-shadow: none; }
  100% { border-color: var(--neon-magenta); box-shadow: 0 0 15px var(--glow-magenta); }
}

.bpm-num {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--neon-magenta);
  text-shadow: 0 0 15px var(--glow-magenta);
  font-variant-numeric: tabular-nums;
}

.bpm-label {
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 5vh;
  right: 6vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.scroll-cue-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 15px var(--glow-cyan);
  animation: cue-pulse 2s ease-in-out infinite;
}

@keyframes cue-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(2); opacity: 0; }
}

.scroll-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==============================================
   EXPERIENCE
   ============================================== */
.section-experience {
  background: var(--bg-deep);
  padding: 10rem 0;
  position: relative;
}

.exp-decor-float {
  position: absolute;
  top: -5%;
  left: -5%;
  width: clamp(200px, 40%, 500px);
  opacity: 0.15;
  filter: hue-rotate(60deg) saturate(3) brightness(1.5);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: float-psychedelic 12s ease-in-out infinite;
}

@keyframes float-psychedelic {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-20px) rotate(2deg) scale(1.05); }
  50% { transform: translateY(10px) rotate(-1deg) scale(0.98); }
  75% { transform: translateY(-15px) rotate(1.5deg) scale(1.02); }
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.exp-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exp-headline {
  font-size: clamp(2rem, 5vw, 4.5rem);
  text-shadow: 0 0 40px var(--glow-violet);
}

.exp-photo {
  position: relative;
  overflow: hidden;
}

.exp-photo .photo-frame-neon img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: saturate(1.4) contrast(1.1);
  transition: transform 0.8s var(--ease), filter 0.8s;
}

.exp-photo:hover .photo-frame-neon img {
  transform: scale(1.05);
  filter: saturate(1.8) contrast(1.2) hue-rotate(10deg);
}

/* ==============================================
   REACTIONS
   ============================================== */
.section-reactions {
  background: var(--bg-void);
  padding: 10rem 0;
}

/* Laser grid background */
.reactions-laser-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(247,37,133,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,41,249,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: laser-grid-shift 30s linear infinite;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
}

@keyframes laser-grid-shift {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.reactions-stage {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.reactions-inner {
  position: relative;
  min-height: 450px;
}

.reaction-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.reaction-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.reaction-avatar {
  width: clamp(80px, 10vw, 130px);
  height: clamp(80px, 10vw, 130px);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2.5rem;
  flex-shrink: 0;
}

.reaction-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reaction-quote {
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-light);
  max-width: 850px;
  margin-bottom: 2rem;
  text-shadow: 0 0 40px var(--glow-violet);
}

.reaction-cite {
  font-style: normal;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--glow-cyan);
  margin-bottom: 0.25rem;
}

.reaction-role {
  color: var(--text-muted);
}

/* Reaction nav */
.reaction-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.reaction-counter {
  display: flex;
  align-items: baseline;
}

.reaction-current {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--glow-cyan);
}

.reaction-divider {
  color: var(--text-dim);
  margin: 0 0.3rem;
  font-weight: 300;
}

.reaction-total {
  font-size: 1.8rem;
  font-weight: 200;
  color: var(--text-dim);
}

.reaction-dots {
  display: flex;
  gap: 0.5rem;
}

.reaction-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.reaction-dot.active {
  background: var(--neon-cyan);
  transform: scale(1.6);
  box-shadow: 0 0 12px var(--glow-cyan);
}

.reaction-dot:hover {
  background: var(--text-muted);
}

/* ==============================================
   LISTEN / VIDEOS
   ============================================== */
.section-listen {
  background: var(--bg-deep);
  padding: 14rem 0;
  position: relative;
}

.listen-decor {
  position: absolute;
  top: -10%;
  right: -5%;
  width: clamp(200px, 35%, 450px);
  opacity: 0.12;
  filter: hue-rotate(100deg) saturate(3) brightness(1.5);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: float-psychedelic 15s ease-in-out infinite reverse;
}

.listen-featured {
  cursor: pointer;
  max-width: 900px;
  margin-bottom: 5rem;
}

.listen-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.video-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s;
}

.video-frame:hover img {
  transform: scale(1.04);
  filter: brightness(0.5);
}

.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--neon-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 30px var(--glow-magenta), 0 0 60px rgba(247,37,133,0.2);
  color: white;
}

.play-circle svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.play-circle:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 50px var(--glow-magenta), 0 0 80px rgba(247,37,133,0.3);
}

.play-circle--small {
  width: 56px;
  height: 56px;
}

.play-circle--small svg {
  width: 18px;
  height: 18px;
}

.video-label {
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.listen-secondary {
  cursor: pointer;
}

.listen-spotify {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-self: stretch;
}

.listen-spotify iframe {
  flex: 1;
  min-height: 352px;
}

.listen-album img {
  width: 120px;
  border-radius: 6px;
  box-shadow: 0 4px 30px var(--glow-violet);
  transition: transform 0.5s;
}

.listen-album:hover img {
  transform: rotate(3deg) scale(1.05);
}

.listen-spotify-embed {
  flex: 1;
}

/* Video Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(2, 1, 8, 0.95);
  backdrop-filter: blur(15px);
}

.modal-body {
  position: relative;
  width: 90%;
  max-width: 950px;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 2.2rem;
  color: var(--text-light);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s, text-shadow 0.3s;
}

.modal-close:hover {
  opacity: 1;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--glow-cyan);
}

.modal-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 6px;
  overflow: hidden;
}

.modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ==============================================
   EVENTS
   ============================================== */
.section-events {
  background: var(--bg-surface);
  padding: 10rem 0;
}

.events-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(16rem, 35vw, 36rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--text-dim);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  animation: bg-text-glow 6s ease-in-out infinite alternate;
}

@keyframes bg-text-glow {
  0% { -webkit-text-stroke-color: var(--text-dim); }
  50% { -webkit-text-stroke-color: rgba(180,41,249,0.15); }
  100% { -webkit-text-stroke-color: rgba(0,245,212,0.12); }
}

/* Laser beam across events */
.events-laser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-magenta);
  box-shadow: 0 0 20px var(--glow-magenta), 0 0 60px var(--glow-magenta);
  animation: laser-sweep 6s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes laser-sweep {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

.shows-timeline {
  max-width: 800px;
}

.show-year-group {
  margin-bottom: 2rem;
}

.show-year-label {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.show-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--text-dim);
  transition: transform 0.4s var(--ease), background 0.4s;
}

.show-item:hover {
  transform: translateX(8px);
  background: rgba(180,41,249,0.03);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.show-day {
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  background: var(--goa-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.show-month {
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.show-neon-bar {
  width: 3px;
  height: 35px;
  background: var(--goa-gradient);
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--glow-violet);
  animation: bar-glow 3s ease-in-out infinite alternate;
}

@keyframes bar-glow {
  0% { box-shadow: 0 0 6px var(--glow-violet); }
  100% { box-shadow: 0 0 15px var(--glow-magenta); }
}

.show-details {
  flex: 1;
}

.show-title {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.show-meta {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* ==============================================
   PROOF BLOCK (Experience section)
   ============================================== */
.proof-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.5;
  color: var(--text-light);
}

.proof-check {
  color: var(--neon-cyan);
  font-size: 1rem;
  flex-shrink: 0;
  text-shadow: 0 0 10px var(--glow-cyan);
}

/* ==============================================
   HARD FACTS
   ============================================== */
.section-facts {
  background: var(--bg-void);
  padding: 5rem 0;
  min-height: auto;
  border-top: 1px solid var(--text-dim);
  border-bottom: 1px solid var(--text-dim);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.fact-number {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.fact-label {
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==============================================
   VIDEO CTA BLOCK
   ============================================== */
.video-cta-block {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--text-dim);
}

.video-cta-line {
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-light);
  margin-bottom: 2rem;
}

.video-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--goa-gradient-h);
  color: var(--bg-void);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 25px var(--glow-magenta);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--glow-magenta);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--text-dim);
  border-radius: 4px;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn-secondary:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--glow-cyan);
}

/* ==============================================
   ARTISTS — Cinematic Split
   ============================================== */
.section-artists {
  position: relative;
  overflow: hidden;
}

.artists-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.2) contrast(1.1) brightness(0.3);
}

.artists-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,1,8,0.5);
  pointer-events: none;
}

.section-artists .container {
  position: relative;
  z-index: 1;
}

.artists-text-block {
  padding: 6rem 0;
  max-width: 800px;
}

.artists-text-block .section-heading {
  margin-bottom: 2rem;
  text-shadow: none;
}

.artists-text-block .body-text {
  margin-bottom: 1rem;
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ==============================================
   BOOKING CONTACT INFO
   ============================================== */
.booking-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.booking-link {
  color: var(--neon-cyan);
  font-weight: 400;
  font-size: 1rem;
  text-shadow: 0 0 10px var(--glow-cyan);
  transition: color 0.3s;
}

.booking-link:hover {
  color: var(--neon-magenta);
  text-shadow: 0 0 15px var(--glow-magenta);
}

/* ==============================================
   PRESS & TECHNICAL
   ============================================== */
.section-press {
  background: var(--bg-deep);
  padding: 6rem 0;
  min-height: auto;
}

.press-intro {
  margin-bottom: 3rem;
  max-width: 500px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.press-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 1.5rem;
  background: rgba(18, 14, 31, 0.5);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.press-item:hover {
  transform: translateY(-4px);
}

.press-icon {
  font-size: 2rem;
}

.press-title {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-format {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--glow-cyan);
}

/* ==============================================
   CONTACT
   ============================================== */
.section-contact {
  background: var(--bg-void);
  padding: 10rem 0 4rem;
}

.contact-bg-img {
  position: absolute;
  inset: 0;
}

.contact-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: blur(4px) saturate(1.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-headline {
  font-size: clamp(2.5rem, 7vw, 6rem);
  text-shadow: 0 0 50px var(--glow-magenta);
}

.contact-sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.contact-socials {
  display: flex;
  gap: 1.2rem;
}

.contact-socials a {
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.contact-socials a:hover {
  transform: translateY(-4px) scale(1.1);
}

.social-icon,
.social-icon-hover {
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
}

.social-icon-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.contact-socials a:hover .social-icon { opacity: 0; }
.contact-socials a:hover .social-icon-hover { opacity: 1; }

/* Contact form glass */
.contact-glass {
  background: rgba(18, 14, 31, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(180, 41, 249, 0.15);
  border-radius: 10px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--text-dim);
  color: var(--text-light);
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--neon-cyan);
  box-shadow: 0 2px 20px var(--glow-cyan);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
  font-weight: 300;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  background: var(--goa-gradient-h);
  color: var(--bg-void);
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 25px var(--glow-magenta);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--glow-magenta), 0 0 60px var(--glow-violet);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  position: relative;
  padding: 2rem 0;
  background: var(--bg-void);
}

.footer-neon-line {
  height: 2px;
  background: var(--goa-gradient-h);
  box-shadow: 0 0 20px var(--glow-cyan);
  margin-bottom: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  height: 28px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 1;
}

/* ==============================================
   RESPONSIVE — MOBILE
   ============================================== */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-core, .cursor-ring, .cursor-trail { display: none; }
  .beat-viz { display: none; }
  .glitch-overlay { display: none; }

  .burger {
    display: flex;
  }

  .nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    background: rgba(2,1,8,0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .section { min-height: auto; }

  .section-hero { min-height: 100vh; min-height: 100dvh; }

  .section-hero {
    align-items: flex-end;
  }

  .hero-content {
    padding: 1.5rem 1.5rem 3rem;
  }

  .hero-line {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }

  .hero-scroll-cue { display: none; }
  .hero-scanlines { display: none; }
  .hero-vhs { display: none; }
  .hero-neon-grid { display: none; }
  .hero-bpm { display: none; }
  .neon-border-top { display: none; }
  .exp-decor-float { display: none; }
  .listen-decor { display: none; }
  .events-laser { display: none; }
  .reactions-laser-grid { display: none; }

  .exp-grid,
  .listen-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-experience,
  .section-listen,
  .section-events,
  .section-contact {
    padding: 5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section-heading {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 2.5rem;
  }

  .reactions-inner {
    min-height: 300px;
  }

  .reaction-slide {
    padding: 1rem 0;
  }

  .reaction-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }

  .reaction-quote {
    font-size: clamp(1.1rem, 4.5vw, 1.6rem);
    margin-bottom: 1.2rem;
  }

  .reaction-nav {
    margin-top: 2rem;
  }

  .listen-spotify {
    flex-direction: column;
    align-items: center;
  }

  .listen-spotify iframe {
    min-height: 200px;
    width: 100%;
  }

  .listen-album img {
    width: 120px;
  }

  .video-label {
    font-size: 0.65rem;
  }

  .events-bg-text {
    font-size: clamp(6rem, 25vw, 12rem);
  }

  .show-item {
    gap: 1rem;
    padding: 0.7rem 0;
  }

  .show-day {
    font-size: 1.4rem;
  }

  .show-neon-bar {
    height: 28px;
  }

  .show-title {
    font-size: 0.9rem;
  }

  .show-meta {
    font-size: 0.7rem;
  }

  .artists-text-block {
    padding: 3rem 0;
    max-width: 100%;
  }

  /* Facts grid — 2 cols on mobile */
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Press grid — 2 cols on mobile */
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Video CTA buttons stack */
  .video-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Lang switcher smaller */
  .lang-switcher {
    gap: 0.2rem;
  }

  .lang-opt {
    font-size: 0.55rem;
    padding: 0.1rem 0.2rem;
  }

  .contact-headline {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .contact-glass {
    padding: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .exp-photo .photo-frame-neon img {
    aspect-ratio: 4/3;
  }

  .exp-headline {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .glitch-hover::before,
  .glitch-hover::after { display: none; }
}

@media (max-width: 480px) {
  .hero-line {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .hero-sub,
  .hero-subline {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .reaction-quote {
    font-size: clamp(0.95rem, 4.5vw, 1.4rem);
  }

  .play-circle {
    width: 48px;
    height: 48px;
  }

  .play-circle svg {
    width: 14px;
    height: 14px;
  }

  .show-date {
    min-width: 40px;
  }

  .show-day {
    font-size: 1.2rem;
  }

  .contact-socials {
    gap: 0.8rem;
  }

  .contact-socials a {
    width: 28px;
    height: 28px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
