/* ============================================================
   FLUFFY — djfluffy.de · v5 "RUST & NEON"
   Crazy-rusty industrial + green neon tubes + glass morph layers.
   DNA: whoisnone.com (schlicht, hart, monochrom-Basis) —
   aber Beleuchtung: giftgrünes Neon, Rost, Funken, Blackout-Zyklus.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --background: 100 8% 3%;            /* fast-schwarz, minimal grünstichig */
  --foreground: 0 0% 100%;
  --card: 100 6% 6%;
  --muted-foreground: 100 4% 62%;
  --dim-foreground: 100 3% 40%;
  --border: 100 6% 16%;

  --neon: #12ff00;                    /* ACTIVATED green */
  --neon-soft: #7dff5e;
  --neon-dim: rgba(18, 255, 0, 0.55);
  --neon-glow-1: rgba(18, 255, 0, 0.85);
  --neon-glow-2: rgba(18, 255, 0, 0.35);
  --neon-glow-3: rgba(18, 255, 0, 0.12);

  --glass-bg: rgba(10, 16, 8, 0.52);
  --glass-bg-strong: rgba(8, 13, 6, 0.72);
  --glass-border: rgba(18, 255, 0, 0.14);
  --glass-border-hot: rgba(18, 255, 0, 0.45);

  --radius: 0px;                      /* harte Industrial-Kanten — whoisnone-DNA */

  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;

  --rail-w: 84px;
  --rail-w-open: 248px;

  /* Blackout-Zyklus: 15s normal + 0.5s dunkel + 0.5s Blitz = 16s */
  --cycle: 16s;
}

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

html { scroll-behavior: smooth; }

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--neon); color: #000; }

