/* ==========================================================================
   TEKKNOhub — Designsystem (askdmitry.de)
   Ein CSS für alle Seiten. Mobile-first, Breakpoints 768px / 1100px.
   Keine externen Imports — Fonts self-hosted aus ../fonts/.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (@font-face, self-hosted)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Archivo Black';
  src: url('../fonts/archivo-black-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Permanent Marker';
  src: url('../fonts/permanent-marker-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Design-Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #0a0a0a;
  --bg-elev: #161616;
  --bg-elev2: #1f1f1f;
  --orange: #ff9000;
  --orange-hot: #ffa733;
  --orange-deep: #cc7300;
  --white: #ffffff;
  --gray: #b1b1b1;
  --gray-dim: #6f6f6f;
  --line: #2a2a2a;
  --danger: #ff4d4d;

  --bpm: 95; /* v1.1: Beat-Tempo — .beat pulst mit calc(60s / var(--bpm)) (95 = Halftime von 190) */

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-brush: 'Permanent Marker', cursive;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);

  --nav-h: 64px;
  --radius: 14px;
  --section-pad: clamp(60px, 12vw, 120px);
  --glow: 0 8px 30px rgba(255, 144, 0, .35);
}

/* --------------------------------------------------------------------------
   3. Reset & Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: dark;
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }

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

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

html.no-scroll, html.no-scroll body { overflow: hidden; }

/* Scrollbar (Bonus): dünn, oranger Thumb */
html { scrollbar-width: thin; scrollbar-color: var(--orange-deep) var(--bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--orange-deep);
  border-radius: 99px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* Layout-Helfer */
.container { width: min(100% - 40px, 1160px); margin-inline: auto; }
.section { padding-block: var(--section-pad); }
.page-top { padding-top: clamp(96px, 14vh, 150px); } /* Abstand unter fixer Nav auf Unterseiten */

.section-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: clamp(28px, 6vw, 52px);
}
.section-sub { color: var(--gray); max-width: 56ch; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 10001;
  background: var(--orange);
  color: #000;
  font-weight: 900;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  transform: translateY(-250%);
  transition: transform .3s var(--ease-out);
}
.skip-link:focus { transform: none; }

/* --------------------------------------------------------------------------
   4. Typografie: Hub-Heading + Brush
   -------------------------------------------------------------------------- */
.hub-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  line-height: 1.08;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .28ch;
}
.section-head .hub-heading { justify-content: center; }
.hub-heading--sm { font-size: clamp(1.5rem, 5vw, 2.3rem); }

.hub-box {
  background: var(--orange);
  color: #000;
  border-radius: .18em;
  padding: 0 .18em;
  font-style: italic;
  box-shadow: 0 4px 26px rgba(255, 144, 0, .28);
}

.brush {
  font-family: var(--font-brush);
  font-weight: 400;
  color: var(--orange);
}

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

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s, background-color .25s, color .25s, border-color .25s;
}

.btn-primary {
  background: var(--orange);
  color: #000;
  border: 0;
}
.btn-primary:hover { background: var(--orange-hot); transform: translateY(-2px); box-shadow: var(--glow); }
.btn-primary:active { background: var(--orange-deep); transform: translateY(0) scale(.98); box-shadow: none; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(.98); }

.btn-sm { padding: 9px 15px; font-size: .78rem; border-radius: 7px; }

