/* ============================================================
   Mind.O — Landingpage
   Design-System: Projects/Mind.O/design/DESIGN_SHEET.md
   Nur drei Bewegungsarten: Parallax · Linien verbinden · Glow.
   ============================================================ */

/* ---------- Fonts (self-hosted, DSGVO) ---------- */
@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/geist.woff2") format("woff2");
  font-weight: 100 900; /* Variable Font — eine Datei fuer alle Gewichte */
  font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #F7F7F5;
  --surface: #FFFFFF;
  --anthracite: #101014;
  --panel: #17171C;

  --ink: #0B0B0C;
  --ink-2: #55555C;
  --ink-3: #6E6E76;      /* AA-fest auf Paper (≥4.5:1) — heller nur dekorativ */
  --violet-text: #5A49EE; /* Violett fuer kleinen TEXT auf hell (AA) */
  --text-dark: #F4F4F6;
  --muted-dark: #A0A0AA;

  --line: #E7E7EA;
  --line-dark: #26262E;

  --violet: #6C5CF5;
  --glow: rgba(108, 92, 245, 0.16);

  --font-ui: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mark: "Poppins", "Century Gothic", "Futura", var(--font-ui);

  --radius-card: 24px;
  --radius-pill: 999px;
  --container: 1120px;
  --measure: 62ch;
  --section-pad: clamp(96px, 14vh, 176px);

  --shadow-soft: 0 24px 80px -32px rgba(11, 11, 12, 0.14);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-reveal: 800ms;
  --dur-line: 1200ms;
}

/* ---------- Reset-lite / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* Fallback fuer Safari < 16 */
  overflow-x: clip;
}

::selection { background: var(--glow); color: var(--ink); }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 10px 18px; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--paper);
  transform: translateY(-64px);
}
.skip-link:focus-visible { transform: none; }

/* ---------- Layout-Grundlagen ---------- */
.container {
  width: min(var(--container), 100% - 2 * clamp(20px, 5vw, 48px));
  margin-inline: auto;
}

.section { position: relative; padding-block: var(--section-pad); }

.center { text-align: center; }
.center .measure, .center h2 { margin-inline: auto; }

.measure { max-width: var(--measure); }

/* ---------- Typografie ---------- */
.display {
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 24ch;
  text-wrap: balance;
}

.kicker {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: clamp(20px, 3vh, 32px);
}
.center .kicker { justify-content: center; }
.kicker .num { color: var(--violet-text); font-variant-numeric: tabular-nums; letter-spacing: 0.08em; }
.act-dark .kicker .num { color: #9A8DFF; }

.lede { font-size: clamp(1.25rem, 2.4vw, 1.5rem); line-height: 1.45; color: var(--ink-2); }

.muted { color: var(--ink-3); }

.dot { color: var(--violet); }

.wordmark {
  font-family: var(--font-mark);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border: 0; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 16px; letter-spacing: -0.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out),
              background-color 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.btn-primary {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 10px 30px -14px rgba(11, 11, 12, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -14px rgba(11, 11, 12, 0.55), 0 0 0 6px var(--glow);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--ink-3); transform: translateY(-2px); }
.btn-ghost .arrow { color: var(--violet); transition: transform 300ms var(--ease-out); }
.btn-ghost:hover .arrow { transform: translateY(3px); }
.btn-small { padding: 10px 20px; font-size: 14px; }

/* ---------- Mind-Field (fixe Canvas-Ebene) ---------- */
#mindField {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.site-head, main, .site-foot { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px clamp(16px, 3vw, 28px);
}
.head-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin-inline: auto;
  padding: 10px 12px 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background-color 400ms var(--ease-out), border-color 400ms var(--ease-out),
              box-shadow 400ms var(--ease-out);
}
.site-head.is-scrolled .head-inner {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-color: rgba(11, 11, 12, 0.07);
  box-shadow: var(--shadow-soft);
}
.head-right { display: flex; align-items: center; gap: clamp(12px, 2.5vw, 22px); }
.lang-switch {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
}
.lang-switch a { color: var(--ink-3); transition: color 300ms var(--ease-out); }
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.is-active { color: var(--ink); border-bottom: 2px solid var(--violet); padding-bottom: 1px; }

