/* ============================================================
   EPPLE V3 — CYBERPUNK OVERLAY
   Wird NACH styles.css geladen und überschreibt das Designsystem.
   Türkis + Pink + Lime, harte Kanten, Neon-Glow, Grid, Glitch.
   ============================================================ */

/* ---------- Neon-Palette ---------- */
:root {
  --cy-bg:         #02060d;
  --cy-bg-2:       #06101c;
  --cy-bg-glass:   rgba(2, 6, 13, .82);
  --cy-cyan:       #009fff;
  --cy-cyan-2:     #00b4d8;
  --cy-cyan-glow:  rgba(0, 159, 255, .85);
  --cy-pink:       #ff10c8;
  --cy-pink-2:     #ff007a;
  --cy-pink-glow:  rgba(255, 16, 200, .85);
  --cy-lime:       #00ffe5;
  --cy-lime-glow:  rgba(0, 255, 229, .8);
  --cy-yellow:     #00ffe5;
  --cy-text:       #d6f8ff;
  --cy-text-dim:   #6f93a8;
  --cy-grid:       rgba(0, 159, 255, .055);
  --cy-grid-strong:rgba(0, 159, 255, .15);

  /* Brand-Aliase überschreiben */
  --c-veranstaltung: var(--cy-cyan);
  --c-streaming:     var(--cy-pink);
  --c-konferenz:     var(--cy-lime);
  --c-cyan:          var(--cy-cyan);
  --c-mint:          var(--cy-lime);
  --c-pink:          var(--cy-pink);
  --c-teal:          var(--cy-lime);
  --c-blue:          var(--cy-cyan);
  --c-bg:            var(--cy-bg);
  --c-bg-soft:       var(--cy-bg-2);
  --c-bg-card:       rgba(0, 159, 255, .03);
  --c-text:          var(--cy-text);
  --c-text-soft:     #afd9e6;
  --c-text-dim:      var(--cy-text-dim);
  --c-border:        rgba(0, 159, 255, .15);
  --radius:          0;
  --radius-lg:       0;
}

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

html { background: var(--cy-bg); }
body {
  background: var(--cy-bg) !important;
  color: var(--cy-text) !important;
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace !important;
  font-weight: 400;
  letter-spacing: .01em;
}

/* ---------- Globales Grid + Scanlines ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--cy-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--cy-grid) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: 1;
  animation: gridDrift 60s linear infinite;
}
@keyframes gridDrift {
  to { background-position: -1px -61px; }
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 2px,
    rgba(0,159,255,.02) 2px,
    rgba(0,159,255,.02) 3px
  );
  pointer-events: none;
  z-index: 2;
}
.site-header,
section,
footer { position: relative; z-index: 3; }

/* Sharp corners — global */
* { border-radius: 0 !important; }
/* Ausnahmen: Icons / Avatars / Dots / Logos */
.live-badge,
.cam-rec,
.cam-rec-ring,
.dot,
.slider-dots .dot,
.feat-icon svg circle,
.feat-icon svg ellipse,
.stream-icon svg circle,
.stream-icon svg ellipse,
.step-led,
.icon-card .ico,
.form-consent input[type="checkbox"],
input[type="checkbox"] {
  border-radius: 50% !important;
}
.slider-dots .dot.active { border-radius: 0 !important; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif !important;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
h1 {
  font-weight: 900;
  letter-spacing: -.005em;
}
.gradient-text {
  background: linear-gradient(120deg, var(--cy-cyan) 0%, var(--cy-pink) 50%, var(--cy-cyan) 100%) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;        /* shadow killt transparent-text → Glow via filter */
  filter:
    drop-shadow(0 0 6px var(--cy-cyan-glow))
    drop-shadow(0 0 14px rgba(255,16,200,.4));
}

/* Word-Akzente */
.word-veranstaltung {
  color: var(--cy-cyan) !important;
  text-shadow: 0 0 10px var(--cy-cyan-glow), 0 0 24px var(--cy-cyan-glow);
}
.word-streaming {
  color: var(--cy-pink) !important;
  text-shadow: 0 0 10px var(--cy-pink-glow), 0 0 24px var(--cy-pink-glow);
}
.word-konferenz {
  color: var(--cy-lime) !important;
  text-shadow: 0 0 10px var(--cy-lime-glow), 0 0 24px var(--cy-lime-glow);
}

/* ---------- Eyebrows: monospace mit // Prefix ---------- */
.eyebrow,
.ref-eyebrow {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 500 !important;
  color: var(--cy-cyan) !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 8px var(--cy-cyan-glow);
}
.eyebrow::before,
.ref-eyebrow::before {
  content: "// ";
  opacity: .65;
}
.eyebrow-line {
  color: var(--cy-cyan) !important;
  text-shadow: 0 0 8px var(--cy-cyan-glow);
}
.eyebrow-line::before {
  background: var(--cy-cyan) !important;
  box-shadow: 0 0 8px var(--cy-cyan-glow);
}
.eyebrow-streaming { color: var(--cy-pink) !important; text-shadow: 0 0 8px var(--cy-pink-glow); }
.eyebrow-streaming::before { background: var(--cy-pink) !important; box-shadow: 0 0 8px var(--cy-pink-glow); }
.eyebrow-konferenz { color: var(--cy-lime) !important; text-shadow: 0 0 8px var(--cy-lime-glow); }
.eyebrow-konferenz::before { background: var(--cy-lime) !important; box-shadow: 0 0 8px var(--cy-lime-glow); }

/* ---------- Header ---------- */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  padding: 1.1rem 0;
  transition: background var(--t), padding var(--t), backdrop-filter var(--t), border-color var(--t), box-shadow var(--t);
}
.site-header.scrolled {
  background: var(--cy-bg-glass) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 0 !important;
  border-bottom: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  padding: .7rem 0;
}
/* Belt-and-suspenders: gegen jegliche fremde Border-/Shadow-Quellen */
.site-header,
.site-header.scrolled,
.site-header::before,
.site-header::after,
.site-header.scrolled::before,
.site-header.scrolled::after {
  border: 0 !important;
  border-bottom: 0 !important;
  border-top: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}
/* Falls eine ::after-Linie vorhanden ist — wegblenden */
.site-header::after,
.site-header.scrolled::after { content: none !important; display: none !important; }

/* Desktop: Burger-Menü-Extras (Logo + Kontakt-Block) ausblenden */
@media (min-width: 981px) {
  .nav-links .nav-brand,
  .nav-links .nav-contact { display: none !important; }
}

/* Desktop: mehr Padding für die Navigation + größeres Logo */
@media (min-width: 981px) {
  .site-header {
    padding: 1.6rem 0 !important;
  }
  .site-header.scrolled {
    padding: 1.2rem 0 !important;
  }
  .site-header .container {
    padding-left: clamp(40px, 6vw, 120px) !important;
    padding-right: clamp(40px, 6vw, 120px) !important;
  }
  .logo {
    height: 64px !important;
  }
  .site-header.scrolled .logo {
    height: 54px !important;
    transition: height var(--t);
  }
  .logo { transition: height var(--t); }
  .nav-links {
    gap: 1.6rem !important;
    align-items: stretch;
  }
  .nav-links li { display: flex; align-items: center; }
  .nav-links a {
    padding: 1em 1.2em !important;
    display: flex;
    align-items: center;
  }
}
.nav-links a {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 600 !important;
  font-size: .82rem !important;
}
.nav-links a:hover { text-shadow: 0 0 10px currentColor; }
.nav-links a::after {
  background: currentColor !important;
  box-shadow: 0 0 8px currentColor;
}
/* Desktop-Nav: Hover/Active je Item in Brand-Farbe
   Achtung: JS injiziert .nav-brand als 1. Listen-Element →
   echte Nav-Items beginnen bei nth-child(2).
   2 Veranstaltung = Cyan/Blau · 3 Streaming = Pink · 4 Konferenz = Türkis
   5 Referenzen + 6 Kontakt bleiben Weiß */
