/* ==========================================================================
   nxttrack — Marketing Site
   Design-System (via ui-ux-pro-max): Exaggerated Minimalism × Editorial Grid
   Club-Flyer-Energie: Anton Display, flacher Cyan-Akzent, Noise, Tracklist.
   Kein Glow-Gradient-Einheitsbrei.
   ========================================================================== */

:root {
  --bg: #0a0a0b;
  --panel: #101012;
  --panel-2: #141416;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #22d3ee;
  --accent-deep: #0ea5e9;
  --paper: #0c0c0e;          /* dunkle Spotlight-Sektion (früher cremeweiß) */
  --paper-ink: #ececee;
}

* { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: #ececee;
  font-family: 'Epilogue', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- Type ---------------------------------------------------------------- */
.font-display { font-family: 'Anton', 'Arial Narrow', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: 0.01em; }
.font-mono { font-family: 'Space Mono', ui-monospace, monospace; }

.display-xl { font-size: clamp(3.4rem, 9.2vw, 8.25rem); line-height: 0.92; }
.display-lg { font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 0.95; }
.display-md { font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.02; }

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
}
.text-outline-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}
.text-accent { color: var(--accent); }

/* Eyebrow / Tracklabels */
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.tracknum {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- Texture: nur Noise + Hairlines, KEIN Glow-Teppich ------------------- */
.bg-noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 1; }

.halftone {
  background-image: radial-gradient(rgba(255,255,255,0.13) 1px, transparent 1.5px);
  background-size: 14px 14px;
}
.halftone-accent {
  background-image: radial-gradient(rgba(34,211,238,0.35) 1.2px, transparent 1.7px);
  background-size: 12px 12px;
}

.rule { border-top: 1px solid var(--line); }
.rule-strong { border-top: 1px solid var(--line-strong); }

/* ---- Buttons: Plakat-Stil — flach, hart, Schwarz-auf-Cyan ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: 'Epilogue', sans-serif;
  font-weight: 700; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.95rem 1.6rem; min-height: 48px;
  border-radius: 13px;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s ease, color 0.18s ease, border-color 0.2s ease, transform 0.18s ease, box-shadow 0.25s ease;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* primär = "Prominent Glass" (getöntes Liquid Glass, iOS-26-Anlehnung) */
.btn-solid {
  color: #04151b;
  background:
    linear-gradient(180deg, rgba(125, 236, 250, 0.95) 0%, rgba(34, 211, 238, 0.92) 46%, rgba(14, 165, 233, 0.90) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(185%);
  backdrop-filter: blur(14px) saturate(185%);
  border: 1px solid rgba(186, 247, 255, 0.60);
  box-shadow:
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.72),
    inset 0 -3px 7px rgba(6, 90, 120, 0.30),
    0 8px 24px -8px rgba(34, 211, 238, 0.55);
}
.btn-solid:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(165, 243, 252, 1) 0%, rgba(56, 220, 245, 0.96) 46%, rgba(20, 180, 235, 0.92) 100%);
  border-color: rgba(216, 250, 255, 0.80);
  box-shadow:
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.85),
    inset 0 -3px 7px rgba(6, 90, 120, 0.22),
    0 12px 30px -8px rgba(34, 211, 238, 0.78);
}

/* sekundär = klares Liquid Glass */
.btn-line {
  color: #f4f4f5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  -webkit-backdrop-filter: blur(16px) saturate(165%);
  backdrop-filter: blur(16px) saturate(165%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.45),
    inset 0 -2px 6px rgba(0, 0, 0, 0.18),
    0 6px 18px -10px rgba(0, 0, 0, 0.55);
}
.btn-line:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.09));
  border-color: rgba(124, 233, 250, 0.45);
  color: #fff;
  box-shadow:
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.55),
    0 10px 24px -10px rgba(34, 211, 238, 0.35);
}
/* (Spotlight-Sektion ist jetzt dunkel — sekundäre Buttons nutzen das normale Glas) */

/* ---- Panels / Cards: flach, kantig, klare Linien -------------------------- */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.panel-hover { cursor: pointer; }
.panel-hover:hover { border-color: var(--accent); background: var(--panel-2); }

