/* ============================================================
   Leadwriting Intelligence — Klon
   CI: Blau #0283CC + Orange #FD8A06 · System-Stack + JetBrains Mono
   Flat-System: Reinweiß + Nah-Schwarz, Hairlines, Light-Display
   ============================================================ */

:root {
  /* Blau-Leiter — Primär #0283CC (Asset-Harmonie), Range drumherum */
  --blue: #0283CC;
  --blue-deep: #0267A0;
  --blue-bright: #5AB9EE;

  --orange: #FD8A06;
  --orange-text: #C96A00;

  /* Nah-Schwarz (dunkle Sektionen) */
  --void: #070708;
  --ink-deep: #0C0C0D;
  --ink: #17181A;

  /* Dunkle Neutral-Leiter */
  --dark-body: #C9CBD1;
  --dark-muted: #8A8D94;

  /* Neutrale (AA-fest) */
  --body: #4B515C;
  --muted: #61676F;
  --hair: #E7E9EC;
  --mist: #F7F8F9;
  --white: #FFFFFF;

  /* Display-Skala: 2 Stufen statt 7 Einzelfälle */
  --display-1: clamp(44px, 6.2vw, 88px);
  --display-2: clamp(38px, 5vw, 72px);

  --font-head: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  --nav-h: 56px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #fff; }
a, button { -webkit-tap-highlight-color: transparent; }
.btn--primary:active, .nav__cta:active { opacity: 0.88; }

img { display: block; max-width: 100%; }

/* ---------- Typo-Basics ---------- */
.h2 {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: var(--display-2);
  line-height: 1.04;
  letter-spacing: -0.016em;
  margin-top: 14px;
  text-wrap: balance;
}
.h2 b, .h2 strong { font-weight: 600; color: var(--blue); }

.body {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--body);
  line-height: 1.65;
}

.num { font-variant-numeric: tabular-nums; }

/* Zweite Stimme: Instrument Serif Italic, nur fuer einzelne Schluesselworte */
.voice {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

/* Editorial-Head: Kicker links, Mono-Marginalie rechts (Gegengewicht) */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; }
.sec-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--muted); white-space: nowrap; }
.sec-meta--light { color: var(--dark-muted); }
@media (max-width: 700px) { .sec-meta { display: none; } }

/* ---------- Reveal-System (bulletproof) ----------
   Default: alles sichtbar. Erst wenn JS .fx-armed setzt,
   werden .fx-Elemente versteckt und per IO/Failsafe eingeblendet. */
