/* ============================================
   AXON — STYLE SYSTEM
   Neural Luxury meets Terminal Aesthetic
   ============================================ */

/* --- FONTS --- */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@600,700&display=swap');

/* --- VARIABLES --- */
:root {
  --black: #050a14;
  --black-light: #0a1220;
  --white: #e0e4ec;
  --white-dim: #a8b4c8; /* AAA 7.6:1 auf --black (vorher #9aa5b8 = 6.5:1 nur AA) */
  --accent: #00d4ff;
  --accent-dim: var(--border-default);
  --accent-glow: rgba(0, 212, 255, 0.25);
  --accent-warm: #ff5722;
  --mono: 'IBM Plex Mono', monospace;
  --display: 'ClashDisplay', 'Arial Black', sans-serif;
  --nav-height: 80px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Design Tokens — Heading Scale (factor ~1.6) */
  --h-xl: clamp(56px, 10vw, 160px);
  --h-lg: clamp(36px, 6.5vw, 96px);
  --h-md: clamp(24px, 3.5vw, 48px);
  --h-sm: clamp(18px, 2.2vw, 32px);

  /* Spacing Tokens */
  --space-xs: 16px;
  --space-sm: 32px;
  --space-md: 64px;
  --space-lg: 120px;
  --space-xl: 200px;

  /* Border Tokens */
  --border-dim: var(--border-dim);
  --border-default: rgba(0, 212, 255, 0.14);
  --border-active: var(--border-active);
}

/* --- RESET --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
}

html {
  /* Fallback-Background unten — sichtbar nur wenn .beta-bg nicht lädt */
  background: var(--black);
}

body {
  font-family: var(--mono);
  /* Transparent damit .beta-bg (z-index:-2) durch body durchscheint.
     html-background ist der schwarze Fallback. */
  background: transparent;
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  /* Stacking-Context für negative z-index Children (.beta-bg) */
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  cursor: none;
  font-family: inherit;
}

::selection {
  background: var(--accent);
  color: var(--black);
}

/* --- BRAIN CONTAINER --- */
#brain-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#brain-container canvas {
  pointer-events: none;
}

/* --- CUSTOM CURSOR --- */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  /* transform wird in main.js mousemove-Listener gesetzt (translate3d + translate-50%);
     kein CSS-default-transform damit der JS-Wert nicht überschrieben wird.
     transition läuft auf width/height/border-color, NICHT auf transform —
     sonst würde der mousemove-Cursor "nachlaufen". */
  will-change: transform;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
  /* mix-blend-mode: difference; ← DISABLED — Compositor-Killer auf fixed
     Element über WebGL-Canvas. 60fps × full-page re-composite. */
}

#cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  /* transform wird in main.js animateTrail() gesetzt (translate3d + translate-50%);
     kein CSS-default-transform damit der JS-Wert nicht überschrieben wird. */
  will-change: transform;
}

#cursor.hover {
  width: 50px;
  height: 50px;
  border-color: var(--white);
}

@media (pointer: coarse) {
  #cursor, #cursor-trail { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

/* --- LOADER --- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 200px;
}

.loader-bar {
  width: 100%;
  height: 2px;
  background: var(--border-dim);
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.3s;
  box-shadow: 0 0 10px var(--accent-glow);
}

.loader-text {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--white-dim);
}

.loader-percent {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
}

/* --- NAV --- */
/* Subtle top gradient — darkens area behind nav for legibility */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(5, 10, 20, 0.7) 0%, rgba(5, 10, 20, 0.3) 50%, transparent 100%);
  pointer-events: none;
  z-index: 90;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.boot-done::before {
  opacity: 1;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  /* mix-blend-mode: difference; ← DISABLED — siehe #cursor.
     Nav-Kontrast wird ggf. scrollY-basiert via JS gemanagt. */
}

.nav-logo {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  opacity: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 0, 0, 0.4);
}

.logo-letter {
  display: inline-block;
  will-change: transform, opacity;
}

.logo-space {
  display: inline-block;
  width: 0.4em;
  transition: width 0.6s var(--ease);
}

.nav-logo.collapsed .logo-space {
  width: 0.15em;
}

.logo-fly {
  transition: transform 0.7s var(--ease), opacity 0.5s ease;
}

.logo-i {
  display: inline-block;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 3px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
  opacity: 0;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
}

.nav-link::before {
  content: attr(data-label);
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 8px;
  color: var(--accent);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease);
}

.nav-link:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}

.nav-link:hover::after {
  width: 100%;
}

#sound-toggle {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: #ffffff;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-right: 24px;
  transition: all 0.3s var(--ease);
  cursor: none;
  background: transparent;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
}

#sound-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

#sound-toggle .sound-on { display: none; }
#sound-toggle.active .sound-off { display: none; }
#sound-toggle.active .sound-on { display: inline; color: var(--accent); }

#nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  padding: 4px 0;
}

#nav-menu-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

#nav-menu-btn.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

#nav-menu-btn.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* --- MOBILE MENU --- */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

#mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-link {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 4px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s var(--ease);
}

#mobile-menu.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

#mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
#mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
#mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }

/* --- ALL SECTIONS: transparent so brain shows through --- */
.scroll-section {
  position: relative;
  z-index: 2;
}

/* --- INTRO HERO --- */
#intro {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  pointer-events: none;
}

.intro-title {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.intro-line {
  display: block;
  overflow: hidden;
}

.intro-word {
  display: inline-block;
  font-size: var(--h-xl);
  opacity: 0;
}

.intro-word.accent-cyan {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--border-default);
}

/* A in AXON pulses to cyan, I in INNOVATION pulses to white.
   blur-Radii bewusst klein gehalten: text-shadow ist NICHT GPU-composited,
   jeder Pixel im Glow-Bereich wird pro Frame neu rastert. 120px-blur löste
   im #intro permanent Full-Viewport-Repaints aus → Hero-Lag. 32px reicht
   visuell für den Pulse-Effekt. */
.intro-word .ai-letter {
  display: inline-block;
  animation: aiLetterPulseAxon 3s ease-in-out infinite;
}

.intro-word.accent-cyan .ai-letter {
  animation: aiLetterPulseInno 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes aiLetterPulseAxon {
  0%, 100% {
    color: var(--white);
    text-shadow: none;
  }
  50% {
    color: var(--accent);
    text-shadow: 0 0 14px var(--accent-glow), 0 0 32px var(--border-active);
  }
}

@keyframes aiLetterPulseInno {
  0%, 100% {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--border-default);
  }
  50% {
    color: var(--white);
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
  }
}

.intro-scroll {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

/* --- HERO --- */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 70%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.tag-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.tag-text {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--accent);
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  font-size: var(--h-lg);
  transform: translateY(100%);
}

.title-word.accent-cyan {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.hero-bottom {
  margin-top: 48px;
}

.hero-cta {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1;
  padding: 24px 48px 24px;
  background: #00d4ff;
  color: #050a14;
  border: 1px solid #00d4ff;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
  box-sizing: border-box;
  text-decoration: none;
  text-transform: none;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
}

.hero-cta:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

/* Gruppe von 2 CTA-Buttons (Beta + Services) */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-cta-group .hero-cta {
  margin-top: 0;
}

/* Sekundärer CTA — outlined statt filled */
.hero-cta-secondary {
  background: transparent;
  color: #00d4ff;
  border: 1px solid #00d4ff;
  box-shadow: 0 0 0 rgba(0, 212, 255, 0);
}

.hero-cta-secondary:hover {
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.25);
  transform: translateY(-2px);
}

/* "Mehr erfahren →" Link in Service-Item-Description */
.service-desc .service-detail-link {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
  transition: border-color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.service-desc .service-detail-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.85;
}

.hero-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--white-dim);
  max-width: 360px;
}

/* --- MARQUEE --- */
.marquee {
  padding: var(--space-sm) 0;
  margin: var(--space-md) 0;
  overflow: hidden;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  position: relative;
  z-index: 2;
  background: rgba(5, 10, 20, 0.9);
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-reverse .marquee-track {
  animation-direction: reverse;
}

.marquee-dot {
  color: var(--accent);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* --- SECTIONS --- */
.section {
  padding: var(--space-lg) 40px;
  position: relative;
  z-index: 2;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 10, 20, 0.92) 0%,
    rgba(5, 10, 20, 0.85) 50%,
    rgba(5, 10, 20, 0.92) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.section-header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.section-label {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 2px;
}

.section-label-text {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--white-dim);
}

.section-line {
  flex: 1;
  height: 1px;
  background: var(--border-dim);
}

.section-title {
  font-family: var(--display);
  font-size: var(--h-md);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
}

.accent {
  color: var(--accent-warm);
}

.accent-cyan {
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow);
}

/* ============================================
   SYSTEM PIPELINE — Lusion-Style Scroll-Choreografie
   ============================================
   Section ist ~300vh hoch. Inner .system-stage ist position:sticky und
   bleibt während des Scrolls am Top kleben. ScrollTrigger treibt die
   Reveal-Timeline der 5 Cluster + den Stepper-Progress.
*/

#system {
  /* Section deutlich höher als viewport — gibt User ~5 Bildschirme Scroll
     für die ganze Story (Lusion-Style "tief gepinnt").
     Pinning passiert auf .system-stage. */
  min-height: 500vh;
  padding: 0;
  position: relative;
}

