/* ============================================================
   AISONUS — Design System "Signal" · v3
   Dark cinematic · GSAP-Choreografie · self-hosted only.
   ============================================================ */

@font-face{font-family:"Geist";font-style:normal;font-weight:300;font-display:swap;src:url("fonts/geist-300.woff2") format("woff2")}
@font-face{font-family:"Geist";font-style:normal;font-weight:400;font-display:swap;src:url("fonts/geist-400.woff2") format("woff2")}
@font-face{font-family:"Geist";font-style:normal;font-weight:500;font-display:swap;src:url("fonts/geist-500.woff2") format("woff2")}
@font-face{font-family:"Geist";font-style:normal;font-weight:600;font-display:swap;src:url("fonts/geist-600.woff2") format("woff2")}
@font-face{font-family:"Geist";font-style:normal;font-weight:700;font-display:swap;src:url("fonts/geist-700.woff2") format("woff2")}
@font-face{font-family:"Geist";font-style:normal;font-weight:800;font-display:swap;src:url("fonts/geist-800.woff2") format("woff2")}
@font-face{font-family:"JetBrains Mono";font-style:normal;font-weight:400;font-display:swap;src:url("fonts/jetbrains-mono-400.woff2") format("woff2")}
@font-face{font-family:"JetBrains Mono";font-style:normal;font-weight:500;font-display:swap;src:url("fonts/jetbrains-mono-500.woff2") format("woff2")}
@font-face{font-family:"JetBrains Mono";font-style:normal;font-weight:600;font-display:swap;src:url("fonts/jetbrains-mono-600.woff2") format("woff2")}

/* ---------- Tokens ---------- */
:root {
  --bg-0: #030608;
  --bg-1: #05090c;
  --bg-2: #0a1014;
  --surface: rgba(255, 255, 255, .028);
  --surface-2: rgba(255, 255, 255, .05);
  --surface-3: rgba(255, 255, 255, .08);
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .15);
  --text-1: #eef4f1;
  --text-2: #a3b0aa;
  --text-3: #62706a;
  --mint: #3ddc97;
  --mint-bright: #5cf5b0;
  --mint-dim: rgba(61, 220, 151, .14);
  --cyan: #4fd8e8;
  --amber: #f0b34c;
  --red: #f27d72;
  --grad-signal: linear-gradient(100deg, var(--mint-bright) 0%, var(--mint) 45%, var(--cyan) 100%);
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --container: 1240px;
  --radius: 18px;
  --radius-lg: 26px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .44, 1);
  --nav-h: 76px;
  --glow-mint: 0 0 40px -8px rgba(61, 220, 151, .45);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  overflow-x: clip;
}
html.lenis { scroll-behavior: auto; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

body.nav-open, body.cmdk-open { overflow: hidden; }

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, p, dl, dd, dt, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

::selection { background: var(--mint); color: var(--bg-0); }

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

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: #1d2a26; border-radius: 8px; border: 3px solid var(--bg-0); }
::-webkit-scrollbar-thumb:hover { background: #2c423a; }

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

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  transform: translateY(-200%);
  background: var(--bg-2); color: var(--text-1);
  padding: 10px 16px; border: 1px solid var(--mint); border-radius: 10px;
  transition: transform .3s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.mono { font-family: var(--font-mono); }

/* ---------- Preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 900;
  display: none;
  align-items: center; justify-content: center;
  background: var(--bg-0);
}
.js .loader { display: flex; }
.js.loader-done .loader { display: none; }
.loader__inner { display: grid; justify-items: center; gap: 18px; }
.loader__wave { width: 84px; height: 84px; color: var(--mint); filter: drop-shadow(0 0 14px rgba(61, 220, 151, .5)); }
.loader__count {
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .3em;
  color: var(--text-3);
}

/* ---------- Background stage ---------- */
.bg-stage { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.bg-aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(42% 34% at 18% 8%, rgba(61, 220, 151, .08), transparent 65%),
    radial-gradient(38% 30% at 85% 12%, rgba(79, 216, 232, .055), transparent 65%),
    radial-gradient(50% 42% at 50% 105%, rgba(61, 220, 151, .05), transparent 70%);
}
.bg-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 85%);
}
.bg-noise {
  position: absolute; inset: 0; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; }
.scroll-progress i {
  display: block; height: 100%;
  background: var(--grad-signal);
  transform-origin: 0 50%;
  transform: scaleX(var(--scroll-p, 0));
  box-shadow: 0 0 12px rgba(61, 220, 151, .6);
}

/* ---------- Typography ---------- */
.grad {
  font-style: normal;
  background: var(--grad-signal);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-drift 8s ease-in-out infinite alternate;
}
@keyframes grad-drift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

h1, h2, h3 { font-weight: 700; letter-spacing: -.03em; line-height: 1.08; text-wrap: balance; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); }
h3 { font-size: 1.15rem; letter-spacing: -.015em; line-height: 1.3; }

/* SplitText-Zeilenmasken (Hero data-split-hero UND Sektions-h2 data-split) */
.split-line-mask { display: block; overflow: hidden; padding-block: .06em; margin-block: -.06em; }

.section-kicker, .eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--mint);
}

/* ---------- Buttons ---------- */
.button {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px;
  font-weight: 600; font-size: .92rem; letter-spacing: -.01em;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--text-1);
  background: var(--surface-2);
  transition: transform .35s var(--ease-spring), background .3s, border-color .3s, box-shadow .35s, color .3s;
  overflow: hidden;
  white-space: nowrap;
}
.button:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .3); background: var(--surface-3); }
.button:active { transform: translateY(0) scale(.98); }