/* Plattform-Brandfarben (per data-platform, greift auf allen Icon-Hosts) */
[data-platform="spotify"]    { --brand: #1DB954; }
[data-platform="apple"]      { --brand: #FA243C; }
[data-platform="amazon"]     { --brand: #25D1DA; }
[data-platform="soundcloud"] { --brand: #FF5500; }
[data-platform="youtube"]    { --brand: #FF0000; }
[data-platform="tiktok"]     { --brand: #ffffff; --brand-fx: drop-shadow(1.5px 1px 0 #FE2C55) drop-shadow(-1.5px -1px 0 #25F4EE); }

.btn-platform {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .25s var(--ease-out), background-color .25s, border-color .25s;
}
.btn-platform:hover { transform: translateY(-2px); background: var(--bg-elev2); border-color: var(--orange-deep); }
.btn-platform:active { transform: translateY(0); }

.platform-icon {
  width: 22px; height: 22px;
  flex: none;
  color: var(--gray);
  transition: color .25s, filter .25s;
}
.btn-platform:hover .platform-icon { color: var(--brand, var(--white)); filter: var(--brand-fx, none); }

.platform-arrow {
  margin-left: auto;
  width: 18px; height: 18px;
  color: var(--gray-dim);
  transition: transform .25s var(--ease-out), color .25s;
}
.btn-platform:hover .platform-arrow { transform: translateX(4px); color: var(--orange); }

/* --------------------------------------------------------------------------
   6. Navigation (fix, transparent → .nav-scrolled)
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
}
/* BG-Layer als ::before (backdrop-filter hier, NICHT auf .nav → Overlay bleibt viewport-fixed) */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 10, 10, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .35s;
}
.nav-scrolled::before { opacity: 1; }
/* Orange Hairline unten */
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.nav-scrolled::after { opacity: .65; }

.nav-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--nav-h);
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; }

.nav-links {
  display: none;
  list-style: none;
  padding: 0; margin: 0;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray);
  text-decoration: none;
  transition: color .25s;
}
.nav-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.nav .btn-primary { padding: 10px 16px; font-size: .78rem; }

/* Burger (mobil) */
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-burger span {
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform .35s var(--ease-out);
}
.nav-open .nav-burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Fullscreen-Overlay-Menü */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(10, 10, 10, .97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vh, 30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility 0s .4s;
}
.nav-open .nav-overlay { opacity: 1; visibility: visible; transition-delay: 0s; }

.nav-overlay ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: clamp(8px, 2.5vh, 18px);
  text-align: center;
}
.nav-overlay li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
.nav-open .nav-overlay li { opacity: 1; transform: none; }
.nav-open .nav-overlay li:nth-child(1) { transition-delay: .08s; }
.nav-open .nav-overlay li:nth-child(2) { transition-delay: .14s; }
.nav-open .nav-overlay li:nth-child(3) { transition-delay: .20s; }
.nav-open .nav-overlay li:nth-child(4) { transition-delay: .26s; }
.nav-open .nav-overlay li:nth-child(5) { transition-delay: .32s; }
.nav-open .nav-overlay li:nth-child(6) { transition-delay: .38s; }
.nav-open .nav-overlay li:nth-child(7) { transition-delay: .44s; }
.nav-open .nav-overlay li:nth-child(8) { transition-delay: .50s; }

.nav-overlay a {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1.1;
  color: var(--white);
  text-decoration: none;
  transition: color .25s;
}
.nav-overlay a:hover { color: var(--orange); }
.nav-overlay .brush { font-size: 1.1rem; opacity: .85; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
  padding: calc(var(--nav-h) + 26px) 20px 70px;
  overflow: hidden;
  isolation: isolate;
}
/* Orange Radial-Glows */
.hero::before {
  content: '';
  position: absolute;
  inset: -15%;
  z-index: -3;
  background:
    radial-gradient(600px 420px at 50% 28%, rgba(255, 144, 0, .16), transparent 65%),
    radial-gradient(900px 600px at 88% 88%, rgba(255, 144, 0, .07), transparent 60%),
    radial-gradient(700px 500px at 8% 78%, rgba(204, 115, 0, .09), transparent 60%);
}

#fx-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Wandernde Scan-Line */
.scanline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: .06;
  pointer-events: none;
  animation: scanMove 8s linear infinite;
}
@keyframes scanMove {
  from { transform: translateY(-4px); }
  to   { transform: translateY(100svh); }
}

.hero-logo-wrap { width: min(88vw, 720px); }
.hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(255, 144, 0, .25));
}

.hero-tagline {
  font-family: var(--font-brush);
  color: var(--orange);
  font-size: clamp(1.15rem, 4.5vw, 1.7rem);
  transform: rotate(-2deg);
  text-shadow: 0 4px 24px rgba(255, 144, 0, .35);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.hero-platforms a {
  color: var(--gray-dim);
  transition: color .25s, transform .25s var(--ease-out);
}
.hero-platforms a:hover { color: var(--white); transform: translateY(-2px); }
.hero-platforms svg { width: 20px; height: 20px; }

.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  color: var(--gray-dim);
  animation: cueBounce 1.8s ease-in-out infinite;
}
.scroll-cue svg { width: 22px; height: 22px; }
@keyframes cueBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: .45; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* Beat-Pulse — Tempo über Token --bpm (v1.1, Default 95 in :root) */
@keyframes beatPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.beat { animation: beatPulse calc(60s / var(--bpm, 95)) ease-in-out infinite; }