#system .section-header {
  /* Section-Header (02 DAS SYSTEM) bleibt oben, vor dem Sticky-Stage */
  padding: var(--space-md) 48px 0;
}

.system-stage {
  position: sticky;
  /* Pinning passiert durch sticky (NICHT durch ScrollTrigger.pin — das würde
     top:0 erzwingen und die Descriptions abschneiden).
     top = wo die Stage einfriert; bottom-margin gibt Stepper/Descs Atemraum.
     Grid: 4 Rows — Header / Visual(1fr) / Descs(auto) / Stepper(auto) */
  top: max(80px, 10vh);
  height: calc(100vh - max(80px, 10vh) - 32px);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 16px;
  padding: 24px 48px 16px;
  overflow: hidden;
}

/* HEADER über dem Diagramm */
.system-stage-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.system-stage-title {
  font-family: var(--mono);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.system-stage-subtitle {
  font-family: var(--mono);
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
}

/* VISUAL STAGE — Container für SVG, Canvas, Cluster, Labels, Descriptions
   Aspect-Ratio 8:3 matched dem SVG-viewBox (1600×600). Damit SVG und
   HTML-Overlay (Labels + Descs mit --cluster-x in %) konsistente
   Koordinaten teilen. */
.system-stage-visual {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 8 / 3;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

/* Particle-Noise Canvas: füllt die linke Hälfte (Step 01 → Step 03 area).
   Rendert Cyan-Pixel-Drift Richtung Hexagon-Hub. */
.system-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Single-Pipeline-SVG: alle Cluster + Streams in einem Koordinatensystem */
.system-pipeline-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Init-State pro Cluster-Group: unsichtbar bis ScrollTrigger sie revealed */
.system-pipeline-svg .cluster-svg,
.system-pipeline-svg .cluster-streams,
.system-pipeline-svg .cluster-convergence {
  opacity: 0;
}

/* Stream-Linien zwischen den Cluster-Phasen (main/wave/tail) — werden
   per stroke-dashoffset gezeichnet */
.system-pipeline-svg .guide-main,
.system-pipeline-svg .guide-wave,
.system-pipeline-svg .guide-tail {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  pathLength: 1;
}

/* CLUSTERS — die 5 Hauptvisualisierungen, absolut positioniert per --cluster-x */
.system-clusters {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.cluster {
  position: absolute;
  top: 50%;
  left: var(--cluster-x);
  transform: translate(-50%, -50%);
  opacity: 0;
  /* Init: unsichtbar, ScrollTrigger fadet ein */
}

.cluster-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CLUSTER PLACEHOLDERS (Phase 1) — in Phase 2 ersetzt durch echte SVGs */
.cluster-placeholder {
  color: var(--accent);
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}

/* Step 01: Platform-Konvergenz — Visuals leben jetzt im Single-Pipeline-SVG
   als <g class="cluster-svg" data-step="1">. Der HTML-Cluster ist nur Marker. */
.cluster-hidden {
  visibility: hidden;
}

/* SVG-Platform-Logos: Hover-State auf den <g class="platform-logo-svg"> */
.platform-logo-svg {
  cursor: pointer;
  transition: transform 0.3s var(--ease);
  transform-origin: center;
  transform-box: fill-box;
}

.platform-logo-svg circle:first-child {
  transition: stroke-width 0.3s var(--ease), filter 0.3s var(--ease);
}

.platform-logo-svg:hover circle:first-child {
  stroke-width: 2;
}

/* Topographie-Cluster: Pin-Labels über den Insight-Pins */
.topo-pin-label {
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.12em;
  fill: var(--white-dim);
  text-transform: uppercase;
}

.topo-pin-label-main {
  fill: var(--accent);
  font-size: 7.5px;
  font-weight: 600;
}

/* Topographie-Mesh: subtle wave-pulse animation für lebendigen Effekt */
.topo-mesh path {
  transform-origin: center;
  animation: meshPulse 6s ease-in-out infinite;
}
.topo-mesh path:nth-child(2n) { animation-delay: -1s; }
.topo-mesh path:nth-child(3n) { animation-delay: -2s; }
.topo-mesh path:nth-child(5n) { animation-delay: -3s; }

@keyframes meshPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(-1.5px); opacity: 0.85; }
}

/* Topographie-Dots: subtle blinking für "Daten-Aktivität" */
.topo-dots circle {
  animation: dotPulse 3s ease-in-out infinite;
}
.topo-dots circle:nth-child(2n) { animation-delay: -0.5s; }
.topo-dots circle:nth-child(3n) { animation-delay: -1s; }
.topo-dots circle:nth-child(5n) { animation-delay: -1.5s; }

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .topo-mesh path,
  .topo-dots circle { animation: none; }
}

/* Step 02: Sync-Hub mit Pulse */
.ph-hub {
  position: relative;
  width: 100px;
  height: 100px;
}
.ph-hub-ring,
.ph-hub-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
}
.ph-hub-ring { animation: hubPulse 2.4s ease-out infinite; }
.ph-hub-core { transform: scale(0.4); background: var(--accent); border: none; opacity: 0.8; }
@keyframes hubPulse {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Step 03: Hexagon (zentral, größer als andere) */
.cluster-hexagon .cluster-placeholder {
  width: 140px;
  height: 140px;
}
.ph-hex {
  width: 100%;
  height: 100%;
  animation: hexFloat 6s ease-in-out infinite;
}
.ph-hex svg { width: 100%; height: 100%; }
@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}

/* Step 04: Wave (breiter, niedriger) */
.cluster-wave .cluster-placeholder {
  width: 140px;
  height: 80px;
}

/* Step 05: Glass-Stack */
.ph-stack {
  position: relative;
  width: 100px;
  height: 120px;
  transform: perspective(400px) rotateX(45deg) rotateZ(-15deg);
}
.ph-layer {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--accent);
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(calc(var(--i) * -16px));
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.2);
}

/* LABELS oben (Step-Number + Headline) */
.system-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.step-label {
  position: absolute;
  top: 0;
  left: var(--cluster-x);
  transform: translateX(-50%);
  text-align: center;
  width: max-content;
  max-width: 200px;
  opacity: 0;
}

.step-num {
  display: block;
  font-family: var(--mono);
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.step-headline {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}

/* DESCRIPTIONS — eigene Grid-Row, NICHT mehr absolute über Visual.
   Min-height reserviert Platz für längste Description (5-6 Zeilen). */
.system-descriptions {
  position: relative;
  width: 100%;
  min-height: 110px;
  pointer-events: none;
}

.step-desc {
  position: absolute;
  top: 0;
  left: var(--cluster-x);
  transform: translateX(-50%);
  width: 200px;
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--white-dim);
  opacity: 0;
  margin: 0;
}

/* STEP-INDICATOR (Lusion-Style Stepper am unteren Rand) */
.system-stepper {
  position: relative;
  height: 56px;
  padding: 0 8%;
  display: flex;
  align-items: center;
}

.stepper-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: var(--border-default);
  transform: translateY(-50%);
}

.stepper-line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), rgba(0, 212, 255, 0.6));
  box-shadow: 0 0 12px var(--accent-glow);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.2s linear;
}

.stepper-dots {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.stepper-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--border-active);
  background: var(--black);
  transition: all 0.3s var(--ease);
}

.stepper-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.stepper-dot-label {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

.stepper-dot.active .stepper-dot-label {
  color: var(--accent);
}

/* OUTRO-TAGLINE — erscheint am Ende */
.system-outro {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

.outro-tag {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
}

/* MOBILE — kein Pinning, stattdessen normale Vertical-Stack-Karten */
@media (max-width: 1024px) {
  #system {
    min-height: auto;
  }
  .system-stage {
    position: relative;
    height: auto;
    grid-template-rows: auto auto auto;
  }
  .system-stage-visual {
    height: auto;
    min-height: 400px;
  }
  .system-particles,
  .system-guide-svg {
    display: none;
  }
  .system-clusters,
  .system-labels,
  .system-descriptions {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    inset: auto;
  }
  .cluster,
  .step-label,
  .step-desc {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    opacity: 1;
    width: 100%;
  }
  .system-stepper {
    display: none;
  }
}

/* REDUCED-MOTION: alles statisch sichtbar, keine Animation, kein Pinning */
@media (prefers-reduced-motion: reduce) {
  #system { min-height: auto; }
  .system-stage { position: relative; height: auto; }
  .cluster, .step-label, .step-desc { opacity: 1 !important; }
  .system-guide-svg path { stroke-dashoffset: 0 !important; }
  .ph-hub-ring, .ph-hex { animation: none !important; }
  .system-particles { display: none; }
}

/* --- ABOUT: text on left side, brain on right --- */
#about {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left,
.about-right {
  max-width: 560px;
}


.about-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 60px;
}

.about-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 30px var(--accent-glow);
}

.stat-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--white-dim);
}

/* --- SERVICES: text left, brain right --- */
#services {
  min-height: 100vh;
}

.services-list {
  max-width: 65%;
}

.service-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-dim);
  transition: all 0.4s var(--ease);
  cursor: none;
}


.service-item:first-child {
  border-top: 1px solid var(--border-dim);
}

.service-item:hover {
  padding-left: 20px;
}