.button--primary {
  background: linear-gradient(135deg, var(--mint-bright), var(--mint) 55%, #24b378);
  border-color: transparent;
  color: #03130c;
  box-shadow: var(--glow-mint), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.button--primary:hover {
  background: linear-gradient(135deg, #74ffc2, var(--mint-bright) 55%, var(--mint));
  box-shadow: 0 0 60px -10px rgba(61, 220, 151, .65), inset 0 1px 0 rgba(255, 255, 255, .4);
}
.button--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
}
.button--primary:hover::after { transform: translateX(120%); }

.button--ghost { background: transparent; }
.button--lg { padding: 15px 28px; font-size: 1rem; }

/* ---------- Tags / Chips / Dots ---------- */
.tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: .68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid;
  white-space: nowrap;
}
.tag--mint  { color: var(--mint-bright); border-color: rgba(61, 220, 151, .35); background: rgba(61, 220, 151, .09); }
.tag--cyan  { color: var(--cyan); border-color: rgba(79, 216, 232, .35); background: rgba(79, 216, 232, .08); }
.tag--amber { color: var(--amber); border-color: rgba(240, 179, 76, .35); background: rgba(240, 179, 76, .08); }
.tag--red   { color: var(--red); border-color: rgba(242, 125, 114, .35); background: rgba(242, 125, 114, .08); }

.live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint-bright);
  box-shadow: 0 0 0 0 rgba(61, 220, 151, .6);
  animation: pulse 2.2s var(--ease-out) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 151, .55); }
  70% { box-shadow: 0 0 0 9px rgba(61, 220, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0); }
}

/* ---------- Glow cards ---------- */
.glow-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface)) padding-box, var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s;
}
.glow-card::before {
  content: ""; position: absolute; inset: -1px; z-index: 0;
  border-radius: inherit;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(61, 220, 151, .12), transparent 45%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.glow-card:hover::before { opacity: 1; }
.glow-card:hover {
  border-color: rgba(61, 220, 151, .28);
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, .8), 0 0 0 1px rgba(61, 220, 151, .06);
  transform: translateY(-3px);
}
.glow-card > * { position: relative; z-index: 1; }

/* ---------- Reveal (CSS-Transition, Klasse via JS/ScrollTrigger) ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 75ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js .section-head { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.js .section-head.is-visible { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; }

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 6, 8, .8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ticker__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span {
  display: flex; align-items: center;
  font-family: var(--font-mono); font-size: .66rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--text-3);
  padding: 8px 0 8px 18px;
}
.ticker__track span::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--mint); opacity: .55; margin-left: 18px;
}
@keyframes marquee { to { transform: translateX(-33.3333%); } }

.nav { padding: 14px 0; transition: padding .4s var(--ease-out); }
.nav__shell {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px 12px 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.is-scrolled .nav { padding: 10px 0; }
.is-scrolled .nav__shell {
  background: rgba(6, 11, 14, .72);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 18px 50px -25px rgba(0, 0, 0, .9);
}

.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 1.06rem; letter-spacing: -.02em;
}
.brand__logo { width: 30px; height: 30px; color: var(--mint); filter: drop-shadow(0 0 8px rgba(61, 220, 151, .5)); }
.brand small {
  font-family: var(--font-mono); font-size: .6rem; font-weight: 500;
  color: var(--text-3); letter-spacing: .12em; margin-left: 7px; text-transform: uppercase;
}

.nav-menu { display: flex; gap: 4px; }
.nav-menu a {
  padding: 8px 14px; border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: var(--text-2);
  transition: color .25s, background .25s;
}
.nav-menu a:hover { color: var(--text-1); background: var(--surface-2); }

.nav__right { display: flex; align-items: center; gap: 10px; }

.kbd-hint {
  display: inline-flex; gap: 3px; align-items: center;
  padding: 7px 9px; border: 1px solid var(--line); border-radius: 9px;
  background: var(--surface);
  transition: border-color .25s, background .25s;
}
.kbd-hint:hover { border-color: var(--line-2); background: var(--surface-2); }
kbd { font-family: var(--font-mono); font-size: .68rem; color: var(--text-2); line-height: 1; }

.nav-toggle { display: none; position: relative; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; }
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1.6px;
  background: var(--text-1); border-radius: 2px;
  transition: transform .35s var(--ease-out), top .35s;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex; align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
  text-align: center;
}
.hero__gl {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
}
.hero__inner { position: relative; display: grid; justify-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1.8rem; }

.hero__title {
  font-size: clamp(2.9rem, 7.2vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.0;
  max-width: 14ch;
}

.hero__lede {
  margin-top: 1.8rem;
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.65;
}
.hero__lede strong { color: var(--text-1); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 2.4rem; }

.metrics {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: clamp(1.4rem, 3.5vw, 3.4rem);
  margin-top: 3.4rem;
  width: fit-content;
}
.metrics div { position: relative; text-align: left; }
.metrics div + div::before {
  content: ""; position: absolute; left: calc(clamp(1.4rem, 3.5vw, 3.4rem) / -2); top: 15%; bottom: 15%;
  width: 1px; background: var(--line);
}
.metrics dt {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  color: var(--text-1); letter-spacing: -.03em;
}
.metrics dd { margin-top: 4px; font-size: .78rem; color: var(--text-3); max-width: 17ch; line-height: 1.4; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--line-2); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 8px;
  opacity: .7; transition: opacity .3s, border-color .3s;
}
.hero__scroll:hover { opacity: 1; border-color: var(--mint); }
.hero__scroll span {
  width: 3px; height: 8px; border-radius: 3px; background: var(--mint);
  animation: scroll-hint 2s var(--ease-out) infinite;
}
@keyframes scroll-hint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section--alt {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(61, 220, 151, .035), transparent 70%),
    var(--bg-1);
  border-block: 1px solid var(--line);
}
.section-head {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
.section-head h2 { max-width: 26ch; }
.section-head > div > p { margin-top: 1rem; color: var(--text-2); max-width: 64ch; }

.section-note {
  margin-top: 2rem;
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 70ch;
}
.section-note::before { content: ""; color: var(--mint); }

/* ---------- 01 Problem: Schatten-System ---------- */
.shadow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.shadow-grid article { padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem; }
.shadow-grid strong {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.6rem); letter-spacing: -.03em;
  background: var(--grad-signal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shadow-grid span { font-size: .85rem; color: var(--text-2); line-height: 1.5; }

/* ---------- 02 Story (Pin) ---------- */
.story { position: relative; }
.story__pin {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(3rem, 5vw, 4rem) 0;
}
.story__head { margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.story__head .section-kicker { display: block; margin-bottom: .9rem; }

.story__grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.story__steps { display: grid; gap: 10px; }
.story-step {
  position: relative;
  padding: 1.1rem 1.3rem 1.1rem 3.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .4s, border-color .4s, opacity .4s;
  opacity: .38;
}
.story-step.is-active {
  opacity: 1;
  background: var(--surface-2);
  border-color: var(--line);
}
.step-idx {
  position: absolute; left: 1.2rem; top: 1.25rem;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600;
  color: var(--text-3);
  transition: color .4s;
}
.story-step.is-active .step-idx {
  background: var(--grad-signal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.story-step h3 { font-size: 1.08rem; }
.story-step p { margin-top: .4rem; font-size: .88rem; color: var(--text-2); }

.story__stage {
  position: relative;
  border-radius: var(--radius-lg);
  border-color: var(--line-2);
  background: linear-gradient(180deg, rgba(14, 21, 25, .92), rgba(7, 12, 15, .95)) padding-box;
  box-shadow: 0 50px 120px -50px rgba(0, 0, 0, .95), inset 0 1px 0 rgba(255, 255, 255, .07);
  min-height: 420px;
  display: flex; flex-direction: column;
}
.story__stage:hover { transform: none; }

.panel-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.panel-dots { display: inline-flex; gap: 6px; }
.panel-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-3); }
.panel-dots i:first-child { background: rgba(240, 179, 76, .5); }
.panel-title, .panel-head time { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; color: var(--text-3); }
.panel-head time { margin-left: auto; color: var(--mint); }

.stage-card { padding: 1.4rem 1.5rem; display: none; flex-direction: column; gap: 12px; flex: 1; }
.stage-card.is-active { display: flex; }
.js .stage-card { display: flex; position: absolute; inset: 53px 0 34px; opacity: 0; pointer-events: none; }
.js .stage-card.is-active { opacity: 1; pointer-events: auto; }

.stage-meta {
  margin-top: auto;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .7rem; color: var(--text-3);
}

.stage-row {
  display: grid; grid-template-columns: 1fr 1.4fr .8fr .9fr;
  gap: 12px; align-items: center;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-size: .84rem;
}
.stage-row--head {
  font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text-3);
  border-bottom-color: var(--line-2);
}
.stage-row .mono { font-size: .78rem; color: var(--text-2); }
.stage-row strong.mono { color: var(--text-1); font-weight: 600; }

.cert-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface);
}
.cert-row strong { display: block; font-family: var(--font-mono); font-size: .85rem; }
.cert-row span:not(.cert-light) { font-size: .78rem; color: var(--text-3); }
.cert-light { width: 12px; height: 12px; border-radius: 50%; }
.cert-light.ok   { background: var(--mint); box-shadow: 0 0 12px rgba(61, 220, 151, .7); }
.cert-light.warn { background: var(--amber); box-shadow: 0 0 12px rgba(240, 179, 76, .7); }
.cert-light.bad  { background: var(--red); box-shadow: 0 0 12px rgba(242, 125, 114, .7); }