@media (min-width: 981px) {
  .nav-links li:nth-child(2) a:hover, .nav-links li:nth-child(2) a.active { color: var(--cy-cyan) !important; text-shadow: 0 0 8px var(--cy-cyan-glow) !important; }
  .nav-links li:nth-child(3) a:hover, .nav-links li:nth-child(3) a.active { color: var(--cy-pink) !important; text-shadow: 0 0 8px var(--cy-pink-glow) !important; }
  .nav-links li:nth-child(4) a:hover, .nav-links li:nth-child(4) a.active { color: var(--cy-lime) !important; text-shadow: 0 0 8px var(--cy-lime-glow) !important; }
  .nav-links li:nth-child(5) a:hover, .nav-links li:nth-child(5) a.active,
  .nav-links li:nth-child(6) a:hover, .nav-links li:nth-child(6) a.active { color: #fff !important; text-shadow: 0 0 8px rgba(255,255,255,.65) !important; }
  /* Underline-Strich nimmt Item-Farbe */
  .nav-links li:nth-child(2) a:hover::after, .nav-links li:nth-child(2) a.active::after { background: var(--cy-cyan) !important; box-shadow: 0 0 6px var(--cy-cyan-glow); }
  .nav-links li:nth-child(3) a:hover::after, .nav-links li:nth-child(3) a.active::after { background: var(--cy-pink) !important; box-shadow: 0 0 6px var(--cy-pink-glow); }
  .nav-links li:nth-child(4) a:hover::after, .nav-links li:nth-child(4) a.active::after { background: var(--cy-lime) !important; box-shadow: 0 0 6px var(--cy-lime-glow); }
  .nav-links li:nth-child(5) a:hover::after, .nav-links li:nth-child(5) a.active::after,
  .nav-links li:nth-child(6) a:hover::after, .nav-links li:nth-child(6) a.active::after { background: #fff !important; box-shadow: 0 0 6px rgba(255,255,255,.6); }
  /* Fallback falls JS nicht läuft (kein .nav-brand vorhanden): direkt nth-child(1)-(5) */
  .nav-links:not(:has(.nav-brand)) li:nth-child(1) a:hover, .nav-links:not(:has(.nav-brand)) li:nth-child(1) a.active { color: var(--cy-cyan) !important; }
  .nav-links:not(:has(.nav-brand)) li:nth-child(2) a:hover, .nav-links:not(:has(.nav-brand)) li:nth-child(2) a.active { color: var(--cy-pink) !important; }
  .nav-links:not(:has(.nav-brand)) li:nth-child(3) a:hover, .nav-links:not(:has(.nav-brand)) li:nth-child(3) a.active { color: var(--cy-lime) !important; }
}
/* Mobile (Burger-Menü) behält die Pink-Hover-Variante */
@media (max-width: 980px) {
  .nav-links li:nth-child(2) a:hover, .nav-links li:nth-child(2) a.active,
  .nav-links li:nth-child(3) a:hover, .nav-links li:nth-child(3) a.active,
  .nav-links li:nth-child(4) a:hover, .nav-links li:nth-child(4) a.active,
  .nav-links li:nth-child(5) a:hover, .nav-links li:nth-child(5) a.active,
  .nav-links li:nth-child(6) a:hover, .nav-links li:nth-child(6) a.active { color: var(--cy-pink) !important; }
}

.menu-toggle {
  background: rgba(0,255,229,.06) !important;
  border: 1px solid #00ffe5 !important;
  border-radius: 4px !important;        /* quadratisch statt rund */
  box-shadow: 0 0 12px rgba(0,255,229,.55) !important;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after { background: #00ffe5 !important; box-shadow: 0 0 6px rgba(0,255,229,.55) !important; }
.nav-links { background: var(--cy-bg-glass) !important; }
.nav-links::before {
  background: linear-gradient(90deg,
    var(--cy-cyan) 0%, var(--cy-cyan) 33%,
    var(--cy-pink) 33%, var(--cy-pink) 66%,
    var(--cy-lime) 66%, var(--cy-lime) 100%) !important;
  box-shadow: 0 0 12px rgba(0,159,255,.35);
}

/* ---------- Hero ---------- */
.hero, .page-hero {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,159,255,.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(255,16,200,.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--cy-bg) 0%, #050913 100%) !important;
}
.hero h1, .page-hero h1 {
  text-shadow:
    0 0 8px var(--cy-cyan-glow),
    0 0 24px rgba(0,159,255,.4);
}

/* Glitch-Effekt für Hero-H1 mit data-text Attribut */
.hero h1[data-text],
.page-hero h1[data-text] {
  position: relative;
  display: inline-block;
}
.hero h1[data-text]::before,
.hero h1[data-text]::after,
.page-hero h1[data-text]::before,
.page-hero h1[data-text]::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.hero h1[data-text]::before,
.page-hero h1[data-text]::before {
  color: var(--cy-pink);                       /* obere Hälfte „Technik, die" → Pink */
  text-shadow: 0 0 6px var(--cy-pink-glow);
  animation: glitchTop 3.6s steps(2) infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  opacity: .85;
}
.hero h1[data-text]::after,
.page-hero h1[data-text]::after {
  color: var(--cy-lime);                       /* untere Hälfte „bewegt" → Türkis #00ffe5 */
  text-shadow: 0 0 14px var(--cy-lime-glow);
  animation: glitchBottomScaled 3.2s steps(2) infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 110%, 0 110%);
  opacity: 1;
  /* Skalierung: Türkis-Layer ragt sichtbar über „bewegt" hinaus */
  transform-origin: center 80%;
}
@keyframes glitchTop {
  0%, 86%, 100% { transform: translate(0); opacity: 0; }
  88%, 90%      { transform: translate(-3px, -2px); opacity: .85; }
  91%, 93%      { transform: translate(4px, 1px);   opacity: .85; }
  94%, 96%      { transform: translate(-2px, 0);    opacity: .85; }
}
@keyframes glitchBottom {
  0%, 88%, 100% { transform: translate(0); opacity: 0; }
  89%, 91%      { transform: translate(3px, 2px);   opacity: .85; }
  92%, 94%      { transform: translate(-3px, -1px); opacity: .85; }
  95%, 97%      { transform: translate(2px, 1px);   opacity: .85; }
}
/* Türkis-Glitch für „bewegt" — nur während Flicker sichtbar, deutlich größer */
@keyframes glitchBottomScaled {
  0%, 88%, 100% { transform: scale(1.55) translate(0);          opacity: 0; }
  89%, 91%      { transform: scale(1.65) translate(8px, 4px);   opacity: .95; }
  92%, 94%      { transform: scale(1.5)  translate(-8px, -4px); opacity: .95; }
  95%, 97%      { transform: scale(1.7)  translate(4px, 2px);   opacity: .95; }
}
/* Hero darf den großen Glitch nicht abschneiden */
.hero h1[data-text],
.page-hero h1[data-text] { overflow: visible !important; }
.hero h1[data-text]::after,
.page-hero h1[data-text]::after {
  overflow: visible !important;
  will-change: transform, opacity;
}

/* Mobile: Kategorie-Filter auf Referenzen-Seite ausblenden */
@media (max-width: 700px) {
  .refs-filters { display: none !important; }
}

/* ---------- Buttons mit Corner-Cuts ---------- */
.btn {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .15em !important;
  font-size: .85rem !important;
  clip-path: polygon(
    0 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% 100%,
    14px 100%,
    0 calc(100% - 14px)
  );
  padding: 1em 1.8em !important;
  position: relative;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position 600ms ease;
  pointer-events: none;
}
.btn:hover::before { background-position: -100% 0; }

.btn-primary {
  background: var(--cy-cyan) !important;
  color: var(--cy-bg) !important;
  box-shadow:
    0 0 0 1px var(--cy-cyan),
    0 0 20px var(--cy-cyan-glow),
    inset 0 0 12px rgba(255,255,255,.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--cy-cyan), 0 0 32px var(--cy-cyan-glow); }

.btn-solid-veranstaltung {
  background: var(--cy-cyan) !important;
  color: var(--cy-bg) !important;
  box-shadow: 0 0 0 1px var(--cy-cyan), 0 0 22px var(--cy-cyan-glow) !important;
}
.btn-solid-streaming {
  background: var(--cy-pink) !important;
  color: #fff !important;
  box-shadow: 0 0 0 1px var(--cy-pink), 0 0 22px var(--cy-pink-glow) !important;
}
.btn-solid-konferenz {
  background: var(--cy-lime) !important;
  color: var(--cy-bg) !important;
  box-shadow: 0 0 0 1px var(--cy-lime), 0 0 22px var(--cy-lime-glow) !important;
}
.btn-secondary,
.btn-outline {
  background: transparent !important;
  border: 0 !important;
  color: var(--cy-cyan) !important;
  box-shadow: inset 0 0 0 1.5px var(--cy-cyan), 0 0 14px rgba(0,159,255,.25);
  text-shadow: 0 0 6px var(--cy-cyan-glow);
}
.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(0,159,255,.08) !important;
  box-shadow: inset 0 0 0 1.5px var(--cy-cyan), 0 0 26px var(--cy-cyan-glow);
}
/* Streaming-Seite: „Services entdecken" als solider weißer Button (kein Border, schwarzer Text) */
.btn-solid-streaming + .btn-outline {
  background: #fff !important;
  color: #000 !important;
  border: 0 !important;
  box-shadow: 0 0 18px rgba(255,255,255,.25) !important;
  text-shadow: none !important;
}
.btn-solid-streaming + .btn-outline:hover {
  background: #fff !important;
  color: #000 !important;
  box-shadow: 0 0 28px rgba(255,255,255,.55) !important;
  transform: translateY(-2px);
}
.btn-ghost { color: var(--cy-cyan) !important; text-shadow: 0 0 6px var(--cy-cyan-glow); }

/* ---------- Sections: dunkler Grund + Grid ---------- */
.brand-section,
.services-section,
.stream-section,
.refs-section,
.faq-section,
.process-section,
.clients,
#contact,
.stats {
  background: linear-gradient(180deg, var(--cy-bg) 0%, var(--cy-bg-2) 50%, var(--cy-bg) 100%) !important;
  position: relative;
  z-index: 3;
}

/* Bleed-Section behält ihr Parallax-Bild, bekommt aber Cyber-Overlay
   via inset box-shadow (zuverlässiger als ::before) */
.bleed-section {
  position: relative !important;
  background-color: var(--cy-bg);
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  z-index: 3;
  /* Dunkles Overlay direkt im Box-Shadow — paintet IMMER über das background-image */
  box-shadow: inset 0 0 0 9999px rgba(8, 8, 12, 0.82) !important;
  isolation: isolate;
}
/* Pseudo-Element zusätzlich für noch mehr Sicherheit */
.bleed-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-color: rgba(8, 8, 12, 0.55) !important;
  background-image: none !important;
  z-index: 1 !important;
  pointer-events: none;
  display: block !important;
}
.bleed-section > .container,
.bleed-section .container {
  position: relative !important;
  z-index: 2 !important;
}
@media (max-width: 700px) {
  .bleed-section { background-attachment: scroll !important; }
}

/* Stats-Boxen in den Bleed-Sections: durchgehend Pink */
.bleed-section .stat-num,
.bleed-section .reveal:nth-child(2) .stat-num,
.bleed-stats .stat-num,
.bleed-stats .reveal:nth-child(2) .stat-num {
  background-color: var(--cy-pink) !important;
  color: #fff !important;
}
.bleed-section .stat-label,
.bleed-stats .stat-label {
  color: #fff !important;
}

/* Streaming-Bleed: Gelb mit 80% Opacity */
section.bleed-streaming .stat-num,
section.bleed-streaming .reveal .stat-num,
section.bleed-streaming .reveal:nth-child(2) .stat-num,
section.bleed-streaming .bleed-stats .stat-num,
section.bleed-streaming .bleed-stats > div .stat-num,
section.bleed-streaming .bleed-stats > div:nth-child(2) .stat-num {
  background-color: #00ffe5cc !important;
  color: var(--cy-bg) !important;
}

/* Flagship-Bleed (Startseite): Türkis mit schwarzer Schrift */
.bleed-flagship .stat-num,
.bleed-flagship .reveal:nth-child(2) .stat-num,
.bleed-flagship .bleed-stats .stat-num,
.bleed-flagship .bleed-stats .reveal:nth-child(2) .stat-num {
  background-color: var(--cy-cyan) !important;
  color: var(--cy-bg) !important;
}

/* Konferenz-Stats („Vielseitig einsetzbar"-Section): Lime mit 80% Opacity */
.konferenz-stats .stat-num,
.konferenz-stats .reveal .stat-num,
.konferenz-stats .reveal:nth-child(2) .stat-num {
  background-color: #00ffe5cc !important;
  color: var(--cy-bg) !important;
}

/* Konferenz-Bleed: lime mit 80% Opacity (für die Bleed-Section) */
section.bleed-konferenz .stat-num,
section.bleed-konferenz .reveal .stat-num,
section.bleed-konferenz .reveal:nth-child(2) .stat-num,
section.bleed-konferenz .bleed-stats .stat-num,
section.bleed-konferenz .bleed-stats > div .stat-num,
section.bleed-konferenz .bleed-stats > div:nth-child(2) .stat-num {
  background-color: #00ffe5cc !important;
  color: var(--cy-bg) !important;
}

/* ============================================================
   SECTION-BACKGROUNDS — animierte Blobs / Patterns pro Section
   ============================================================ */

/* Wiederverwendbare Keyframes */
@keyframes blobOrbit {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(40px, -30px) scale(1.15); }
  50%      { transform: translate(60px, 30px) scale(.9); }
  75%      { transform: translate(-20px, 40px) scale(1.05); }
}
@keyframes blobOrbitReverse {
  0%, 100% { transform: translate(0, 0) scale(1.1); }
  25%      { transform: translate(-50px, 40px) scale(.95); }
  50%      { transform: translate(-30px, -50px) scale(1.2); }
  75%      { transform: translate(30px, -20px) scale(1); }
}
@keyframes blobPulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .9;  transform: scale(1.15); }
}
@keyframes scanSweep {
  0%   { transform: translateY(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* SERVICES SECTION — Pink-Blob floating + zarte Cyan-Akzente */
.services-section {
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse, rgba(255,16,200,.18) 0%, transparent 60%);
  filter: blur(40px);
  animation: blobOrbit 22s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.services-section::after {
  content: "";
  position: absolute;
  bottom: -10%; left: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(0,159,255,.14) 0%, transparent 60%);
  filter: blur(40px);
  animation: blobOrbitReverse 28s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* PROCESS SECTION — Cyan + Lime alternierende Blobs */
.process-section {
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  top: -15%; left: -10%;
  width: 55%; height: 75%;
  background: radial-gradient(ellipse, rgba(0,159,255,.20) 0%, transparent 60%);
  filter: blur(50px);
  animation: blobOrbit 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.process-section::after {
  content: "";
  position: absolute;
  bottom: -15%; right: -10%;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse, rgba(0,255,229,.14) 0%, transparent 60%);
  filter: blur(50px);
  animation: blobOrbitReverse 30s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* REFS SECTION — Pink + Cyan in den oberen Ecken */
.refs-section {
  position: relative;
  overflow: hidden;
}
.refs-section::before {
  content: "";
  position: absolute;
  top: -10%; left: 0;
  width: 45%; height: 60%;
  background: radial-gradient(ellipse, rgba(255,16,200,.18) 0%, transparent 60%);
  filter: blur(45px);
  animation: blobPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.refs-section::after {
  content: "";
  position: absolute;
  top: -10%; right: 0;
  width: 45%; height: 60%;
  background: radial-gradient(ellipse, rgba(0,159,255,.18) 0%, transparent 60%);
  filter: blur(45px);
  animation: blobPulse 8s ease-in-out infinite;
  animation-delay: 4s;
  pointer-events: none;
  z-index: 0;
}

/* FAQ SECTION — sanfter horizontaler Scan-Beam + Lime-Glow */
.faq-section {
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 50%;
  background: radial-gradient(ellipse, rgba(0,255,229,.12) 0%, transparent 60%);
  filter: blur(50px);
  animation: blobPulse 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.faq-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,159,255,.4) 25%,
    rgba(255,16,200,.4) 50%,
    rgba(0,255,229,.4) 75%,
    transparent 100%);
  animation: scanSweep 8s linear infinite;
  pointer-events: none;
  z-index: 1;
  filter: blur(1px);
}

/* BRAND SECTION (Subpages-Leistungen/Lösungen) — Lime-Blob driftet */
.brand-section {
  position: relative;
  overflow: hidden;
}
.brand-section::before {
  content: "";
  position: absolute;
  bottom: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(0,255,229,.16) 0%, transparent 60%);
  filter: blur(50px);
  animation: blobOrbit 32s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.brand-section::after {
  content: "";
  position: absolute;
  top: -10%; left: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(0,159,255,.13) 0%, transparent 60%);
  filter: blur(45px);
  animation: blobOrbitReverse 26s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* STREAM SECTION (Streaming-Subpage) — Pink + Cyan Wechselblobs */
.stream-section {
  position: relative;
  overflow: hidden;
}
.stream-section::before {
  content: "";
  position: absolute;
  top: 10%; left: -10%;
  width: 55%; height: 70%;
  background: radial-gradient(ellipse, rgba(255,16,200,.18) 0%, transparent 60%);
  filter: blur(50px);
  animation: blobOrbit 24s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.stream-section::after {
  content: "";
  position: absolute;
  bottom: 5%; right: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(0,159,255,.16) 0%, transparent 60%);
  filter: blur(45px);
  animation: blobOrbitReverse 28s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Container überall über die Blobs */
.services-section > .container,
.process-section > .container,
.refs-section > .container,
.faq-section > .container,
.brand-section > .container,
.stream-section > .container {
  position: relative;
  z-index: 2;
}

/* CLIENTS — sanft animierte Akzent-Linie oben */
.clients {
  position: relative;
  overflow: hidden;
}
.clients::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--cy-cyan) 30%,
    var(--cy-pink) 50%,
    var(--cy-lime) 70%,
    transparent 100%);
  background-size: 200% 100%;
  animation: gradientShift 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}

/* Reduced Motion: alle Blob-Animationen aus */
@media (prefers-reduced-motion: reduce) {
  .services-section::before, .services-section::after,
  .process-section::before, .process-section::after,
  .refs-section::before, .refs-section::after,
  .faq-section::before, .faq-section::after,
  .brand-section::before, .brand-section::after,
  .stream-section::before, .stream-section::after,
  .clients::before { animation: none !important; }
}

/* Flat-Icons in icon-cards (Streaming/Konferenz) — eckig statt rund */
.icon-card .ico {
  font-size: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  /* Cyberpunk angular corners */
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}
.icon-card .ico svg {
  width: 28px;
  height: 28px;
  color: var(--cy-bg);
  stroke-width: 2;
}

/* Streaming-Bleed Buttons: angepasste Hover/Default-Farben */
/* Linker Button (Streaming anfragen / btn-solid-streaming): Hover wird weiß/schwarz */
.bleed-streaming .btn-primary:hover,
.bleed-streaming .btn-solid-streaming:hover {
  background: #fff !important;
  color: #000 !important;
  box-shadow:
    0 0 24px rgba(255,255,255,.4),
    0 6px 18px rgba(0,0,0,.35) !important;
  transform: translateY(-4px) scale(1.03) !important;
}

/* Rechter Button (Referenzen ansehen / btn-outline): Default weiß/schwarz, Hover Gelb */
.bleed-streaming .btn-secondary,
.bleed-streaming .btn-outline,
.bleed-streaming .btn-ghost {
  background: #fff !important;
  color: #000 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.bleed-streaming .btn-secondary:hover,
.bleed-streaming .btn-outline:hover,
.bleed-streaming .btn-ghost:hover {
  background: var(--cy-yellow) !important;
  color: var(--cy-bg) !important;
  box-shadow:
    0 0 24px rgba(0,255,229,.55),
    0 6px 18px rgba(0,0,0,.35) !important;
  transform: translateY(-4px) scale(1.03) !important;
}

/* ============================================================
   KNALLER-BUTTONS — Hover hebt sich stark ab
   ============================================================ */

/* Solid-Buttons: behalten ihre Farbe, bekommen 5px Pink-Border + Lift */
.btn-primary,
.btn-solid-veranstaltung,
.btn-solid-streaming,
.btn-solid-konferenz {
  border: 0 !important;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease !important;
}
.btn-primary:hover {
  background: var(--cy-cyan) !important;
  color: var(--cy-bg) !important;
  box-shadow:
    inset 0 0 0 5px var(--cy-pink),
    0 0 28px var(--cy-pink-glow),
    0 6px 18px rgba(0,0,0,.35) !important;
  transform: translateY(-4px) scale(1.03) !important;
  filter: none !important;
}
.btn-solid-veranstaltung:hover {
  background: var(--cy-cyan) !important;
  color: var(--cy-bg) !important;
  box-shadow:
    inset 0 0 0 5px var(--cy-pink),
    0 0 28px var(--cy-pink-glow),
    0 6px 18px rgba(0,0,0,.35) !important;
  transform: translateY(-4px) scale(1.03) !important;
  filter: none !important;
}
.btn-solid-streaming:hover {
  background: var(--cy-pink) !important;
  color: #fff !important;
  box-shadow:
    inset 0 0 0 5px var(--cy-yellow),
    0 0 28px rgba(0,255,229,.6),
    0 6px 18px rgba(0,0,0,.35) !important;
  transform: translateY(-4px) scale(1.03) !important;
  filter: none !important;
}
.btn-solid-konferenz:hover {
  background: var(--cy-lime) !important;
  color: var(--cy-bg) !important;
  box-shadow:
    inset 0 0 0 5px var(--cy-pink),
    0 0 28px var(--cy-pink-glow),
    0 6px 18px rgba(0,0,0,.35) !important;
  transform: translateY(-4px) scale(1.03) !important;
  filter: none !important;
}

/* Outline-Buttons (Pink-Border) → werden voll Pink mit 5px Gelb-Border */
.btn-secondary,
.btn-outline,
.btn-ghost,
.form-mailto-fallback {
  transition: all .25s cubic-bezier(.2,.7,.2,1) !important;
}
.btn-secondary:hover,
.btn-outline:hover,
.btn-ghost:hover,
.form-mailto-fallback:hover {
  background: #fff !important;
  color: #000 !important;
  box-shadow:
    0 0 24px rgba(255,255,255,.4),
    0 6px 18px rgba(0,0,0,.35) !important;
  text-shadow: none !important;
  transform: translateY(-4px) scale(1.03) !important;
}
.brand-bg, .stream-bg, .refs-bg, .process-bg, .faq-bg {
  background:
    radial-gradient(ellipse 60% 50% at 20% 25%, rgba(0,159,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 80% 70%, rgba(255,16,200,.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0,255,229,.10) 0%, transparent 65%) !important;
  filter: blur(60px) !important;
}

/* Eckige diagonale "Glitch"-Trennlinien zwischen Sections */
section + section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--cy-cyan) 25%,
    var(--cy-pink) 75%,
    transparent 100%);
  opacity: .35;
  box-shadow: 0 0 12px var(--cy-cyan-glow);
  z-index: 5;
}