/* Header ueber dem dunklen Akt */
.site-head.head-dark .wordmark { color: var(--text-dark); }
.site-head.head-dark .lang-switch a { color: var(--muted-dark); }
.site-head.head-dark .lang-switch a:hover,
.site-head.head-dark .lang-switch a.is-active { color: var(--text-dark); }
.site-head.head-dark.is-scrolled .head-inner {
  background: rgba(23, 23, 28, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
}
.site-head.head-dark .btn-primary { background: var(--text-dark); color: var(--ink); }

/* ---------- Reveal-System (nur mit JS aktiv) ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ============================================================
   1 · HERO
   ============================================================ */
/* Der ganze Hero ist der lebende Mind — Content sitzt im Auge des Netzes */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-top: 104px;
  padding-bottom: clamp(32px, 5vh, 64px);
  text-align: center;
  overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-aura {
  position: absolute; left: 50%; top: 50%; z-index: 1;
  width: 140vmin; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side,
    rgba(108, 92, 245, 0.10), rgba(108, 92, 245, 0.045) 45%, rgba(108, 92, 245, 0) 72%);
  animation: auraBreath 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes auraBreath {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.04); }
}
/* Warmweisser Scrim ZWISCHEN Violett und Text — sichert Kontrast */
.hero-scrim {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  width: min(920px, 130vw); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side,
    rgba(247, 247, 245, 0.92), rgba(247, 247, 245, 0.7) 42%, rgba(247, 247, 245, 0) 72%);
  pointer-events: none;
}
.hero-core {
  position: relative; z-index: 4;
  display: flex; flex-direction: column; align-items: center;
}
/* Labels kleben an ihren Anker-Knoten (JS positioniert per transform) */
.node-label {
  position: absolute; left: 0; top: 0; z-index: 3;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ink-2);
  text-shadow: 0 0 6px var(--paper), 0 0 14px var(--paper), 0 0 24px var(--paper);
  opacity: 0;
  transition: opacity 700ms var(--ease-out);
  pointer-events: none;
  will-change: transform;
}
.node-label.in { opacity: 1; }
.hero-tags { display: none; }

.hero-sub {
  margin-top: clamp(28px, 4vh, 44px);
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  line-height: 1.4; font-weight: 500; color: var(--ink);
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: clamp(32px, 5vh, 52px);
}

/* (Hero-Netz: siehe .hero-canvas/.hero-aura/.hero-scrim/.node-label oben — gezeichnet in js/main.js) */

/* ============================================================
   2 · PROBLEM
   ============================================================ */
.grid-2 { display: grid; gap: clamp(48px, 6vw, 96px); align-items: center; }

.closer {
  margin-top: clamp(28px, 4vh, 44px);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.35; letter-spacing: -0.02em;
}
.closer strong { font-weight: 600; }

/* Insel-Visualisierung */
.islands { position: relative; min-height: 360px; }
.islands-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.islands-svg line {
  stroke: var(--ink); stroke-width: 1; opacity: 0.22;
  transition: stroke-dashoffset 1400ms var(--ease-out);
}
.islands-svg line.violet { stroke: var(--violet); opacity: 0.4; }

.island {
  position: absolute;
  will-change: transform; /* treibt sanft (JS) */
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(11, 11, 12, 0.07);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  opacity: 0.75;
  transition: opacity 900ms var(--ease-out), border-color 900ms var(--ease-out);
}
.islands.is-connected .island { opacity: 1; border-color: rgba(108, 92, 245, 0.25); }