/* Stempel-Intro (Logo knallt rein) */
@keyframes stampIn {
  from { opacity: 0; transform: scale(1.18); filter: blur(12px); }
  60%  { opacity: 1; }
  to   { opacity: 1; transform: scale(1); filter: blur(0); }
}
.stamp-in { animation: stampIn .55s var(--ease-out) both; }
/* Kombi Stempel + Beat auf demselben Element (animation-Shorthand würde sich sonst überschreiben) */
.beat.stamp-in {
  animation:
    stampIn .55s var(--ease-out) both,
    beatPulse calc(60s / var(--bpm, 95)) ease-in-out .65s infinite;
}

/* Micro-Glitch: auf den WRAPPER legen (clip-path/transform), Beat pulst auf dem Kind */
@keyframes microGlitch {
  0%, 93.9% { clip-path: none; transform: none; opacity: 1; }
  94%   { clip-path: inset(8% 0 58% 0);  transform: translateX(-6px); opacity: .85; }
  95%   { clip-path: inset(55% 0 12% 0); transform: translateX(5px); }
  96%   { clip-path: inset(28% 0 38% 0); transform: translateX(-3px); opacity: .9; }
  96.5%, 100% { clip-path: none; transform: none; opacity: 1; }
}
.glitch { animation: microGlitch 7s steps(1, end) infinite; }

/* --------------------------------------------------------------------------
   8. Marquee-Ticker (reines CSS, Inhalt 2× im Markup)
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 13px 0;
  background: var(--bg);
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove var(--marquee-dur, 30s) linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee--reverse .marquee-track { animation-direction: reverse; }

.marquee-seg {
  flex: none;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(.95rem, 3vw, 1.2rem);
  color: var(--white);
  padding-inline-end: 2.5rem;
}
.marquee-seg b { color: var(--orange); font-weight: inherit; }

@keyframes marqueeMove {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. Equalizer-Deko (5 Bars, nur transform)
   -------------------------------------------------------------------------- */
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.eq span {
  width: 4px;
  height: 100%;
  border-radius: 2px;
  background: var(--orange);
  transform-origin: bottom;
  transform: scaleY(.3);
  animation: eqBounce 1s ease-in-out infinite;
}
.eq span:nth-child(1) { animation-duration: .9s; }
.eq span:nth-child(2) { animation-duration: 1.15s; animation-delay: -.3s; }
.eq span:nth-child(3) { animation-duration: .75s;  animation-delay: -.15s; }
.eq span:nth-child(4) { animation-duration: 1.3s;  animation-delay: -.5s; }
.eq span:nth-child(5) { animation-duration: 1s;    animation-delay: -.7s; }
@keyframes eqBounce {
  0%, 100% { transform: scaleY(.25); }
  50%      { transform: scaleY(1); }
}

/* --------------------------------------------------------------------------
   10. Reveal-on-Scroll (nur wenn JS aktiv → html.js)
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.js .reveal-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   11. Stats
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  gap: 14px;
}
.stat-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.stat-card:hover { border-color: var(--orange-deep); transform: translateY(-3px); }
.stat-card::after {
  content: '';
  position: absolute;
  left: 20%; right: 20%; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.stat-card:hover::after { opacity: 1; }

.stat-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  line-height: 1.05;
  color: var(--white);
}
.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--gray);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.stats-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  margin-top: 18px;
  color: var(--gray-dim);
  font-size: .78rem;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 144, 0, .5); opacity: 1; }
  60%      { box-shadow: 0 0 0 7px rgba(255, 144, 0, 0); opacity: .6; }
}

/* --------------------------------------------------------------------------
   12. Galerie (Scroll-Snap) + Track-Karten
   -------------------------------------------------------------------------- */
.gallery { position: relative; }

.gallery-track {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 8px 22px 20px;
  margin: 0;
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Position zeigen die Dots */
}
.gallery-track::-webkit-scrollbar { display: none; }