.service-item:hover .service-index {
  color: var(--accent);
}

.service-index {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--white-dim);
  padding-top: 8px;
  transition: color 0.3s;
}

.service-title {
  font-family: var(--display);
  font-size: var(--h-sm);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 400px;
}

.service-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.service-tags span {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--white-dim);
  padding: 6px 12px;
  border: 1px solid var(--border-dim);
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s;
  background: rgba(5, 10, 20, 0.55);
}

.service-item:hover .service-tags span {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px var(--accent-dim);
}

/* --- CONTACT --- */
.section-contact {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
  justify-content: center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.contact-title {
  font-family: var(--display);
  font-size: var(--h-lg);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}

.contact-email {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: 4px;
  line-height: 1;
  padding: 24px 48px;
  background: var(--accent);
  color: var(--black);
  border: 1px solid var(--accent);
  cursor: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.contact-email:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

.contact-links {
  display: flex;
  gap: 40px;
}

.contact-social {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--white-dim);
  transition: color 0.3s;
}

.contact-social:hover {
  color: var(--accent);
}

/* --- SERVICE DETAIL OVERLAY --- */
#service-detail {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: none;
}

#service-detail.active {
  opacity: 1;
  pointer-events: all;
}

.service-back {
  position: fixed;
  top: 28px;
  right: 40px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--white-dim);
  transition: color 0.3s;
  padding: 8px 0;
  pointer-events: auto;
  cursor: none;
}

.service-back:hover {
  color: var(--accent);
}

.back-arrow {
  font-size: 18px;
  line-height: 1;
}

.service-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 120px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

#service-detail.content-visible .service-detail-inner {
  opacity: 1;
  transform: translateY(0);
}

.sd-block { margin-bottom: 140px; }
.sd-block:last-child { margin-bottom: 0; }

.sd-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}
.sd-block-index { font-size: 12px; color: var(--accent); letter-spacing: 2px; }
.sd-block-label { font-size: 11px; letter-spacing: 4px; color: var(--white-dim); }
.sd-block-line { flex: 1; height: 1px; background: var(--border-default); }

/* --- BLOCK 1: HERO --- */
.sd-hero {
  max-width: 900px;
}

.sd-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.service-detail-index {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent);
}

.sd-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sd-hero-tag {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--white-dim);
  padding: 6px 12px;
  border: 1px solid var(--border-default);
  text-transform: uppercase;
}

.service-detail-title {
  font-family: var(--display);
  font-size: clamp(48px, 7.5vw, 110px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.service-detail-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 50px;
  font-weight: 400;
}

.service-detail-desc strong {
  color: var(--accent);
  font-weight: 600;
}

/* CTAs */
.sd-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 22px 38px;
  border: 1px solid var(--accent);
  background: rgba(0, 212, 255, 0.04);
  color: var(--accent);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: all 0.4s var(--ease);
}

.sd-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}

.sd-cta:hover::before {
  transform: translateX(0);
}

.sd-cta:hover {
  color: var(--black);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.sd-cta span {
  position: relative;
  z-index: 1;
}

.sd-cta-arrow {
  font-size: 16px;
  transition: transform 0.4s var(--ease);
}

.sd-cta:hover .sd-cta-arrow {
  transform: translateX(6px);
}

/* --- BLOCK 2: STATS --- */
.sd-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  padding: 60px 0;
}

.sd-stat {
  text-align: left;
  padding: 0 24px;
  border-right: 1px solid var(--border-dim);
}

.sd-stat:last-child {
  border-right: none;
}

.sd-stat-value {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1.5px;
  display: block;
  white-space: nowrap;
  text-shadow: 0 0 30px var(--accent-glow);
  margin-bottom: 12px;
}

.sd-stat-spark {
  width: 100%;
  height: 32px;
  margin-bottom: 12px;
  display: block;
  opacity: 0.75;
}

.sd-stat-spark path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
}

.sd-stat-spark .spark-fill {
  fill: var(--border-default);
  stroke: none;
}

.sd-stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--white-dim);
  text-transform: uppercase;
  display: block;
}

.sd-stat-source {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: rgba(154, 165, 184, 0.5);
  text-transform: uppercase;
}

.sd-compare-source {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: rgba(154, 165, 184, 0.5);
  text-transform: uppercase;
}

/* --- BLOCK 3: PAIN POINTS --- */
.sd-pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sd-pain-card {
  padding: 40px 32px;
  border: 1px solid rgba(255, 87, 34, 0.18);
  background: rgba(255, 87, 34, 0.03);
  position: relative;
  transition: all 0.4s var(--ease);
}

.sd-pain-card:hover {
  border-color: var(--border-active);
  background: rgba(0, 212, 255, 0.04);
  transform: translateY(-4px);
}

.sd-pain-index {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent-warm);
  margin-bottom: 16px;
  display: block;
}

.sd-pain-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sd-pain-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 12px;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--accent);
}

.sd-pain-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.sd-pain-solution {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-dim);
}

/* --- BLOCK 2.5: INTERACTIVE TOOL --- */
.sd-tool-container {
  border: 1px solid var(--border-default);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(0, 212, 255, 0.01));
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.sd-tool-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.sd-tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sd-tool-inputs {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sd-tool-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sd-tool-subtitle {
  font-size: 13px;
  color: var(--white-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}

.sd-tool-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-tool-field-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.sd-tool-field-value {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
  letter-spacing: 0;
}

/* Slider */
.sd-tool-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border-default);
  border-radius: 2px;
  outline: none;
  cursor: none;
}

.sd-tool-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  cursor: none;
  box-shadow: 0 0 16px var(--accent-glow), 0 0 32px rgba(0, 212, 255, 0.3);
  transition: transform 0.2s;
}

.sd-tool-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.sd-tool-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: none;
  box-shadow: 0 0 16px var(--accent-glow);
}

.sd-tool-slider-bounds {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(154, 165, 184, 0.6);
}

/* Result display */
.sd-tool-result {
  border-left: 1px solid var(--border-default);
  padding-left: 60px;
}

.sd-tool-result-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.sd-tool-result-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.sd-tool-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-dim);
}

.sd-tool-result-row:last-child {
  border-bottom: none;
}

.sd-tool-result-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--white-dim);
  text-transform: uppercase;
}

.sd-tool-result-value {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.sd-tool-result-hero {
  margin-bottom: 32px;
}

.sd-tool-result-hero-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.sd-tool-result-hero-value {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
}

.sd-tool-cta {
  margin-top: 24px;
}

.sd-tool-disclaimer {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  line-height: 1.6;
  color: rgba(154, 165, 184, 0.55);
  text-transform: uppercase;
}

.sd-tool-result-source {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(154, 165, 184, 0.5);
  text-transform: uppercase;
}

/* Inputs (text/url/number) */
.sd-tool-text-input {
  width: 100%;
  background: rgba(5, 10, 20, 0.6);
  border: 1px solid var(--border-active);
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  padding: 16px 20px;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.sd-tool-text-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--border-active);
}

@media (max-width: 1024px) {
  .sd-tool-container { padding: 40px 24px; }
  .sd-tool-grid { grid-template-columns: 1fr; gap: 40px; }
  .sd-tool-result { border-left: none; border-top: 1px solid var(--border-default); padding-left: 0; padding-top: 40px; }
}

/* --- BLOCK 3.5: COMPARE BARS --- */
.sd-compare-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sd-compare-row {
  display: grid;
  grid-template-columns: 200px 1fr 80px;
  gap: 32px;
  align-items: center;
}

.sd-compare-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.sd-compare-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sd-compare-bar {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
}

.sd-compare-bar-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sd-compare-bar-tag.before { color: var(--accent-warm); }
.sd-compare-bar-tag.after { color: var(--accent); }

.sd-compare-bar-track {
  height: 10px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--border-default);
  position: relative;
  overflow: hidden;
}

.sd-compare-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  transition: width 1.4s var(--ease);
}

.sd-compare-bar-fill.before {
  background: linear-gradient(90deg, rgba(255, 87, 34, 0.4), rgba(255, 87, 34, 0.7));
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.3);
}

.sd-compare-bar-fill.after {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.5), rgba(0, 212, 255, 1));
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.5);
}

.sd-compare-bar-value {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--white);
  min-width: 60px;
  text-align: right;
}

.sd-compare-multiplier {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
  text-align: right;
  letter-spacing: -1px;
}

@media (max-width: 1024px) {
  .sd-compare-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sd-compare-multiplier { text-align: left; }
}

/* --- BLOCK 4: PROCESS --- */
.sd-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.sd-process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--accent) 10%,
    var(--accent) 90%,
    transparent);
  opacity: 0.3;
}

.sd-process-step {
  position: relative;
  padding-top: 60px;
}

.sd-process-step::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--black);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-glow);
}

.sd-process-num {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.sd-process-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sd-process-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--white-dim);
}

/* --- BLOCK 5: DELIVERABLES --- */
.sd-deliverables-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-dim);
}

.sd-deliverables-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  font-size: 14px;
  color: var(--white);
  border-bottom: 1px solid var(--border-dim);
  transition: padding 0.3s var(--ease), color 0.3s;
}

.sd-deliverables-list li:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--border-dim);
}

.sd-deliverables-list li:nth-child(even) {
  padding-left: 24px;
}