.price-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 9px 4px;
  font-size: .88rem; color: var(--text-2);
}
.price-row i { flex: 1; border-bottom: 1px dashed var(--line-2); transform: translateY(-4px); }
.price-row strong { font-size: .95rem; color: var(--text-1); }
.price-row--final {
  margin-top: 4px; padding: 12px 14px;
  border: 1px solid rgba(61, 220, 151, .3); border-radius: 12px;
  background: var(--mint-dim);
  color: var(--text-1);
}
.price-row--final strong { color: var(--mint-bright); font-size: 1.15rem; }

.trace { display: grid; gap: 6px; padding-block: 6px; }
.trace-node {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface);
}
.trace-node span {
  font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase;
  letter-spacing: .14em; color: var(--text-3);
}
.trace-node strong { font-size: .9rem; }
.trace-link {
  width: 2px; height: 14px; margin-left: 26px;
  background: var(--grad-signal);
  box-shadow: 0 0 8px rgba(61, 220, 151, .5);
}

.story__progress {
  position: absolute; left: 18px; right: 18px; bottom: 14px;
  display: flex; gap: 6px;
}
.story__progress i {
  flex: 1; height: 3px; border-radius: 3px;
  background: var(--surface-3);
  overflow: hidden;
  position: relative;
}
.story__progress i::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-signal);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .4s var(--ease-out);
}
.story__progress i.is-done::after { transform: scaleX(1); }

/* ---------- 03 Floor ---------- */
.proof-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-wall article { padding: 1.7rem; display: flex; flex-direction: column; gap: .6rem; }
.proof-wall strong {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); letter-spacing: -.03em;
  color: var(--text-1);
}
.proof-wall article > span { font-size: .85rem; color: var(--text-2); line-height: 1.5; }

/* Wort-Karten statt Projekt-Zahlen (keine Kunden-/Bestandsdaten öffentlich) */
.stat-words strong { font-size: clamp(1.3rem, 2vw, 1.75rem); letter-spacing: -.02em; }

.ref-band {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 24px;
  padding: 1.5rem 1.9rem;
  border-color: rgba(61, 220, 151, .25);
  background:
    linear-gradient(90deg, rgba(61, 220, 151, .07), transparent 55%),
    linear-gradient(180deg, var(--surface-2), var(--surface)) padding-box, var(--bg-1);
}
.ref-band:hover { transform: none; }
.ref-band__label {
  font-family: var(--font-mono); font-size: .66rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em; color: var(--mint);
  white-space: nowrap;
}
.ref-band__text { color: var(--text-2); font-size: .95rem; }
.ref-band__text b { color: var(--text-1); font-weight: 600; }

/* ---------- 04 Produkte ---------- */
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.product-card { padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; gap: 1.1rem; }
.product-card--accent {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(61, 220, 151, .1), transparent 55%),
    linear-gradient(180deg, var(--surface-2), var(--surface)) padding-box, var(--bg-1);
  border-color: rgba(61, 220, 151, .25);
}
.product-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em;
}
.product-top span { color: var(--text-3); }
.product-top b { color: var(--mint); font-weight: 500; }
.product-card h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.product-card > p { color: var(--text-2); font-size: .95rem; }
.product-mini { display: flex; flex-wrap: wrap; gap: 8px; }
.product-mini span {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--text-2);
}
.check-list { display: grid; gap: 9px; margin-top: auto; }
.check-list li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--text-2); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .38em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--mint); border-bottom: 2px solid var(--mint);
  transform: rotate(-45deg);
}