.track-card {
  flex: 0 0 min(78vw, 320px);
  scroll-snap-align: center;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.track-card:hover { border-color: var(--orange-deep); transform: translateY(-4px); }

.track-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-elev2);
}
.track-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}
.track-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: 1.02rem;
  line-height: 1.18;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.36em;
}
.track-artist {
  color: var(--gray-dim);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.track-links { display: flex; flex-wrap: wrap; gap: 8px; }
.track-icon {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  background: var(--bg-elev2);
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--gray);
  transition: color .25s, border-color .25s, transform .2s var(--ease-out), filter .25s;
}
.track-icon svg { width: 18px; height: 18px; }
.track-icon:hover {
  color: var(--brand, var(--white));
  border-color: var(--line);
  transform: translateY(-2px);
  filter: var(--brand-fx, none);
}

/* Pfeile (erst ab Desktop sichtbar) */
.gallery-prev, .gallery-next {
  position: absolute;
  top: 34%;
  z-index: 2;
  width: 46px; height: 46px;
  display: none;
  place-items: center;
  background: rgba(22, 22, 22, .88);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: border-color .25s, color .25s, transform .2s var(--ease-out), opacity .25s;
}
.gallery-prev { left: -6px; }
.gallery-next { right: -6px; }
.gallery-prev:hover, .gallery-next:hover { border-color: var(--orange); color: var(--orange); transform: scale(1.08); }
.gallery-prev[disabled], .gallery-next[disabled] { opacity: .25; pointer-events: none; }
.gallery-prev svg, .gallery-next svg { width: 20px; height: 20px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.gallery-dot {
  width: 8px; height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: var(--gray-dim);
  opacity: .5;
  cursor: pointer;
  transition: width .3s var(--ease-out), background-color .3s, opacity .3s;
}
.gallery-dot.active { background: var(--orange); width: 22px; opacity: 1; }

.gallery-hint {
  text-align: center;
  color: var(--gray-dim);
  font-size: .78rem;
  margin-top: 10px;
}

/* Galerie ohne Overflow (alles passt) → Steuerung ausblenden */
.gallery-static .gallery-prev,
.gallery-static .gallery-next,
.gallery-static .gallery-dots,
.gallery-static .gallery-hint { display: none; }

/* --------------------------------------------------------------------------
   13. Embed-Fassaden (Click-to-Load, DSGVO)
   -------------------------------------------------------------------------- */
.embed-facade {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  isolation: isolate;
  transition: height .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.embed-facade:not(.embed-loaded) { cursor: pointer; }
.embed-facade--square { aspect-ratio: 1; }
.embed-facade--audio {
  aspect-ratio: auto;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-elev2);
}
.embed-facade--audio.embed-loaded {
  height: 80px;
  background: #121212;
  border-color: rgba(255, 144, 0, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.embed-facade--tall { aspect-ratio: auto; height: 450px; }

.facade-thumb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform .5s var(--ease-out), opacity .4s;
}
.embed-facade:not(.embed-loaded):hover .facade-thumb { transform: scale(1.04); opacity: 1; }

.facade-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 34px 16px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .8));
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: 0;
  text-align: left;
  pointer-events: none;
}

/* Play-Button im Orange-Kasten-Stil (Hub-Box) */
.facade-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #000;
  border: 0;
  border-radius: 10px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-weight: 900;
  font-style: italic;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: transform .25s var(--ease-out), background-color .25s;
}
.facade-play:hover { background: var(--orange-hot); transform: translate(-50%, -50%) scale(1.07); }
.facade-play:active { background: var(--orange-deep); transform: translate(-50%, -50%) scale(.98); }
.facade-play svg { width: 15px; height: 15px; flex: none; }

.embed-facade--audio .facade-play { position: static; transform: none; }
.embed-facade--audio .facade-play:hover { transform: scale(1.06); }
.embed-facade--audio .facade-play:active { transform: scale(.98); }

.facade-note {
  position: absolute;
  top: 10px; left: 14px; right: 14px;
  z-index: 1;
  color: rgba(255, 255, 255, .55);
  font-size: .68rem;
  text-align: left;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .9);
  pointer-events: none;
}
.facade-note a { color: rgba(255, 255, 255, .8); pointer-events: auto; }
.embed-facade--audio .facade-note {
  position: static;
  color: var(--gray-dim);
  text-align: center;
  text-shadow: none;
  padding-inline: 16px;
}