html.fx-armed .fx {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--fx-delay, 0ms);
}
html.fx-armed .fx.fx-in {
  opacity: 1;
  transform: none;
}
html.fx-armed .btn.fx.fx-in { transition-property: background, color; }
/* Word-Stagger fuer Display-Headlines: das Element steht, die Woerter treppen */
html.fx-armed .fx[data-fx-words] { opacity: 1; transform: none; }
html.fx-armed [data-fx-words] .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.38em);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--fx-delay, 0ms) + var(--wi, 0) * 60ms);
}
html.fx-armed [data-fx-words].fx-in .w { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.fx-armed .fx { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons (Apple-Pill in CI-Blau) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 980px;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  padding: 13px 26px;
}
.btn--primary:hover { background: var(--blue-deep); }
.btn--big { padding: 16px 34px; font-size: 17px; }
.btn--ghost {
  color: var(--blue-deep);
  padding: 13px 6px;
}
.btn--ghost:hover { color: var(--blue-deep); }
.btn--ghost .chev { transition: transform 0.25s var(--ease); display: inline-block; }
.btn--ghost:hover .chev { transform: translateY(3px); }
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #FFFFFFB8;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--hair); }

/* Adaptive Nav: ueber dunklen Sektionen dunkel (kein grauer Balken) */
.nav--dark { background: #070708BD; }
.nav--dark.is-scrolled { border-bottom-color: #FFFFFF1A; }
.nav--dark .nav__links a { color: var(--dark-body); }
.nav--dark .nav__links a:hover { color: #FFFFFF; }
.nav--dark .nav__logo img { filter: brightness(0) invert(1); }

.nav__inner {
  max-width: 1164px;
  margin: 0 auto;
  height: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo img { height: 28px; width: auto; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-active { color: var(--ink); font-weight: 600; }
.nav--dark .nav__links a.is-active { color: #FFFFFF; }
.nav__cta {
  background: var(--blue-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 980px;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--blue-deep); }

/* ---------- HERO (Klon-Bühne hinter dem Text) ---------- */
.hero { position: relative; background: var(--white); }
.hero__track { height: 175vh; position: relative; }
.hero__stage {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: clip;
  background: var(--white);
}
.hero__poster, .hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__poster { object-fit: cover; object-position: center bottom; }
.hero__canvas { opacity: 0; transition: opacity 0.5s var(--ease); }
.hero__canvas.is-ready { opacity: 1; }
/* Idle-Atmen am Scrub-Ende: das Team lebt, statt einzufrieren */
.hero__canvas.is-idle { animation: heroBreathe 4.6s ease-in-out infinite; transform-origin: 50% 88%; }
@keyframes heroBreathe { 50% { transform: scale(1.0065); } }
@media (prefers-reduced-motion: reduce) { .hero__canvas.is-idle { animation: none; } }
.hero.canvas-active .hero__poster { visibility: hidden; }

/* Wash: weißt die Textzone oben, gibt das Team unten frei */
.hero__wash {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFFF5 21%, #FFFFFF00 44%),
    linear-gradient(180deg, #FFFFFF00 83%, #FFFFFFB8 100%);
}

/* ---------- Klon-Szene: hochaufgeloeste Figuren (Hero v3) ---------- */
.clone-scene { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-person, .clone-unit {
  position: absolute; top: 58%; left: 50%;
  width: clamp(96px, 15vh, 150px);
  border: 0; background: transparent; padding: 0;
  transform: translate(-50%, -50%);
  will-change: left, top, opacity, transform;
}
.hero-person { z-index: 6; }
.clone-unit { z-index: 4; width: clamp(70px, 11vh, 112px); opacity: 0; cursor: default; }
.clone-unit--rear { z-index: 2; width: clamp(60px, 9.4vh, 98px); }
.hero-person img, .clone-unit img {
  width: 100%; height: auto; pointer-events: none;
  animation: figureBreathe 4.6s ease-in-out infinite;
  filter: saturate(0.96) contrast(1.05) drop-shadow(0 26px 18px #17181A2B);
}
.clone-unit img { filter: saturate(0.62) contrast(1.07) brightness(0.93) drop-shadow(0 24px 18px rgba(12, 14, 16, 0.20)); animation-delay: -1.4s; }
.clone-unit--rear img { filter: saturate(0.52) contrast(1.06) brightness(0.86) drop-shadow(0 20px 16px rgba(12, 14, 16, 0.17)); animation-delay: -2.6s; }
.clone-unit:nth-of-type(odd) img { animation-delay: -3.4s; }
.hero-person::after, .clone-unit::after {
  content: ""; position: absolute; left: 50%; bottom: -5px;
  width: 62%; height: 12px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(12, 14, 16, 0.22), transparent 68%);
  filter: blur(3px);
  pointer-events: none;
}
@keyframes figureBreathe { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) { .hero-person img, .clone-unit img { animation: none; } }

.hero-person span, .clone-unit__label {
  position: absolute; top: -3%; left: 50%;
  transform: translate(-50%, -100%);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); background: #FFFFFFF2;
  border: 1px solid var(--hair); border-radius: 999px;
  padding: 4px 10px; white-space: nowrap;
}
.hero-person span { color: #FFFFFF; background: var(--ink); border-color: var(--ink); }
.hero-person span::before, .clone-unit__label::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--orange);
}
.clone-unit__label::before { background: var(--blue); }
.clone-unit__label { opacity: 0; }
html.fx-armed .hero:not(.hero--static) .hero-person span { opacity: 0; }
.clone-scene.is-interactive .clone-unit { pointer-events: auto; cursor: pointer; }
.clone-scene.is-interactive .clone-unit:hover .clone-unit__label,
.clone-scene.is-interactive .clone-unit:focus-visible .clone-unit__label { border-color: #0283CC66; color: var(--blue-deep); }
.clone-scene.is-interactive .clone-unit:focus-visible { outline: none; }

/* Ohne JS / reduced: fertige Formation statisch (Positionen = Desktop-Formation) */
html:not(.fx-armed) .clone-unit, .hero--static .clone-unit { opacity: 1; }
html:not(.fx-armed) .clone-unit__label, .hero--static .clone-unit__label { opacity: 1; }
html:not(.fx-armed) .hero-person, .hero--static .hero-person { left: 50%; top: 61%; }
html:not(.fx-armed) .clone-unit:nth-of-type(1), .hero--static .clone-unit:nth-of-type(1) { left: 8%; top: 62%; }
html:not(.fx-armed) .clone-unit:nth-of-type(2), .hero--static .clone-unit:nth-of-type(2) { left: 23%; top: 48%; }
html:not(.fx-armed) .clone-unit:nth-of-type(3), .hero--static .clone-unit:nth-of-type(3) { left: 36%; top: 61%; }
html:not(.fx-armed) .clone-unit:nth-of-type(4), .hero--static .clone-unit:nth-of-type(4) { left: 64%; top: 61%; }
html:not(.fx-armed) .clone-unit:nth-of-type(5), .hero--static .clone-unit:nth-of-type(5) { left: 77%; top: 48%; }
html:not(.fx-armed) .clone-unit:nth-of-type(6), .hero--static .clone-unit:nth-of-type(6) { left: 92%; top: 62%; }

/* Copy oben, damit sie das Team nicht überlagert */
.hero__copy {
  position: absolute; z-index: 4;
  left: 50%; top: calc(var(--nav-h) + 5vh);
  transform: translateX(-50%);
  width: 100%; max-width: 940px; padding: 0 22px;
  text-align: center; pointer-events: none;
}
.hero__copy a, .hero__copy .btn { pointer-events: auto; }
.hero__kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-head); font-weight: 300;
  font-size: var(--display-1);
  line-height: 1.02; letter-spacing: -0.016em;
  margin-top: 18px; text-wrap: balance;
}
.hero__sub {
  margin: 20px auto 0; max-width: 660px;
  font-size: clamp(15px, 1.7vw, 19px); line-height: 1.55; color: var(--body);
}
.hero__actions { margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.hero__hint { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--muted); }

@media (max-width: 700px) {
  .hero__track { height: 158vh; }
  .hero__copy {
    top: calc(var(--nav-h) + 4vh);
    padding: 0 20px;
  }
  .hero__title {
    font-size: clamp(38px, 11.6vw, 48px);
    line-height: 1.05;
  }
  .hero__sub {
    margin-top: 18px;
    max-width: 340px;
  }
  .hero__actions {
    margin-top: 24px;
    gap: 12px;
  }
  .hero__actions .btn--primary {
    width: min(100%, 296px);
    justify-content: center;
  }
  .hero__hint {
    max-width: 310px;
    margin-inline: auto;
    line-height: 1.65;
  }
}

.hero__scrollcue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 4;
  width: 22px; height: 34px; border-radius: 12px; border: 1px solid #17181A2E;
  transition: opacity 0.4s ease;
  background: #FFFFFFF0;
  z-index: 6;
}
.hero__scrollcue span {
  position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px;
  background: var(--blue); transform: translateX(-50%);
  animation: heroScroll 1.9s var(--ease) infinite;
}
@keyframes heroScroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}
@media (prefers-reduced-motion: reduce) { .hero__scrollcue span { animation: none; } }

/* Klickbare Klon-Hotspots (per JS positioniert, aktiv am Ende des Scrubs) */
.hero__hotspots { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; transition: opacity 0.5s var(--ease); }
.hero__hotspots.is-live { opacity: 1; }
.hero__hint-chip {
  position: absolute; left: 50%; bottom: 70px; transform: translateX(-50%);
  z-index: 5; pointer-events: none;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: #FFFFFFD9; border: 1px solid var(--hair);
  border-radius: 999px; padding: 6px 14px;
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.hero__hint-chip.is-on { opacity: 1; }
.hero__hotspot {
  position: absolute; transform: translate(-50%, -50%);
  border: 0; background: transparent; padding: 0; cursor: pointer;
  pointer-events: auto; border-radius: 60px; transition: background 0.2s ease;
}
.hero__hotspot:hover, .hero__hotspot:focus-visible { background: #0283CC12; outline: none; }
.hero__hotspot-dot {
  position: absolute; left: 50%; top: 6px; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 0 #0283CC55; animation: hotPulse 2.4s ease-out infinite;
}
.hero__hotspot--du .hero__hotspot-dot { background: var(--orange); box-shadow: 0 0 0 0 #FD8A0655; }
@keyframes hotPulse { 0% { box-shadow: 0 0 0 0 #0283CC55; } 70% { box-shadow: 0 0 0 11px #0283CC00; } 100% { box-shadow: 0 0 0 0 #0283CC00; } }

/* Klon-Karte in Ich-Form */
.hero__card {
  position: absolute; z-index: 6; width: min(300px, 78vw);
  background: #FFFFFFF2; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--hair);
  padding: 16px 18px 17px; text-align: left;
  opacity: 0; transform: translateY(10px) scale(0.96); pointer-events: none;
  transition: opacity 0.34s var(--ease-out), transform 0.34s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.hero__card.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.hero__card-role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-deep); }
.hero__card--du .hero__card-role { color: var(--orange); }
.hero__card-text { margin-top: 8px; font-size: 14px; line-height: 1.5; color: var(--ink); }
.hero__card-close {
  position: absolute; top: 7px; right: 9px; width: 22px; height: 22px;
  border: 0; background: none; font-size: 17px; line-height: 1; color: var(--muted); cursor: pointer;
}
.hero__card-close:hover { color: var(--ink); }

/* Fallback ohne JS: kein langer Pin, statisches Team */
html:not(.fx-armed) .hero__track { height: auto; }
html:not(.fx-armed) .hero__stage { position: static; height: auto; min-height: 92vh; }

/* ---------- SCRUB ---------- */
.scrub__track { height: 220vh; position: relative; }
.scrub__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: clip;
  background: var(--white);
}
.scrub__poster,
.scrub__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.scrub__poster { object-fit: contain; object-position: center; }
.scrub__canvas { opacity: 0; transition: opacity 0.4s ease; }
.scrub__canvas.is-ready { opacity: 1; }
.scrub.canvas-active .scrub__poster { visibility: hidden; }

.scrub__captions {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(40px, 8vh, 84px);
  display: grid;
  place-items: center;
  padding: 0 22px;
  pointer-events: none;
}
.scrub__caption {
  grid-area: 1 / 1;
  max-width: 780px;
  text-align: center;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.5;
  color: var(--body);
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform;
}
.scrub__caption strong {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
}

.scrub__track--long { height: 380vh; }
.scrub--dark .scrub__caption.scrub__caption--onlight { color: var(--ink); font-weight: 500; }
.scrub--dark .scrub__caption.scrub__caption--onlight strong { color: var(--ink); }

/* Kalender-Termine antippbar (Motor-Ende) */
.scrub__hotspots { position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: 0; transition: opacity 0.5s var(--ease); }
.scrub__hotspots.is-live { opacity: 1; pointer-events: auto; }
.scrub__hot {
  position: absolute; border: 0; background: transparent; padding: 0; cursor: pointer;
  pointer-events: auto; transition: background 0.2s ease;
}
.scrub__hot::after {
  content: ""; position: absolute; right: 6px; top: 6px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  animation: hotPulse 2.4s ease-out infinite;
}
.scrub__hot--close::after { background: var(--orange); }
.scrub__hot:hover, .scrub__hot:focus-visible { background: #0283CC14; outline: none; }
.scrub__tcard {
  position: absolute; z-index: 6;
  background: #FFFFFFF7; border: 1px solid var(--hair);
  padding: 14px 16px 15px; text-align: left;
}
.scrub__tcard:not([hidden]) { animation: tcardIn 0.32s cubic-bezier(0.34, 1.3, 0.64, 1); }
@keyframes tcardIn { from { opacity: 0; transform: translateY(8px) scale(0.97); } }
@media (prefers-reduced-motion: reduce) { .scrub__tcard:not([hidden]) { animation: none; } }
.scrub__tcard-role { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-deep); }
.scrub__tcard-role.is-close { color: var(--orange-text); }
.scrub__tcard p { margin-top: 7px; font-size: 14px; line-height: 1.5; color: var(--ink); }
.scrub__tcard-x {
  position: absolute; top: 5px; right: 8px; width: 22px; height: 22px;
  border: 0; background: none; font-size: 17px; line-height: 1; color: var(--muted); cursor: pointer;
}
.scrub__tcard-x:hover { color: var(--ink); }

/* Dunkle Scrub-Variante (Motor-Sektion) */
.scrub--dark .scrub__stage { background: var(--void); }
.scrub--dark .scrub__poster { object-fit: cover; }
.scrub--dark .scrub__caption { color: var(--dark-body); }
.scrub--dark .scrub__caption strong { color: #FFFFFF; }

/* Fallback ohne JS/Canvas: Poster + Captions statisch untereinander */
html:not(.fx-armed) .scrub__track { height: auto; }
html:not(.fx-armed) .scrub__stage { position: static; height: auto; padding: 80px 0 30px; }
html:not(.fx-armed) .scrub__poster { position: static; height: auto; }
html:not(.fx-armed) .scrub__canvas { display: none; }
html:not(.fx-armed) .scrub__captions { position: static; display: block; }
html:not(.fx-armed) .scrub__caption { opacity: 1; transform: none; margin: 18px auto; }

/* Technischer Mono-Kicker über Sektions-Headlines (Editorial-Signal) */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 20px; height: 1px; background: var(--orange); display: inline-block; }
.kicker--light { color: #FFFFFF; }

/* ---------- STATEMENT (Word-Reveal) ---------- */
.trust { background: #EFF5FA; padding: 44px 0 48px; }
.trust__inner { max-width: 1120px; margin: 0 auto; }
.trust__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--muted); text-align: center; margin-bottom: 24px;
}
/* Marquee: laeuft endlos nach rechts, Kanten mit Verlaufs-Fade */
.trust__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.trust__track {
  display: flex;
  width: max-content;
  animation: trustScroll 32s linear infinite;
}
.trust__marquee:hover .trust__track { animation-play-state: paused; }
.trust__logos {
  display: flex; align-items: center;
  gap: clamp(44px, 6vw, 80px);
  padding-right: clamp(44px, 6vw, 80px);
  flex-shrink: 0;
}
.trust__logos img { height: 32px; width: auto; max-width: 150px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: opacity 0.3s ease, filter 0.3s ease; }
.trust__logos img:hover { filter: none; opacity: 1; }
@keyframes trustScroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) { .trust__track { animation: none; } }

.morgen { background: var(--white); border-top: 1px solid var(--hair); padding: clamp(96px, 13vh, 160px) 22px; }
.morgen__inner { max-width: 1120px; margin: 0 auto; text-align: left; }
.morgen__inner .h2 { max-width: 640px; }
.morgen__card {
  margin-top: clamp(36px, 5vh, 56px);
  max-width: 760px;
  background: var(--white);
  border: 1px solid var(--hair);
  padding: 30px 30px 24px;
  display: flex; flex-direction: column;
}
.tile--span2 { grid-column: span 2; }
@media (max-width: 640px) { .tile--span2 { grid-column: span 1; } }

.statement {
  padding: clamp(64px, 9vh, 110px) 22px clamp(110px, 16vh, 190px);
  background: var(--white);
}
.statement__inner { max-width: 900px; margin: 0 auto; }
.statement__text {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(23px, 3.1vw, 38px);
  line-height: 1.38;
  max-width: 880px; margin-left: auto; margin-right: auto;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.statement__text .w {
  color: var(--ink);
  opacity: 0.26;
  filter: blur(5px);
  transition: opacity 0.5s var(--ease), filter 0.5s var(--ease);
}
.statement__text .w.on { opacity: 1; filter: blur(0); }
.statement__punch {
  margin-top: 34px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(26px, 3.8vw, 46px);
  letter-spacing: -0.012em;
  color: var(--blue);
}

/* ---------- AKQUISE IST ALLES (Rotator + Liste) ---------- */
.akquise {
  background: var(--white);
  border-top: 1px solid var(--hair);
  padding: clamp(96px, 13vh, 168px) 22px;
}
.akquise__inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(36px, 6vw, 96px); align-items: start; text-align: left;
}
.akquise__lead-col { position: sticky; top: calc(var(--nav-h) + 44px); }
.akquise__head {
  margin-top: 14px;
  font-family: var(--font-head); font-weight: 300;
  font-size: var(--display-1);
  line-height: 1.02; letter-spacing: -0.016em; color: var(--ink);
}
.akquise__rot {
  display: inline-block;
  color: var(--orange-text);
  will-change: opacity, transform;
  font-size: 0.84em;
  line-height: 1.1;
  white-space: nowrap;
}
html.fx-armed .akquise__rot { transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.akquise__lead {
  margin: 26px 0 0; max-width: 430px;
  font-size: clamp(16px, 1.7vw, 19px); line-height: 1.65; color: var(--body);
}
.akquise__punch {
  margin: 26px 0 0; max-width: 440px;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.28; letter-spacing: -0.015em; color: var(--ink); text-wrap: balance;
}
.akquise__punch-accent {
  display: block; margin-top: 8px;
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 500; color: var(--blue-deep);
}
.akquise__grid {
  align-self: center;
  list-style: none; margin: 4px 0 0; max-width: none;
  display: grid; grid-template-columns: 1fr;
  column-gap: 0; row-gap: 2px; text-align: left;
}
html.fx-armed .akquise__grid .akquise__item {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
html.fx-armed .akquise__grid.fx-in .akquise__item { opacity: 1; transform: none; }
html.fx-armed .akquise__grid.fx-in .akquise__item:nth-child(2) { transition-delay: 60ms; }
html.fx-armed .akquise__grid.fx-in .akquise__item:nth-child(3) { transition-delay: 120ms; }
html.fx-armed .akquise__grid.fx-in .akquise__item:nth-child(4) { transition-delay: 180ms; }
html.fx-armed .akquise__grid.fx-in .akquise__item:nth-child(5) { transition-delay: 240ms; }
html.fx-armed .akquise__grid.fx-in .akquise__item:nth-child(6) { transition-delay: 300ms; }
html.fx-armed .akquise__grid.fx-in .akquise__item:nth-child(7) { transition-delay: 360ms; }
html.fx-armed .akquise__grid.fx-in .akquise__item:nth-child(8) { transition-delay: 420ms; }
html.fx-armed .akquise__grid.fx-in .akquise__item:nth-child(9) { transition-delay: 480ms; }
@media (prefers-reduced-motion: reduce) {
  html.fx-armed .akquise__grid .akquise__item { opacity: 1; transform: none; transition: none; }
}
.akquise__item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--hair);
  font-size: 15px; line-height: 1.5; color: var(--body);
}
.akquise__dot {
  width: 6px; height: 6px; background: var(--blue);
  transform: rotate(45deg); flex-shrink: 0; align-self: center;
}
.akquise__item b { color: var(--blue-deep); font-weight: 600; }

@media (max-width: 860px) {
  .akquise__inner { grid-template-columns: 1fr; gap: 30px; }
  .akquise__lead-col { position: static; }
  .akquise__lead, .akquise__punch { max-width: 560px; }
}

/* ---------- CINEMA (dark + video) ---------- */
.cinema {
  position: relative;
  background: var(--void);
  color: #fff;
  overflow: clip;
}
.cinema__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.cinema__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, #070708E6 0%, #0C0C0E8C 28%, #0C0C0E99 60%, #070708F7 100%);
}
.cinema__inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(170px, 24vh, 300px) 22px;
}
.cinema__title {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: var(--display-2);
  line-height: 1.04;
  letter-spacing: -0.016em;
  margin-top: 14px;
}
.cinema__title b { font-weight: 600; color: var(--blue-bright); }
.cinema__rows {
  margin-top: clamp(48px, 7vh, 80px);
  display: flex;
  flex-direction: column;
}
.cinema__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid #FFFFFF1F;
}
.cinema__no {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-bright);
  padding-top: 5px;
}
.cinema__row h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cinema__row p {
  margin-top: 8px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--dark-body);
  max-width: 640px;
}

/* ---------- BENTO ---------- */
.bento {
  background: var(--mist);
  padding: clamp(96px, 13vh, 160px) 22px;
}
.bento__head {
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}
.bento__head .h2 { max-width: 640px; }
.bento__grid {
  max-width: 1120px;
  margin: clamp(44px, 6vh, 70px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tile {
  background: var(--white);
  border: 1px solid var(--hair);
  padding: 34px 30px;
  position: relative;
  overflow: clip;
  transition: border-color 0.3s ease;
}
.tile:hover { border-color: #0283CC66; }
.tile--wide { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.feed__head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.feed__head h3 { margin: 0; font-size: clamp(22px, 2.6vw, 30px); }
.feed__meta { font-family: var(--font-mono); font-size: 12px; color: var(--muted); white-space: nowrap; }
.feed__list { list-style: none; margin-top: 22px; }
.feed__item {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 0; border-top: 1px solid var(--hair);
  transition: opacity 0.35s var(--ease);
}
.feed__item.is-ok { opacity: 0.6; }
.feed__type { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-deep); }
.feed__prev { margin-top: 5px; font-size: 14px; line-height: 1.5; color: var(--body); }
.feed__ok {
  margin-left: auto; flex-shrink: 0;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: #fff; background: var(--blue-deep);
  border: 0; border-radius: 980px; padding: 8px 16px; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.feed__ok:hover { background: var(--blue-deep); }
.feed__ok:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.feed__ok.is-ok { background: transparent; color: var(--blue-deep); cursor: default; }
.feed__done { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hair); font-weight: 500; font-size: 15px; color: var(--ink); }
@media (max-width: 640px) { .feed__item { align-items: flex-start; flex-direction: column; gap: 10px; } .feed__ok { margin-left: 0; } }
.tile--wide .tile__big { font-size: clamp(74px, 10vw, 148px); line-height: 0.92; }
.tile--wide h3 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 20px; }
.tile--wide .tile__body { max-width: 420px; font-size: 16px; }
.tile__tasks { margin-top: auto; padding-top: 26px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--muted); }
.tile__big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue);
}
.tile__big--ink { color: var(--ink); }
.tile h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.tile__body {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
}
.tile--image { padding: 0; background: var(--ink); border-color: var(--ink); }
.tile--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}
.tile--image .tile__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(180deg, #17181A00 30%, #17181ACC 100%);
}
.tile--image h3 { color: #fff; margin-top: 0; }
.tile--image .tile__body { color: var(--dark-body); }
.tile--accent { background: var(--white); }
.tile__big--orange { color: var(--orange); }
.tile--blue {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}
.tile--blue .tile__big { color: #FFFFFF; }
.tile--blue h3 { color: #FFFFFF; }
.tile--blue .tile__body { color: #EBF5FF; }

/* ---------- CALCULATOR ---------- */
.calc {
  background: var(--white);
  padding: clamp(96px, 13vh, 160px) 22px;
}
.calc__inner { max-width: 1120px; margin: 0 auto; text-align: left; }
.calc__inner > .h2 { max-width: 860px; }
.calc__card {
  margin-top: clamp(38px, 5vh, 56px);
  background: var(--white);
  border: 1px solid var(--hair);
  padding: clamp(30px, 4.5vw, 52px);
  text-align: left;
}
.calc__card { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
.calc__sliders { display: grid; gap: 44px; }
.calc__field { display: block; }
.calc__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  display: inline-block;
}
.calc__value {
  float: right;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--fill, 30%), var(--hair) var(--fill, 30%), var(--hair) 100%);
  outline: none;
  margin-top: 14px;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--muted);
  box-shadow: 0 1px 3px rgba(23, 24, 26, 0.18), 0 0 0 4px rgba(2, 131, 204, 0.08);
  transition: transform 0.15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.08); }
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 1px solid var(--muted);
}
input[type="range"]:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.calc__result {
  margin: 0;
  padding: 0 0 0 clamp(32px, 4vw, 64px);
  border-left: 1px solid var(--hair);
  text-align: left;
}
.calc__result-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc__result-num {
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.calc__result-year { margin-top: 12px; font-size: 15px; color: var(--muted); }
.calc__result-year strong { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.calc__result-sub { margin-top: 12px; font-size: 15px; color: var(--body); }
.calc__hint {
  grid-column: 1 / -1;
  margin-top: 10px;
  text-align: left;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- FOUNDERS ---------- */
.founders {
  background: var(--white);
  padding: clamp(96px, 13vh, 160px) 22px;
}
.founders__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}
.founders__photo {
  overflow: clip;
}
.founders__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5.4;
  object-fit: cover;
  filter: grayscale(100%);
}
.founders__text .h2 { font-size: clamp(30px, 3.4vw, 46px); }
.founders__text .body { margin-top: 22px; }
.founders__quote-by {
  margin-top: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.founders__quote {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- CLOSER ---------- */
.closer {
  background: var(--white);
  padding: clamp(120px, 17vh, 200px) 22px;
  text-align: center;
}
.closer__inner { max-width: 760px; margin: 0 auto; }
.closer__title {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: var(--display-1);
  line-height: 1.02;
  letter-spacing: -0.016em;
}
.closer__title b { font-weight: 600; color: var(--blue); }
.closer__sub {
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  color: var(--body);
}
.closer .btn { margin-top: 34px; }
.closer__final {
  margin-top: 26px;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(22px, 2.8vw, 34px); letter-spacing: -0.012em;
}
.closer__final .voice { color: var(--blue); font-size: 1.08em; }
.closer__cal { margin: 40px auto 0; max-width: 720px; height: 700px; border: 1px solid var(--hair); }
.closer__cal iframe { border: 0; }
.closer__micro { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--white);
  border-top: 1px solid var(--hair);
  padding: 34px 22px;
}
.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo { height: 24px; width: auto; }
.footer__links { display: flex; gap: 22px; }
.footer__links a {
  font-size: 13px;
  color: var(--body);
  text-decoration: none;
}
.footer__links a:hover { color: var(--ink); }
.footer__copy { font-size: 13px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .bento__grid { grid-template-columns: 1fr 1fr; }
  .tile--wide { grid-column: span 2; grid-row: auto; }
  .tile--wide .tile__big { font-size: clamp(64px, 16vw, 96px); }
  .founders__inner { grid-template-columns: 1fr; }
  .founders__photo { max-width: 520px; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .bento__grid { grid-template-columns: 1fr; }
  .tile--wide { grid-column: span 1; }
  .scrub__track { height: 190vh; }
  .cinema__row { grid-template-columns: 54px 1fr; gap: 14px; }
  .akquise__grid { grid-template-columns: 1fr; max-width: 420px; }
  .hero__actions { flex-direction: column; gap: 14px; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   v3 — Hero-Orange-Akzent + Zwei-Wege-Sektion
   ============================================================ */
.hero__title .u { color: var(--blue); font-weight: 600; white-space: nowrap; }

.wege {
  background: var(--mist);
  padding: clamp(96px, 13vh, 170px) 22px;
}
.wege__inner { max-width: 1120px; margin: 0 auto; }
.wege__head { max-width: 1120px; margin: 0 auto; text-align: left; }
.wege__head .h2 { max-width: 620px; }
.wege__head .wege__lead { margin-left: 0; max-width: 560px; }
.wege__lead { margin-top: 18px; }

.wege__grid {
  margin-top: clamp(44px, 6vh, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.weg {
  position: relative;
  background: var(--white);
  border: 1px solid var(--hair);
  padding: 40px 34px 32px;
  overflow: clip;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}
.weg:hover { border-color: #17181A40; }
.weg::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.weg--blue::before { background: var(--blue); }
.weg--orange::before { background: var(--orange); }
.weg__num {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.weg--blue .weg__num { color: var(--blue); }
.weg--orange .weg__num { color: var(--orange-text); }
.weg__title {
  margin-top: 12px;
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px); letter-spacing: -0.012em; line-height: 1.14;
}
.weg__lead { margin-top: 13px; font-size: 15px; line-height: 1.6; color: var(--body); }
.weg__list { margin-top: 22px; list-style: none; display: grid; gap: 13px; }
.weg__list li {
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: left 2px;
  background-size: 19px 19px;
  font-size: 15px; line-height: 1.5; color: var(--ink); font-weight: 500;
}
.weg--blue .weg__list li {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='10' fill='%230283CC1F'/><path d='M6 10.4l2.4 2.4 5-5.4' fill='none' stroke='%230283CC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.weg--orange .weg__list li {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='10' fill='%23FD8A0622'/><path d='M6 10.4l2.4 2.4 5-5.4' fill='none' stroke='%23FD8A06' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.weg__for {
  margin-top: auto;
  padding-top: 22px;
  font-size: 13px; color: var(--muted); font-style: italic;
}

.wege__cta {
  margin: clamp(48px, 7vh, 72px) auto 0;
  max-width: 720px;
  text-align: center;
}
.wege__cta-title {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(22px, 2.8vw, 32px); letter-spacing: -0.012em; line-height: 1.2;
  text-wrap: balance;
}
.wege__cta-sub { margin-top: 18px; font-size: 16px; line-height: 1.65; color: var(--body); }
.wege__cta .btn { margin-top: 28px; }
.wege__cta-micro { margin-top: 14px; font-size: 13px; color: var(--muted); }

.wege__guarantee {
  margin: clamp(44px, 6vh, 60px) auto 0;
  max-width: 720px;
  background: var(--white);
  border: 1px solid var(--hair);
  padding: 26px 30px;
  display: flex; gap: 20px; align-items: flex-start; text-align: left;
}
.wege__guarantee svg { width: 32px; height: 32px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.wege__guarantee h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; line-height: 1.35; letter-spacing: -0.01em; }
.wege__guarantee p { margin-top: 8px; font-size: 14px; line-height: 1.65; color: var(--body); }

@media (max-width: 760px) {
  .wege__grid { grid-template-columns: 1fr; }
  .wege__guarantee { flex-direction: column; gap: 14px; }
}

/* ============================================================
   v4 — "Warum jetzt" Dringlichkeits-Band (dunkel, Cost of Delay)
   ============================================================ */
.warum {
  position: relative;
  overflow: clip;
  color: #FFFFFF;
  padding: clamp(96px, 13vh, 160px) 22px;
  background: var(--ink-deep);
}
.warum__inner { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; text-align: left; }
.warum__title { max-width: 780px; }
.warum__title {
  margin-top: 14px;
  font-family: var(--font-head); font-weight: 300;
  font-size: var(--display-2); line-height: 1.04; letter-spacing: -0.016em;
  color: #FFFFFF; text-wrap: balance;
}
.warum__title b { font-weight: 600; color: var(--blue-bright); }
.warum__stats {
  margin-top: clamp(44px, 6vh, 66px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 760px;
  text-align: left;
}
.warum__stat { padding: 26px 24px 8px; border-top: 2px solid #FFFFFF1F; }
.warum__num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(40px, 5vw, 62px); line-height: 1; letter-spacing: -0.02em;
  color: var(--blue-bright); font-variant-numeric: tabular-nums;
}
.warum__label { margin-top: 14px; font-size: 15px; line-height: 1.55; color: var(--dark-body); }
.warum__src { display: none; }
@media (max-width: 700px) { .warum__src { display: block; margin-top: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark-muted); } }
.warum__delay {
  margin-top: clamp(36px, 5vh, 52px);
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(17px, 1.9vw, 22px);
  color: var(--orange);
}
.warum__punch {
  margin: 14px 0 0; max-width: 780px;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(19px, 2.4vw, 28px); line-height: 1.4; letter-spacing: -0.01em;
  color: #FFFFFF; text-wrap: balance;
}
@media (max-width: 760px) {
  .warum__stats { grid-template-columns: 1fr; gap: 0; }
  .warum__stat { padding: 22px 0 8px; }
}

/* v6 — Hero-Kicker als Glas-Pill (Setup-Frage, Designer-Chip) */
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Rechner-Mini-CTA + Mobile-Fallbacks der Editorial-Layouts */
.calc__cta { display: inline-block; margin-top: 6px; color: var(--blue-deep); font-weight: 600; text-decoration: none; }
.calc__cta:hover { color: var(--blue); }
@media (max-width: 860px) {
  .calc__card { grid-template-columns: 1fr; }
  .calc__result { border-left: 0; border-top: 1px solid var(--hair); padding: 28px 0 0; margin-top: 6px; }
  .warum__stats { max-width: none; }
}

/* ---------- BEWEIS (Blind-Test) ---------- */
.beweis { background: var(--white); border-top: 1px solid var(--hair); padding: clamp(96px, 13vh, 160px) 22px; }
.beweis__inner { max-width: 1120px; margin: 0 auto; text-align: left; }
.beweis__inner .h2 { max-width: 760px; }
.beweis__lead { margin-top: 16px; max-width: 560px; font-size: clamp(15px, 1.6vw, 18px); line-height: 1.65; color: var(--body); }
.beweis__grid { margin-top: clamp(36px, 5vh, 56px); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.beweis__card {
  position: relative; text-align: left; cursor: pointer;
  background: var(--white); border: 1px solid var(--hair); border-radius: 0;
  padding: 26px 28px 30px; font-family: inherit;
  transition: border-color 0.25s ease;
}
.beweis__card:hover { border-color: #0283CC66; }
.beweis__card:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.beweis__tag { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.beweis__msg { margin-top: 14px; font-size: 15px; line-height: 1.65; color: var(--ink); }
.beweis__badge { display: none; position: absolute; top: 22px; right: 24px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.beweis--done .beweis__card { cursor: default; }
.beweis--done .beweis__card[data-author="klon"] { border-color: var(--blue); }
.beweis--done .beweis__badge { display: block; }
.beweis--done .beweis__card[data-author="klon"] .beweis__badge { color: var(--blue); }
.beweis--done .beweis__card[data-author="klon"] .beweis__badge::after { content: "Vom Klon"; }
.beweis--done .beweis__card[data-author="mensch"] .beweis__badge { color: var(--muted); }
.beweis--done .beweis__card[data-author="mensch"] .beweis__badge::after { content: "Vom Menschen"; }
.beweis__result { margin-top: 28px; }
.beweis__verdict { font-family: var(--font-head); font-weight: 600; font-size: clamp(18px, 2vw, 24px); color: var(--ink); }
.beweis__punch { margin-top: 8px; font-size: 16px; color: var(--blue-deep); font-weight: 500; }
.beweis__cta { display: inline-block; margin-top: 16px; color: var(--blue-deep); font-weight: 600; font-size: 16px; text-decoration: none; }
.beweis__cta:hover { color: var(--blue); }
@media (max-width: 760px) { .beweis__grid { grid-template-columns: 1fr; } }

/* ---------- FRAGEN (Einwaende) ---------- */
.fragen { background: var(--white); border-top: 1px solid var(--hair); padding: clamp(96px, 13vh, 160px) 22px; }
.fragen__inner { max-width: 1120px; margin: 0 auto; text-align: left; }
.ablauf { background: var(--white); border-top: 1px solid var(--hair); padding: clamp(96px, 13vh, 160px) 22px; }
.ablauf__inner { max-width: 1120px; margin: 0 auto; text-align: left; }
.ablauf__inner .h2 { max-width: 640px; }
.ablauf__grid { margin-top: clamp(44px, 6vh, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.phase { border-top: 2px solid var(--blue); padding-top: 20px; }
.phase--live { border-top-color: var(--orange); }
.phase__wochen { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--muted); }
.phase h3 { margin-top: 10px; font-family: var(--font-head); font-weight: 600; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.012em; }
.phase--live h3 { color: var(--orange-text); }
.phase p:last-child { margin-top: 10px; font-size: 15px; line-height: 1.65; color: var(--body); }
@media (max-width: 760px) { .ablauf__grid { grid-template-columns: 1fr; gap: 28px; } }

.fragen__grid { margin-top: clamp(36px, 5vh, 56px); display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.frage { border: 1px solid var(--hair); padding: 26px 26px 30px; background: var(--white); }
.frage h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; line-height: 1.3; letter-spacing: -0.01em; }
.frage p { margin-top: 12px; font-size: 14px; line-height: 1.65; color: var(--body); }
.fragen__guarantee { margin-top: 20px; max-width: none; }
@media (max-width: 860px) { .fragen__grid { grid-template-columns: 1fr; } }

/* ---------- Reveal-Varianten (inhaltsgebunden statt Monokultur) ---------- */
/* Bilder: Clip-Reveal von oben nach unten */
html.fx-armed .fx--clip {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease);
  transition-delay: var(--fx-delay, 0ms);
}
html.fx-armed .fx--clip.fx-in { clip-path: inset(0 0 0% 0); }

/* Zahlen-Kacheln: Scale + Lift (arbeitet mit den Count-ups zusammen) */
html.fx-armed .fx--scale { transform: scale(0.955) translateY(14px); }

@media (prefers-reduced-motion: reduce) {
  html.fx-armed .fx--clip { clip-path: none; transition: none; }
  html.fx-armed [data-fx-words] .w { opacity: 1; transform: none; transition: none; }
}

/* ---------- CASE STUDIES (Platzhalter) ---------- */
.cases { background: var(--white); border-top: 1px solid var(--hair); padding: clamp(96px, 13vh, 160px) 22px; }
.cases__inner { max-width: 1120px; margin: 0 auto; text-align: left; }
.cases__inner .h2 { max-width: 640px; }
.case {
  margin-top: clamp(48px, 7vh, 72px);
  display: grid; grid-template-columns: 6fr 5fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.case--flip .case__video { order: 2; }
.case--flip .case__copy { order: 1; }
.case__video {
  position: relative; aspect-ratio: 16 / 9;
  background: var(--mist); border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
}
.case__play {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--hair);
  position: relative;
}
.case__play::after {
  content: ""; position: absolute; left: 55%; top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid; border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--blue);
}
.case__soon {
  position: absolute; right: 14px; bottom: 12px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--muted); background: var(--white);
  border: 1px solid var(--hair); border-radius: 999px; padding: 4px 12px;
}
.case__block { padding: 18px 0; border-top: 1px solid var(--hair); }
.case__block:first-child { border-top: 0; padding-top: 0; }
.case__label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-deep); }
.case__text { margin-top: 8px; font-size: 15px; line-height: 1.65; color: var(--body); }
.case__text--ph { font-style: italic; color: var(--muted); }
@media (max-width: 860px) {
  .case { grid-template-columns: 1fr; gap: 22px; }
  .case--flip .case__video { order: 0; }
  .case--flip .case__copy { order: 1; }
}

/* ---------- Motor: Gehirn-Seitenlabels ---------- */
.scrub__brainlabels { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.scrub__brainlabels::before {
  content: ""; position: absolute; left: 50%; top: 8%; bottom: 8%;
  width: 90px; transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 60% at center, rgba(7, 7, 8, 0.55), transparent 72%);
  opacity: 0; transition: opacity 0.5s ease;
}
.scrub__brainlabels.is-on::before { opacity: 1; }
.scrub__blabel {
  position: absolute; top: 41%;
  display: flex; flex-direction: column; gap: 3px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #F0F1F3; opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scrub__blabel em {
  font-style: normal; text-transform: none; letter-spacing: 0.02em;
  font-size: 12px; color: #989CA3;
}
.scrub__blabel--left { right: calc(50% + 300px); text-align: right; align-items: flex-end; transform: translateX(-10px); }
.scrub__blabel--right { left: calc(50% + 300px); text-align: left; align-items: flex-start; transform: translateX(10px); }
.scrub__blabel--left::after, .scrub__blabel--right::after {
  content: ""; position: absolute; top: 9px; width: 56px; height: 1px;
  background: rgba(232, 233, 236, 0.32);
}
.scrub__blabel--left::after { right: -70px; }
.scrub__blabel--right::after { left: -70px; }
.scrub__bdot { position: absolute; top: 6px; width: 7px; height: 7px; border-radius: 50%; }
.scrub__blabel--left .scrub__bdot { right: -84px; }
.scrub__blabel--right .scrub__bdot { left: -84px; }
.scrub__bdot--orange { background: var(--orange); box-shadow: 0 0 10px rgba(253, 138, 6, 0.55); }
.scrub__bdot--blue { background: var(--blue-bright); box-shadow: 0 0 10px rgba(90, 185, 238, 0.55); }
.scrub__brainlabels.is-on .scrub__blabel { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) { .scrub__brainlabels { display: none; } }

/* ---------- Trust: Proof-Band unter den Logos ---------- */
.trust__proof {
  list-style: none;
  margin: 34px auto 0; padding: 26px 0 0;
  max-width: 860px;
  border-top: 1px solid var(--hair);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  text-align: center;
}
.trust__proof strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(24px, 2.6vw, 32px); font-weight: 600; letter-spacing: -0.014em;
  color: var(--ink);
}
.trust__proof span {
  display: block; margin-top: 4px;
  font-size: 13.5px; line-height: 1.45; color: var(--muted);
}
@media (max-width: 640px) {
  .trust__proof { grid-template-columns: 1fr; gap: 16px; }
  .trust__proof strong { font-size: 22px; }
}

/* ---------- Hero: Farbband + Ghost-Typo (Tiefe nach AceTennis/AirPods-Prinzip) ---------- */
.hero__band {
  position: absolute; left: 0; right: 0; bottom: 0; height: 24%;
  background: linear-gradient(180deg, rgba(239, 245, 250, 0) 0%, #EFF5FA 26%, #EFF5FA 100%);
  z-index: 1;
}
.hero__ghost {
  position: absolute; left: 50%; bottom: 3.5%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(96px, 15.5vw, 218px);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(2, 131, 204, 0.06);
  pointer-events: none;
  user-select: none;
}

/* ---------- Gedankenspiel: Superpower-Klone ---------- */
.dream { background: var(--white); padding: clamp(72px, 10vh, 130px) 22px; }
.dream__inner { max-width: 1120px; margin: 0 auto; }
.dream__list {
  list-style: none;
  margin: 44px 0 0; padding: 0;
  display: grid; gap: 18px;
}
.dream__list li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-head);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.dream__list i {
  position: absolute; left: 0; top: 0.52em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
}
.dream__list li:first-child i { background: var(--orange); }
.dream__all {
  margin: 26px 0 0; padding-left: 26px;
  font-size: clamp(16px, 1.7vw, 19px); line-height: 1.55;
  color: var(--muted); max-width: 640px;
}
.dream__q {
  margin: clamp(48px, 7vh, 84px) 0 0;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: var(--display-2);
  line-height: 1.04;
  letter-spacing: -0.016em;
  color: var(--ink);
}
.dream__q b { font-weight: 600; color: var(--blue); }
@media (max-width: 640px) {
  .dream__list { gap: 14px; }
  .dream__all { padding-left: 0; }
}

/* Kalender-Schluss-Caption: Scrim (Council-Bug: Text lief ueber Terminzellen) */
.scrub__caption--onlight {
  background: #FFFFFFE0;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 12px 18px;
}

/* ---------- Mobile-Feinschliff (Marco 30.07.: "sinnvoll auf mobile optimieren") ---------- */
@media (max-width: 640px) {
  /* Feed-Kopf: Headline nicht mehr von der Meta-Zeile gequetscht */
  .feed__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .feed__meta { white-space: normal; }
  /* Freigeben-Buttons: echte Tap-Höhe */
  .feed__ok { padding: 12px 18px; font-size: 14px; }
  /* Footer-Links: Tap-Zonen */
  .footer__links a { display: inline-block; padding: 10px 6px; }
  /* Figuren-Labels + Chip: lesbare Mindestgröße */
  .clone-unit__label, .hero-person span { font-size: 12px; padding: 5px 11px; }
  .hero__hint-chip { font-size: 12px; }
}

/* Motor: Beispiel-Note am Kalender-Ende */
.scrub__note {
  position: absolute; right: 18px; bottom: 14px; z-index: 5;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0; transition: opacity 0.5s ease;
  pointer-events: none;
}
.scrub__hotspots.is-live ~ .scrub__note { opacity: 1; }