.integrations { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.integrations span {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em;
  padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--text-2); background: var(--surface);
  transition: border-color .3s, color .3s, transform .3s var(--ease-spring);
}
.integrations span:hover { border-color: rgba(61, 220, 151, .4); color: var(--mint-bright); transform: translateY(-2px); }

/* ---------- 05 KI-Prinzipien ---------- */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.principles article { padding: 1.8rem; display: flex; flex-direction: column; gap: .7rem; }
.p-idx {
  font-family: var(--font-mono); font-weight: 600; font-size: 1.5rem;
  background: var(--grad-signal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.principles h3 { font-size: 1.25rem; }
.principles p { font-size: .92rem; color: var(--text-2); }

.maturity { margin-top: 26px; padding: 1.8rem; }
.maturity:hover { transform: none; }
.maturity__label {
  font-family: var(--font-mono); font-size: .66rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em; color: var(--mint);
  margin-bottom: 1.2rem;
}
.maturity__steps { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; }
.m-step {
  flex: 1; min-width: 150px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface);
  display: grid; gap: 2px;
  transition: border-color .3s, background .3s;
}
.m-step.is-active { border-color: rgba(61, 220, 151, .4); background: var(--mint-dim); }
.m-step b { font-family: var(--font-mono); font-size: .95rem; color: var(--mint-bright); }
.m-step span { font-weight: 600; font-size: .95rem; }
.m-step small { color: var(--text-3); font-size: .76rem; }
.m-arrow { align-self: center; color: var(--text-3); }
.maturity__note { margin-top: 1.2rem; font-size: .9rem; color: var(--text-2); }
.maturity__note::before { content: ""; color: var(--mint); }

/* ---------- 06 Methode: Timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  max-width: 780px;
  padding-left: 42px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.timeline::before {
  content: ""; position: absolute; left: 10px; top: 8px; bottom: 8px;
  width: 2px; border-radius: 2px;
  background: var(--surface-3);
}
.timeline::after {
  content: ""; position: absolute; left: 10px; top: 8px;
  width: 2px; border-radius: 2px;
  height: calc((100% - 16px) * var(--p, 0));
  background: var(--grad-signal);
  box-shadow: 0 0 12px rgba(61, 220, 151, .55);
}
.timeline li { position: relative; padding: 0 0 2.4rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -39px; top: 7px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg-0);
  border: 2px solid var(--text-3);
  transition: border-color .5s, box-shadow .5s;
  z-index: 1;
}
.timeline li.is-visible::before { border-color: var(--mint); box-shadow: 0 0 12px rgba(61, 220, 151, .6); }
.timeline span {
  font-family: var(--font-mono); font-size: .68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .16em; color: var(--mint);
}
.timeline h3 { margin-top: .4rem; font-size: 1.2rem; }
.timeline p { margin-top: .5rem; color: var(--text-2); font-size: .92rem; max-width: 58ch; }
.timeline b {
  display: inline-block; margin-top: .8rem;
  font-family: var(--font-mono); font-size: .7rem; font-weight: 500; letter-spacing: .05em;
  color: var(--text-2);
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--surface);
}

.method-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.method-notes article { padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; }
.method-notes h3 { font-size: 1.02rem; }
.method-notes p { font-size: .87rem; color: var(--text-2); }

/* ---------- 07 Bio-Lücke ---------- */
.gap {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 0;
  text-align: center;
  overflow: hidden;
}
.gap::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 50%, rgba(61, 220, 151, .07), transparent 70%);
}
.gap__inner { position: relative; display: grid; justify-items: center; }
.gap .section-kicker { margin-bottom: 1.5rem; }
.gap__figure {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: .95; letter-spacing: -.05em;
  display: flex; align-items: baseline;
}
.gap__figure span:first-child, .gap__figure span:last-child {
  background: var(--grad-signal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gap__slash { color: var(--text-3); font-weight: 400; margin-inline: .05em; }
.gap h2 { margin-top: 1.6rem; font-size: clamp(1.4rem, 2.6vw, 2.1rem); max-width: 30ch; }
.gap__note { margin-top: 1.3rem; color: var(--text-2); max-width: 62ch; }
.gap__balance {
  margin-top: 2.2rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px;
}
.gap__balance small { width: 100%; margin-top: 6px; color: var(--text-3); font-size: .78rem; }

/* ---------- 08 Gründer ---------- */
.founders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.founders article { padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.avatar {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem;
  color: var(--bg-0);
  background: var(--grad-signal);
  box-shadow: var(--glow-mint);
  margin-bottom: .8rem;
}
.founders h3 { font-size: 1.15rem; }
.founders p { color: var(--text-2); font-size: .88rem; }
.founders a {
  margin-top: .7rem;
  font-family: var(--font-mono); font-size: .78rem; color: var(--mint);
  border-bottom: 1px solid rgba(61, 220, 151, .3);
  transition: border-color .3s, color .3s;
}
.founders a:hover { color: var(--mint-bright); border-color: var(--mint-bright); }

/* ---------- 09 FAQ ---------- */
.faq-list { display: grid; gap: 14px; max-width: 860px; }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  transition: border-color .3s;
}
details[open] { border-color: rgba(61, 220, 151, .3); }
summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-weight: 600; font-size: 1.02rem; letter-spacing: -.01em;
}
summary::-webkit-details-marker { display: none; }
summary i {
  position: relative; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: transform .45s var(--ease-out), border-color .3s, background .3s;
}
summary i::before, summary i::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 1.6px; background: var(--text-1);
  transform: translate(-50%, -50%);
}
summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] summary i { transform: rotate(135deg); border-color: var(--mint); background: var(--mint-dim); }
.faq-body { overflow: hidden; }
.faq-body p { padding: 0 1.5rem 1.3rem; color: var(--text-2); max-width: 68ch; }