.sd-deliverables-list li:hover {
  padding-left: 8px;
  color: var(--accent);
}

.sd-deliverables-list li:nth-child(even):hover {
  padding-left: 32px;
}

.sd-deliverables-list li::before {
  content: '✓';
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 0 10px var(--accent-glow);
}

/* --- BLOCK 6: CTA FOOTER --- */
.sd-cta-block {
  text-align: center;
  padding: 100px 40px;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
}

.sd-cta-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.sd-cta-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 50px;
}

.sd-cta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .sd-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-pains-grid { grid-template-columns: 1fr; }
  .sd-process-timeline { grid-template-columns: repeat(2, 1fr); }
  .sd-process-timeline::before { display: none; }
  .sd-deliverables-list { grid-template-columns: 1fr; }
  .sd-deliverables-list li:nth-child(odd) { padding-right: 0; border-right: none; }
  .sd-deliverables-list li:nth-child(even) { padding-left: 0; }
}

@media (max-width: 600px) {
  .service-detail-inner { padding: 100px 20px 80px; }
  .sd-block { margin-bottom: 100px; }
  .sd-stats-grid { grid-template-columns: 1fr; }
  .sd-stat { border-right: none; border-bottom: 1px solid var(--border-dim); padding: 24px 0; }
  .sd-stat:last-child { border-bottom: none; }
}

/* --- BLOCK SCRAMBLE / POINTER EVENTS WHEN OVERLAY OPEN --- */
body.overlay-open #intro,
body.overlay-open #hero,
body.overlay-open #about,
body.overlay-open #system,
body.overlay-open #services,
body.overlay-open #contact,
body.overlay-open .marquee,
body.overlay-open #footer {
  pointer-events: none !important;
}

body.overlay-open #intro *,
body.overlay-open #hero *,
body.overlay-open #about *,
body.overlay-open #system *,
body.overlay-open #services *,
body.overlay-open #contact *,
body.overlay-open .marquee *,
body.overlay-open #footer * {
  pointer-events: none !important;
}

/* --- WIZARD OVERLAY --- */
.wizard-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Brain darf durchschimmern aber OHNE backdrop-filter — der war die Haupt-
   Performance-Bremse beim Wizard-Open (full-viewport blur-sampling pro Frame
   bei jeder DOM-Änderung). Stattdessen: leicht-transparenter Solid-Layer (0.92).
   Brain bleibt schwach erkennbar als Tiefen-Hint, ohne Blur-Cost. */
.wizard-overlay.brain-visible {
  background: rgba(5, 10, 20, 0.92);
}

.wizard-close {
  position: fixed;
  top: 28px;
  right: 40px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--white-dim);
  transition: color 0.3s, opacity 0.3s;
  padding: 8px 0;
  pointer-events: none;
  opacity: 0;
  cursor: none;
}

.wizard-overlay.active .wizard-close {
  pointer-events: auto;
  opacity: 1;
}

.wizard-close:hover { color: var(--accent); }

.wizard-inner {
  width: 100%;
  max-width: 680px;
  padding: 40px;
  opacity: 0;
  transform: translateY(20px);
  /* Explizite Properties statt `all` — `all` zwingt Browser jedes geänderte
     Property zu beobachten, auch unbeabsichtigte (z.B. von innerHTML-Replacement
     in wzRender). Layout-Recalc-Cost beim Wizard-Open. */
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

.wizard-overlay.content-visible .wizard-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Progress */
.wizard-progress {
  width: 100%;
  height: 2px;
  background: var(--border-default);
  margin-bottom: 16px;
  overflow: hidden;
}

.wizard-progress-fill {
  width: 20%;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transition: width 0.5s var(--ease);
}

.wizard-step-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--white-dim);
  margin-bottom: 60px;
}

/* Step container */
.wizard-step-container {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wizard-question {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.wizard-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 32px;
}

/* Option buttons (large clickable) */
.wizard-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wizard-option {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border: 1px solid var(--border-default);
  background: rgba(0, 212, 255, 0.03);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white);
  cursor: none;
  transition: all 0.3s var(--ease);
  text-align: left;
  width: 100%;
  position: relative;
}

.wizard-option:hover {
  border-color: var(--border-active);
  background: var(--border-dim);
  padding-left: 36px;
}

.wizard-option.selected {
  border-color: var(--accent);
  background: var(--border-default);
  box-shadow: 0 0 20px var(--border-default);
}

.wizard-option-icon {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.wizard-option.selected .wizard-option-icon {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.wizard-option.selected .wizard-option-icon::after {
  content: '✓';
  font-size: 12px;
  color: var(--black);
  font-weight: 700;
}

/* Info box (explains technical terms) */
.wizard-info {
  padding: 24px;
  border-left: 2px solid var(--accent);
  background: rgba(0, 212, 255, 0.04);
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-dim);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.wizard-info.visible {
  opacity: 1;
  max-height: 200px;
  margin-top: 16px;
}

/* Profile step — description textarea + goal cards */
.wizard-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.wizard-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.wizard-label-optional {
  color: var(--white-dim);
  letter-spacing: 2px;
  text-transform: none;
  font-size: 10px;
}

/* Shared base für alle Wizard-Form-Controls (textarea, single-line input, select).
   Specifics (resize, padding-variants, chevron) je nach Element darunter. */
.wizard-textarea,
.wizard-text-input,
.wizard-select {
  width: 100%;
  background: rgba(5, 10, 20, 0.6);
  border: 1px solid var(--border-default);
  color: var(--white);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wizard-textarea:focus,
.wizard-text-input:focus,
.wizard-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.wizard-textarea {
  padding: 16px 20px;
  resize: vertical;
  min-height: 100px;
}

/* Single-line text input (Location, Bug A) */
.wizard-text-input {
  padding: 14px 20px;
}

/* Native select mit appearance:none + custom chevron via inline-SVG data-URI.
   SVG ist statisch (kein User-Input) — kein XSS-Risiko. */
.wizard-select {
  background: rgba(5, 10, 20, 0.6) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%239aa5b8' stroke-width='1.5' stroke-linecap='round'/></svg>") no-repeat right 20px center;
  padding: 14px 44px 14px 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Native option-Rendering im Browser-Dropdown — ohne expliziten Hintergrund
   würden manche Browser white-on-white rendern. */
.wizard-select option {
  background: #050a14;
  color: var(--white);
  font-family: var(--mono);
}

.wizard-field-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.wizard-hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--white-dim);
  line-height: 1.5;
}

.wizard-counter {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--white-dim);
  white-space: nowrap;
}

.wizard-counter.warn {
  color: var(--accent-warm);
}

.wizard-goal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wizard-goal-card {
  padding: 18px 20px;
  border: 1px solid var(--border-default);
  background: rgba(0, 212, 255, 0.03);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white);
  cursor: none;
  transition: all 0.3s var(--ease);
  text-align: left;
}

.wizard-goal-card:hover {
  border-color: var(--border-active);
  background: rgba(0, 212, 255, 0.06);
}

.wizard-goal-card.selected {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

@media (max-width: 600px) {
  .wizard-goal-grid { grid-template-columns: 1fr; }
}

/* Email input */
.wizard-email-input {
  width: 100%;
  background: rgba(5, 10, 20, 0.6);
  border: 1px solid var(--border-active);
  color: var(--white);
  font-family: var(--mono);
  font-size: 15px;
  padding: 20px 24px;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wizard-email-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--border-active);
}

/* Summary */
.wizard-summary {
  border: 1px solid var(--border-default);
  padding: 32px;
  margin-top: 16px;
}

.wizard-summary-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
}

.wizard-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 14px;
  color: var(--white);
}

.wizard-summary-item:last-child { border-bottom: none; }

.wizard-summary-check {
  color: var(--accent);
  font-size: 14px;
  text-shadow: 0 0 6px var(--accent-glow);
}

.wizard-summary-setup {
  color: var(--accent-warm);
  font-size: 13px;
}

.wizard-summary-package {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-default);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
}

/* Plan selection cards (step: plan) */
.wizard-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.wizard-plan-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 22px;
  border: 1px solid var(--border-default);
  background: rgba(0, 212, 255, 0.03);
  font-family: var(--mono);
  color: var(--white);
  cursor: none;
  transition: all 0.3s var(--ease);
  text-align: left;
}

.wizard-plan-card:hover {
  border-color: var(--border-active);
  background: rgba(0, 212, 255, 0.06);
  transform: translateY(-2px);
}

.wizard-plan-card.selected {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.2);
}

.wizard-plan-name {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

.wizard-plan-price {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.wizard-plan-card.selected .wizard-plan-price {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(0, 212, 255, 0.4);
}

.wizard-plan-price-suffix {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
  font-family: var(--mono);
  font-weight: 400;
}

.wizard-plan-tagline {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 4px;
}

.wizard-plan-features {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-dim);
}

.wizard-plan-features li {
  font-size: 12px;
  color: var(--white);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
  letter-spacing: 0.3px;
}

.wizard-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 800px) {
  .wizard-plan-grid { grid-template-columns: 1fr; }
}

/* Summary plan-display */
.wizard-summary-plan {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--border-dim);
}

.wizard-summary-plan-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
}

.wizard-summary-plan-price {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--white);
  letter-spacing: 1px;
}