/* nummerierte Tracklist-Zeilen */
.trackrow {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.trackrow:last-child { border-bottom: 1px solid var(--line); }

/* ---- Status-Badges (Farben = echtes Tool) --------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 6px; border: 1px solid;
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  backdrop-filter: blur(10px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.badge-dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.badge-pending  { color: #fcd34d; background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.35); }
.badge-queued   { color: #67e8f9; background: rgba(34,211,238,0.10); border-color: rgba(34,211,238,0.40); }
.badge-played   { color: #6ee7b7; background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.35); }
.badge-rejected { color: #fda4af; background: rgba(244,63,94,0.08); border-color: rgba(244,63,94,0.35); }

/* ---- Genre-Ticker ---------------------------------------------------------- */
.ticker { overflow: hidden; user-select: none; }
.ticker-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1;
  padding: 0.55em 0.6em;
  white-space: nowrap;
}
.ticker-item.is-outline { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.5); }
.ticker-sep { color: var(--accent); font-size: clamp(1rem, 2vw, 1.5rem); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---- Vinyl (CSS-Schallplatte) ---------------------------------------------- */
.vinyl {
  position: relative; border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(255,255,255,0) 0deg, rgba(255,255,255,0.085) 30deg, rgba(255,255,255,0) 76deg, rgba(255,255,255,0) 360deg),
    radial-gradient(circle at 50% 50%, #18181b 0 18%, transparent 18.5%),
    repeating-radial-gradient(circle at 50% 50%, #161618 0 2px, #0d0d0f 2px 4px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: spin 16s linear infinite;
}
.vinyl::before { /* Label mit weichem Sheen statt strobendem Punktraster */
  content: ''; position: absolute; inset: 31%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, rgba(255,255,255,0.30), var(--accent) 58%);
  border: 1px solid rgba(0, 0, 0, 0.45);
}
.vinyl::after { /* Spindel */
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 7%; height: 7%; transform: translate(-50%, -50%);
  border-radius: 50%; background: #0a0a0b;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Equalizer ------------------------------------------------------------- */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 1.05em; }
.eq i {
  display: block; width: 3px; border-radius: 1px; background: var(--accent);
  animation: eq 1.05s ease-in-out infinite;
}
.eq i:nth-child(1) { animation-delay: -0.20s; height: 45%; }
.eq i:nth-child(2) { animation-delay: -0.55s; height: 85%; }
.eq i:nth-child(3) { animation-delay: -0.10s; height: 60%; }
.eq i:nth-child(4) { animation-delay: -0.75s; height: 100%; }
.eq i:nth-child(5) { animation-delay: -0.35s; height: 55%; }
@keyframes eq { 0%, 100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }

/* ---- Phone-Mockup (Produkt) ------------------------------------------------ */
.phone {
  position: relative; width: 295px;
  border-radius: 2.2rem; padding: 0.65rem;
  background: #151517;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 14px 14px 0 0 rgba(34, 211, 238, 0.16);
}
.phone-screen {
  background: #0a0a0b;
  border-radius: 1.7rem; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.phone-notch {
  position: absolute; top: 0.85rem; left: 50%; transform: translateX(-50%);
  width: 34%; height: 0.42rem; background: #060607; border-radius: 999px; z-index: 5;
}

/* ---- Spotlight-Sektion (dunkles "Kapitel" mit Akzent-Rahmen) --------------- */
.paper-section {
  position: relative;
  color: var(--paper-ink);
  background:
    radial-gradient(52rem 26rem at 50% -12%, rgba(34, 211, 238, 0.12), transparent 62%),
    radial-gradient(52rem 26rem at 50% 112%, rgba(14, 165, 233, 0.08), transparent 62%),
    #0c0c0e;
}
.paper-section::before,
.paper-section::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.55), transparent);
}
.paper-section::before { top: 0; }
.paper-section::after { bottom: 0; }
.paper-section .rule { border-color: rgba(255, 255, 255, 0.10); }
.paper-section .tracknum { color: rgba(255, 255, 255, 0.45); }