/* Inline-Consent-Dialog (von main.js injiziert) */
.facade-consent {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
  background: rgba(10, 10, 10, .95);
  overflow-y: auto;
  animation: facadeFade .25s var(--ease-out);
}
@keyframes facadeFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.facade-consent p {
  color: var(--gray);
  font-size: .82rem;
  line-height: 1.55;
  max-width: 46ch;
}
.facade-consent a { color: var(--orange); }
.facade-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.facade-cancel {
  background: none;
  border: 0;
  color: var(--gray-dim);
  font-size: .78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 8px;
  transition: color .25s;
}
.facade-cancel:hover { color: var(--white); }
/* Kompakter Dialog in der 152px-Audio-Fassade */
.embed-facade--audio .facade-consent { gap: 8px; padding: 12px; }
.embed-facade--audio .facade-consent p { font-size: .7rem; line-height: 1.4; }

/* Geladenes iframe füllt die Fassade */
.embed-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #121212;
  color-scheme: dark;
  border-radius: calc(var(--radius) - 1px);
}
.embed-loaded { cursor: auto; }

/* --------------------------------------------------------------------------
   14. Video-Grid
   -------------------------------------------------------------------------- */
.video-grid {
  display: grid;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   15. Über-Sektion
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.about-img {
  width: min(100%, 380px);
  margin-inline: auto;
  border-radius: 14px;
  box-shadow: 0 0 0 2px var(--orange-deep), 0 14px 60px rgba(255, 144, 0, .18);
  filter: grayscale(30%);
  transition: filter .5s;
}
.about-img:hover { filter: grayscale(0); }
.about-text { display: grid; gap: 16px; }
.about-text p { color: var(--gray); }
.about-text strong { color: var(--white); }

/* --------------------------------------------------------------------------
   16. Plattform-Grid
   -------------------------------------------------------------------------- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
/* Mobil kompakt: Icon oben, Name darunter, kein Pfeil */
.platform-grid .btn-platform {
  flex-direction: column;
  gap: 10px;
  padding: 20px 12px;
  text-align: center;
  justify-content: center;
}
.platform-grid .platform-arrow { display: none; }

/* --------------------------------------------------------------------------
   17. Linktree (links.html)
   -------------------------------------------------------------------------- */
.linktree {
  max-width: 560px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
  text-align: center;
}
.linktree-logo { width: min(70vw, 300px); margin-inline: auto; }
.linktree .brush { font-size: clamp(1.05rem, 4vw, 1.4rem); }
.linktree .btn-platform { width: 100%; }
.linktree .btn-primary, .linktree .btn-ghost { width: 100%; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 44px;
  text-align: center;
}
.footer .container { display: grid; gap: 18px; justify-items: center; }
.footer-logo img { height: 40px; width: auto; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: .85rem;
}
.footer-links a { color: var(--gray); text-decoration: none; transition: color .25s; }
.footer-links a:hover { color: var(--orange); }
.footer-note { color: var(--gray-dim); font-size: .78rem; }
.footer .js-consent-open {
  background: none;
  border: 0;
  padding: 0;
  color: var(--gray);
  font-size: .85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .25s;
}
.footer .js-consent-open:hover { color: var(--orange); }

/* --------------------------------------------------------------------------
   19. Consent-Banner
   -------------------------------------------------------------------------- */
#consent-banner {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 9999;
  width: min(94vw, 680px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .65);
  display: grid;
  gap: 14px;
  opacity: 0;
  transform: translate(-50%, 24px);
  pointer-events: none;
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
#consent-banner.open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.consent-text { color: var(--gray); font-size: .85rem; line-height: 1.6; }
.consent-text a { color: var(--orange); }
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.consent-actions .btn-primary, .consent-actions .btn-ghost { flex: 1 1 auto; }

/* --------------------------------------------------------------------------
   20. Toast
   -------------------------------------------------------------------------- */
#toast-container {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(92vw, 420px);
  pointer-events: none;
}
.toast {
  background: var(--bg-elev2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  color: var(--white);
  font-size: .88rem;
  padding: 12px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  animation: toastIn .35s var(--ease-out);
}
.toast--danger { border-left-color: var(--danger); }
.toast-out { opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21. Legal-Typo (Impressum / Datenschutz / AGB)
   -------------------------------------------------------------------------- */
.legal {
  max-width: 760px;
  margin-inline: auto;
}
.legal .hub-heading { margin-bottom: 10px; }
.legal-updated { color: var(--gray-dim); font-size: .85rem; margin-bottom: 34px; }
.legal h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: 1.3rem;
  color: var(--orange);
  margin: 2.4em 0 .7em;
}
.legal h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.8em 0 .5em;
}
.legal p, .legal li { color: var(--gray); line-height: 1.75; }
.legal p { margin-bottom: 1em; }
.legal ul, .legal ol { padding-left: 1.3em; margin-bottom: 1em; display: grid; gap: .35em; }
.legal a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--orange-hot); }
.legal strong { color: var(--white); }
.legal address { font-style: normal; color: var(--gray); line-height: 1.75; margin-bottom: 1em; }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }

/* --------------------------------------------------------------------------
   22. 404
   -------------------------------------------------------------------------- */
.error-hero {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
  padding: 100px 20px 60px;
}
.error-code {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(6rem, 28vw, 13rem);
  line-height: .95;
  color: var(--orange);
  text-shadow: 0 12px 70px rgba(255, 144, 0, .35);
}
.error-text { color: var(--gray); font-size: 1.05rem; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }

/* --------------------------------------------------------------------------
   23. Breakpoint: Tablet ≥ 768px
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-burger, .nav-overlay { display: none; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }

  .about-grid { grid-template-columns: minmax(0, 360px) 1fr; gap: 48px; }
  .about-img { margin-inline: 0; }

  .platform-grid .btn-platform {
    flex-direction: row;
    text-align: left;
    padding: 16px 18px;
    justify-content: flex-start;
  }
  .platform-grid .platform-arrow { display: block; }

  .embed-facade--tall { height: 500px; }

  .track-card { flex-basis: 320px; }
  .gallery-track { padding-inline: 4px; }
}

/* --------------------------------------------------------------------------
   24. Breakpoint: Desktop ≥ 1100px
   -------------------------------------------------------------------------- */
@media (min-width: 1100px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-prev, .gallery-next { display: grid; }
  .gallery-hint { display: none; }
}

/* --------------------------------------------------------------------------
   25. Reduced Motion: alles aus
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  html { scroll-behavior: auto; }
  .gallery-track { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .scanline, .scroll-cue, #fx-canvas { display: none !important; }
  .marquee-track { animation: none !important; transform: none !important; }
  .eq span { animation: none !important; transform: scaleY(.6); }
}

/* ==========================================================================
   v1.1 — DESIGN-ADDENDUM (RECON §C). Nur additiv: keine Renames, alle
   v1.0-Komponenten unverändert gültig. Neu: Nav-Brand-Lockup, Tube-Card-
   Extras, Doppel-Marquee, Rating-Bar, Orange-Wipe, Glitch-Hover,
   Channel-Rows. (BPM-Token --bpm siehe :root / Sektion 7.)
   ========================================================================== */

/* --------------------------------------------------------------------------
   26. Nav-Brand-Lockup — "TEKKNO" + hub-Box, darunter Brush "ASKDMITRY".
       Markup: <a class="brand-lockup" href="index.html">TEKKNO<span
       class="hub-box">hub</span><span class="brand-sub">ASKDMITRY</span></a>
       "hub" bewusst klein (Logo-Parodie) — Lockup setzt KEIN text-transform.
   -------------------------------------------------------------------------- */
.brand-lockup {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
  font-size: 1.32rem;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.brand-lockup .hub-box {
  margin-left: .07em;
  padding: .04em .16em .07em;
  box-shadow: 0 3px 16px rgba(255, 144, 0, .3);
}
.brand-lockup:hover .hub-box { background: var(--orange-hot); }
.brand-sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-brush);
  font-style: normal;
  font-size: .58rem;
  line-height: 1;
  letter-spacing: .42em;
  color: var(--orange);
}

/* --------------------------------------------------------------------------
   27. Tube-Card-Extras — Eck-/Dauer-Badges + Meta-Zeile + Video-Karte.
       Badges brauchen einen positionierten Ancestor: .embed-facade hat
       position bereits; .track-card bekommt es hier (additiv, unsichtbar).
   -------------------------------------------------------------------------- */