.wizard-summary-plan-tagline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent);
  font-style: italic;
  padding: 8px 0 4px;
  opacity: 0.85;
}

.wizard-summary-subtitle {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-top: 20px;
  margin-bottom: 8px;
  opacity: 0.7;
}

/* Nav buttons */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.wizard-btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  padding: 16px 32px;
  cursor: none;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
}

.wizard-btn-back {
  color: var(--white-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.wizard-btn-back:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.wizard-btn-next {
  color: var(--black);
  background: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.wizard-btn-next:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  transform: translateX(4px);
}

.wizard-btn-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  box-shadow: none;
}

.wizard-btn-next:disabled:hover {
  transform: none;
}

/* Wizard error */
.wizard-error {
  color: var(--accent-warm);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.wizard-error.visible { opacity: 1; }

@media (max-width: 768px) {
  .wizard-inner { padding: 24px 20px; }
  .wizard-option { padding: 18px 20px; font-size: 13px; }
  .wizard-nav { gap: 12px; }
  .wizard-btn { padding: 14px 20px; font-size: 11px; }
}

/* --- LEGAL OVERLAY --- */
.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.4s var(--ease);
}

.legal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.legal-back {
  position: fixed;
  top: 28px;
  right: 40px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--white-dim);
  transition: color 0.3s, opacity 0.3s;
  padding: 8px 0;
  pointer-events: none;
  opacity: 0;
  cursor: none;
}

.legal-overlay.active .legal-back {
  pointer-events: auto;
  opacity: 1;
}

.legal-back:hover { color: var(--accent); }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 160px 40px 120px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
}

.legal-overlay.content-visible .legal-content {
  opacity: 1;
  transform: translateY(0);
}

.legal-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 24px;
}

.legal-title {
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 60px;
}

.legal-body h2 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 48px 0 16px;
  text-transform: uppercase;
}

.legal-body h3 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  margin: 32px 0 12px;
  text-transform: uppercase;
}

.legal-body p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--white-dim);
  margin-bottom: 14px;
}

.legal-body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  transition: border-color 0.3s;
}

.legal-body a:hover { border-color: var(--accent); }

.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.legal-body ul li {
  font-size: 14px;
  line-height: 1.85;
  color: var(--white-dim);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Footer legal links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-link {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--white-dim);
  transition: color 0.3s;
  cursor: none;
}

.footer-link:hover { color: var(--accent); }

.footer-divider {
  color: var(--white-dim);
  opacity: 0.4;
  font-size: 10px;
}

/* --- FOOTER: solid background, brain hidden --- */
#footer {
  padding: var(--space-sm) 40px;
  border-top: 1px solid var(--border-dim);
  position: relative;
  z-index: 5;
  background: var(--black);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
}

.footer-copy {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--white-dim);
}

.footer-credit {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--white-dim);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-list {
    max-width: 100%;
  }

  .service-item {
    grid-template-columns: 40px 1fr;
  }

  .service-tags {
    grid-column: 2;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  #nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  #nav-menu-btn {
    display: flex;
  }

  .section {
    padding: 100px 20px;
  }

  .hero-content {
    width: 100%;
    padding: 0 20px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .about-stats {
    flex-direction: column;
    gap: 32px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-index {
    font-size: 10px;
  }

  .contact-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .contact-email {
    letter-spacing: 2px;
    padding: 14px 20px;
    font-size: clamp(11px, 3vw, 16px);
    word-break: break-word;
  }

  .hero-cta {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 14px 24px 18px;
    width: 100%;
    justify-content: center;
  }

  .sd-cta {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 16px 24px;
    width: 100%;
    justify-content: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   FAQ-PAGE — eigenständige /faq-Seite
   Minimalistisch, ohne Lenis/Cursor/Three — AEO-optimal (alles sofort im HTML)
   ============================================ */

.faq-body {
  cursor: auto;
  overflow-y: auto;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: var(--mono);
}

.faq-body #cursor,
.faq-body #cursor-trail {
  display: none !important;
}

.faq-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-default);
}

.faq-nav .nav-logo {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.faq-nav .nav-logo:hover {
  color: var(--accent);
}

.faq-nav .nav-links {
  display: flex;
  gap: 32px;
}

.faq-nav .nav-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--white-dim);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.faq-nav .nav-link:hover {
  color: var(--accent);
}

.faq-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.faq-header {
  margin-bottom: 80px;
}

.faq-header .section-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 24px;
}

.faq-title {
  font-family: var(--display);
  font-size: var(--h-lg);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  margin: 0 0 32px;
  text-transform: uppercase;
}

.faq-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 680px;
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--border-default);
}

.faq-item {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-default);
}

.faq-q {
  font-family: var(--display);
  font-size: var(--h-sm);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  color: var(--white);
}

.faq-a {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white);
  margin: 0 0 16px;
}

.faq-a:last-child {
  margin-bottom: 0;
}

.faq-a strong {
  color: var(--white);
  font-weight: 600;
}

.faq-a em {
  color: var(--white-dim);
  font-style: italic;
}

.faq-list-inline {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-list-inline li {
  font-size: 16px;
  line-height: 1.6;
  padding: 12px 20px;
  border-left: 2px solid var(--accent);
  background: rgba(0, 212, 255, 0.04);
  color: var(--white);
}

.faq-cta {
  margin-top: 120px;
  padding: 80px 40px;
  border: 1px solid var(--border-default);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(0, 212, 255, 0.01));
  text-align: center;
}

.faq-cta-title {
  font-family: var(--display);
  font-size: var(--h-md);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 20px;
  text-transform: none;
}

.faq-cta-desc {
  font-size: 15px;
  color: var(--white-dim);
  margin: 0 0 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 22px 44px;
  border: 1px solid var(--accent);
  background: rgba(0, 212, 255, 0.04);
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.faq-cta-link:hover {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.faq-cta-arrow {
  font-size: 16px;
  transition: transform 0.3s var(--ease);
}

.faq-cta-link:hover .faq-cta-arrow {
  transform: translateX(6px);
}

.faq-footer {
  border-top: 1px solid var(--border-default);
  padding: 40px;
}

.faq-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-footer .footer-brand {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--white);
}

.faq-footer .footer-legal {
  display: flex;
  gap: 16px;
  align-items: center;
}

.faq-footer .footer-link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.faq-footer .footer-link:hover {
  color: var(--accent);
}

.faq-footer .footer-divider {
  color: var(--white-dim);
  opacity: 0.4;
}

.faq-footer .footer-credit {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--white-dim);
}

@media (max-width: 768px) {
  .faq-nav { padding: 16px 20px; }
  .faq-nav .nav-links { display: none; }
  .faq-main { padding: 40px 24px 80px; }
  .faq-header { margin-bottom: 48px; }
  .faq-item { padding: 32px 0; }
  .faq-cta { margin-top: 64px; padding: 48px 24px; }
}

/* ============================================
   PRICING SECTION — inline Tier-Cards auf Landing
   ============================================ */

.pricing-intro {
  margin-bottom: var(--space-lg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 40px 32px;
  border: 1px solid var(--border-default);
  background: rgba(0, 212, 255, 0.03);
  font-family: var(--mono);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s var(--ease);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-active);
  background: rgba(0, 212, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.08);
}

.pricing-card.pricing-highlight {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.12);
}

.pricing-card.pricing-highlight:hover {
  box-shadow: 0 12px 48px rgba(0, 212, 255, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
}

.pricing-name {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
}

.pricing-price {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-card:hover .pricing-price,
.pricing-card.pricing-highlight .pricing-price {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(0, 212, 255, 0.4);
}

.pricing-price-suffix {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white-dim);
  margin-left: 6px;
  text-shadow: none;
}

.pricing-tagline {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 8px;
}

.pricing-features {
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-dim);
  flex: 1;
}

.pricing-features li {
  font-size: 13px;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
  color: var(--white);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
  padding: 18px 24px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  transition: all 0.3s var(--ease);
}

.pricing-card:hover .pricing-cta,
.pricing-card.pricing-highlight .pricing-cta {
  background: var(--accent);
  color: var(--black);
}

.pricing-footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 0.3px;
}

.pricing-footnote-link {
  color: var(--accent);
  text-decoration: none;
  margin-left: 4px;
}

.pricing-footnote-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-price { font-size: 44px; }
}

.services-intro {
  max-width: 720px;
  margin: 0 0 var(--space-md);
}

/* ============================================
   A11y — Reduced-Motion + Touch-Device
   ============================================ */

/* Custom cursor deaktivieren bei: reduced-motion preference ODER touch-device.
   Screen-Reader-User + mobile Touch-User brauchen native cursor-Defaults. */
@media (prefers-reduced-motion: reduce), (hover: none), (any-pointer: coarse) {
  #cursor,
  #cursor-trail {
    display: none !important;
  }
  html,
  body,
  a,
  button,
  [class*="wizard-trigger"],
  .beta-cta,
  .service-item,
  .pricing-card,
  .faq-cta-link {
    cursor: auto !important;
  }
  a,
  button,
  .service-item,
  .pricing-card,
  .faq-cta-link,
  [role="button"] {
    cursor: pointer !important;
  }
}

/* Animations drastisch reduzieren bei prefers-reduced-motion (Epilepsie/Vestibular-Störungen) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track,
  .marquee {
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================
   SCROLL-PROGRESS-SIDEBAR (rechts, fixed)
   ============================================ */