/* ---------- Cards ---------- */
.service-card,
.feature-card,
.ref-card,
.icon-card,
.step,
.panel,
.contact-form {
  position: relative;
}

/* Karten in der Slider-Sektion: cyber-frame */
.service-card .service-visual {
  border: 1px solid var(--cy-cyan);
  box-shadow:
    0 0 0 4px var(--cy-bg),
    0 0 0 5px rgba(0,159,255,.4),
    0 0 30px rgba(0,159,255,.25);
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% 100%,
    18px 100%,
    0 calc(100% - 18px)
  );
}

/* Feature-Cards: nur top-border als neon line, gleicher Höhe, mehr Padding */
.feature-grid {
  align-items: stretch !important;
}
.feature-card,
.step {
  border-top: 1px solid var(--cy-cyan) !important;
  box-shadow: 0 -8px 24px -8px var(--cy-cyan-glow);
  padding: 2.4rem 2rem !important;
  background: linear-gradient(180deg, rgba(0,159,255,.04) 0%, transparent 60%);
  display: flex !important;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}
.feature-card .eyebrow,
.feature-card .stream-icon,
.feature-card .feat-icon {
  margin-bottom: 1.2rem !important;
}
.feature-card h3 {
  margin-bottom: 1.4rem !important;
  font-size: clamp(1.3rem, 2vw, 1.65rem) !important;
}
.feature-card > p {
  margin-bottom: 1.8rem !important;
  line-height: 1.65;
}
.feature-card ul {
  margin-top: auto !important;   /* Bullet-Liste an unteren Rand */
  padding-top: .5rem;
}
.feature-card ul li {
  padding: .65rem 0 .65rem 1.4rem !important;
}
.feature-card:nth-child(2),
.step:nth-child(2) {
  border-top-color: var(--cy-pink) !important;
  box-shadow: 0 -8px 24px -8px var(--cy-pink-glow);
  background: linear-gradient(180deg, rgba(255,16,200,.04) 0%, transparent 60%);
}
.feature-card:nth-child(3),
.step:nth-child(3) {
  border-top-color: var(--cy-lime) !important;
  box-shadow: 0 -8px 24px -8px var(--cy-lime-glow);
  background: linear-gradient(180deg, rgba(0,255,229,.04) 0%, transparent 60%);
}
.feature-card:nth-child(4),
.step:nth-child(4) {
  border-top-color: var(--cy-yellow) !important;
  box-shadow: 0 -8px 24px -8px rgba(0,255,229,.6);
}

/* Reference-Cards: cyber border */
.ref-card,
.ref-featured,
.ref-engagement {
  border: 1px solid var(--cy-cyan) !important;
  box-shadow: 0 0 20px rgba(0,159,255,.18);
  background: rgba(0,159,255,.02) !important;
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
}
.ref-card:hover,
.ref-featured:hover {
  border-color: var(--cy-pink) !important;
  box-shadow: 0 0 32px var(--cy-pink-glow);
}
.ref-flag {
  background: var(--cy-pink) !important;
  color: var(--cy-bg) !important;
  box-shadow: 0 0 20px var(--cy-pink-glow) !important;
  font-family: 'JetBrains Mono', monospace !important;
}
.ref-chip {
  background: rgba(0,159,255,.06) !important;
  border: 1px solid var(--cy-cyan) !important;
  color: var(--cy-cyan) !important;
  font-family: 'JetBrains Mono', monospace !important;
  text-shadow: 0 0 4px var(--cy-cyan-glow);
}