.island:nth-of-type(1) { left: 6%;  top: 4%; }
.island:nth-of-type(2) { left: 58%; top: 0%; }
.island:nth-of-type(3) { left: 82%; top: 26%; }
.island:nth-of-type(4) { left: 2%;  top: 34%; }
.island:nth-of-type(5) { left: 30%; top: 18%; }
.island:nth-of-type(6) { left: 74%; top: 58%; }
.island:nth-of-type(7) { left: 10%; top: 72%; }
.island:nth-of-type(8) { left: 56%; top: 82%; }

.island-hub {
  position: absolute; left: 50%; top: 47%;
  transform: translate(-50%, -50%);
  padding: 13px 26px; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mark); font-weight: 600; font-size: 17px;
  opacity: 0;
  transition: opacity 900ms var(--ease-out) 500ms, box-shadow 900ms var(--ease-out) 500ms;
}
.islands.is-connected .island-hub { opacity: 1; box-shadow: 0 0 0 10px var(--glow); }
/* Atem + Flare als vorgeblurrter Glow-Layer (nur Opacity = Compositor, kein Paint) */
.island-hub::after {
  content: ""; position: absolute; inset: -22px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(108, 92, 245, 0.28), rgba(108, 92, 245, 0) 72%);
  opacity: 0; pointer-events: none;
}
.islands.is-connected .island-hub::after { animation: hubBreathOp 8s ease-in-out infinite; }
@keyframes hubBreathOp {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 0.8; }
}
/* Flare bei Puls-Ankunft (JS): 120ms auf, 500ms ab — UNTERBRICHT den Atem */
.islands.is-connected .island-hub.hub-flare::after { animation: hubFlareOp 620ms var(--ease-out) both; }
@keyframes hubFlareOp {
  0%   { opacity: 0.55; }
  20%  { opacity: 1; }
  100% { opacity: 0.5; }
}

/* ============================================================
   3 · WHAT — Flow
   ============================================================ */
.flow {
  display: flex; flex-direction: column; align-items: center;
  margin-top: clamp(48px, 7vh, 80px);
}
.flow-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 640px; }
.token {
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.flow-line {
  --flow-h: clamp(48px, 7vh, 80px);
  position: relative;
  width: 1px; height: var(--flow-h);
  background: rgba(110, 110, 118, 0.6); /* einfarbig — Verlaeufe nur als Glow (Design-Sheet) */
  margin-block: 18px;
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--dur-line) var(--ease-out);
}
.flow-line-2 { transition-delay: 500ms; }
.flow.lines-in .flow-line { transform: scaleY(1); }

/* Energie-Puls: Bausteine → Mind.O → Intelligente Organisation.
   Periode 6.5s = globaler Herzschlag der Seite (Hero-Beams, S2-Pulse, S3-Loop). */
.flow-pulse {
  position: absolute; left: 50%; top: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px 3px var(--glow);
  transform: translate(-50%, -6px);
  opacity: 0;
}
/* 1.2s Basis-Delay auf ALLEN drei phasengelockten Animationen: wartet den
   scaleY-Draw-in der Linien ab, ohne die 6.5s-Synchronisation zu brechen */
.flow.lines-in .flow-pulse { animation: flowTravel 6.5s linear 1.2s infinite; }
.flow.lines-in .flow-line-2 .flow-pulse { animation-delay: 4.45s; }
@keyframes flowTravel {
  0%   { opacity: 0;   transform: translate(-50%, -6px); }
  3%   { opacity: 0.9; }
  21%  { opacity: 0.9; }
  25%  { opacity: 0;   transform: translate(-50%, var(--flow-h)); }
  100% { opacity: 0;   transform: translate(-50%, var(--flow-h)); }
}

/* Wippen: nur jedes 2. Token, ±2px — neben Text nichts Schnelles */
.flow.lines-in .flow-row .token:nth-child(odd) { animation: tokenBob 7s ease-in-out infinite; }
.flow-row .token:nth-child(3) { animation-delay: 2.3s; }
.flow-row .token:nth-child(5) { animation-delay: 4.6s; }
@keyframes tokenBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