.track-card { position: relative; }

.badge-corner {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  background: var(--orange);
  color: #000;
  font-weight: 900;
  font-style: italic;
  font-size: .6rem;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 5px;
  box-shadow: 0 4px 18px rgba(255, 144, 0, .35);
  pointer-events: none;
}
.badge-duration {
  position: absolute;
  right: 10px; bottom: 10px;
  z-index: 2;
  background: var(--orange);
  color: #000;
  font-family: var(--font-mono);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: .68rem;
  line-height: 1;
  padding: 4px 7px;
  border-radius: 5px;
  pointer-events: none;
}
.card-meta {
  display: block;
  color: var(--gray);
  font-size: .78rem;
  line-height: 1.45;
}

/* Optionale Tube-Karten-Hülle: Fassade + Titel/Meta darunter statt Overlay */
.video-card { display: grid; gap: 10px; align-content: start; }
.video-card .embed-facade { transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s; }
.video-card:hover .embed-facade:not(.embed-loaded) {
  transform: scale(1.03);
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange), 0 16px 44px rgba(255, 144, 0, .2);
}
.video-title { font-weight: 700; font-size: .98rem; line-height: 1.35; }

/* --------------------------------------------------------------------------
   28. Doppel-Marquee — Stripe 2: schwarz auf Orange, reverse, -2° rotiert.
       .marquee--inverse möglichst in .marquee-stack nutzen (Luft + Clipping).
   -------------------------------------------------------------------------- */