/* ---------- Ambient: grüne Industriebeleuchtung + Rost-Grunge ---------- */
.ambient {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(52vw 42vh at 12% 6%,  rgba(18,255,0,0.075), transparent 62%),
    radial-gradient(46vw 38vh at 88% 30%, rgba(18,255,0,0.055), transparent 60%),
    radial-gradient(60vw 46vh at 30% 96%, rgba(18,255,0,0.045), transparent 62%);
}
/* Grunge-Korn über allem — neutral-grau, macht das "Dreckige" ohne Farbstich */
.grunge {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0.4 0 0 0 0.1  0.4 0 0 0 0.1  0.4 0 0 0 0.1  0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

/* ---------- Blackout-Zyklus (Boss-Spez: 15s normal → ~1s aus → 0.5s Blitz) ---------- */
.powercycle {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  background: #000; opacity: 0;
  animation: powercycle var(--cycle) linear infinite;
  animation-delay: 6s; /* erster Blackout erst nach Intro + etwas Ruhe */
}
@keyframes powercycle {
  /* 0–15s: normal (93.75% von 16s) */
  0%      { opacity: 0; background: #000; }
  93.1%   { opacity: 0; background: #000; }
  /* Ausgehen stottert kurz — Röhren sterben nicht sauber */
  93.3%   { opacity: 0.85; }
  93.5%   { opacity: 0.25; }
  93.75%  { opacity: 1; background: #000; }
  /* 0.5s komplett dunkel */
  96.7%   { opacity: 1; background: #000; }
  /* 0.5s Aufblitzen — überbelichtet grünweiß */
  96.9%   { opacity: 0.9; background: #d9ffd2; }
  97.9%   { opacity: 0.55; background: #eaffe6; }
  98.8%   { opacity: 0.75; background: #cfffc6; }
  /* zurück zu normal */
  99.6%   { opacity: 0; background: #000; }
  100%    { opacity: 0; background: #000; }
}

/* ---------- Neonröhren ---------- */
.tube {
  position: relative;
  height: 4px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--neon) 12%, var(--neon-soft) 50%, var(--neon) 88%, transparent);
  border-radius: 2px;
  box-shadow:
    0 0 6px  var(--neon-glow-1),
    0 0 18px var(--neon-glow-2),
    0 0 46px var(--neon-glow-3),
    0 10px 34px var(--neon-glow-3);
  animation: tubeFlicker 7.3s steps(1, end) infinite;
}
.tube--v {
  width: 4px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--neon) 12%, var(--neon-soft) 50%, var(--neon) 88%, transparent);
}
.tube--slow  { animation-duration: 11.4s; animation-delay: 1.7s; }
.tube--fast  { animation-duration: 5.1s;  animation-delay: 0.6s; }

@keyframes tubeFlicker {
  0%, 6.9%, 7.3%, 44.9%, 45.3%, 45.9%, 100% { opacity: 1; }
  7.0%   { opacity: 0.35; }
  7.15%  { opacity: 0.85; }
  45.0%  { opacity: 0.25; }
  45.5%  { opacity: 0.7; }
  71.0%  { opacity: 1; }
  71.2%  { opacity: 0.45; }
  71.35% { opacity: 1; }
}

/* Funken an den Röhren */
.sparks { position: absolute; inset: 0; pointer-events: none; overflow: visible; }
.spark {
  position: absolute; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  background: #eaffb0;
  box-shadow: 0 0 6px 2px rgba(210, 255, 140, 0.9), 0 0 14px 4px rgba(18, 255, 0, 0.5);
  opacity: 0;
  animation: sparkFall 3.9s cubic-bezier(0.25, 0.4, 0.6, 1) infinite;
}
.spark:nth-child(1) { left: 12%; animation-delay: 0.4s; }
.spark:nth-child(2) { left: 43%; animation-delay: 2.1s; animation-duration: 4.7s; }
.spark:nth-child(3) { left: 71%; animation-delay: 1.2s; animation-duration: 3.1s; }
.spark:nth-child(4) { left: 88%; animation-delay: 3.3s; animation-duration: 5.2s; }
@keyframes sparkFall {
  0%    { opacity: 0; transform: translate(0, 0) scale(1); }
  1.5%  { opacity: 1; }
  4%    { opacity: 1; transform: translate(6px, 26px) scale(0.9); }
  9%    { opacity: 0; transform: translate(14px, 74px) scale(0.4); }
  100%  { opacity: 0; transform: translate(14px, 74px) scale(0.4); }
}
.tube--v .spark { top: auto; left: 50%; }
.tube--v .spark:nth-child(1) { top: 18%; }
.tube--v .spark:nth-child(2) { top: 42%; }
.tube--v .spark:nth-child(3) { top: 63%; }
.tube--v .spark:nth-child(4) { top: 84%; }

/* ---------- Intro (Fluffy-Maske) ---------- */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  background:
    radial-gradient(46vw 40vh at 50% 44%, rgba(18,255,0,0.10), transparent 65%),
    hsl(100 8% 2%);
  cursor: pointer;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.intro.is-done { opacity: 0; visibility: hidden; }
.intro__mask {
  width: min(38vh, 62vw);
  filter: drop-shadow(0 0 34px rgba(18, 255, 0, 0.55)) drop-shadow(0 14px 60px rgba(0, 0, 0, 0.9));
  animation: maskIgnite 2.1s steps(1, end) both;
}
@keyframes maskIgnite {
  0%    { opacity: 0; }
  8%    { opacity: 0.75; }
  11%   { opacity: 0.1; }
  15%   { opacity: 0.9; }
  19%   { opacity: 0.25; }
  26%   { opacity: 1; }
  31%   { opacity: 0.5; }
  38%, 100% { opacity: 1; }
}
.intro__line {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.42em; text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  animation: introLineIn 1s ease 1.7s both;
}
.intro__line em { font-style: normal; color: var(--neon); text-shadow: 0 0 14px var(--neon-glow-2); }
@keyframes introLineIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.intro__skip {
  position: absolute; bottom: 30px;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: hsl(var(--dim-foreground));
  animation: introLineIn 1s ease 2.2s both;
}

/* ---------- Seitliches Menü (Rail) ---------- */
.rail {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 900;
  width: var(--rail-w);
  display: flex; flex-direction: column; align-items: stretch;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  border-right: 1px solid var(--glass-border);
  transition: width 0.35s cubic-bezier(0.3, 0.8, 0.3, 1);
  overflow: hidden;
}
.rail:hover, .rail.is-open { width: var(--rail-w-open); }

/* Die Rail trägt ihre eigene Neonröhre an der Innenkante */
.rail__tube {
  position: absolute; top: 6%; bottom: 6%; right: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--neon) 14%, var(--neon-soft) 50%, var(--neon) 86%, transparent);
  box-shadow: 0 0 8px var(--neon-glow-1), 0 0 22px var(--neon-glow-2), 0 0 50px var(--neon-glow-3);
  animation: tubeFlicker 9.2s steps(1, end) infinite;
}

.rail__brand {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(18, 255, 0, 0.08);
  flex-shrink: 0;
}
.rail__brand img.rail__icon { width: 38px; height: auto; filter: drop-shadow(0 0 10px rgba(18,255,0,0.35)); }
.rail__brand img.rail__mark { height: 20px; width: auto; opacity: 0; transform: translateX(-8px); transition: 0.3s ease 0.05s; }
.rail:hover .rail__mark, .rail.is-open .rail__mark { opacity: 1; transform: none; }

.rail__nav { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 12px 0; }
.rail__link {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 13px 0 13px 30px;
  font-family: var(--font-display);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.rail__ico {
  width: 22px; height: 22px; flex-shrink: 0;
  stroke: hsl(var(--dim-foreground)); fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
.rail__label {
  font-size: 1.02rem;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.28s ease 0.06s, transform 0.28s ease 0.06s;
}
.rail:hover .rail__label, .rail.is-open .rail__label { opacity: 1; transform: none; }

.rail__link::before {
  /* Neon-Marker links — zündet beim aktiven Abschnitt */
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow-1), 0 0 20px var(--neon-glow-2);
  transition: height 0.28s ease;
}
.rail__link:hover { color: hsl(var(--foreground)); background: rgba(18, 255, 0, 0.05); }
.rail__link:hover .rail__ico { stroke: var(--neon); filter: drop-shadow(0 0 8px var(--neon-glow-2)); transform: scale(1.12); }
.rail__link.is-active { color: var(--neon); }
.rail__link.is-active .rail__ico {
  stroke: var(--neon);
  filter: drop-shadow(0 0 10px var(--neon-glow-1));
  animation: markerIgnite 0.45s steps(1, end);
}
.rail__link.is-active::before { height: 68%; animation: markerIgnite 0.45s steps(1, end); }
@keyframes markerIgnite {
  0% { opacity: 0; } 20% { opacity: 1; } 35% { opacity: 0.2; }
  55% { opacity: 1; } 70% { opacity: 0.5; } 100% { opacity: 1; }
}

.rail__foot {
  padding: 16px 24px 22px; flex-shrink: 0;
  border-top: 1px solid rgba(18, 255, 0, 0.08);
  font-family: var(--font-display); font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: hsl(var(--dim-foreground));
  white-space: nowrap;
}
.rail__foot em { font-style: normal; color: var(--neon-dim); }

/* (Topbar/Burger/Drawer entfernt — Boss 2026-08-17: Mobile-Nav = Bottom-Dock, kein Burger) */

/* ---------- Layout ---------- */
.page { margin-left: var(--rail-w); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 6vw; }
.section { padding: clamp(84px, 12vh, 140px) 0; position: relative; }
section[id] { scroll-margin-top: 24px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 16px var(--neon-glow-2);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  line-height: 0.94; text-transform: uppercase; letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.section__sub { color: hsl(var(--muted-foreground)); max-width: 56ch; }

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__tube-top { position: absolute; top: 0; left: 4%; right: 4%; z-index: 3; }
.hero__img-wrap {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  will-change: transform;
}
/* Zwei Ebenen desselben Bilds: unten alles verschwommen+schwach,
   darüber NUR der Kopfbereich scharf (Maske) — Boss 2026-08-17 */
.hero__img {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 88%; width: auto; max-width: none;
}
.hero__img--blur {
  opacity: 0.46;
  filter: blur(12px) saturate(0.88) contrast(1.02);
}
.hero__img--head {
  opacity: 0.72;
  filter: saturate(0.95) contrast(1.05)
          drop-shadow(0 0 70px rgba(18, 255, 0, 0.18));
  /* Hasenmaske visuell verortet: Gesicht x 30–65%, y 25–65%, Ohren bis y≈3% —
     Ellipse deckt Gesicht scharf ab, Ohren laufen weich in den Blur aus */
  -webkit-mask-image: radial-gradient(ellipse 28% 29% at 46% 38%, #000 52%, transparent 98%);
  mask-image: radial-gradient(ellipse 28% 29% at 46% 38%, #000 52%, transparent 98%);
}
.hero::after {
  /* Boden-Vignette, damit die Wordmark vorn klar lesbar bleibt */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(70vw 50vh at 50% 118%, rgba(18,255,0,0.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 28%, rgba(0,0,0,0.12) 58%, rgba(0,0,0,0.82) 100%);
}
.hero__content {
  position: absolute; left: 0; right: 0; bottom: 16vh; z-index: 4;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px; padding: 0 6vw;
}
.hero__h1 { margin: 0; line-height: 0; }
.hero__wordmark {
  /* Das 3D-Metall-Logo — der Blickfang, gut lesbar im Vordergrund */
  width: min(640px, 82vw);
  filter: drop-shadow(0 0 32px rgba(18, 255, 0, 0.3))
          drop-shadow(0 26px 60px rgba(0, 0, 0, 0.95));
  animation: wordFloat 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes wordFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.4vw, 1.5rem);
  letter-spacing: clamp(0.2em, 1.2vw, 0.42em); text-transform: uppercase;
  white-space: nowrap;
  color: var(--neon);
  text-shadow: 0 0 18px var(--neon-glow-2), 0 0 50px var(--neon-glow-3);
}
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.7rem;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: hsl(var(--dim-foreground));
  animation: scrollBob 2.4s ease-in-out infinite;
}
@keyframes scrollBob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* ---------- Glas-Karten (Basis) ---------- */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  backdrop-filter: blur(14px) saturate(1.12);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* (Rost-Kante entfernt — Boss 2026-08-17: "das orange kommt da weg") */

/* ---------- About + Tunes-Verweis ---------- */
.about__grid {
  display: grid; grid-template-columns: 1.6fr 0.9fr; gap: 28px;
  align-items: stretch;
}
.about__card { padding: clamp(28px, 4vw, 52px); }
.about__lead {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.02; text-transform: uppercase;
  margin-bottom: 22px;
}
.about__lead em { font-style: normal; color: var(--neon); text-shadow: 0 0 18px var(--neon-glow-2); }
.about__body p { color: hsl(var(--muted-foreground)); margin-bottom: 14px; }
.about__body strong { color: hsl(var(--foreground)); }
.about__quote {
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid rgba(18, 255, 0, 0.12);
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--neon-dim);
}

.tunes-link {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: 34px 20px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tunes-link__word {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 4.6rem);
  letter-spacing: 0.24em; text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.tunes-link__arrow { width: 30px; height: 30px; stroke: var(--neon); filter: drop-shadow(0 0 8px var(--neon-glow-2)); animation: scrollBob2 2.2s ease-in-out infinite; }
@keyframes scrollBob2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.tunes-link__hint {
  font-family: var(--font-display); font-size: 0.72rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: hsl(var(--dim-foreground));
}
.tunes-link:hover { border-color: var(--glass-border-hot); box-shadow: 0 0 60px -10px var(--neon-glow-2), 0 30px 70px -30px rgba(0,0,0,0.9); }
.tunes-link:hover .tunes-link__word { color: var(--neon); text-shadow: 0 0 26px var(--neon-glow-2); animation: markerIgnite 0.5s steps(1, end); }

/* ---------- The Vault (Discography) ---------- */
.vault__tube { margin-bottom: clamp(40px, 7vh, 72px); }
.vault__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.release {
  position: relative; overflow: hidden; display: block;
  transform-style: preserve-3d; perspective: 700px;
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.3s ease;
}
.release img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease; filter: saturate(0.95); }
.release:hover { border-color: var(--glass-border-hot); box-shadow: 0 0 70px -14px var(--neon-glow-2), 0 34px 80px -30px rgba(0, 0, 0, 0.95); transform: translateY(-6px); }
.release:hover img { transform: scale(1.05); filter: saturate(1.05); }
.release__badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--font-display); font-size: 0.72rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: #000; background: var(--neon);
  box-shadow: 0 0 18px var(--neon-glow-1);
  padding: 6px 12px 5px;
  animation: badgeFlicker 6.8s steps(1, end) infinite;
}
@keyframes badgeFlicker {
  0%, 61.9%, 62.3%, 100% { opacity: 1; }
  62.0% { opacity: 0.4; }
  62.15% { opacity: 0.9; }
  81.0% { opacity: 1; }
  81.15% { opacity: 0.55; }
  81.3% { opacity: 1; }
}
.release__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 46%);
}
.release__title {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1;
}
.release__meta { margin-top: 6px; font-size: 0.78rem; color: hsl(var(--muted-foreground)); letter-spacing: 0.04em; }
.release__meta span { color: var(--neon-dim); }
.release__genre {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  font-family: var(--font-display); font-size: 0.66rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 5px 10px 4px;
}

/* ---------- Everywhere (Plattformen, kompakt + Icons) ---------- */
.listen__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.platform {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 22px 20px 18px;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.platform__icon { width: 30px; height: 30px; fill: var(--neon); filter: drop-shadow(0 0 10px var(--neon-glow-2)); transition: fill 0.3s ease, filter 0.3s ease; }
.platform__label { font-family: var(--font-display); font-size: 1.28rem; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1; }
.platform__hint { font-size: 0.72rem; color: hsl(var(--dim-foreground)); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s ease; }
.platform__arrow { position: absolute; top: 18px; right: 16px; width: 17px; height: 17px; stroke: currentColor; opacity: 0.5; transition: 0.3s ease; }
.platform:hover {
  background: var(--neon); color: #000;
  border-color: var(--neon);
  box-shadow: 0 0 70px -8px var(--neon-glow-1), 0 26px 60px -28px rgba(0, 0, 0, 0.9);
  transform: translateY(-4px);
}
.platform:hover .platform__icon { fill: #000; filter: none; }
.platform:hover .platform__hint { color: rgba(0, 0, 0, 0.65); }
.platform:hover .platform__arrow { opacity: 1; transform: translate(3px, -3px); }

/* ---------- Booking ---------- */
.booking { text-align: center; }
.booking__tube { max-width: 520px; margin: 0 auto clamp(44px, 8vh, 80px); }
.booking__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.92; text-transform: uppercase;
  margin-bottom: 26px;
}
.booking__title em {
  font-style: normal; color: var(--neon);
  text-shadow: 0 0 30px var(--neon-glow-2), 0 0 80px var(--neon-glow-3);
  animation: badgeFlicker 9.4s steps(1, end) infinite;
}
.booking__official {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.7vw, 1.15rem);
  letter-spacing: 0.3em; text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 40px;
}
.booking__official strong { color: hsl(var(--foreground)); font-weight: 400; }
.booking__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.booking__or {
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: hsl(var(--dim-foreground));
}
.booking__note { margin-top: 34px; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: hsl(var(--dim-foreground)); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.02rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 26px 13px;
  border: 1px solid var(--glass-border-hot);
  transition: 0.3s ease;
}
.btn--primary {
  background: var(--neon); color: #000; border-color: var(--neon);
  box-shadow: 0 0 34px -6px var(--neon-glow-1);
}
.btn--primary:hover { box-shadow: 0 0 70px -4px var(--neon-glow-1); transform: translateY(-3px); }
.btn--ghost { color: hsl(var(--foreground)); background: var(--glass-bg); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.btn--ghost:hover { border-color: var(--neon); color: var(--neon); box-shadow: 0 0 40px -8px var(--neon-glow-2); }

/* ---------- Footer (Struktur wie v4) ---------- */
.footer { border-top: 1px solid hsl(var(--border)); padding: clamp(60px, 9vh, 100px) 0 0; position: relative; }
.footer__wordmark { width: min(420px, 70vw); margin-bottom: 54px; opacity: 0.95; }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; padding-bottom: 60px; }
.footer__col-label {
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--neon-dim); margin-bottom: 16px;
}
.footer__label-mark { width: 150px; height: auto; opacity: 0.9; }
.footer__note { margin-top: 10px; font-size: 0.78rem; color: hsl(var(--dim-foreground)); }
.footer__list li { margin-bottom: 9px; }
.footer__list a { font-size: 0.88rem; color: hsl(var(--muted-foreground)); transition: color 0.25s ease; }
.footer__list a:hover { color: var(--neon); }
.footer__social li { margin-bottom: 11px; }
.footer__social a { display: inline-flex; align-items: center; gap: 10px; font-size: 0.88rem; color: hsl(var(--muted-foreground)); transition: color 0.25s ease; }
.footer__social a:hover { color: var(--neon); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bar {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 22px 0;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: hsl(var(--dim-foreground));
}

/* ---------- Cookie-/Privacy-Banner ---------- */
.cookiebar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 970;
  width: min(860px, calc(100vw - 24px));
  display: flex; align-items: center; gap: 18px;
  padding: 16px 18px;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  border: 1px solid var(--glass-border-hot);
  box-shadow: 0 0 50px -12px var(--neon-glow-2), 0 26px 60px -24px rgba(0, 0, 0, 0.95);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.cookiebar[hidden] { display: none; }
.cookiebar.is-out { opacity: 0; transform: translate(-50%, 16px); pointer-events: none; }
.cookiebar__text { font-size: 0.8rem; line-height: 1.55; color: hsl(var(--muted-foreground)); }
.cookiebar__text strong { color: hsl(var(--foreground)); font-weight: 600; }
.cookiebar__text a { color: var(--neon); text-decoration: none; }
.cookiebar__text a:hover { text-shadow: 0 0 10px var(--neon-glow-2); }
.cookiebar__btn { flex-shrink: 0; padding: 12px 20px 10px; font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .vault__grid { grid-template-columns: repeat(2, 1fr); }
  .listen__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  /* Rail wird zum Neon-Dock unten — App-Style, kein Burger */
  .rail {
    top: auto; bottom: 0; left: 0; right: 0;
    width: 100%; height: calc(62px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    flex-direction: row;
    border-right: none; border-top: 1px solid var(--glass-border);
    background: var(--glass-bg-strong);
    overflow: visible;
  }
  .rail:hover { width: 100%; }
  .rail__brand, .rail__foot { display: none; }
  .rail__tube {
    /* Die Röhre liegt jetzt quer auf der Dock-Oberkante */
    top: -2px; bottom: auto; left: 6%; right: 6%;
    width: auto; height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon) 14%, var(--neon-soft) 50%, var(--neon) 86%, transparent);
  }
  .rail__nav { flex-direction: row; justify-content: space-around; align-items: stretch; gap: 0; padding: 0; }
  .rail__link {
    flex: 1; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; padding: 8px 0 6px;
  }
  .rail__label {
    opacity: 1; transform: none;
    font-size: 0.58rem; letter-spacing: 0.14em;
  }
  .rail__link::before {
    /* Aktiv-Marker: Neon-Strich ÜBER dem Icon statt an der Seite */
    top: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px;
    transition: width 0.28s ease;
  }
  .rail__link.is-active::before { width: 40%; height: 3px; }
  .page { margin-left: 0; padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
  .cookiebar { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 680px) {
  .cookiebar { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
  .hero__img { height: 74%; }

  /* ABOUT: Text atmet frei — keine Glas-Box mehr auf Mobile */
  .about__grid { grid-template-columns: 1fr; gap: 18px; }
  .about__card {
    background: none; border: none; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    padding: 0;
  }
  .tunes-link { flex-direction: row; justify-content: center; padding: 20px; }
  .tunes-link__word { writing-mode: horizontal-tb; font-size: 2.4rem; }

  /* THE VAULT: horizontales Swipe-Band mit Snap statt Karten-Stapel */
  .vault__grid {
    display: flex; grid-template-columns: none; gap: 14px;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 6vw 18px; margin: 0 -6vw;
    scrollbar-width: none;
  }
  .vault__grid::-webkit-scrollbar { display: none; }
  .release { flex: 0 0 76vw; scroll-snap-align: center; }

  /* EVERYWHERE: schlanke Zeilen statt Kachel-Wand */
  .listen__grid { grid-template-columns: 1fr; gap: 0; }
  .platform {
    flex-direction: row; align-items: center; gap: 16px;
    padding: 18px 4px;
    background: none; border: none; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    border-bottom: 1px solid var(--glass-border);
  }
  .platform:first-child { border-top: 1px solid var(--glass-border); }
  .platform__icon { width: 26px; height: 26px; }
  .platform__label { font-size: 1.15rem; }
  .platform__hint { margin-left: auto; }
  .platform__arrow { position: static; margin-left: 6px; }
  .platform:hover { transform: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reduced Motion: alles Flackern aus ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .powercycle, .spark { display: none; }
  .tube, .tube--v, .rail__tube, .release__badge, .booking__title em,
  .hero__wordmark, .hero__scroll, .tunes-link__arrow, .intro__mask { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