.scroll-progress {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 4px;
  pointer-events: auto;
}

.scroll-progress-dot {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--white-dim);
  background: transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  opacity: 0.5;
}

.scroll-progress-dot:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.2);
  opacity: 1;
  transform: scale(1.2);
}

.scroll-progress-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
  box-shadow: 0 0 12px var(--accent-glow), 0 0 24px rgba(0, 212, 255, 0.15);
  transform: scale(1.35);
}

.scroll-progress-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease);
  padding: 4px 10px;
  background: rgba(5, 10, 20, 0.92);
  border: 1px solid var(--border-default);
}

.scroll-progress-dot:hover .scroll-progress-label,
.scroll-progress-dot.active .scroll-progress-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Mobile + Touch: Sidebar komplett aus (redundant mit Burger-Menu, klebt kollidiert mit Content) */
@media (max-width: 900px), (any-pointer: coarse) {
  .scroll-progress { display: none; }
}

/* Sidebar ausblenden wenn Overlay (Wizard/Service-Detail/Legal) offen ist */
body.overlay-open .scroll-progress {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* ============================================
   SERVICE-CARD DETAILS-INDICATOR
   ============================================ */

.service-item {
  position: relative;
}

.service-item::after {
  content: '→';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  font-size: 24px;
  color: var(--accent);
  opacity: 0;
  transition: all 0.3s var(--ease);
  pointer-events: none;
}

.service-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (any-pointer: coarse) {
  /* Touch: Pfeil permanent sichtbar (kein Hover) */
  .service-item::after {
    opacity: 0.5;
    transform: translateY(-50%);
  }
}

/* ============================================
   CTA-PROMINENZ (Hero-CTA mehr Gewicht)
   ============================================ */

.hero-cta {
  /* Verstärkter Glow + subtle pulse um CTA prominenter zu machen */
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.25), 0 0 64px rgba(0, 212, 255, 0.1);
  position: relative;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: heroCtaPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroCtaPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta::before { animation: none; }
}

/* ============================================
   BETA-PAGE (/beta) — alles Beta-spezifische
   Wenn Beta endet: Block entfernen.
   ============================================ */

/* Body — kein Loader, kein Brain-3D, kein Lenis-Smooth-Scroll
   (page hat eigenen Lenis-State nicht nötig — kleine Page, kein Hero-3D)
   Background ist transparent — .beta-bg (z-index:-2) zeigt das WebGL-Bild,
   html-background = --black ist Fallback wenn Bilder nicht laden. */
body.beta-page {
  background: transparent;
  color: var(--white);
  font-family: var(--mono);
  cursor: auto;
  overflow-x: hidden;
  position: relative;
}

/* Dunkler Overlay über dem Bild für Text-Lesbarkeit.
   Mid-Range ~45% damit Nebel-Atmosphäre noch durchkommt aber Hero-Text klar bleibt. */
body.beta-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 20, 0.65) 0%,
    rgba(5, 10, 20, 0.42) 35%,
    rgba(5, 10, 20, 0.5) 70%,
    rgba(5, 10, 20, 0.72) 100%
  );
  pointer-events: none;
}

/* BG-Wrapper: fixed, hinter allem. <img> als Fallback (wenn WebGL/Bilder/JS aus),
   <canvas> wird drauf gemounted und nimmt nach Initialisierung den Platz ein. */
.beta-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: var(--black);
}

.beta-bg-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease;
}

.beta-bg-fallback-hidden {
  opacity: 0;
}

.beta-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* prefers-reduced-motion: kein Canvas-Animation, Fallback-<img> sichtbar lassen */
@media (prefers-reduced-motion: reduce) {
  .beta-bg-canvas { display: none; }
  .beta-bg-fallback { opacity: 1 !important; }
}

/* Beta-Page nutzt nativen Cursor — kein Custom-Cursor wie auf Landing */
body.beta-page #cursor,
body.beta-page #cursor-trail {
  display: none;
}

/* Default-Cursor für alle interaktiven Elemente auf Beta-Page
   (Landing setzt cursor:none auf body/a/button für Custom-Cursor — überschreiben) */
body.beta-page,
body.beta-page a,
body.beta-page button,
body.beta-page input,
body.beta-page label {
  cursor: auto;
}

body.beta-page a,
body.beta-page button,
body.beta-page .form-checkbox,
body.beta-page .form-checkbox-label,
body.beta-page input[type="checkbox"] {
  cursor: pointer;
}

body.beta-page input[type="text"],
body.beta-page input[type="email"] {
  cursor: text;
}

/* Slim Nav — nur Logo + 2 Links, ohne Burger/Sound-Toggle
   #nav.nav-slim overrides die Landing-Page-Defaults (mix-blend-mode,
   opacity, padding) damit die Beta-Page ohne GSAP-Reveal funktioniert. */
#nav.nav-slim {
  mix-blend-mode: normal;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-default);
  padding: 0 48px;
}

#nav.nav-slim .nav-logo {
  opacity: 1;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  text-shadow: none;
}

#nav.nav-slim .nav-logo .logo-letter {
  display: inline-block;
}

#nav.nav-slim .nav-links {
  display: flex;
  gap: 32px;
  opacity: 1;
}

#nav.nav-slim .nav-link {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  text-decoration: none;
  text-shadow: none;
  transition: color 0.2s var(--ease);
  opacity: 1;
  padding: 4px 8px;
}

#nav.nav-slim .nav-link::after {
  display: none;
}

#nav.nav-slim .nav-link::before {
  display: none;
}

#nav.nav-slim .nav-link:hover {
  color: var(--accent);
}

/* Beta-CTA Highlight im Landing-Nav */
.nav-link-beta,
.mobile-link-beta {
  color: var(--accent) !important;
}

/* Pulsing-Dot vor BETA-Link — überschreibt die generische .nav-link::before
   Hover-Animation (data-label-Reveal), weil hier der Dot wichtiger ist. */
.nav-link.nav-link-beta::before,
.mobile-link.mobile-link-beta::before {
  content: '●';
  position: static;
  display: inline-block;
  margin-right: 6px;
  font-size: 8px;
  vertical-align: middle;
  opacity: 1;
  transform: none;
  color: var(--accent);
  animation: betaPulse 2s ease-in-out infinite;
}

@keyframes betaPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Main Layout */
.beta-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 64px) 48px 96px;
}

/* Hero */
.beta-hero {
  padding: 64px 0 96px;
  text-align: center;
}

.beta-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}

.beta-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  background: rgba(0, 212, 255, 0.06);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 48px;
}

.beta-status-tag .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: betaPulse 1.8s ease-in-out infinite;
}

.beta-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}

.beta-lead {
  font-family: var(--mono);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: var(--white-dim);
  max-width: 720px;
  margin: 0 auto;
}

/* Sections */
.beta-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-default);
}

.beta-section .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.beta-section .section-label {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.beta-section .section-label-text {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white-dim);
}

.beta-section .section-line {
  flex: 1;
  height: 1px;
  background: var(--border-default);
}

/* 3 Säulen-Erklärung */
.beta-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.beta-pillar {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--border-default);
  background: rgba(10, 18, 32, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.beta-pillar:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.beta-pillar .pillar-index {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.beta-pillar .pillar-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.beta-pillar .pillar-desc {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-dim);
}

/* Beta-Vorteile */
.beta-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.beta-perk {
  padding: 0;
}

.beta-perk .perk-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.beta-perk .perk-desc {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-dim);
}

/* Form */
.beta-signup-section {
  max-width: 640px;
  margin: 0 auto;
}

.beta-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
  border: 1px solid var(--border-default);
  background: rgba(10, 18, 32, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--border-default);
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.form-input::placeholder {
  color: rgba(168, 180, 200, 0.4);
}

.form-input:focus,
.form-input:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.03);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: var(--accent-warm);
}

/* Checkbox */
.form-row-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-checkbox-label {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
  color: var(--white-dim);
  cursor: pointer;
}

.form-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 255, 0.3);
  text-underline-offset: 3px;
}

.form-link:hover {
  text-decoration-color: var(--accent);
}

/* DSGVO-Details — eingeklappt per Default, accessibility-OK */
.form-privacy-details {
  border: 1px solid var(--border-default);
  background: var(--black);
  padding: 0;
}

.form-privacy-summary {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 12px 16px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s var(--ease);
}

.form-privacy-summary:hover {
  color: var(--accent);
}

.form-privacy-details[open] .form-privacy-summary {
  color: var(--accent);
  border-bottom: 1px solid var(--border-default);
}

.form-privacy-body {
  padding: 16px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--white-dim);
}

.form-privacy-body p {
  margin-bottom: 10px;
}

.form-privacy-body p:last-child {
  margin-bottom: 0;
}

.form-privacy-body strong {
  color: var(--white);
  font-weight: 500;
}

/* Honeypot — vor Bots versteckt, vor Screen-Readern hidden */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Turnstile Wrapper */
.form-row-turnstile {
  align-items: flex-start;
  min-height: 65px;
}

.cf-turnstile {
  display: inline-block;
}

/* Submit */
.form-row-submit {
  margin-top: 8px;
}