.marquee-stack {
  overflow: clip;
  padding-block: clamp(16px, 2.5vw, 44px);
}
.marquee--inverse {
  background: var(--orange);
  border-block-color: rgba(0, 0, 0, .25);
  width: 104%;
  margin-left: -2%;
  transform: rotate(-2deg);
}
.marquee--inverse .marquee-track { animation-direction: reverse; }
.marquee--inverse .marquee-seg,
.marquee--inverse .marquee-seg b { color: #000; }

/* --------------------------------------------------------------------------
   29. Rating-Bar — Daumen + Balken, füllt sich beim Reveal auf --rating
       (Default 97%). Braucht .reveal am Element oder einem Ancestor.
   -------------------------------------------------------------------------- */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.rating-thumb { width: 20px; height: 20px; flex: none; color: var(--orange); }
.rating-bar {
  display: block;
  width: min(200px, 44vw);
  height: 6px;
  border-radius: 99px;
  background: var(--bg-elev2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.rating-fill {
  display: block;
  height: 100%;
  width: var(--rating, 97%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  box-shadow: 0 0 12px rgba(255, 144, 0, .55);
  transition: width 1.3s var(--ease-out) .15s;
}
/* Startzustand vor dem Reveal (nur mit JS): Balken leer */
.js .reveal:not(.reveal-visible) .rating-fill { width: 0; }
.rating-value {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: .92rem;
  color: var(--white);
  white-space: nowrap;
}
.rating-value .brush { font-size: .95em; }

/* --------------------------------------------------------------------------
   30. Orange-Wipe (Seiten-Transition) — Zustandsklassen setzt NUR main.js
       (a[data-wipe]-Klicks). Overlay-Markup optional, JS erzeugt es sonst.
   -------------------------------------------------------------------------- */
.wipe-overlay {
  position: fixed;
  inset: 0;
  z-index: 10005;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}
.wipe-overlay.wipe-cover { transform: scaleY(1); }
.wipe-overlay.wipe-in {
  transform: scaleY(1);
  transition: transform .25s var(--ease-io);
}
.wipe-overlay.wipe-out {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s var(--ease-out);
}

/* --------------------------------------------------------------------------
   31. Glitch-Hover auf .hub-heading — Opt-in via data-text="Ganzer Text".
       0.4s, einmalig (NICHT infinite). Touch: einmalig beim Reveal
       (Heading oder Ancestor braucht .reveal). Kopien = ::before/::after
       mit clip-path-Jitter in Orange/Weiß.
   -------------------------------------------------------------------------- */
.hub-heading[data-text] { position: relative; }
.hub-heading[data-text]::before,
.hub-heading[data-text]::after {
  content: attr(data-text);
  content: attr(data-text) / ''; /* moderne Browser: für Screenreader stumm */
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: inherit;
  opacity: 0;
  pointer-events: none;
}
.hub-heading[data-text]::before { color: var(--orange); text-shadow: 2px 0 rgba(255, 255, 255, .4); }
.hub-heading[data-text]::after  { color: var(--white);  text-shadow: -2px 0 var(--orange); }

@keyframes hubGlitchA {
  0%   { opacity: .9; clip-path: inset(10% 0 64% 0); transform: translate(-5px, -2px); }
  30%  { clip-path: inset(50% 0 18% 0); transform: translate(4px, 1px); }
  55%  { clip-path: inset(72% 0 5% 0); transform: translate(-3px, 2px); }
  80%  { clip-path: inset(24% 0 50% 0); transform: translate(5px, -1px); }
  100% { opacity: 0; clip-path: inset(45% 0 45% 0); transform: none; }
}
@keyframes hubGlitchB {
  0%   { opacity: .9; clip-path: inset(60% 0 8% 0); transform: translate(4px, 2px); }
  30%  { clip-path: inset(8% 0 70% 0); transform: translate(-4px, -1px); }
  55%  { clip-path: inset(34% 0 36% 0); transform: translate(3px, 1px); }
  80%  { clip-path: inset(66% 0 10% 0); transform: translate(-5px, 0); }
  100% { opacity: 0; clip-path: inset(15% 0 62% 0); transform: none; }
}

@media (hover: hover) {
  .hub-heading[data-text]:hover::before { animation: hubGlitchA .4s steps(1, end); }
  .hub-heading[data-text]:hover::after  { animation: hubGlitchB .4s steps(1, end); }
}
@media (hover: none) {
  .js .reveal.reveal-visible .hub-heading[data-text]::before,
  .js .hub-heading.reveal.reveal-visible[data-text]::before { animation: hubGlitchA .4s steps(1, end) .35s; }
  .js .reveal.reveal-visible .hub-heading[data-text]::after,
  .js .hub-heading.reveal.reveal-visible[data-text]::after  { animation: hubGlitchB .4s steps(1, end) .35s; }
}

/* --------------------------------------------------------------------------
   32. Channel-Rows („Empfohlene Kanäle", links.html) — Tube-Sidebar-Look:
       64px-Icon-Kachel, Badge OFFICIAL, fetter Titel, graue Meta, Chevron.
   -------------------------------------------------------------------------- */
.channel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  text-align: left;
  text-decoration: none;
  transition: transform .2s var(--ease-out), background-color .25s, border-color .25s;
}
.channel-row:hover { background: var(--bg-elev2); border-color: var(--orange-deep); }
.channel-row:active { transform: scale(.95); }

.channel-thumb {
  width: 64px; height: 64px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--bg-elev2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--gray);
  transition: color .25s, border-color .25s;
}
.channel-thumb svg { width: 30px; height: 30px; transition: filter .25s; }
.channel-row:hover .channel-thumb { color: var(--brand, var(--white)); border-color: var(--orange-deep); }
.channel-row:hover .channel-thumb svg { filter: var(--brand-fx, none); }

.channel-info { display: grid; gap: 4px; min-width: 0; }
.channel-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.25;
}
.badge-official {
  background: var(--orange);
  color: #000;
  font-weight: 900;
  font-style: italic;
  font-size: .56rem;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 4px;
}
.channel-chevron {
  margin-left: auto;
  width: 18px; height: 18px;
  flex: none;
  color: var(--gray-dim);
  transition: transform .25s var(--ease-out), color .25s;
}
.channel-row:hover .channel-chevron { transform: translateX(4px); color: var(--orange); }

/* --------------------------------------------------------------------------
   33. Addendum: Breakpoints + Reduced Motion
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .brand-lockup { font-size: 1.45rem; }
  .video-title { font-size: 1.02rem; }
}

@media (prefers-reduced-motion: reduce) {
  /* Wipe komplett aus (JS überspringt ihn ebenfalls) */
  .wipe-overlay { display: none !important; }
  /* Glitch-Kopien nie anzeigen */
  .hub-heading[data-text]::before,
  .hub-heading[data-text]::after { display: none !important; }
}