/* ---------- Stats ---------- */
.stats { border-top: 1px solid var(--cy-cyan); border-bottom: 1px solid var(--cy-cyan); box-shadow: 0 0 24px rgba(0,159,255,.18); }
.stat-num {
  background: linear-gradient(135deg, var(--cy-cyan), var(--cy-pink)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-family: 'Orbitron', sans-serif !important;
  filter: drop-shadow(0 0 10px var(--cy-cyan-glow));
}

/* ---------- Slider ---------- */
.slider-arrow {
  background: transparent !important;
  border: 1.5px solid var(--cy-cyan) !important;
  color: var(--cy-cyan) !important;
  box-shadow: 0 0 14px var(--cy-cyan-glow);
  backdrop-filter: none !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.slider-arrow:hover {
  background: var(--cy-cyan) !important;
  color: var(--cy-bg) !important;
  border-color: var(--cy-cyan) !important;
  box-shadow: 0 0 28px var(--cy-cyan-glow);
}
.slider-dots .dot {
  background: rgba(0,159,255,.25) !important;
}
.slider-dots .dot.active {
  background: linear-gradient(90deg, var(--cy-cyan), var(--cy-pink)) !important;
  box-shadow: 0 0 10px var(--cy-cyan-glow);
}

/* ---------- Process Steps ---------- */
.step-num {
  color: var(--cy-cyan) !important;
  font-family: 'Orbitron', monospace !important;
  text-shadow: 0 0 12px var(--cy-cyan-glow), 0 0 28px var(--cy-cyan-glow) !important;
}
.step:nth-child(2) .step-num { color: var(--cy-pink) !important; text-shadow: 0 0 12px var(--cy-pink-glow), 0 0 28px var(--cy-pink-glow) !important; }
.step:nth-child(3) .step-num { color: var(--cy-lime) !important; text-shadow: 0 0 12px var(--cy-lime-glow), 0 0 28px var(--cy-lime-glow) !important; }
.step:nth-child(4) .step-num { color: var(--cy-pink) !important; text-shadow: 0 0 12px var(--cy-pink-glow), 0 0 28px var(--cy-pink-glow) !important; }

/* Panels in Process: scharfe Glitch-Boxen */
.panel {
  background: rgba(0,159,255,.04) !important;
  border: 1px solid var(--cy-cyan) !important;
  box-shadow: 0 0 20px rgba(0,159,255,.15);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.panel-bar { background: var(--cy-cyan) !important; color: var(--cy-bg) !important; border-bottom: 0 !important; }
.panel-tag { color: var(--cy-bg) !important; text-shadow: none !important; font-weight: 800 !important; }
.panel-tag.live-tag { color: #fff !important; background: var(--cy-pink); padding: .2em .6em; }
.panel-tc { color: var(--cy-bg) !important; }
.step-list li { color: var(--cy-text-dim) !important; border-color: rgba(0,159,255,.1) !important; }
.step-list li b { color: var(--cy-cyan) !important; text-shadow: 0 0 6px var(--cy-cyan-glow); }
.step-list li b.ok { color: var(--cy-lime) !important; text-shadow: 0 0 6px var(--cy-lime-glow); }
.step-list li b.run { color: var(--cy-pink) !important; text-shadow: 0 0 6px var(--cy-pink-glow); }
.step-list li b.live { color: var(--cy-pink) !important; }
.step-list li b.standby { color: var(--cy-yellow) !important; }

/* ---------- Forms ---------- */
input, textarea {
  background: rgba(0,159,255,.04) !important;
  border: 1px solid var(--cy-cyan) !important;
  color: var(--cy-cyan) !important;
  font-family: 'JetBrains Mono', monospace !important;
}
input:focus, textarea:focus {
  background: rgba(0,159,255,.08) !important;
  box-shadow: 0 0 14px var(--cy-cyan-glow) !important;
  outline: none !important;
}
.form-field label {
  color: var(--cy-cyan) !important;
  font-family: 'JetBrains Mono', monospace !important;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid rgba(0,159,255,.15) !important; }
.faq-item[open] {
  background: linear-gradient(90deg, rgba(0,159,255,.04) 0%, rgba(255,16,200,.04) 100%) !important;
  box-shadow:
    0 0 0 1px var(--cy-cyan),
    0 0 40px rgba(0,159,255,.25),
    inset 0 0 30px rgba(0,159,255,.05) !important;
}
.faq-item summary { color: var(--cy-text) !important; font-family: 'Orbitron', sans-serif !important; }
.faq-item summary:hover,
.faq-item[open] summary { color: var(--cy-cyan) !important; text-shadow: 0 0 8px var(--cy-cyan-glow); }
.faq-item summary::after {
  border-color: var(--cy-cyan) !important;
  background-color: rgba(0,159,255,.08) !important;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(0deg, #000 0%, var(--cy-bg) 100%) !important;
  border-top: 1px solid var(--cy-cyan) !important;
  box-shadow: 0 -8px 30px rgba(0,159,255,.15);
}
.site-footer h4 { color: var(--cy-cyan) !important; text-shadow: 0 0 6px var(--cy-cyan-glow); }
.footer-col a:hover { color: var(--cy-pink) !important; text-shadow: 0 0 8px var(--cy-pink-glow); }
/* Social-Icons: eckig mit Corner-Cuts, Brand-Farben wie Hero-Kategorien
   Facebook = Cyan/Blau · LinkedIn = Pink · Instagram = Türkis */
.footer-socials a {
  width: 48px !important;
  height: 48px !important;
  border-radius: 0 !important;
  border: 1.5px solid;
  background: rgba(255,255,255,.03) !important;
  color: #fff !important;
  clip-path: polygon(
    0 0, calc(100% - 8px) 0, 100% 8px,
    100% 100%, 8px 100%, 0 calc(100% - 8px)
  );
  transition: all 220ms ease;
}
.footer-socials a svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff !important;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.45));
}
/* Pro Position Brand-Farbe */
.footer-socials a:nth-child(1) {
  border-color: var(--cy-cyan) !important;
  box-shadow: 0 0 14px rgba(0,159,255,.35) !important;
}
.footer-socials a:nth-child(2) {
  border-color: var(--cy-pink) !important;
  box-shadow: 0 0 14px rgba(255,16,200,.35) !important;
}
.footer-socials a:nth-child(3) {
  border-color: var(--cy-lime) !important;
  box-shadow: 0 0 14px rgba(0,255,229,.35) !important;
}
/* Hover: füllt sich in der jeweiligen Brand-Farbe */
.footer-socials a:nth-child(1):hover {
  background: var(--cy-cyan) !important;
  box-shadow: 0 0 22px var(--cy-cyan-glow) !important;
  transform: translateY(-3px);
}
.footer-socials a:nth-child(2):hover {
  background: var(--cy-pink) !important;
  box-shadow: 0 0 22px var(--cy-pink-glow) !important;
  transform: translateY(-3px);
}
.footer-socials a:nth-child(3):hover {
  background: var(--cy-lime) !important;
  box-shadow: 0 0 22px var(--cy-lime-glow) !important;
  transform: translateY(-3px);
}
.footer-socials a:hover svg {
  fill: #fff !important;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.7));
}
/* Türkis-Hover: dunkler Glyph für besseren Kontrast */
.footer-socials a:nth-child(3):hover svg {
  fill: var(--cy-bg) !important;
  filter: none !important;
}

/* ---------- Hero-Categories ---------- */
.hero-cat .cat-sq {
  box-shadow: 0 0 14px currentColor, 0 0 28px currentColor !important;
}
.hero-cat-veranstaltung .cat-sq { background: var(--cy-cyan) !important; color: var(--cy-cyan); }
.hero-cat-streaming .cat-sq     { background: var(--cy-pink) !important; color: var(--cy-pink); }
.hero-cat-konferenz .cat-sq     { background: var(--cy-lime) !important; color: var(--cy-lime); }
.hero-cat { font-family: 'JetBrains Mono', monospace !important; }
.hero-cat:hover { text-shadow: 0 0 10px currentColor; }

/* ---------- Live-Badge & Tech-Details ---------- */
.live-badge {
  background: var(--cy-pink) !important;
  box-shadow: 0 0 14px var(--cy-pink-glow) !important;
  font-family: 'JetBrains Mono', monospace !important;
}

/* ---------- Filter-Tabs (Referenzen) ---------- */
.refs-filter {
  border: 1px solid var(--cy-cyan) !important;
  background: transparent !important;
  color: var(--cy-cyan) !important;
  font-family: 'JetBrains Mono', monospace !important;
  text-transform: uppercase !important;
  letter-spacing: .12em;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.refs-filter:hover { background: rgba(0,159,255,.08) !important; box-shadow: 0 0 14px var(--cy-cyan-glow); }
.refs-filter.active {
  background: var(--cy-pink) !important;
  border-color: var(--cy-pink) !important;
  color: #fff !important;
  box-shadow: 0 0 22px var(--cy-pink-glow) !important;
}

/* ---------- Logo-Marquee — ohne Rahmen/Glow ---------- */
.clients-label {
  color: var(--cy-cyan) !important;
  text-shadow: 0 0 6px var(--cy-cyan-glow);
}
.client-logo {
  filter: brightness(1.4) !important;
}
.client-logo:hover {
  filter: brightness(1.6) !important;
}
/* Per-Logo Größen-Tuning (Wordmark-Ausgleich) */
.client-logo[src*="domus"]              { height: 32px !important; }
.client-logo[src*="alb-event"]          { height: 64px !important; }
.client-logo[src*="stadt-sindelfingen"] { height: 60px !important; }
/* Apleona & BWcon haben hohen viewBox-Padding → optisch hochziehen */
.client-logo[src*="apleona" i]          { height: 60px !important; }
.client-logo[src*="bwcon"]              { height: 56px !important; }
@media (max-width: 700px) {
  .client-logo[src*="domus"]              { height: 26px !important; }
  .client-logo[src*="alb-event"]          { height: 52px !important; }
  .client-logo[src*="stadt-sindelfingen"] { height: 48px !important; }
  .client-logo[src*="apleona" i]          { height: 48px !important; }
  .client-logo[src*="bwcon"]              { height: 46px !important; }
}

/* ---------- Scroll-Hint ---------- */
.scroll-hint {
  color: var(--cy-cyan) !important;
  text-shadow: 0 0 8px var(--cy-cyan-glow);
}
.scroll-hint::after {
  background: linear-gradient(to bottom, var(--cy-cyan), transparent) !important;
  box-shadow: 0 0 6px var(--cy-cyan-glow);
}

/* ---------- Selection ---------- */
::selection {
  background: var(--cy-pink);
  color: var(--cy-bg);
  text-shadow: none;
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--cy-pink) !important;
  outline-offset: 3px;
  box-shadow: 0 0 14px var(--cy-pink-glow);
}

/* ---------- Reduced Motion: Glitch ab ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero h1[data-text]::before,
  .hero h1[data-text]::after,
  .page-hero h1[data-text]::before,
  .page-hero h1[data-text]::after { animation: none !important; opacity: 0 !important; }
  body::before { animation: none !important; }
}

/* ============================================================
   RETRO-FUTURE PASS — Glow dezenter, Pink als universeller Hover
   ============================================================ */

/* Glow allgemein zurückschrauben */
.word-veranstaltung { text-shadow: 0 0 4px var(--cy-cyan-glow) !important; }
.word-streaming     { text-shadow: 0 0 4px var(--cy-pink-glow) !important; }
.word-konferenz     { text-shadow: 0 0 4px var(--cy-lime-glow) !important; }

.eyebrow,
.ref-eyebrow,
.eyebrow-line,
.eyebrow-streaming,
.eyebrow-konferenz {
  text-shadow: 0 0 3px currentColor !important;
}
.eyebrow-line::before          { box-shadow: 0 0 4px currentColor !important; }

.hero h1, .page-hero h1 {
  text-shadow: 0 0 4px var(--cy-cyan-glow), 0 0 10px rgba(0,159,255,.25) !important;
}
.gradient-text {
  filter:
    drop-shadow(0 0 3px var(--cy-cyan-glow))
    drop-shadow(0 0 8px rgba(255,16,200,.25)) !important;
}

.step-num {
  text-shadow: 0 0 5px currentColor, 0 0 12px currentColor !important;
}

/* Buttons: weniger Glow */
.btn-primary {
  box-shadow: 0 0 0 1px var(--cy-cyan), 0 0 10px rgba(0,159,255,.4) !important;
}
.btn-solid-veranstaltung { box-shadow: 0 0 0 1px var(--cy-cyan), 0 0 10px rgba(0,159,255,.4) !important; }
.btn-solid-streaming     { box-shadow: 0 0 0 1px var(--cy-pink), 0 0 10px rgba(255,16,200,.4) !important; }
.btn-solid-konferenz     { box-shadow: 0 0 0 1px var(--cy-lime), 0 0 10px rgba(0,255,229,.35) !important; }
.btn-secondary,
.btn-outline {
  box-shadow: inset 0 0 0 1.5px var(--cy-cyan), 0 0 6px rgba(0,159,255,.18) !important;
}

/* Cards: weniger Glow + Border subtiler */
.service-card .service-visual {
  box-shadow:
    0 0 0 4px var(--cy-bg),
    0 0 0 5px rgba(0,159,255,.3),
    0 0 14px rgba(0,159,255,.15) !important;
}
.ref-card,
.ref-featured,
.ref-engagement {
  box-shadow: 0 0 10px rgba(0,159,255,.08) !important;
}
.panel {
  box-shadow: 0 0 10px rgba(0,159,255,.08) !important;
}
.feature-card,
.step {
  box-shadow: 0 -4px 14px -8px var(--cy-cyan-glow) !important;
}
.feature-card:nth-child(2),
.step:nth-child(2) { box-shadow: 0 -4px 14px -8px var(--cy-pink-glow) !important; }
.feature-card:nth-child(3),
.step:nth-child(3) { box-shadow: 0 -4px 14px -8px var(--cy-lime-glow) !important; }
.feature-card:nth-child(4),
.step:nth-child(4) { box-shadow: 0 -4px 14px -8px rgba(0,255,229,.4) !important; }

.live-badge       { box-shadow: 0 0 8px var(--cy-pink-glow) !important; }
.ref-flag         { box-shadow: 0 0 10px var(--cy-pink-glow) !important; }
.menu-toggle      { box-shadow: 0 0 6px rgba(0,255,229,.55) !important; border-radius: 4px !important; position: relative !important; }
/* Beim Öffnen: 3-Linien-Burger → Pfeil nach unten */
.menu-toggle.open span,
.menu-toggle.open span::before,
.menu-toggle.open span::after {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}
.menu-toggle.open::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ffe5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 60% 60% !important;
  filter: drop-shadow(0 0 4px rgba(0,255,229,.7)) !important;
}
.site-header.scrolled { box-shadow: 0 0 14px rgba(0,159,255,.10), 0 0 0 1px rgba(0,159,255,.05) !important; }
.site-footer      { box-shadow: 0 -4px 14px rgba(0,159,255,.08) !important; }
.stats            { box-shadow: 0 0 12px rgba(0,159,255,.08) !important; }
.stat-num         { filter: drop-shadow(0 0 4px var(--cy-cyan-glow)) !important; }
.refs-filter      { box-shadow: none !important; }
.refs-filter.active { box-shadow: 0 0 10px var(--cy-pink-glow) !important; }

/* Eckigere Cuts: dezenter */
.btn         { clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)) !important; }
.service-card .service-visual,
.ref-card, .ref-featured, .ref-engagement {
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px)) !important;
}
.panel       { clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important; }
.refs-filter { clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px)) !important; }
.slider-arrow{ clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px)) !important; }