/* ---- Ticket (Preiskarten) --------------------------------------------------- */
.ticket {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
.ticket:hover { border-color: var(--accent); }
.ticket-divider {
  position: relative;
  border-top: 2px dashed rgba(255, 255, 255, 0.16);
  margin: 0 1.5rem;
}
.ticket-divider::before, .ticket-divider::after {
  content: ''; position: absolute; top: 50%;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg);
  transform: translateY(-50%);
}
.ticket-divider::before { left: -2.55rem; border-right: 1px solid var(--line); }
.ticket-divider::after { right: -2.55rem; border-left: 1px solid var(--line); }
.ticket-featured { border-color: var(--accent); }
.ticket-featured .ticket-stub { background: var(--accent); color: #0a0a0b; }
.ticket-stub {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06); color: #d4d4d8;
  padding: 0.55rem 1rem;
  border-radius: 8px 8px 0 0;
  display: flex; justify-content: space-between; align-items: center;
}

/* ---- Nav: schwebende Liquid-Glass-Kapsel (iOS-26-Anlehnung) ----------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border: none;
  padding: 0.7rem 0.75rem 0;
}
.site-nav > nav {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.05),
    0 12px 32px -14px rgba(0, 0, 0, 0.65);
}
.nav-link {
  position: relative;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #9d9da6;
  padding: 0.5rem 0;
  transition: color 0.18s ease;
}
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--accent);
}

/* ---- FAQ ---------------------------------------------------------------------- */
.faq-item button { cursor: pointer; }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s ease; }
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body > div { overflow: hidden; }
.faq-icon { transition: transform 0.28s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ---- Scroll-Reveal -------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s cubic-bezier(.2,.7,.2,1), transform 0.65s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Mobile-Menu ------------------------------------------------------------------ */
.mobile-menu { overflow: hidden; max-height: 80vh; transition: max-height 0.3s ease, opacity 0.22s ease, transform 0.22s ease, padding 0.3s ease, margin 0.3s ease; }
.site-nav .mobile-menu.hidden-menu { max-height: 0; margin-top: 0; padding-top: 0; padding-bottom: 0; border-top-width: 0; border-bottom-width: 0; opacity: 0; transform: translateY(-6px); pointer-events: none; }

/* ---- Toggle (Preise) ---------------------------------------------------------------- */
.toggle-pill { transition: transform 0.28s cubic-bezier(.4,1.3,.5,1); }

/* ---- Marquee-Maske -------------------------------------------------------------------- */
.fade-x {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* ==========================================================================
   LIQUID GLASS — Akzentschicht (iOS-26/27-Anlehnung, Brücke zum Tool)
   Wiederverwendbares Material + Overrides für schwebende/interaktive Teile.
   ========================================================================== */
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  backdrop-filter: blur(18px) saturate(165%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 8px 26px -16px rgba(0, 0, 0, 0.6);
}
.glass-pill { border-radius: 999px; }
/* dezente "Linse": heller Lichtfleck oben links */
.glass-lens { position: relative; overflow: hidden; }
.glass-lens::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 60% at 18% 0%, rgba(255, 255, 255, 0.16), transparent 60%);
}
/* Akzent-getöntes Glas (für den ausgewählten Treffer im Phone) */
.glass-accent {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0.06));
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  backdrop-filter: blur(18px) saturate(165%);
  border: 1px solid rgba(34, 211, 238, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Header-CTA: schicke "LIVE"-Glas-Pille mit pulsierendem Punkt */
.btn-live {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: 'Space Mono', monospace;
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #ecfeff; white-space: nowrap;
  padding: 0.62rem 1.05rem; border-radius: 999px; min-height: 40px;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.40), rgba(14, 165, 233, 0.26));
  -webkit-backdrop-filter: blur(18px) saturate(185%);
  backdrop-filter: blur(18px) saturate(185%);
  border: 1px solid rgba(103, 232, 249, 0.45);
  box-shadow:
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.55),
    inset 0 -2px 6px rgba(6, 90, 120, 0.25),
    0 6px 22px -10px rgba(34, 211, 238, 0.7);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.2s ease;
}
.btn-live:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(45, 212, 240, 0.55), rgba(20, 175, 235, 0.36));
  border-color: rgba(190, 245, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 10px 28px -8px rgba(34, 211, 238, 0.85);
}
.btn-live:focus-visible { outline: 2px solid #67e8f9; outline-offset: 3px; }
.btn-live .live-dot {
  width: 7px; height: 7px; border-radius: 999px; background: #fff;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.8);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70%  { box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.8), 0 0 0 7px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Mobile-Menü als schwebendes Glas-Panel */
.site-nav [data-mobile-menu] {
  margin: 0.5rem 0 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(22, 22, 25, 0.78), rgba(12, 12, 14, 0.82));
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 18px 44px -18px rgba(0, 0, 0, 0.75);
}

/* Preis-Toggle = Glas-Schiene */
[data-bill-toggle] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-color: rgba(255, 255, 255, 0.16) !important;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

/* ==========================================================================
   SPECIALS
   ========================================================================== */

/* Waveform-Scroll-Fortschritt (oben, segmentiert wie ein EQ/Waveform) */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 4px; z-index: 60;
  background: rgba(255, 255, 255, 0.05); pointer-events: none;
}
.scroll-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.65);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 5px);
  mask: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 5px);
  transition: width 0.08s linear;
}