.flow-node {
  position: relative;
  padding: 14px 30px; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mark); font-weight: 600; font-size: 19px;
  box-shadow: 0 0 0 10px var(--glow);
}
/* Durchlauf-Glow als eigener vorgeblurrter Layer (nur Opacity = Compositor) */
.flow-node::after {
  content: ""; position: absolute; inset: -26px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(108, 92, 245, 0.22), rgba(108, 92, 245, 0) 70%);
  opacity: 0; pointer-events: none;
}
.flow.lines-in .flow-node::after { animation: nodePass 6.5s ease-in-out 1.2s infinite; }
@keyframes nodePass {
  0%, 18%   { opacity: 0; }
  25%       { opacity: 1; }
  40%, 100% { opacity: 0; }
}

/* Der Endpunkt vor der Headline glimmt nach — die Typografie selbst bleibt tot */
.flow-line-2::after {
  content: ""; position: absolute; left: 50%; bottom: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet);
  transform: translateX(-50%);
  opacity: 0;
}
.flow.lines-in .flow-line-2::after { animation: endGlow 6.5s ease-out 1.2s infinite; }
@keyframes endGlow {
  0%, 72%   { opacity: 0; }
  76%       { opacity: 0.9; }
  90%, 100% { opacity: 0; }
}

/* ============================================================
   ACT II · What is a Mind?
   ============================================================ */
.negations {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: clamp(28px, 4vh, 44px);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.3;
  color: var(--ink-3);
}
.mind-list {
  list-style: none;
  margin-top: clamp(24px, 3vh, 36px);
  display: flex; flex-direction: column; gap: 12px;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500; color: var(--ink);
}
.mind-list li::before {
  content: ""; display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--violet);
  margin-right: 14px; vertical-align: 3px;
}

/* ============================================================
   ACT III · The Boot
   ============================================================ */