/* Grid weniger sichtbar — Retro-Feel */
:root {
  --cy-grid: rgba(0, 159, 255, .035);
}
body::before { background-size: 80px 80px !important; opacity: .7; }
body::after  { opacity: .55; }

/* ============================================================
   UNIVERSELLER PINK-HOVER auf ALLES Klickbare
   ============================================================ */

/* Nav-Hover: Desktop hat je-Item-Brand-Farben weiter oben definiert;
   Mobile bekommt hier den klassischen Pink-Hover */
@media (max-width: 980px) {
  .nav-links li:nth-child(1) a:hover,
  .nav-links li:nth-child(2) a:hover,
  .nav-links li:nth-child(3) a:hover,
  .nav-links li:nth-child(4) a:hover,
  .nav-links li:nth-child(5) a:hover,
  .nav-links a:hover {
    color: var(--cy-pink) !important;
    text-shadow: 0 0 6px var(--cy-pink-glow) !important;
  }
  .nav-links a::after,
  .nav-links a:hover::after,
  .nav-links a.active::after {
    background: var(--cy-pink) !important;
    box-shadow: 0 0 6px var(--cy-pink-glow);
  }
}

/* Hero-Categories pink hover */
.hero-cat:hover { color: var(--cy-pink) !important; text-shadow: 0 0 6px var(--cy-pink-glow) !important; }
.hero-cat:hover .cat-sq {
  background: var(--cy-pink) !important;
  color: var(--cy-pink);
  box-shadow: 0 0 10px var(--cy-pink-glow), 0 0 18px var(--cy-pink-glow) !important;
  transform: scale(1.18);
}

/* Buttons hover: alle wandern Richtung Pink */
.btn-primary:hover,
.btn-solid-veranstaltung:hover,
.btn-solid-konferenz:hover {
  background: var(--cy-pink) !important;
  color: #fff !important;
  box-shadow: 0 0 0 1px var(--cy-pink), 0 0 14px var(--cy-pink-glow) !important;
  transform: translateY(-2px);
}
.btn-solid-streaming:hover {
  background: var(--cy-pink) !important;
  filter: brightness(1.15);
  box-shadow: 0 0 0 1px var(--cy-pink), 0 0 18px var(--cy-pink-glow) !important;
  transform: translateY(-2px);
}
.btn-secondary:hover,
.btn-outline:hover,
.btn-ghost:hover,
.form-mailto-fallback:hover {
  background: #fff !important;
  color: #000 !important;
  box-shadow:
    0 0 24px rgba(255,255,255,.4),
    0 6px 18px rgba(0,0,0,.35) !important;
  text-shadow: none !important;
  transform: translateY(-4px) scale(1.03) !important;
}

/* Card-Hover (Service / Referenzen / Steps / Icons) */
.service-card:hover .service-visual {
  box-shadow:
    0 0 0 4px var(--cy-bg),
    0 0 0 5px rgba(255,16,200,.55),
    0 0 16px rgba(255,16,200,.30) !important;
}
.ref-card:hover,
.ref-featured:hover,
.ref-engagement:hover {
  border-color: var(--cy-pink) !important;
  box-shadow: 0 0 14px rgba(255,16,200,.25) !important;
}
.feature-card:hover,
.step:hover {
  border-top-color: var(--cy-pink) !important;
  box-shadow: 0 -4px 14px -6px var(--cy-pink-glow) !important;
}

/* FAQ open + hover pink */
.faq-item summary:hover,
.faq-item[open] summary {
  color: var(--cy-pink) !important;
  text-shadow: 0 0 5px var(--cy-pink-glow) !important;
}
.faq-item summary:hover::after,
.faq-item[open] summary::after {
  border-color: var(--cy-pink) !important;
  background-color: rgba(255,16,200,.1) !important;
}
.faq-item[open] {
  background: linear-gradient(90deg, rgba(255,16,200,.05) 0%, rgba(0,159,255,.03) 100%) !important;
  box-shadow:
    0 0 0 1px var(--cy-pink),
    0 0 18px rgba(255,16,200,.20) !important;
}

/* Footer Spalten-Links hover pink */
.footer-col a:hover { color: var(--cy-pink) !important; text-shadow: 0 0 5px var(--cy-pink-glow) !important; }
.footer-bottom a:hover { color: var(--cy-pink) !important; }

/* Slider-Arrows hover pink */
.slider-arrow:hover {
  background: var(--cy-pink) !important;
  color: var(--cy-bg) !important;
  border-color: var(--cy-pink) !important;
  box-shadow: 0 0 16px var(--cy-pink-glow) !important;
}
.slider-dots .dot:hover { background: var(--cy-pink) !important; box-shadow: 0 0 8px var(--cy-pink-glow); }

/* Mobile Burger-Menu: alle Items pink hovern */
@media (max-width: 980px) {
  .nav-links li:nth-child(1) a:hover,
  .nav-links li:nth-child(2) a:hover,
  .nav-links li:nth-child(3) a:hover,
  .nav-links li:nth-child(4) a:hover,
  .nav-links li:nth-child(5) a:hover { color: var(--cy-pink) !important; }
  .nav-links li:nth-child(1) a:hover::before,
  .nav-links li:nth-child(2) a:hover::before,
  .nav-links li:nth-child(3) a:hover::before,
  .nav-links li:nth-child(4) a:hover::before,
  .nav-links li:nth-child(5) a:hover::before { color: var(--cy-pink) !important; }
}