/* ---------- 10 Legal ---------- */
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.legal-grid article { padding: 1.7rem; display: flex; flex-direction: column; gap: .7rem; }
.legal-grid h3 { font-size: 1.05rem; }
.legal-grid p { font-size: .88rem; color: var(--text-2); }
.legal-grid a { color: var(--mint); }
.legal-grid a:hover { color: var(--mint-bright); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 65% at 50% 100%, rgba(61, 220, 151, .16), transparent 70%),
    radial-gradient(35% 45% at 50% 100%, rgba(79, 216, 232, .1), transparent 70%);
}
.cta .container { position: relative; }
.cta .section-kicker { display: block; margin-bottom: 1.3rem; }
.cta h2 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); max-width: 24ch; margin-inline: auto; }
.cta p { margin: 1.4rem auto 0; color: var(--text-2); max-width: 56ch; }
.cta .hero__actions { justify-content: center; margin-top: 2.4rem; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 0;
  overflow: hidden;
  background: var(--bg-1);
}
.footer__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  font-size: .82rem; color: var(--text-3);
  padding-bottom: 2rem;
}
.footer__inner a { transition: color .25s; }
.footer__inner a:hover { color: var(--mint); }
.footer__inner .mono { font-size: .72rem; letter-spacing: .1em; color: var(--mint); }

.footer__watermark {
  font-size: clamp(6rem, 19vw, 17rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .78;
  text-align: center;
  user-select: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), transparent 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transform: translateY(12%);
}