/* Beta-CTA (Universal — auch Hero + Kontakt auf Landing) */
.beta-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--accent);
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 0 0 rgba(0, 212, 255, 0);
}

.beta-cta:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.25);
}

.beta-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.beta-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.beta-submit {
  width: 100%;
}

.beta-cta-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.beta-cta-secondary:hover {
  background: var(--accent);
  color: var(--black);
}

/* Form Status */
.form-status {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
  min-height: 1.5em;
  padding: 0;
  transition: color 0.2s var(--ease);
}

.form-status:empty {
  display: none;
}

.form-status-pending {
  color: var(--white-dim);
}

.form-status-success {
  color: var(--accent);
  padding: 16px;
  border: 1px solid var(--accent);
  background: rgba(0, 212, 255, 0.06);
}

.form-status-error {
  color: var(--accent-warm);
  padding: 16px;
  border: 1px solid var(--accent-warm);
  background: rgba(255, 87, 34, 0.06);
}

.beta-form-foot {
  margin-top: 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white-dim);
}

/* FAQ-Teaser */
.beta-faq-teaser {
  text-align: center;
  border-top: 1px solid var(--border-default);
  padding: 80px 0;
}

.faq-teaser-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}

.faq-teaser-desc {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--white-dim);
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 900px) {
  .beta-main {
    padding: calc(var(--nav-height) + 32px) 24px 64px;
  }

  .nav-slim {
    padding: 0 24px;
  }

  .nav-slim .nav-links {
    gap: 20px;
  }

  .beta-pillars,
  .beta-perks {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .beta-form {
    padding: 32px 24px;
  }

  .beta-hero {
    padding: 32px 0 64px;
  }

  .beta-section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .beta-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .beta-status-tag {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 6px 12px;
  }
}

/* ============================================
   ===== END BETA-CSS BLOCK =====
   Bei Beta-Ende ALLES ab "BETA-PAGE (/beta)"
   (siehe Anfangs-Header oben) bis hierher löschen.
   ============================================ */

/* ============================================
   KONTAKT-MODAL (Direct-Contact-Form)
   ============================================ */

/* CTA-Container in #contact section */
.contact-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-secondary {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 3px;
  line-height: 1;
  padding: 16px 32px;
  color: var(--white-dim);
  border: 1px solid var(--border-default);
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  text-transform: uppercase;
}

.contact-secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Modal Overlay */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.contact-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  all: unset;
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.85);
  cursor: pointer;
}

.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 64px);
  background: var(--black);
  border: 1px solid var(--border-default);
  padding: 48px 40px;
  overflow-y: auto;
  font-family: var(--mono);
}

.contact-modal-close {
  all: unset;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white-dim);
  cursor: pointer;
  transition: color 0.2s var(--ease);
  z-index: 2;
}

.contact-modal-close:hover {
  color: var(--accent);
}

.contact-modal-header {
  margin-bottom: 28px;
}

.contact-modal-title {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 8px 0 10px;
}

.contact-modal-subtitle {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form .form-row {
  gap: 6px;
}

/* Optional-Hint im Label */
.form-label-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.05em;
  color: rgba(168, 180, 200, 0.5);
  margin-left: 4px;
}

/* Textarea — eigene Höhe, kein resize-Handle */
.form-textarea {
  resize: vertical;
  min-height: 96px;
  max-height: 240px;
  line-height: 1.5;
}

.contact-modal-foot {
  margin-top: 20px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white-dim);
}

/* Mobile */
@media (max-width: 600px) {
  .contact-modal {
    padding: 0;
    align-items: flex-end;
  }
  .contact-modal-panel {
    max-width: 100%;
    max-height: 90vh;
    padding: 32px 24px;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-modal { transition: opacity 0.1s ease; }
}

/* ============================================
   CONSENT-BANNER (DSGVO / DIY)
   ============================================
   Fixed unten-rechts mit max-width, bei mobile full-width unten.
   Default versteckt (opacity:0, translateY) — .visible class fadet ein.
*/

.consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(440px, calc(100vw - 48px));
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  font-family: var(--mono);
}

.consent-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.consent-banner-inner {
  /* Solid background statt backdrop-filter blur — letzteres ist massiv
     GPU-teuer parallel zu WebGL-Brain + bg-parallax. Visuell fast identisch. */
  background: rgba(5, 10, 20, 0.97);
  border: 1px solid var(--border-default);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 212, 255, 0.1);
  padding: 24px;
  border-radius: 4px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.consent-banner-title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.consent-banner-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.consent-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 255, 0.4);
  text-underline-offset: 2px;
}

.consent-link:hover {
  text-decoration-color: var(--accent);
}

.consent-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consent-btn {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid transparent;
  background: none;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.consent-btn-primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
}

.consent-btn-primary:hover {
  background: #5ee3ff;
  border-color: #5ee3ff;
}

.consent-btn-secondary {
  border-color: var(--border-default);
  color: var(--white-dim);
}

.consent-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.consent-btn-ghost {
  background: none;
  border-color: transparent;
  color: var(--white-dim);
  font-size: 11px;
  padding: 8px 12px;
}

.consent-btn-ghost:hover {
  color: var(--accent);
}

.consent-chevron {
  font-size: 10px;
  line-height: 1;
}

/* Settings-Dropdown */
.consent-settings {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-default);
}

.consent-settings.open {
  display: block;
}

.consent-toggle {
  margin-bottom: 14px;
}

.consent-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.consent-toggle-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.consent-toggle-label input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.consent-toggle-name {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
}

.consent-toggle-desc {
  display: block;
  margin-top: 4px;
  margin-left: 26px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--white-dim);
}

.consent-settings-actions {
  margin-top: 16px;
}

.consent-settings-actions .consent-btn {
  width: 100%;
}

/* ─────────────────────────────────────────────────────
   Kategorie-Modell (v2): Notwendige / Analyse / Marketing
   mit ausklappbarer Tools-Liste pro Kategorie.
   ───────────────────────────────────────────────────── */

.consent-category {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-default);
}

.consent-category:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.consent-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.consent-category-status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.7;
}

.consent-category-desc {
  margin: 6px 0 8px 26px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--white-dim);
}

.consent-tools-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 26px;
  padding: 4px 0;
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.consent-tools-toggle:hover {
  opacity: 0.75;
}

.consent-tools-chevron {
  display: inline-block;
  width: 10px;
  font-size: 12px;
  line-height: 1;
}

.consent-tools-list {
  display: none;
  margin: 8px 0 4px 26px;
  padding: 10px 14px;
  list-style: none;
  border-left: 2px solid var(--accent);
  background: rgba(0, 212, 255, 0.04);
}

.consent-tools-list.open {
  display: block;
}

.consent-tools-list li {
  font-size: 11px;
  line-height: 1.6;
  color: var(--white);
  padding: 4px 0;
}

.consent-tools-list li + li {
  border-top: 1px solid var(--border-default);
}

.consent-tools-list li strong {
  color: var(--white);
  font-weight: 600;
}

.consent-tools-list li em {
  color: var(--accent);
  font-style: normal;
}

/* Mobile: full-width Bottom-Banner */
@media (max-width: 600px) {
  .consent-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
  }
  .consent-banner-inner {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consent-banner {
    transition: opacity 0.2s ease;
    transform: none;
  }
}

/* ============================================================
   BETA STORY-SECTIONS — Sales-Narrativ Sections (Klarheit /
   Intelligenz / Wissensvorsprung / Vertrauen / Dialog)
   ============================================================ */

/* Section-Intro: schmaler einleitender Block direkt nach Hero */
.beta-intro-section {
  padding-top: 64px;
  padding-bottom: 32px;
  border-top: none;
}

.beta-intro-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin: 0 0 20px;
}

.beta-intro-lead {
  font-family: var(--mono);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 720px;
  margin: 0;
}

/* Generische Story-Section: große Headline + Body-Volltext + Bullets */
.beta-story .story-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin: 0 0 24px;
  max-width: 880px;
}

.beta-story .story-body {
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.75;
  color: var(--white-dim);
  max-width: 760px;
  margin: 0 0 20px;
}

.beta-story .story-body strong {
  color: var(--white);
  font-weight: 600;
}

.beta-story .story-body em {
  color: var(--white-dim);
  font-style: italic;
}

.beta-story .story-body-lead {
  font-size: 16px;
  color: var(--white);
}

.beta-story .story-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
}

.beta-story .story-bullets li {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  padding: 12px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(0, 212, 255, 0.04);
  color: var(--white);
}

.beta-story .story-bullets li em {
  color: var(--white-dim);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.beta-story .story-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
  transition: border-color 0.2s var(--ease);
}

.beta-story .story-link:hover {
  border-bottom-color: var(--accent);
}

/* Section D — Double-Block: Anti-Halluzination + Datenschutz */
.beta-story-double .story-block {
  margin-top: 32px;
  padding: 28px 32px;
  border: 1px solid var(--border-default);
  background: rgba(10, 18, 32, 0.6);
}

.beta-story-double .story-block + .story-block {
  margin-top: 20px;
}

.beta-story-double .story-block-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--accent);
  margin: 0 0 16px;
}

.beta-story-double .story-block .story-body {
  margin-bottom: 14px;
}

.beta-story-double .story-block .story-body:last-child {
  margin-bottom: 0;
}