/* Club-Light-Cursor (folgt der Maus, nur Desktop) */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 480px; height: 480px; margin: -240px 0 0 -240px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.11), rgba(14, 165, 233, 0.05) 42%, transparent 68%);
  mix-blend-mode: screen; will-change: transform;
  opacity: 0; transition: opacity 0.45s ease;
}
.cursor-glow.on { opacity: 1; }

/* Testimonials: Sterne */
.stars { display: inline-flex; gap: 2px; color: var(--accent); }

/* ---- Cookie-Consent-Banner (Glas, schwebend) ------------------------------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  padding: 0.85rem; display: flex; justify-content: center;
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.cookie-banner.hide { opacity: 0; transform: translateY(16px); pointer-events: none; }
.cookie-card {
  max-width: 60rem; width: 100%;
  border-radius: 16px; padding: 1rem 1.15rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
}
.cookie-text { flex: 1 1 320px; font-size: 0.85rem; line-height: 1.55; color: #cfcfd4; }
.cookie-title {
  font-family: 'Space Mono', monospace; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.7rem; color: #fff; margin-bottom: 0.3rem;
}
.cookie-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 0.6rem; flex: 0 0 auto; }
.cookie-btn { min-height: 42px; padding: 0.6rem 1.15rem; font-size: 0.76rem; }
@media (max-width: 560px) {
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* Reduced-Transparency: Glas wird deckend (A11y / Nutzerpräferenz) */
@media (prefers-reduced-transparency: reduce) {
  .glass, .glass-accent, .site-nav > nav, .site-nav [data-mobile-menu],
  .btn-line, .btn-solid, .btn-live, [data-bill-toggle], .badge {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-nav > nav { background: #141417; }
  .site-nav [data-mobile-menu] { background: #141417; }
}

/* ---- EVERSPICE-Credit + Popup --------------------------------------------- */
.es-credit { cursor: pointer; transition: color 0.2s ease; }
.es-credit:hover { color: #d4d4d8; }
.es-credit b { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.es-credit:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.es-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: 1.25rem;
  background: rgba(8, 8, 11, 0.82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.es-popup.show { display: flex; }
.es-card {
  position: relative; max-width: 440px; width: 100%;
  border-radius: 18px; padding: 2.7rem 2.2rem 2.2rem; text-align: center; overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), #0e0e11;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: esPopIn 0.4s ease;
}
.es-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), #67e8f9);
}
.es-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 9px; background: none; border: 1px solid transparent;
  color: #a1a1aa; font-size: 1rem; cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.es-close:hover { color: #fff; border-color: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.05); }
.es-logo { height: 34px; width: auto; margin: 0 auto 0.9rem; display: block; }
.es-tagline {
  font-family: 'Space Mono', monospace; font-size: 0.66rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: #a1a1aa;
}
.es-divider { width: 48px; height: 2px; margin: 1.1rem auto; background: linear-gradient(90deg, var(--accent), #67e8f9); }
.es-project {
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem;
}
.es-text { color: #d4d4d8; font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.2rem; }
.es-services { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-bottom: 1.6rem; }
.es-tag {
  padding: 5px 13px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: 'Space Mono', monospace; font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #a1a1aa; transition: border-color 0.2s ease, color 0.2s ease;
}
.es-tag:hover { border-color: var(--accent); color: var(--accent); }
.es-card .btn { width: 100%; }
.es-hint {
  font-family: 'Space Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.1em; color: #71717a; margin-top: 1.1rem;
}
@keyframes esPopIn { from { opacity: 0; transform: scale(0.94) translateY(16px); } to { opacity: 1; transform: none; } }

/* ---- Reduced Motion -------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