/* ---------- ⌘K Command Palette ---------- */
.cmdk { position: fixed; inset: 0; z-index: 500; display: grid; place-items: start center; padding-top: 16vh; }
.cmdk[hidden] { display: none; }
.cmdk__backdrop {
  position: absolute; inset: 0;
  background: rgba(2, 4, 6, .7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fade-in .25s var(--ease-out);
}
.cmdk__panel {
  position: relative;
  width: min(560px, calc(100% - 32px));
  border-radius: 18px;
  border: 1px solid var(--line-2);
  background: rgba(10, 16, 20, .96);
  box-shadow: 0 60px 140px -30px rgba(0, 0, 0, .95), 0 0 0 1px rgba(61, 220, 151, .08), var(--glow-mint);
  overflow: hidden;
  animation: cmdk-in .3s var(--ease-spring);
}
@keyframes fade-in { from { opacity: 0; } }
@keyframes cmdk-in { from { opacity: 0; transform: translateY(-14px) scale(.97); } }
.cmdk__input-row {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text-3);
}
.cmdk__input-row input {
  flex: 1; background: none; border: 0; outline: none;
  font: inherit; font-size: 1rem; color: var(--text-1);
}
.cmdk__input-row input::placeholder { color: var(--text-3); }
.cmdk__input-row kbd { padding: 4px 7px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); }
.cmdk__list { max-height: 320px; overflow-y: auto; padding: 8px; }
.cmdk__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 11px;
  font-size: .92rem; color: var(--text-2);
  cursor: pointer;
}
.cmdk__list li[aria-selected="true"] { background: var(--mint-dim); color: var(--text-1); }
.cmdk__list li[aria-selected="true"] .cmdk__icon { color: var(--mint-bright); }
.cmdk__icon { color: var(--text-3); font-family: var(--font-mono); font-size: .72rem; width: 30px; flex: none; text-align: center; }
.cmdk__list .empty { color: var(--text-3); cursor: default; justify-content: center; padding: 20px; }
.cmdk__foot {
  display: flex; justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  font-size: .7rem; color: var(--text-3);
}
.cmdk__foot span { display: inline-flex; align-items: center; gap: 6px; }
.cmdk__foot kbd { padding: 2px 5px; border: 1px solid var(--line); border-radius: 5px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .section-head { grid-template-columns: 1fr; gap: .9rem; }
  .shadow-grid, .proof-wall { grid-template-columns: 1fr 1fr; }
  .story__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .story__pin { align-items: flex-start; padding-top: 140px; }
  .story__steps { grid-template-columns: 1fr 1fr; gap: 8px; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 1.4rem 2.4rem; }
  .metrics div:nth-child(odd)::before { display: none; }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    background: rgba(2, 5, 7, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none;
    transition: opacity .4s var(--ease-out);
  }
  .nav-menu a {
    font-size: 1.6rem; font-weight: 600; letter-spacing: -.02em;
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  }
  .nav-menu.is-open { opacity: 1; pointer-events: auto; z-index: 90; }
  .nav-menu.is-open a { opacity: 1; transform: none; }
  .nav-menu.is-open a:nth-child(1) { transition-delay: .05s; }
  .nav-menu.is-open a:nth-child(2) { transition-delay: .1s; }
  .nav-menu.is-open a:nth-child(3) { transition-delay: .15s; }
  .nav-menu.is-open a:nth-child(4) { transition-delay: .2s; }
  .nav-menu.is-open a:nth-child(5) { transition-delay: .25s; }
  .nav-menu.is-open a:nth-child(6) { transition-delay: .3s; }
  .nav-toggle { display: block; z-index: 95; }
  .kbd-hint, .nav-action { display: none; }

  .split-cards, .principles, .method-notes, .founders, .legal-grid { grid-template-columns: 1fr; }
  .story__steps { grid-template-columns: 1fr; }
  .story-step { padding: .9rem 1rem .9rem 3rem; }
  .story-step p { display: none; }
  .story-step.is-active p { display: block; }
  .stage-row { grid-template-columns: 1fr 1.2fr .9fr; }
  .stage-row > :nth-child(3) { display: none; }
  .hero { min-height: 0; }
  .hero__scroll { display: none; }
  .maturity__steps { flex-direction: column; }
  .m-arrow { transform: rotate(90deg); margin-left: 1rem; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .shadow-grid, .proof-wall, .metrics { grid-template-columns: 1fr; }
  .metrics div + div::before { display: none; }
  .timeline { padding-left: 32px; }
  .timeline li::before { left: -29px; }
  .hero__actions .button { width: 100%; }
  .js .stage-card { inset: 53px 0 30px; }
  .stage-card { padding: 1rem 1.1rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal], .js .section-head { opacity: 1; transform: none; }
  .hero__gl { display: none; }
  .js .loader { display: none; }
  .ticker__track { animation: none; flex-wrap: wrap; }
  .grad { animation: none; }
  .js .stage-card { position: static; opacity: 1; pointer-events: auto; }
  .story__pin { min-height: 0; }
}

/* ============================================================
   FRESH LIGHT THEME v4 — "Markt-Frische" für die Produktseite.
   Helles Papier, Blattgrün, Zitrus/Tomate als Zustandsfarben.
   Die Produkt-UI-Panels (Cockpit/Story/Demo) bleiben bewusst
   dunkle "Bildschirme".
   ============================================================ */
:root {
  --bg-0: #f4f2e8;
  --bg-1: #edeadd;
  --bg-2: #e4e0cf;
  --surface: #ffffff;
  --surface-2: rgba(20, 38, 28, .045);
  --surface-3: rgba(20, 38, 28, .09);
  --line: rgba(20, 38, 28, .12);
  --line-2: rgba(20, 38, 28, .22);
  --text-1: #14261c;
  --text-2: #47594d;
  --text-3: #79877d;
  --mint: #178a54;
  --mint-bright: #1fa869;
  --mint-dim: rgba(23, 138, 84, .1);
  --cyan: #0e8fa0;
  --amber: #d97b16;
  --red: #cf4531;
  --grad-signal: linear-gradient(100deg, #1fa869 0%, #178a54 45%, #0e8fa0 100%);
  --glow-mint: 0 10px 34px -10px rgba(23, 138, 84, .45);
}

::selection { background: #178a54; color: #f4f2e8; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: #c6c2ae; border-color: var(--bg-1); }
::-webkit-scrollbar-thumb:hover { background: #a8a48e; }

/* Aurora → helle Frische-Washes; Grid in Tinte */
.bg-aurora {
  background:
    radial-gradient(46% 36% at 16% 6%, rgba(31, 168, 105, .12), transparent 65%),
    radial-gradient(40% 32% at 86% 10%, rgba(217, 123, 22, .09), transparent 65%),
    radial-gradient(52% 44% at 50% 108%, rgba(14, 143, 160, .08), transparent 70%);
}
.bg-grid {
  background:
    linear-gradient(rgba(20, 38, 28, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 38, 28, .05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.bg-noise { opacity: .35; }

/* Hero-Shader: sanfte Farb-Washes auf Papier */
.hero__gl { opacity: .75; }

/* Glass-Flächen hell */
.ticker { background: rgba(244, 242, 232, .82); }
.ticker__track span { color: #8b8873; }
.is-scrolled .nav__shell {
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 50px -28px rgba(20, 38, 28, .35);
}
.brand__logo { filter: drop-shadow(0 0 8px rgba(23, 138, 84, .35)); }

/* Karten: Weiß mit weichem Grün-Schatten */
.glow-card {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 12px 34px -22px rgba(20, 38, 28, .28);
}
.glow-card::before {
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(23, 138, 84, .14), transparent 45%);
}
.glow-card:hover {
  border-color: rgba(23, 138, 84, .35);
  box-shadow: 0 24px 50px -26px rgba(20, 38, 28, .35);
}
.product-card--accent {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(31, 168, 105, .12), transparent 55%),
    var(--surface);
  border-color: rgba(23, 138, 84, .3);
}
.frische-note, .ref-band {
  background:
    linear-gradient(90deg, rgba(31, 168, 105, .09), transparent 55%),
    var(--surface);
}

/* Buttons */
.button--primary {
  background: linear-gradient(135deg, #23b573, #178a54 60%, #0f6b40);
  color: #f7fbf3;
  box-shadow: var(--glow-mint), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.button--primary:hover {
  background: linear-gradient(135deg, #2bc981, #1fa869 60%, #178a54);
  box-shadow: 0 14px 44px -12px rgba(23, 138, 84, .55), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.button--ghost { background: rgba(255, 255, 255, .5); }

/* Status-Farben: Blatt / Teal / Zitrus / Tomate */
.tag--mint  { color: #0f6b40; border-color: rgba(23, 138, 84, .45); background: rgba(31, 168, 105, .12); }
.tag--cyan  { color: #0a6d7a; border-color: rgba(14, 143, 160, .45); background: rgba(14, 143, 160, .1); }
.tag--amber { color: #a35a0b; border-color: rgba(217, 123, 22, .45); background: rgba(217, 123, 22, .12); }
.tag--red   { color: #a33423; border-color: rgba(207, 69, 49, .45); background: rgba(207, 69, 49, .1); }

/* Produkt-Bühne im Frische-Look: helle Karte, Token-Farben regeln den Rest */
.story__stage {
  background: var(--surface);
  border-color: var(--line-2);
  box-shadow: 0 40px 90px -40px rgba(20, 38, 28, .35), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.story__stage .panel-head time { color: var(--mint); }

/* Loader hell */
.loader { background: var(--bg-0); }
.loader__wave { color: var(--mint); filter: drop-shadow(0 0 14px rgba(23, 138, 84, .35)); }
.loader__count { color: var(--text-3); }

/* Command-Palette hell */
.cmdk__backdrop { background: rgba(20, 38, 28, .35); }
.cmdk__panel {
  background: rgba(255, 255, 255, .97);
  border-color: var(--line-2);
  box-shadow: 0 60px 140px -30px rgba(20, 38, 28, .4), var(--glow-mint);
}

/* Footer-Watermark & Timeline */
.footer__watermark { background: linear-gradient(180deg, rgba(20, 38, 28, .09), transparent 85%); -webkit-background-clip: text; background-clip: text; }
.timeline li::before { background: var(--bg-0); }

/* Gap-Sektion (0/16) */
.gap::before { background: radial-gradient(50% 60% at 50% 50%, rgba(31, 168, 105, .1), transparent 70%); }
.cta__glow {
  background:
    radial-gradient(50% 65% at 50% 100%, rgba(31, 168, 105, .18), transparent 70%),
    radial-gradient(35% 45% at 50% 100%, rgba(217, 123, 22, .08), transparent 70%);
}
.section--alt {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(31, 168, 105, .05), transparent 70%),
    var(--bg-1);
}

/* ============================================================
   FRESH BOMBAST v5 — "Folge der Kiste"
   Hero-Kiste, Marquee, Cursor, Loader-Etikett, DrawSVG-Dekor,
   Curtain-Footer. Rund & weich — Kontrast zum Pixel-Noir der Firma.
   ============================================================ */

.fl-mono { font-family: var(--font-mono); }

/* Hero: asymmetrisches Grid */
.hero { text-align: left; }
.hero__grid2 {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy2 .hero__title { font-size: clamp(2.5rem, 5.4vw, 4.6rem); max-width: none; }
.hero__copy2 .hero__lede { margin-inline: 0; }
.hero__copy2 .hero__actions { justify-content: flex-start; }
.hero__copy2 .metrics { grid-template-columns: repeat(2, auto); gap: 1.2rem 2.6rem; }
.hero__copy2 .metrics div:nth-child(odd)::before { display: none; }

/* Die Obstkiste */
.crate-scene {
  position: relative;
  perspective: 1300px;
  filter: drop-shadow(0 30px 40px rgba(20, 38, 28, .18));
}
.crate { will-change: transform; transform-style: preserve-3d; }
.crate-stamp {
  position: absolute; right: 8%; top: 6%;
  font-family: var(--font-mono); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--mint); border: 3px solid var(--mint);
  background: rgba(255, 255, 253, .88);
  border-radius: 12px;
  padding: 10px 16px;
  transform: rotate(-7deg);
}
.js .crate-stamp { opacity: 0; }

/* Frische-Marquee */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding-block: 14px;
  background: rgba(255, 255, 255, .35);
}
.marquee__track { display: flex; width: max-content; will-change: transform; animation: mq-fresh 32s linear infinite; }
.marquee span {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(.78rem, 1.2vw, .95rem);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-3);
  display: flex; align-items: center;
  padding-left: 34px;
}
.marquee span::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint); margin-left: 34px; opacity: .7;
}
@keyframes mq-fresh { to { transform: translateX(-33.333%); } }

/* Cursor (rund, fresh) */
.cur-dot, .cur-ring {
  position: fixed; top: 0; left: 0; z-index: 1500;
  pointer-events: none; border-radius: 50%; opacity: 0;
}
.cur-dot { width: 8px; height: 8px; background: var(--mint); }
.cur-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(23, 138, 84, .55);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 0;
  color: #f4f9f2;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), background .3s, font-size .2s;
}
.cur-ring.is-label {
  width: 92px; height: 92px;
  background: var(--mint); border-color: var(--mint);
  font-size: .64rem; letter-spacing: .1em;
}
@media (pointer: coarse) { .cur-dot, .cur-ring { display: none; } }

/* Loader "Frische-Kontrolle" */
.loader__crate { width: 130px; height: auto; color: var(--mint); filter: drop-shadow(0 0 16px rgba(23, 138, 84, .3)); }
.loader__word {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .34em; color: var(--text-2);
}

/* Mini-Pipeline (Beleg → LLM → Struktur) */
.mini-pipe { width: 100%; max-width: 340px; color: var(--mint); overflow: visible; }
.mini-pipe text { fill: var(--text-3); letter-spacing: .12em; }

/* Wellen-Deko */
.wave-deco {
  width: 100%; height: clamp(44px, 6vw, 80px);
  color: var(--mint); opacity: .85;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
  overflow: visible;
}

/* Maturity-Fortschrittslinie */
.mat-line {
  height: 4px; border-radius: 4px;
  background: var(--surface-3);
  margin-bottom: 1.1rem;
  overflow: hidden;
}
.mat-line i {
  display: block; height: 100%;
  background: var(--grad-signal);
  transform: scaleX(0); transform-origin: left center;
  border-radius: 4px;
}

/* CTA-Kiste */
.cta-crate { width: clamp(120px, 16vw, 180px); margin: 2.2rem auto 0; }

/* Curtain-Footer */
main {
  position: relative; z-index: 2;
  background:
    radial-gradient(46% 36% at 16% 6%, rgba(31, 168, 105, .12), transparent 65%),
    radial-gradient(40% 32% at 86% 10%, rgba(217, 123, 22, .09), transparent 65%),
    var(--bg-0);
  background-attachment: fixed, fixed, scroll;
}
.footer { position: sticky; bottom: 0; z-index: 1; }

@media (max-width: 1080px) {
  .hero__grid2 { grid-template-columns: 1fr; gap: 2.4rem; }
  .crate-scene { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 860px) {
  main { background-attachment: scroll, scroll, scroll; }
  .footer { position: relative; }
  .hero__copy2 .hero__actions .button { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .crate-scene { display: none; }
  .js .crate-stamp { opacity: 1; }
  .marquee__track { animation: none; }
  .cur-dot, .cur-ring { display: none; }
  .mat-line i { transform: scaleX(1); }
}

/* ============================================================
   JOURNEY v6 — "Folge der Kiste" komplett:
   Route-Rail, Stations-Typografie, Ghost-Numerale, Tiefe,
   Stats-Band, FEFO-Regal. Taste-Skill-konform (Kicker-Diät,
   gestapelte Header, 1 Marquee, kein Scroll-Cue).
   ============================================================ */

/* Route-Rail (die Lieferroute) */
.rail {
  position: fixed; left: 26px; top: 50%;
  transform: translateY(-50%);
  height: 52vh; z-index: 60;
  display: none;
}
@media (min-width: 1240px) { .rail { display: block; } }
.rail__line {
  position: absolute; left: 5px; top: 0; bottom: 0;
  width: 2px; border-radius: 2px;
  background: var(--surface-3);
}
.rail__line i {
  display: block; width: 100%; height: 100%;
  background: var(--grad-signal);
  transform: scaleY(var(--rp, 0)); transform-origin: top center;
  border-radius: 2px;
}
.rail__crate {
  position: absolute; left: -8px; top: 0;
  width: 28px; height: auto; z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(20, 38, 28, .3));
  will-change: transform;
}
.rail__stops { position: absolute; inset: 0; }
.rail__stops li {
  position: absolute; left: 0;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .58rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: transparent;
  transition: color .3s;
  white-space: nowrap;
}
.rail__stops li i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bg-0);
  border: 2px solid var(--text-3);
  margin-left: 2px;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-spring);
}
.rail__stops li.on { color: var(--text-3); }
.rail__stops li.on i {
  border-color: var(--mint);
  box-shadow: 0 0 10px rgba(23, 138, 84, .5);
  transform: scale(1.15);
}
/* Positionen der 7 Stopps */
.rail__stops li:nth-child(1) { top: 0; }
.rail__stops li:nth-child(2) { top: 16.6%; }
.rail__stops li:nth-child(3) { top: 33.3%; }
.rail__stops li:nth-child(4) { top: 50%; }
.rail__stops li:nth-child(5) { top: 66.6%; }
.rail__stops li:nth-child(6) { top: 83.3%; }
.rail__stops li:nth-child(7) { top: 100%; }

/* Stations-Header: gestapelt, groß, mit Ghost-Numeral in der Tiefe */
.station {
  position: relative;
  margin-bottom: clamp(2.6rem, 5vw, 4.2rem);
  max-width: 880px;
}
.station h2 {
  position: relative; z-index: 1;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  letter-spacing: -.035em;
}
.station > p {
  position: relative; z-index: 1;
  margin-top: 1.1rem;
  color: var(--text-2);
  max-width: 65ch;
}
.station__ghost {
  position: absolute; z-index: 0;
  right: -4%; top: -1.2em;
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(7rem, 17vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 38, 28, .13);
  pointer-events: none; user-select: none;
  will-change: transform;
}
.station__ghost--pin { top: -.9em; right: 0; font-size: clamp(6rem, 13vw, 11rem); }
.station__ghost--center { left: 50%; transform: translateX(-50%); right: auto; top: -.4em; }

/* Stats-Band (Metrics aus dem Hero hierher) */
.stats-band {
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: rgba(255, 255, 255, .3);
}
.stats-band__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 2.4rem;
}
.stats-band__grid > div { display: grid; gap: 4px; }
.stats-band__grid b {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  letter-spacing: -.03em; color: var(--text-1);
}
.stats-band__grid span { font-size: .8rem; color: var(--text-3); max-width: 22ch; line-height: 1.4; }

/* FEFO-Regal */
.shelf { position: relative; }
.shelf__row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}
.sc {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px -20px rgba(20, 38, 28, .3);
  padding: 1.2rem 1.2rem 1rem;
  display: grid; justify-items: center; gap: 6px;
  will-change: transform;
}
.sc svg { width: 74px; height: auto; }
.sc b { font-family: var(--font-mono); font-weight: 600; font-size: .82rem; letter-spacing: -.01em; }
.sc span { font-family: var(--font-mono); font-size: .68rem; color: var(--text-3); }
.sc .dot {
  position: absolute; top: 12px; right: 12px;
  width: 10px; height: 10px; border-radius: 50%;
}
.sc .dot.ok { background: var(--mint-bright); }
.sc .dot.warn { background: var(--amber); }
.sc .dot.urgent { background: var(--red); box-shadow: 0 0 10px rgba(207, 69, 49, .55); }
.sc.is-first {
  border-color: rgba(23, 138, 84, .5);
  box-shadow: 0 22px 44px -20px rgba(23, 138, 84, .4);
}
.shelf__note {
  margin-top: 1.6rem;
  font-family: var(--font-mono); font-size: .82rem;
  color: var(--mint);
}
.js .shelf__note { opacity: 0; }

@media (max-width: 860px) {
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .shelf__row { grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
  .station__ghost { right: 0; font-size: clamp(5rem, 22vw, 8rem); top: -1em; }
}

@media (prefers-reduced-motion: reduce) {
  .rail { display: none; }
  .js .shelf__note { opacity: 1; }
  .station__ghost { transform: none !important; }
}

/* ============================================================
   GUSS-PASS v6.1 — eine Fläche, ein Rhythmus, eine Kartensprache
   ============================================================ */

/* Durchgehender Papier-Fluss: keine gestreiften Alt-Sektionen mehr */
.section--alt { background: transparent; border-block: 0; }

/* Hero → Marquee → Stats lesen sich als EIN Band */
.marquee--fresh { border-bottom: 0; }
.stats-band { border-top: 0; background: rgba(255, 255, 255, .35); }

/* Rail erst, wenn wirklich Platz ist (kein Content-Overlap) */
@media (max-width: 1439px) { .rail { display: none; } }

/* Story-Headline auf Stations-Maß */
.story__head h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); letter-spacing: -.035em; }
.story__head { max-width: 880px; }

/* Kartensprache: dezente Material-Varianz statt weiß-auf-weiß (Bento-Diversität) */
.shadow-grid article:nth-child(2),
.proof-wall article:nth-child(2),
.proof-wall article:nth-child(6),
.principles article:nth-child(4),
.trust-grid article:nth-child(3) {
  background: linear-gradient(160deg, rgba(31, 168, 105, .09), #ffffff 62%);
}
.shadow-grid article:nth-child(4),
.proof-wall article:nth-child(4),
.principles article:nth-child(1),
.legal-grid article:nth-child(2) {
  background: linear-gradient(160deg, rgba(217, 123, 22, .07), #ffffff 62%);
}
.founders article:nth-child(2) {
  background: linear-gradient(160deg, rgba(14, 143, 160, .07), #ffffff 62%);
}

/* Einheitliche Sektions-Kadenz */
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.gap { padding: clamp(5rem, 9vw, 8.5rem) 0; }

/* Ghost-Numerale global etwas präsenter, gleiche Tinte */
.station__ghost { -webkit-text-stroke: 1.5px rgba(20, 38, 28, .16); }

/* FAQ & Legal in derselben Materialwelt */
details { background: var(--surface); box-shadow: 0 12px 30px -22px rgba(20, 38, 28, .25); }

/* Maturity & Risk-Bänder: gleicher Bandstil wie ref-band */
.maturity, .risk {
  background: linear-gradient(90deg, rgba(31, 168, 105, .07), #ffffff 55%);
  border-color: rgba(23, 138, 84, .28);
}