.boot-card {
  max-width: 560px;
  margin: clamp(40px, 6vh, 64px) auto 0;
  padding: clamp(24px, 4vw, 40px);
  text-align: left;
  border-radius: var(--radius-card);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.boot-cmd {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 17px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
  min-height: 27px;
}
.boot-prompt { color: var(--violet); }
.boot-caret {
  width: 8px; height: 18px; background: var(--violet); opacity: 0.8;
  animation: caretBlink 1.1s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }
.boot-lines { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.boot-lines li {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-2); font-size: 15.5px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.boot-lines li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--violet); flex: none;
}
.boot-lines li.on { opacity: 1; transform: none; }
.boot-lines li.boot-ready { color: var(--ink); font-weight: 600; }
.boot-lines li.boot-ready.on::before { animation: readyPulse 6.5s ease-in-out infinite; }
@keyframes readyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 92, 245, 0); }
  8%       { box-shadow: 0 0 0 8px var(--glow); }
  22%      { box-shadow: 0 0 0 0 rgba(108, 92, 245, 0); }
}
.quad {
  display: flex; flex-wrap: wrap; gap: clamp(10px, 2vw, 22px);
  justify-content: center; align-items: baseline;
  margin-top: clamp(44px, 7vh, 72px);
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  font-weight: 600; letter-spacing: -0.03em;
}
.quad .arrow { color: var(--violet); font-weight: 400; }
.quad-sub { margin-top: 14px; color: var(--ink-2); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.micro-note { margin-top: clamp(28px, 4vh, 40px); font-size: 12.5px; color: var(--ink-3); }

/* ============================================================
   ACT III · Day One (Timeline)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 640px;
  margin: clamp(40px, 6vh, 64px) auto 0;
  padding-left: 34px;
  text-align: left;
}
.tl-rail, .tl-fill {
  position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1px;
}
.tl-rail { background: var(--line); }
.tl-fill { background: var(--violet); transform-origin: top; transform: scaleY(0); }
.tl-item { position: relative; padding: clamp(16px, 2.6vh, 26px) 0; }
.tl-item::before {
  content: ""; position: absolute; left: -30px;
  top: calc(clamp(16px, 2.6vh, 26px) + 6px);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--violet);
}
.tl-min {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--violet-text);
}
.tl-text { margin-top: 4px; font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 500; color: var(--ink); }
.agent-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.agent-row span {
  padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
}

/* ============================================================
   ACT III · Work, Disappearing
   ============================================================ */
.vanish-grid {
  display: grid; gap: clamp(36px, 5vw, 72px);
  max-width: 820px;
  margin: clamp(40px, 6vh, 64px) auto 0;
  text-align: left;
}
.van-h {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-3);
  margin-bottom: 16px;
}
.van-h-auto { color: var(--violet-text); }
.van-list, .auto-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.van-list li {
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  text-decoration: line-through; text-decoration-color: transparent;
  transition: opacity 700ms var(--ease-out), text-decoration-color 700ms var(--ease-out);
}
#vanish.go .van-list li { opacity: 0.28; text-decoration-color: rgba(11, 11, 12, 0.4); }
.auto-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); font-weight: 500;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  opacity: 0; transform: translateY(8px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.auto-list li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--violet); flex: none;
}
#vanish.go .auto-list li { opacity: 1; transform: none; }
#vanish.go .van-list li:nth-child(1), #vanish.go .auto-list li:nth-child(1) { transition-delay: 0ms; }
#vanish.go .van-list li:nth-child(2), #vanish.go .auto-list li:nth-child(2) { transition-delay: 250ms; }
#vanish.go .van-list li:nth-child(3), #vanish.go .auto-list li:nth-child(3) { transition-delay: 500ms; }
#vanish.go .van-list li:nth-child(4), #vanish.go .auto-list li:nth-child(4) { transition-delay: 750ms; }
#vanish.go .van-list li:nth-child(5), #vanish.go .auto-list li:nth-child(5) { transition-delay: 1000ms; }
#vanish.go .van-list li:nth-child(6), #vanish.go .auto-list li:nth-child(6) { transition-delay: 1250ms; }
#vanish.go .van-list li:nth-child(7), #vanish.go .auto-list li:nth-child(7) { transition-delay: 1500ms; }
#vanish.go .van-list li:nth-child(8), #vanish.go .auto-list li:nth-child(8) { transition-delay: 1750ms; }

/* ============================================================
   Emergence · Poem · Anchor
   ============================================================ */
.emerge-line {
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.3;
  color: var(--ink-2); text-wrap: balance;
}
.emerge-final {
  color: var(--ink);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-top: clamp(20px, 3vh, 32px);
}

.poem .container { min-height: 72svh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.poem-line {
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.2;
}
.poem-line + .poem-line { margin-top: clamp(10px, 1.6vh, 18px); }
.poem-line:not(:first-child):not(.poem-final) { color: var(--ink-2); }
.poem-final { margin-top: clamp(40px, 7vh, 72px); }
html.js .poem [data-reveal] { transition-delay: calc(var(--i, 0) * 550ms); }

#anchor .container { min-height: 70svh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.anchor-kicker {
  font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--ink-3);
  margin-bottom: clamp(32px, 6vh, 56px);
}
.anchor-line {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.08;
  max-width: 22ch; margin-inline: auto; text-wrap: balance;
}
.anchor-line-2 {
  margin-top: clamp(24px, 4vh, 40px);
  color: var(--ink-2);
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
}
html.js #anchor [data-reveal] { transition-delay: calc(var(--i, 0) * 1100ms); }
.flow-result {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 600; letter-spacing: -0.03em;
}

/* ============================================================
   6 + 7 · DUNKLER AKT
   ============================================================ */
.act-dark {
  background: var(--anthracite);
  color: var(--text-dark);
  border-radius: clamp(28px, 4vw, 48px);
  margin-inline: clamp(8px, 1.2vw, 20px);
}
.act-dark h2 { color: var(--text-dark); }
.act-dark .kicker { color: var(--muted-dark); }