/* Form Submit hover pink */
.form-submit:hover { background: var(--cy-pink) !important; color: #fff !important; box-shadow: 0 0 0 1px var(--cy-pink), 0 0 14px var(--cy-pink-glow) !important; }
.form-mailto-fallback:hover { color: var(--cy-pink) !important; box-shadow: inset 0 0 0 1.5px var(--cy-pink) !important; }

/* Client-Logos hover pink */
.client-logo:hover {
  filter: brightness(1.4) drop-shadow(0 0 6px var(--cy-pink-glow)) !important;
}

/* Marquee-Track ohne Border */
.logo-marquee {
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Logo-Section dunkler abheben */
.clients {
  background: linear-gradient(180deg, #02040a 0%, #03060f 50%, #02040a 100%) !important;
  box-shadow:
    inset 0 12px 24px -12px rgba(0,0,0,.7),
    inset 0 -12px 24px -12px rgba(0,0,0,.7) !important;
  padding: 5rem 0 !important;
}

/* ============================================================
   RETRO-VIBE — VHS-Tint, weichere Farben, weniger Sat
   ============================================================ */
:root {
  --cy-bg:     #06091a;   /* tieferes Blau-Schwarz statt fast-Schwarz */
  --cy-bg-2:   #0c1430;   /* Retro-Synthwave-Hintergrund */
  --cy-bg-glass: rgba(6, 9, 26, .85);
}
body { background: var(--cy-bg) !important; }
.hero, .page-hero {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,159,255,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(255,16,200,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--cy-bg) 0%, #0a1230 100%) !important;
}

/* Startseite-Hero: Video voll im Hintergrund, Text mittig drüber */
.hero {
  position: relative !important;
  min-height: 100vh !important;
  overflow: hidden !important;
}
.hero-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: .45 !important;
  z-index: 0 !important;
  display: block !important;
  flex: none !important;
}
.hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0,159,255,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255,16,200,.14) 0%, transparent 50%),
    linear-gradient(180deg, rgba(2,6,13,.40) 0%, rgba(2,6,13,.85) 100%) !important;
  z-index: 1 !important;
}
.hero .hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;   /* Flex-Item soll volle .hero-Breite einnehmen — sonst rutscht der ganze Block links */
}
.hero .scroll-hint { z-index: 2; }
@media (max-width: 700px) {
  .hero { min-height: 90vh !important; }
  /* Hero auf Mobile als Spalte, Text weiter unten damit mehr Video sichtbar ist */
  .hero {
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding-bottom: 9rem !important;  /* Platz für Stats-Bar unten */
  }
  .hero > .container,
  .hero .hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Page-Hero (Subpages): Text deutlich nach unten — mehr Video oben sichtbar */
  .page-hero {
    min-height: 90vh !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding-top: 5rem !important;
    padding-bottom: 2rem !important;
  }
  .page-hero > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  /* eyebrow & H1 nicht oben anpinnen — sollen mit nach unten rutschen */
  .page-hero .hero-content { margin-top: auto !important; }
  /* Subpages auf Mobile: Hero-Content zentrieren (Desktop bleibt linksbündig) */
  .page-hero-left,
  .page-hero-left .hero-content { text-align: center !important; }
  .page-hero-left h1,
  .page-hero-left .hero-lead {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .page-hero-left .hero-ctas { justify-content: center !important; }
  /* Buttons auf Mobile ~25% schmäler, weiter mittig */
  .hero-ctas,
  .page-hero .hero-ctas,
  .page-hero-left .hero-ctas {
    width: 75% !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-ctas .btn,
  .page-hero .hero-ctas .btn,
  .page-hero-left .hero-ctas .btn {
    width: 100% !important;
  }
  /* Scroll-Hint auf Mobile ausblenden — überlappt sonst mit Buttons/Stats */
  .hero .scroll-hint { display: none !important; }
  /* Logo etwas größer, Burger kompakter */
  .site-header .logo { height: 52px !important; }
  .menu-toggle { width: 38px !important; height: 38px !important; }
  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after { width: 18px !important; }
}

/* ============================================================
   MOBILE BURGER-MENU — fällt von oben herein + Adresse unten
   ============================================================ */
@media (max-width: 980px) {
  /* Statt slide-from-right: fall-from-top */
  .nav-links {
    transform: translateY(-100%) !important;
    transition:
      transform 460ms cubic-bezier(.6, 0, .2, 1),
      visibility 0s 460ms !important;
  }
  .nav-links.open {
    transform: translateY(0) !important;
    transition:
      transform 520ms cubic-bezier(.16, 1, .3, 1),
      visibility 0s !important;
  }

  /* Alte CSS-only ::after-Kontaktinfo komplett ausschalten — wird durch
     echtes HTML-Element .nav-contact (per JS injiziert) ersetzt */
  .nav-links::after { content: none !important; display: none !important; }
  /* Brand-Akzent-Linie oben im Burger raus */
  .nav-links::before { display: none !important; content: none !important; }

  /* Durch das eingefügte .nav-brand wurde Kontakt zum 6. Listen-Item —
     der styles.css-Stagger reveal nur bis nth-child(5). Hier nachholen: */
  .nav-links.open li:nth-child(6) a {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition-delay: 600ms;
  }

  /* Epple Logo oben im Burger-Menü */
  .nav-brand {
    position: absolute !important;
    top: 1.6rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important;
    border: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: flex-start !important;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 400ms ease 250ms, transform 400ms ease 250ms;
  }
  .nav-links.open .nav-brand { opacity: 1; transform: translateY(0); }
  .nav-brand img {
    height: 52px !important;
    width: auto !important;
    max-width: none !important;
    display: block !important;
  }
  .nav-brand::before,
  .nav-brand::after { content: none !important; display: none !important; }

  /* Kontakt-Block unten im offenen Menü — linksbündig */
  .nav-contact {
    position: absolute !important;
    bottom: 2rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important;
    border: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .9rem !important;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 400ms ease 500ms, transform 400ms ease 500ms;
  }
  .nav-links.open .nav-contact { opacity: 1; transform: translateY(0); }
  /* Wichtig: die globalen .nav-links a Stagger-Regeln (opacity:0, translateX)
     dürfen die Kontakt-Links NICHT ausblenden */
  .nav-contact .nav-contact-link,
  .nav-contact .nav-contact-addr {
    display: inline-flex !important;
    align-items: center !important;
    gap: .55rem !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: .85rem !important;
    letter-spacing: .04em !important;
    text-transform: none !important;
    font-weight: 500 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    background: none !important;
    border: 0 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    justify-content: flex-start !important;
    width: auto !important;
  }
  .nav-contact .nav-contact-link::before,
  .nav-contact .nav-contact-link::after,
  .nav-contact .nav-contact-addr::before,
  .nav-contact .nav-contact-addr::after { content: none !important; display: none !important; }
  .nav-contact .nav-contact-link svg,
  .nav-contact .nav-contact-addr svg {
    flex-shrink: 0;
    color: #00ffe5;
    filter: drop-shadow(0 0 4px rgba(0,255,229,.6));
  }
  .nav-contact .nav-contact-link:hover { color: #00ffe5 !important; }
  .nav-contact .nav-contact-addr { text-align: left; align-items: flex-start !important; }
  .nav-contact .nav-contact-addr span { display: inline-block; }
}
.brand-section,
.services-section,
.stream-section,
.refs-section,
.faq-section,
.process-section,
.clients,
#contact,
.stats {
  background: linear-gradient(180deg, var(--cy-bg) 0%, #0a1230 50%, var(--cy-bg) 100%) !important;
}

/* Retro-Sun: kleiner Horizont-Glow am Bottom des Hero */
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 200px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%,
    rgba(255,16,200,.18) 0%,
    rgba(0,159,255,.10) 35%,
    transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero > *, .page-hero > * { position: relative; z-index: 2; }

/* Sektion-Trennlinien dünner */
section + section::before {
  opacity: .22 !important;
  box-shadow: 0 0 6px var(--cy-cyan-glow) !important;
}

/* Hero-Stats rechts an der Seite — vertikal gestapelt */
.hero-stats {
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 5vw, 4rem);
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.6rem;
  pointer-events: none;
  max-width: 220px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .35rem;
  pointer-events: auto;
}
.hero-stat .stat-label {
  color: rgba(255,255,255,.88) !important;
  font-family: 'JetBrains Mono', monospace !important;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem !important;
  margin: 0 !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
  text-align: right;
}
.hero-stat .stat-num,
.hero-stats .hero-stat .stat-num,
section.hero .hero-stats .hero-stat .stat-num,
body section.hero .hero-stats .hero-stat .stat-num {
  font-size: clamp(1.4rem, 2.4vw, 2rem) !important;
  margin-bottom: 0 !important;
  padding: .15em .55em .08em !important;
  background-color: #00ffe5cc !important;
  background-image: none !important;
  color: var(--cy-bg) !important;
}

/* Generische .stats Section nicht mehr genutzt — falls noch da, ausblenden */
.stats { display: none !important; }

/* Auf schmalen Screens: zurück nach unten als horizontale Bar */
@media (max-width: 980px) {
  .hero-stats {
    position: absolute;
    top: auto;
    transform: none;
    left: 0;
    right: 0;
    bottom: 5rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: none;
  }
  .hero-stat {
    align-items: center;
  }
  .hero-stat .stat-label { text-align: center; }
}
@media (max-width: 700px) {
  .hero-stats { bottom: 4.5rem; gap: 1rem; }
  .hero-stat .stat-label { font-size: .62rem !important; }
  .hero-stat .stat-num { font-size: 1.2rem !important; }
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,159,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,159,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.stats > .container { position: relative; z-index: 1; }

/* Stat-Zahlen als Pop-Boxen — gerade, ohne Border/Shadow */
.stat-num {
  background: none !important;
  -webkit-background-clip: initial !important;
          background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  font-family: 'Orbitron', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -.02em;
  filter: none !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  display: inline-block;
  padding: .25em .55em .15em;
  line-height: 1;
  margin-bottom: 1rem;
  /* Gelbe Box, schwarze Zahl */
  background-color: var(--cy-yellow) !important;
  color: var(--cy-bg) !important;
}
.stats .reveal:nth-child(2) .stat-num {
  /* Pinke Box, weiße Zahl */
  background-color: var(--cy-pink) !important;
  color: #fff !important;
}
.stat-label {
  color: var(--cy-text) !important;
  font-family: 'JetBrains Mono', monospace !important;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem !important;
  margin-top: .8rem;
}

/* Process-Boxen: weniger Gap, mehr inneres Padding */
.process-grid {
  gap: 1.2rem !important;
}
.step {
  padding: 1.8rem 1.5rem !important;
  background: linear-gradient(180deg, rgba(0,159,255,.04) 0%, transparent 60%);
}
.step:nth-child(2) { background: linear-gradient(180deg, rgba(255,16,200,.04) 0%, transparent 60%); }
.step:nth-child(3) { background: linear-gradient(180deg, rgba(0,255,229,.04) 0%, transparent 60%); }
.step:nth-child(4) { background: linear-gradient(180deg, rgba(0,255,229,.04) 0%, transparent 60%); }

/* Mehr Luft im Panel selbst */
.panel-bar  { padding: .65rem 1rem !important; }
.step-list  { padding: .6rem 1rem 1rem !important; }
.step-list li { padding: .65rem 0 !important; }

/* Sekundäre/Outline-Buttons: SOLID Pink im Default + Gelb-Border beim Hover */
.btn-secondary,
.btn-outline,
.btn-ghost,
.form-mailto-fallback {
  background: var(--cy-pink) !important;
  color: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* ============================================================
   "BEWEGT" — Türkis als Basis, Pink als Blink-Akzent
   ============================================================ */
.gradient-text {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
          background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
  display: inline-block;
  color: var(--cy-cyan) !important;
  animation: bewegtColorShift 6s ease-in-out infinite;
}

@keyframes bewegtColorShift {
  0%, 100% {
    color: var(--cy-cyan);
    text-shadow: 0 0 6px var(--cy-cyan-glow), 0 0 14px rgba(0,159,255,.35);
  }
  25% {
    color: var(--cy-pink);
    text-shadow: 0 0 8px var(--cy-pink-glow), 0 0 18px rgba(255,16,200,.45);
  }
  50% {
    color: var(--cy-cyan);
    text-shadow: 0 0 10px var(--cy-cyan-glow), 0 0 22px rgba(0,159,255,.5);
  }
  75% {
    color: var(--cy-pink);
    text-shadow: 0 0 8px var(--cy-pink-glow), 0 0 18px rgba(255,16,200,.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-text { animation: none !important; color: var(--cy-cyan) !important; text-shadow: 0 0 6px var(--cy-cyan-glow) !important; }
}

/* Hero-Stack: zwei Zeilen, untere Zeile groß */
.hero h1.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1em;
  line-height: 1;
  letter-spacing: -.01em !important;
}
.hero-line-small {
  font-size: clamp(2.1rem, 4.3vw, 3.8rem);
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .92;
}
.hero-line-big {
  font-size: clamp(4.4rem, 9.6vw, 8.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  display: inline-block;
}
@media (max-width: 700px) {
  .hero-line-small { font-size: clamp(1.5rem, 6vw, 2.3rem); }
  .hero-line-big   { font-size: clamp(3rem, 13.5vw, 4.5rem); }
}

/* ============================================================
   ULTRA-CYBER SECTION DIVIDERS — Comic + Glitch
   ============================================================ */

.cyber-divider {
  position: relative;
  width: 100%;
  z-index: 8;
  margin: 0;
  pointer-events: none;
}

/* TYPE 1: Warning-Tape (diagonal Pink/Black Stripes, animated) */
.cyber-divider.tape {
  height: 34px;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--cy-pink)    0 16px,
      var(--cy-bg)     16px 32px
    );
  background-size: 45px 100%;
  border-top: 2px solid var(--cy-cyan);
  border-bottom: 2px solid var(--cy-cyan);
  box-shadow:
    0 0 8px var(--cy-cyan-glow),
    inset 0 0 16px rgba(0,159,255,.12);
  animation: tapeRoll 6s linear infinite;
}
@keyframes tapeRoll {
  to { background-position: 45px 0; }
}

/* TYPE 2: Glitch-Break-Label (// SYSTEM_BREAK >>) */
.cyber-divider.glitch {
  padding: 2.2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,159,255,.06) 0%, transparent 70%);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cy-cyan);
  position: relative;
}
.cyber-divider.glitch::before,
.cyber-divider.glitch::after {
  content: "";
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--cy-cyan) 50%,
    transparent 100%);
  box-shadow: 0 0 6px var(--cy-cyan-glow);
}
.cyber-divider.glitch .label {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  text-shadow: 0 0 6px var(--cy-cyan-glow);
  white-space: nowrap;
}
.cyber-divider.glitch .label::after {
  content: "_";
  color: var(--cy-pink);
  animation: blinkCaret 1s steps(2) infinite;
  text-shadow: 0 0 8px var(--cy-pink-glow);
}
@keyframes blinkCaret { 50% { opacity: 0; } }

/* TYPE 3: Scan-Beam (Animated 4px line, sweeping highlight) */
.cyber-divider.beam {
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--cy-cyan) 25%,
    var(--cy-pink) 50%,
    var(--cy-lime) 75%,
    transparent 100%);
  box-shadow: 0 0 14px var(--cy-cyan-glow), 0 0 24px rgba(255,16,200,.4);
  overflow: hidden;
}
.cyber-divider.beam::after {
  content: "";
  position: absolute;
  top: 0; left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.9) 50%,
    transparent 100%);
  animation: beamSweep 3.2s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes beamSweep {
  0%, 100% { left: -30%; }
  50%      { left: 100%; }
}

/* TYPE 4: Comic-Burst (POW!-Stern mit rotierendem Strahl) */
.cyber-divider.burst {
  height: 120px;
  position: relative;
  margin: -1px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cy-bg);
  pointer-events: none;
}
.cyber-divider.burst .star {
  position: relative;
  width: 200px;
  height: 200px;
}
.cyber-divider.burst .star::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cy-pink);
  clip-path: polygon(
    50% 0%, 60% 28%, 92% 25%, 70% 50%,
    98% 65%, 70% 70%, 80% 100%, 50% 75%,
    20% 100%, 30% 70%, 2% 65%, 30% 50%,
    8% 25%, 40% 28%
  );
  animation: burstSpin 18s linear infinite;
  box-shadow: 0 0 20px var(--cy-pink-glow);
  filter: drop-shadow(0 0 12px var(--cy-pink-glow));
}
.cyber-divider.burst .star::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: .12em;
  color: #fff;
  text-shadow: 2px 2px 0 var(--cy-bg), -1px -1px 0 var(--cy-bg);
  z-index: 2;
  transform: rotate(-8deg);
  animation: burstWobble 1.8s ease-in-out infinite;
}
@keyframes burstSpin {
  to { transform: rotate(360deg); }
}
@keyframes burstWobble {
  0%, 100% { transform: rotate(-8deg) scale(1);    }
  50%      { transform: rotate(-5deg) scale(1.08); }
}

/* TYPE 5: Barcode (Pixel-Streifen + Hex-Counter) */
.cyber-divider.barcode {
  height: 32px;
  position: relative;
  background-image:
    repeating-linear-gradient(90deg,
      var(--cy-cyan) 0 2px,
      transparent 2px 5px,
      var(--cy-cyan) 5px 6px,
      transparent 6px 11px,
      var(--cy-cyan) 11px 14px,
      transparent 14px 17px,
      var(--cy-cyan) 17px 18px,
      transparent 18px 24px);
  background-size: 80px 100%;
  opacity: .85;
  border-top: 1px solid var(--cy-cyan);
  border-bottom: 1px solid var(--cy-cyan);
  box-shadow: 0 0 8px rgba(0,159,255,.15);
  animation: barcodeScroll 14s linear infinite;
}
.cyber-divider.barcode::after {
  content: attr(data-code);
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--cy-bg);
  background: var(--cy-pink);
  padding: 4px 10px;
  box-shadow: 0 0 10px var(--cy-pink-glow);
}
@keyframes barcodeScroll {
  to { background-position: 80px 0; }
}