/* Section E — Premium-Variant der Story-Section */
.beta-story-premium .story-headline {
  color: var(--white);
}

.premium-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  background: var(--accent);
  color: var(--bg-dark, #050a14);
  vertical-align: middle;
}

/* ============================================================
   DIFFERENZIERUNGS-BLOCK — visueller Trust-Anker (6er-Grid)
   ============================================================ */

.beta-diff-section {
  padding: 64px 0;
}

.beta-diff-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin: 0 0 40px;
  text-align: center;
}

.beta-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.beta-diff-item {
  position: relative;
  padding: 24px 24px 24px 64px;
  border: 1px solid var(--border-default);
  background: rgba(10, 18, 32, 0.7);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.3s var(--ease);
}

.beta-diff-item:hover {
  border-color: var(--accent);
}

.beta-diff-item .diff-icon {
  position: absolute;
  left: 20px;
  top: 22px;
  font-size: 26px;
  line-height: 1;
}

.beta-diff-item strong {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.beta-diff-item .diff-sub {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ============================================================
   PLAN-VERGLEICHS-TABELLE — Basic / Pro / Premium
   ============================================================ */

.beta-plans .story-body-lead {
  margin-bottom: 40px;
}

.beta-plan-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
  padding: 0 16px;
}

.beta-plan-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--white);
}

.beta-plan-table thead th {
  padding: 24px 20px;
  text-align: center;
  border-bottom: 2px solid var(--border-default);
  vertical-align: bottom;
}

.beta-plan-table thead .plan-feature-col {
  width: 40%;
  text-align: left;
  background: transparent;
}

.beta-plan-table thead .plan-col {
  background: rgba(10, 18, 32, 0.6);
  border-left: 1px solid var(--border-default);
}

.beta-plan-table thead .plan-col-pro {
  background: rgba(0, 212, 255, 0.08);
  border-top: 2px solid var(--accent);
  position: relative;
}

.beta-plan-table thead .plan-col-pro::after {
  content: "MEISTGEWÄHLT";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.beta-plan-table thead .plan-col-premium {
  background: rgba(10, 18, 32, 0.85);
}

.beta-plan-table .plan-name {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.beta-plan-table .plan-price {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  color: var(--white);
}

.beta-plan-table .plan-price-suffix {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white-dim);
  font-weight: 400;
  margin-left: 2px;
}

.beta-plan-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.05));
  line-height: 1.45;
}

.beta-plan-table tbody td:first-child {
  text-align: left;
  color: var(--white);
}

.beta-plan-table tbody td:not(:first-child) {
  text-align: center;
  border-left: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.05));
  font-size: 18px;
  vertical-align: middle;
}

.beta-plan-table .plan-feature-sub {
  display: block;
  font-size: 12px;
  color: var(--white-dim);
  margin-top: 4px;
  line-height: 1.4;
}

.beta-plan-table tbody tr.plan-row-highlight td:first-child strong {
  color: var(--accent);
}

.beta-plan-table .cell-yes {
  color: var(--accent);
  font-weight: 600;
}

.beta-plan-table .cell-no {
  color: var(--white-dim);
  opacity: 0.5;
}

.beta-plan-table .cell-soon {
  font-size: 16px;
}

.beta-plan-table tbody tr:hover td {
  background: rgba(0, 212, 255, 0.03);
}

/* ============================================================
   TRUST-STRIP — wiederkehrender Datenschutz-Anker
   ============================================================ */

.beta-trust-strip-section {
  padding: 32px 0;
  border-top: none;
}

.beta-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border-default);
  background: rgba(10, 18, 32, 0.6);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--white);
}

.beta-trust-strip .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.beta-trust-strip .trust-emoji {
  font-size: 15px;
  line-height: 1;
}

.beta-trust-strip .trust-sep {
  color: var(--white-dim);
  opacity: 0.5;
}

/* ============================================================
   STORY-SECTIONS — Mobile Responsive
   ============================================================ */

@media (max-width: 900px) {
  .beta-diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .beta-story .story-headline {
    font-size: clamp(22px, 5.5vw, 30px);
  }

  .beta-story-double .story-block {
    padding: 24px 20px;
  }

  .beta-plan-table thead th {
    padding: 18px 12px;
  }

  .beta-plan-table .plan-name {
    font-size: 18px;
  }

  .beta-plan-table .plan-price {
    font-size: 22px;
  }

  .beta-plan-table tbody td {
    padding: 12px 14px;
  }

  .beta-trust-strip {
    font-size: 12px;
    gap: 10px;
    padding: 16px 18px;
  }

  .beta-trust-strip .trust-sep {
    display: none;
  }
}

@media (max-width: 600px) {
  .beta-diff-grid {
    grid-template-columns: 1fr;
  }

  .beta-diff-item {
    padding-left: 60px;
  }

  .beta-intro-title {
    font-size: clamp(22px, 7vw, 32px);
  }
}


/* ============================================================
   SERVICE-PAGES — Eigene Detail-Pages pro Service
   (marketing-system, prozessoptimierung, webentwicklung,
    branding, social-media, coaching)
   ============================================================ */

.service-page {
  background: var(--bg, #050a14);
  color: var(--white, #ffffff);
}

.service-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: calc(var(--nav-height, 80px) + 64px) 40px 96px;
}

.service-hero {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-default);
  margin-bottom: 64px;
}

.service-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin: 0 0 24px;
  max-width: 900px;
}

.service-lead {
  font-family: var(--mono);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 760px;
  margin: 0 0 36px;
}

.service-hero-ctas,
.service-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  background: var(--accent);
  color: #050a14;
  border: 1px solid var(--accent);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

.service-cta:hover {
  box-shadow: 0 0 36px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

.service-cta-secondary {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
}

.service-cta-secondary:hover {
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.2);
}

.service-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border-default);
}

.service-section:last-of-type {
  border-bottom: none;
}

.service-section-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin: 0 0 32px;
  max-width: 860px;
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
}

.service-bullets li {
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.7;
  padding: 16px 22px;
  border-left: 2px solid var(--accent);
  background: rgba(0, 212, 255, 0.04);
  color: var(--white);
}

.service-bullets li strong {
  color: var(--accent);
  font-weight: 600;
}

.service-bullets li a {
  color: var(--accent);
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
  text-decoration: none;
}

.service-pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-pain {
  padding: 28px 24px;
  border: 1px solid var(--border-default);
  background: rgba(10, 18, 32, 0.6);
  transition: border-color 0.3s var(--ease);
}

.service-pain:hover {
  border-color: var(--accent);
}

.service-pain h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--accent);
  margin: 0 0 12px;
}

.service-pain p {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.65;
  color: var(--white-dim);
  margin: 0;
}

.service-process {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: process;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-process li {
  position: relative;
  padding: 20px 24px 20px 80px;
  border: 1px solid var(--border-default);
  background: rgba(10, 18, 32, 0.5);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.65;
  color: var(--white-dim);
  counter-increment: process;
}

.service-process li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 22px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.service-process li strong {
  color: var(--white);
  font-weight: 600;
}

.service-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.service-pricing-card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--border-default);
  background: rgba(10, 18, 32, 0.6);
  transition: border-color 0.3s var(--ease);
}

.service-pricing-card:hover {
  border-color: var(--accent);
}

.service-pricing-highlight {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.06);
}

.service-pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  background: var(--accent);
  color: #050a14;
}

.service-pricing-name {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.service-pricing-price {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
}

.service-pricing-suffix {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--white-dim);
  font-weight: 400;
  margin-left: 4px;
}

.service-pricing-card p {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.65;
  color: var(--white-dim);
  margin: 0;
}

.service-pricing-foot {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-dim);
  margin: 16px 0;
  max-width: 860px;
}

.service-pricing-foot a {
  color: var(--accent);
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
  text-decoration: none;
}

.service-faq {
  margin-bottom: 14px;
  border: 1px solid var(--border-default);
  background: rgba(10, 18, 32, 0.4);
  max-width: 860px;
}

.service-faq summary {
  padding: 18px 24px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
  transition: background 0.3s var(--ease);
}

.service-faq summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}

.service-faq[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.service-faq summary:hover {
  background: rgba(0, 212, 255, 0.04);
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq p {
  padding: 0 24px 20px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-dim);
  margin: 0;
}

.service-faq p a {
  color: var(--accent);
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
  text-decoration: none;
}

.service-cta-block {
  margin-top: 72px;
  padding: 56px 40px;
  border: 1px solid var(--border-default);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(0, 212, 255, 0.01));
  text-align: center;
}

.service-cta-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin: 0 0 16px;
}

.service-cta-desc {
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 640px;
  margin: 0 auto 32px;
}

.service-cta-block .service-cta-buttons {
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .service-main { padding: calc(var(--nav-height, 80px) + 32px) 24px 64px; }
  .service-pains { grid-template-columns: 1fr; }
  .service-pricing-grid { grid-template-columns: 1fr; }
  .service-process li { padding-left: 64px; }
  .service-process li::before { left: 18px; }
  .service-cta-block { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .service-h1 { font-size: clamp(28px, 8vw, 40px); }
  .service-h2 { font-size: clamp(22px, 6vw, 30px); }
  .service-bullets li { padding: 14px 16px; font-size: 14px; }
  .service-cta { padding: 14px 24px; font-size: 12px; }
}