.module-grid {
  display: grid; gap: 14px;
  margin-top: clamp(40px, 6vh, 64px);
}
.module {
  padding: clamp(24px, 3.5vw, 36px);
  background: var(--panel);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  transition: transform 400ms var(--ease-out), border-color 400ms var(--ease-out),
              box-shadow 400ms var(--ease-out);
}
.module:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 92, 245, 0.45);
  box-shadow: 0 0 44px -12px var(--glow);
}
.module h3 {
  font-family: var(--font-mark);
  font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em;
}
.module p { margin-top: 8px; color: var(--muted-dark); font-size: 15px; }

/* ============================================================
   9 · EARLY ACCESS
   ============================================================ */
.ea-card {
  max-width: 720px; margin-inline: auto;
  padding: clamp(40px, 6vw, 72px);
  border-radius: clamp(28px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(11, 11, 12, 0.07);
  box-shadow: var(--shadow-soft);
}
.ea-card h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); max-width: 26ch; margin-inline: auto; }
.ea-card .lede { margin-top: 16px; }

.ea-form {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: clamp(28px, 4vh, 40px);
}
.ea-form[hidden] { display: none; }
.ea-form input {
  flex: 1 1 260px; max-width: 360px;
  padding: 15px 24px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: var(--surface); color: var(--ink);
  transition: border-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.ea-form input::placeholder { color: var(--ink-3); }
.ea-form input:focus-visible {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 5px var(--glow);
}
.ea-success { margin-top: clamp(28px, 4vh, 40px); font-size: 1.15rem; font-weight: 500; }

/* ============================================================
   10 · FOOTER
   ============================================================ */
.site-foot {
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 7vh, 80px);
  background: var(--paper);
}
.foot-inner { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.foot-claim { color: var(--ink-2); }
.foot-meta { font-size: 13.5px; color: var(--ink-3); margin-top: 14px; }
.foot-meta a { text-decoration: underline; text-underline-offset: 3px; }
.foot-meta a:hover { color: var(--ink); }

/* ============================================================
   Breakpoints (mobile-first)
   ============================================================ */
@media (min-width: 720px) {
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .islands { min-height: 440px; }
  .vanish-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1080px) {
  .grid-2 { grid-template-columns: 1.05fr 1fr; }
  .module-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 719px) {
  .node-label { display: none; } /* mobil: Konzepte als Zeile unter den CTAs */
  .hero-tags {
    display: flex; flex-wrap: wrap; gap: 6px 10px; justify-content: center;
    margin-top: 28px; font-size: 12.5px; font-weight: 500; color: var(--ink-3);
  }
  .hero-tags span:not(:last-child)::after { content: "·"; margin-left: 10px; color: var(--line); }
  .island { padding: 7px 12px; font-size: 12.5px; }
  .islands { min-height: 320px; margin-top: 8px; }
}

/* ---------- Ohne JS: alle Endzustaende sichtbar ---------- */
html:not(.js) .node-label { display: none; }
html:not(.js) .hero-tags {
  display: flex; flex-wrap: wrap; gap: 6px 10px; justify-content: center;
  margin-top: 28px; font-size: 12.5px; font-weight: 500; color: var(--ink-3);
}
html:not(.js) .island-hub { opacity: 1; }
html:not(.js) .boot-lines li { opacity: 1; transform: none; }
html:not(.js) .tl-fill { transform: scaleY(1); }
html:not(.js) .auto-list li { opacity: 1; transform: none; }
html:not(.js) .flow-line { transform: scaleY(1); }

/* ============================================================
   Reduced Motion — statische Endzustaende
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .node-label { opacity: 1; }
  .islands .island { opacity: 1; }
  .boot-lines li { opacity: 1; transform: none; }
  .tl-fill { transform: scaleY(1); }
  .auto-list li { opacity: 1; transform: none; }
  .islands .island-hub { opacity: 1; }
  .flow-line { transform: scaleY(1); }
  #mindField { display: none; }
}