/* TYPE 6: Mega-Comic-Strip (POW! BOOM! ZAP! reihen) */
.cyber-divider.strip {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--cy-bg);
  overflow: hidden;
}
.cyber-divider.strip span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: .05em;
  display: inline-block;
  padding: .2em .6em;
  position: relative;
  transform: rotate(-3deg);
  text-shadow: 3px 3px 0 var(--cy-bg);
}
.cyber-divider.strip span:nth-child(1) {
  color: var(--cy-pink);
  background: var(--cy-yellow);
  transform: rotate(-6deg);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  animation: stripWobble 1.4s ease-in-out infinite alternate;
}
.cyber-divider.strip span:nth-child(2) {
  color: var(--cy-bg);
  background: var(--cy-cyan);
  transform: rotate(4deg);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
  animation: stripWobble 1.6s ease-in-out infinite alternate-reverse;
}
.cyber-divider.strip span:nth-child(3) {
  color: var(--cy-bg);
  background: var(--cy-lime);
  transform: rotate(-4deg);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  animation: stripWobble 1.5s ease-in-out infinite alternate;
}
@keyframes stripWobble {
  from { transform: rotate(-6deg) scale(1);    }
  to   { transform: rotate(-3deg) scale(1.06); }
}

/* Mobile */
@media (max-width: 700px) {
  .cyber-divider.tape   { height: 24px; }
  .cyber-divider.glitch { font-size: .68rem; padding: 1.5rem 0; }
  .cyber-divider.glitch::before,
  .cyber-divider.glitch::after { max-width: 80px; }
  .cyber-divider.burst  { height: 90px; }
  .cyber-divider.burst .star { width: 140px; height: 140px; }
  .cyber-divider.burst .star::after { font-size: 1.2rem; }
  .cyber-divider.strip span { font-size: 1.4rem; }
  .cyber-divider.barcode::after { font-size: .62rem; right: 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cyber-divider.tape,
  .cyber-divider.barcode,
  .cyber-divider.beam::after,
  .cyber-divider.burst .star::before,
  .cyber-divider.burst .star::after,
  .cyber-divider.strip span,
  .cyber-divider.glitch .label::after { animation: none !important; }
}

/* ============================================================
   SLIDER-VIDEO HÖHER + LIVE-BADGE QUADRATISCH
   ============================================================ */
.service-visual {
  aspect-ratio: 1 / 1 !important;   /* von 4:3 auf 1:1 — deutlich höher */
}
.live-badge {
  border-radius: 0 !important;       /* quadratisch statt abgerundet */
  letter-spacing: .2em;
  padding: .45em 1em;
}
.live-badge::before {
  border-radius: 0 !important;       /* der Punkt davor auch eckig */
  width: 6px;
  height: 6px;
}
/* Live-Badge je Slider-Karte in der jeweiligen Brand-Farbe */
.service-card.cat-veranstaltung .live-badge {
  background: var(--cy-cyan) !important;
  color: var(--cy-bg) !important;
  box-shadow: 0 0 10px var(--cy-cyan-glow) !important;
}
.service-card.cat-veranstaltung .live-badge::before {
  background: var(--cy-bg) !important;
  box-shadow: 0 0 4px var(--cy-bg) !important;
}
.service-card.cat-streaming .live-badge {
  background: var(--cy-pink) !important;
  color: #fff !important;
  box-shadow: 0 0 10px var(--cy-pink-glow) !important;
}
.service-card.cat-streaming .live-badge::before {
  background: #fff !important;
  box-shadow: 0 0 4px #fff !important;
}
.service-card.cat-konferenz .live-badge {
  background: var(--cy-lime) !important;
  color: var(--cy-bg) !important;
  box-shadow: 0 0 10px var(--cy-lime-glow) !important;
}
.service-card.cat-konferenz .live-badge::before {
  background: var(--cy-bg) !important;
  box-shadow: 0 0 4px var(--cy-bg) !important;
}

/* ============================================================
   SERVICE-SLIDER — Hero-Kategorie-Farben übernehmen
   Veranstaltung = Cyan (#009fff), Streaming = Pink (#ff10c8),
   Konferenz = Türkis (#00ffe5)
   ============================================================ */
.service-card.cat-veranstaltung .eyebrow,
.service-card.cat-veranstaltung .btn-ghost { color: var(--cy-cyan) !important; text-shadow: 0 0 6px var(--cy-cyan-glow); }
.service-card.cat-streaming     .eyebrow,
.service-card.cat-streaming     .btn-ghost { color: var(--cy-pink) !important; text-shadow: 0 0 6px var(--cy-pink-glow); }
.service-card.cat-konferenz     .eyebrow,
.service-card.cat-konferenz     .btn-ghost { color: var(--cy-lime) !important; text-shadow: 0 0 6px var(--cy-lime-glow); }

/* Eyebrow-Prefix-Strich („//") farblich mit */
.service-card.cat-veranstaltung .eyebrow::before { color: var(--cy-cyan) !important; }
.service-card.cat-streaming     .eyebrow::before { color: var(--cy-pink) !important; }
.service-card.cat-konferenz     .eyebrow::before { color: var(--cy-lime) !important; }

/* List-Bullets */
.service-card.cat-veranstaltung li::before,
.service-card.cat-veranstaltung li::marker { background: var(--cy-cyan) !important; color: var(--cy-cyan) !important; box-shadow: 0 0 6px var(--cy-cyan-glow); }
.service-card.cat-streaming li::before,
.service-card.cat-streaming li::marker { background: var(--cy-pink) !important; color: var(--cy-pink) !important; box-shadow: 0 0 6px var(--cy-pink-glow); }
.service-card.cat-konferenz li::before,
.service-card.cat-konferenz li::marker { background: var(--cy-lime) !important; color: var(--cy-lime) !important; box-shadow: 0 0 6px var(--cy-lime-glow); }

/* Visual-Frame in Brand-Farbe */
.service-card.cat-veranstaltung .service-visual {
  border-color: var(--cy-cyan) !important;
  box-shadow:
    0 0 0 4px var(--cy-bg),
    0 0 0 5px rgba(0,159,255,.5),
    0 0 30px rgba(0,159,255,.3) !important;
}
.service-card.cat-streaming .service-visual {
  border-color: var(--cy-pink) !important;
  box-shadow:
    0 0 0 4px var(--cy-bg),
    0 0 0 5px rgba(255,16,200,.5),
    0 0 30px rgba(255,16,200,.3) !important;
}
.service-card.cat-konferenz .service-visual {
  border-color: var(--cy-lime) !important;
  box-shadow:
    0 0 0 4px var(--cy-bg),
    0 0 0 5px rgba(0,255,229,.5),
    0 0 30px rgba(0,255,229,.3) !important;
}

/* Buttons der Slider-Karten in passender Glow-Farbe */
.service-card.cat-veranstaltung .btn-solid-veranstaltung {
  background: var(--cy-cyan) !important;
  color: var(--cy-bg) !important;
  box-shadow: 0 0 0 1px var(--cy-cyan), 0 0 18px var(--cy-cyan-glow) !important;
}
.service-card.cat-streaming .btn-solid-streaming {
  background: var(--cy-pink) !important;
  color: #fff !important;
  box-shadow: 0 0 0 1px var(--cy-pink), 0 0 18px var(--cy-pink-glow) !important;
}
.service-card.cat-konferenz .btn-solid-konferenz {
  background: var(--cy-lime) !important;
  color: var(--cy-bg) !important;
  box-shadow: 0 0 0 1px var(--cy-lime), 0 0 18px var(--cy-lime-glow) !important;
}

/* ============================================================
   SLIDER MOBILE — sichtbar & swipeable
   ============================================================ */
@media (max-width: 980px) {
  /* Pfeile wieder sichtbar machen, aber UNTER der Karte */
  .slider { padding-bottom: 1rem !important; position: relative; }
  .slider-arrow {
    display: inline-flex !important;
    position: static !important;
    transform: none !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(0,255,229,.06) !important;
    border: 1.5px solid var(--cy-cyan) !important;
    color: var(--cy-cyan) !important;
    box-shadow: 0 0 14px rgba(0,159,255,.4) !important;
    border-radius: 4px !important;
  }
  /* Pfeile als Pair unter dem Slider */
  .slider {
    display: flex;
    flex-wrap: wrap;
  }
  .slider-viewport { order: 1; width: 100%; }
  .slider-prev { order: 2; margin: 1.2rem auto 0 0; }
  .slider-next { order: 4; margin: 1.2rem 0 0 auto; }
  .slider-dots {
    order: 3;
    margin: 1.2rem auto 0 !important;
    flex: 1 1 auto;
    align-self: center;
  }
  /* Dots: größer, mit Brand-Farbe je nach Index */
  .slider-dots .dot {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255,255,255,.25) !important;
    border-radius: 0 !important;  /* eckig im Cyber-Look */
    box-shadow: 0 0 0 1px rgba(255,255,255,.15);
  }
  .slider-dots .dot:nth-child(1).active { background: var(--cy-cyan) !important; box-shadow: 0 0 12px var(--cy-cyan-glow); width: 36px !important; }
  .slider-dots .dot:nth-child(2).active { background: var(--cy-pink) !important; box-shadow: 0 0 12px var(--cy-pink-glow); width: 36px !important; }
  .slider-dots .dot:nth-child(3).active { background: var(--cy-lime) !important; box-shadow: 0 0 12px var(--cy-lime-glow); width: 36px !important; }

  /* Swipe-Hint unter dem Slider */
  .slider::after {
    content: "← Wischen oder Pfeile tippen →";
    order: 5;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .7rem;
    letter-spacing: .15em;
    color: rgba(0,255,229,.7);
    text-shadow: 0 0 6px rgba(0,255,229,.4);
    text-transform: uppercase;
  }
}

/* ============================================================
   MISSION BRIEF WIZARD — Contact-Replacement
   ============================================================ */
.brief-section {
  position: relative !important;
  padding: 7rem 0 6rem !important;
  background: linear-gradient(180deg, var(--cy-bg) 0%, #060a1a 60%, var(--cy-bg) 100%) !important;
  overflow: hidden;
  isolation: isolate;
}
.brief-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0,159,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 80% 70%, rgba(255,16,200,.14) 0%, transparent 60%);
  z-index: 0;
}
.brief-section > .container { position: relative; z-index: 1; }
.brief-header { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.brief-header h2 {
  font-family: 'Orbitron', sans-serif !important;
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  font-weight: 900 !important;
  letter-spacing: -.01em !important;
  margin: .4rem 0 1rem !important;
  text-transform: uppercase !important;
  background: linear-gradient(90deg, #00ffe5 0%, #009fff 50%, #ff10c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(0,255,229,.30));
}
.brief-intro {
  color: rgba(230,238,255,.92);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Wizard Shell */
.brief-wizard {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(8,12,28,.85) 0%, rgba(4,6,14,.92) 100%);
  border: 1px solid rgba(0,255,229,.18);
  box-shadow:
    inset 0 0 0 1px rgba(0,255,229,.05),
    0 0 24px rgba(0,159,255,.18),
    0 30px 80px -20px rgba(0,0,0,.6);
  clip-path: polygon(
    0 0, calc(100% - 22px) 0, 100% 22px,
    100% 100%, 22px 100%, 0 calc(100% - 22px)
  );
  padding: 2.5rem 2rem 2rem;
}

/* Progress */
.brief-progress {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}
.brief-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(0,255,229,.08);
  position: relative;
  overflow: hidden;
}
.brief-progress-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 16.66%;
  background: linear-gradient(90deg, #00ffe5 0%, #009fff 60%, #ff10c8 120%);
  box-shadow: 0 0 12px rgba(0,255,229,.7);
  transition: width 480ms cubic-bezier(.16,1,.3,1);
}
.brief-progress-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  letter-spacing: .15em;
  color: #00ffe5;
  display: flex; gap: .35em;
  text-shadow: 0 0 6px rgba(0,255,229,.5);
}
.brief-step-label { opacity: .55; margin-right: .4em; }
.brief-step-sep { opacity: .4; }
.brief-step-total { opacity: .55; }

/* Stage / Steps */
.brief-stage {
  position: relative;
  min-height: 360px;
}
.brief-step {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 480ms cubic-bezier(.16, 1, .3, 1);
}
.brief-step.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.brief-step.is-leaving {
  transform: translateX(-40px);
}
.brief-q {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin: 0 0 .4rem;
  color: #fff;
}
.brief-sub {
  color: rgba(230,238,255,.88);
  font-size: .98rem;
  margin: 0 0 2rem;
  line-height: 1.5;
}

/* Cards */
.brief-cards { display: grid; gap: 1rem; }
.brief-cards-3 { grid-template-columns: repeat(3, 1fr); }
.brief-cards-4 { grid-template-columns: repeat(4, 1fr); }

.brief-card {
  position: relative;
  background: rgba(0,255,229,.03);
  border: 1px solid rgba(0,255,229,.18);
  color: #fff;
  padding: 1.6rem 1.2rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  text-align: left;
  font-family: inherit;
  transition:
    transform 260ms cubic-bezier(.16,1,.3,1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    color 260ms ease;
  clip-path: polygon(
    0 0, calc(100% - 10px) 0, 100% 10px,
    100% 100%, 10px 100%, 0 calc(100% - 10px)
  );
}
.brief-card::before {
  content: "";
  position: absolute;
  top: .8rem; right: .9rem;
  width: 6px; height: 6px;
  background: rgba(0,255,229,.4);
  box-shadow: 0 0 6px rgba(0,255,229,.4);
  transition: background 260ms, box-shadow 260ms, transform 260ms;
}
.brief-card:hover {
  transform: translateY(-4px);
  border-color: #00ffe5;
  background: rgba(0,255,229,.06);
  box-shadow: 0 0 24px rgba(0,255,229,.18), inset 0 0 0 1px rgba(0,255,229,.4);
}
.brief-card:hover::before {
  background: #00ffe5;
  box-shadow: 0 0 12px rgba(0,255,229,1);
  transform: scale(1.4);
}
.brief-card.is-selected {
  background: rgba(0,255,229,.08);
  border-color: #00ffe5;
  box-shadow:
    inset 0 0 0 1.5px #00ffe5,
    0 0 24px rgba(0,255,229,.35),
    0 0 40px rgba(0,159,255,.2);
}
.brief-card.is-selected::before {
  background: #00ffe5;
  box-shadow: 0 0 14px #00ffe5, 0 0 20px rgba(0,255,229,.6);
  transform: scale(1.6);
}
/* Brand color variants */
.brief-card[data-color="veranstaltung"].is-selected,
.brief-card[data-color="veranstaltung"]:hover {
  border-color: #009fff;
  box-shadow: inset 0 0 0 1.5px #009fff, 0 0 24px rgba(0,159,255,.35);
}
.brief-card[data-color="veranstaltung"].is-selected::before,
.brief-card[data-color="veranstaltung"]:hover::before {
  background: #009fff; box-shadow: 0 0 14px #009fff;
}
.brief-card[data-color="streaming"].is-selected,
.brief-card[data-color="streaming"]:hover {
  border-color: #ff10c8;
  box-shadow: inset 0 0 0 1.5px #ff10c8, 0 0 24px rgba(255,16,200,.35);
}
.brief-card[data-color="streaming"].is-selected::before,
.brief-card[data-color="streaming"]:hover::before {
  background: #ff10c8; box-shadow: 0 0 14px #ff10c8;
}
.brief-card[data-color="konferenz"].is-selected,
.brief-card[data-color="konferenz"]:hover {
  border-color: #00ffe5;
  box-shadow: inset 0 0 0 1.5px #00ffe5, 0 0 24px rgba(0,255,229,.35);
}
.brief-card[data-color="konferenz"].is-selected::before,
.brief-card[data-color="konferenz"]:hover::before {
  background: #00ffe5; box-shadow: 0 0 14px #00ffe5;
}

.brief-card-icon {
  width: 38px; height: 38px;
  color: #00ffe5;
  margin-bottom: .4rem;
  filter: drop-shadow(0 0 6px rgba(0,255,229,.5));
}
.brief-card[data-color="veranstaltung"] .brief-card-icon { color: #009fff; filter: drop-shadow(0 0 6px rgba(0,159,255,.6)); }
.brief-card[data-color="streaming"] .brief-card-icon { color: #ff10c8; filter: drop-shadow(0 0 6px rgba(255,16,200,.6)); }
.brief-card-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.brief-card-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.brief-card-big {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -.02em;
  background: linear-gradient(180deg, #fff 30%, rgba(0,255,229,.85) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.brief-card-numeric { align-items: center; text-align: center; }
.brief-card-numeric .brief-card-title { font-size: .85rem; }
.brief-card-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem;
  font-weight: 700;
  color: #00ffe5;
  text-shadow: 0 0 6px rgba(0,255,229,.4);
  letter-spacing: .08em;
}

/* Chips (multi-select) */
.brief-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.brief-chip {
  background: rgba(0,255,229,.04);
  border: 1px solid rgba(0,255,229,.25);
  color: #fff;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .7em 1.1em;
  cursor: pointer;
  transition: all 220ms ease;
  clip-path: polygon(
    0 0, calc(100% - 6px) 0, 100% 6px,
    100% 100%, 6px 100%, 0 calc(100% - 6px)
  );
}
.brief-chip:hover {
  border-color: #00ffe5;
  background: rgba(0,255,229,.10);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0,255,229,.25);
}
.brief-chip.is-selected {
  background: #00ffe5;
  color: #06091a;
  border-color: #00ffe5;
  box-shadow: 0 0 18px rgba(0,255,229,.65);
}
.brief-skip-hint {
  margin-top: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .74rem;
  letter-spacing: .1em;
  color: rgba(0,255,229,.85);
}

/* Form Fields */
.brief-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.5rem;
}
.brief-field {
  position: relative;
}
.brief-field-area { grid-column: 1 / -1; }
.brief-field input,
.brief-field textarea {
  width: 100%;
  background: rgba(0,255,229,.03);
  border: 0;
  border-bottom: 1.5px solid rgba(0,255,229,.3);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  padding: 1.4rem .6rem .6rem;
  transition: border-color 220ms ease, background 220ms ease;
  resize: vertical;
}
.brief-field textarea { min-height: 130px; padding-top: 1.5rem; }
.brief-field label {
  position: absolute;
  left: .6rem; top: 1.2rem;
  pointer-events: none;
  color: rgba(255,255,255,.82);
  font-family: 'JetBrains Mono', monospace;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform 220ms ease, color 220ms ease, font-size 220ms ease;
}
.brief-field input:focus,
.brief-field textarea:focus {
  outline: 0;
  border-bottom-color: #00ffe5;
  background: rgba(0,255,229,.06);
  box-shadow: 0 4px 12px -8px rgba(0,255,229,.5);
}
.brief-field input:focus + label,
.brief-field input:not(:placeholder-shown) + label,
.brief-field textarea:focus + label,
.brief-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1rem) scale(.82);
  color: #00ffe5;
}
.brief-honeypot { position: absolute; left: -9999px; }

.brief-consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-top: 1.4rem;
  font-size: .85rem;
  color: rgba(230,238,255,.88);
  line-height: 1.5;
  cursor: pointer;
}
.brief-consent input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  background: rgba(0,255,229,.05);
  border: 1.5px solid rgba(0,255,229,.4);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 220ms ease;
}
.brief-consent input[type="checkbox"]:checked {
  background: #00ffe5;
  border-color: #00ffe5;
  box-shadow: 0 0 10px rgba(0,255,229,.5);
}
.brief-consent input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #06091a;
  font-weight: 900;
  font-size: 13px;
}
.brief-consent strong { color: #00ffe5; font-family: 'JetBrains Mono', monospace; font-size: .75rem; letter-spacing: .1em; margin-right: .3em; }
.brief-consent a { color: #009fff; text-decoration: underline; text-underline-offset: 2px; }

/* Console (Live-Summary) */
.brief-console {
  margin-top: 1.8rem;
  padding: .9rem 1.1rem;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(0,255,229,.12);
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(230,238,255,.92);
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: .8em;
  overflow-x: auto;
}
.brief-console-prompt {
  color: #00ffe5;
  text-shadow: 0 0 4px rgba(0,255,229,.6);
  font-weight: 700;
}
.brief-console-content { white-space: nowrap; }
.brief-console-content span {
  color: rgba(255,255,255,.85);
  margin-right: .5em;
}
.brief-console-content span::after {
  content: " ◆";
  color: rgba(0,255,229,.4);
  margin-left: .4em;
}
.brief-console-content span:last-child::after { content: ""; }
.brief-console-cursor {
  width: 8px; height: 14px;
  background: #00ffe5;
  box-shadow: 0 0 6px rgba(0,255,229,.6);
  animation: briefBlink 1.1s steps(2) infinite;
}
@keyframes briefBlink { 50% { opacity: 0; } }

/* Nav */
.brief-nav {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: space-between;
}
.brief-btn {
  background: rgba(0,255,229,.04);
  border: 1.5px solid rgba(0,255,229,.4);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1em 2em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  transition: all 220ms ease;
  clip-path: polygon(
    0 0, calc(100% - 10px) 0, 100% 10px,
    100% 100%, 10px 100%, 0 calc(100% - 10px)
  );
}
.brief-btn:hover:not(:disabled) {
  background: rgba(0,255,229,.12);
  border-color: #00ffe5;
  box-shadow: 0 0 18px rgba(0,255,229,.4);
  transform: translateY(-2px);
}
.brief-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.brief-btn-next {
  background: linear-gradient(90deg, #00ffe5 0%, #009fff 100%);
  color: #06091a;
  border-color: #00ffe5;
  margin-left: auto;
  box-shadow: 0 0 24px rgba(0,255,229,.4);
}
.brief-btn-next:hover:not(:disabled) {
  background: linear-gradient(90deg, #00ffe5 0%, #ff10c8 100%);
  color: #fff;
  box-shadow: 0 0 32px rgba(255,16,200,.5);
  transform: translateY(-2px);
}
.brief-btn-submit {
  background: linear-gradient(90deg, #ff10c8 0%, #00ffe5 100%);
  color: #06091a;
  border-color: #ff10c8;
  margin-left: auto;
  box-shadow: 0 0 28px rgba(255,16,200,.5);
}
.brief-btn-submit:hover:not(:disabled) {
  background: #fff;
  color: #06091a;
  box-shadow: 0 0 40px rgba(255,255,255,.6);
  transform: translateY(-2px) scale(1.02);
}

/* Success — bleibt versteckt bis JS [hidden] entfernt */
.brief-success[hidden] { display: none !important; }
.brief-success {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,28,.96) 0%, rgba(4,6,14,.99) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  gap: 1.2rem;
  z-index: 5;
}
.brief-btn[hidden] { display: none !important; }
.brief-success-glyph {
  width: 88px; height: 88px;
  border: 2px solid #00ffe5;
  display: flex; align-items: center; justify-content: center;
  color: #00ffe5;
  font-size: 3rem;
  font-weight: 900;
  box-shadow: 0 0 32px rgba(0,255,229,.55), inset 0 0 24px rgba(0,255,229,.2);
  text-shadow: 0 0 12px rgba(0,255,229,.8);
  animation: briefSuccessPulse 2s ease-in-out infinite;
}
.brief-success[data-mode="error"] .brief-success-glyph {
  border-color: #ff10c8;
  color: #ff10c8;
  box-shadow: 0 0 32px rgba(255,16,200,.55), inset 0 0 24px rgba(255,16,200,.2);
  text-shadow: 0 0 12px rgba(255,16,200,.8);
}
.brief-success[data-mode="error"] h3 { color: #ff10c8; }
.brief-success p a {
  color: #00ffe5;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@keyframes briefSuccessPulse {
  0%, 100% { box-shadow: 0 0 32px rgba(0,255,229,.55), inset 0 0 24px rgba(0,255,229,.2); }
  50% { box-shadow: 0 0 48px rgba(0,255,229,.8), inset 0 0 32px rgba(0,255,229,.35); }
}
.brief-success h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2rem;
  color: #fff;
}
.brief-success p { color: rgba(230,238,255,.92); max-width: 480px; }

.brief-fallback {
  text-align: center;
  margin-top: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem;
  letter-spacing: .08em;
  color: rgba(230,238,255,.82);
}
.brief-fallback a {
  color: #00ffe5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobile */
@media (max-width: 700px) {
  .brief-wizard { padding: 2rem 1.2rem 1.4rem; }
  .brief-cards-3, .brief-cards-4 { grid-template-columns: 1fr 1fr; }
  .brief-progress { gap: 1rem; }
  .brief-progress-meta { font-size: .7rem; }
  .brief-q { font-size: 1.5rem; }
  .brief-fields { grid-template-columns: 1fr; }
  .brief-nav { flex-direction: row; gap: .6rem; }
  .brief-btn { padding: .9em 1.2em; font-size: .8rem; }
  .brief-stage { min-height: 460px; }
  .brief-console { display: none; }
}
