/* titus.vision — Stylesheet
   Farben aus Local Tools/titus-vision/client-react/src/styles/tokens.css und den Installer-Grafiken:
   dunkel #0E0E13, Akzent #6B41F0, Zeichen-Punkt #8B7CF6. Hell und dunkel ueber prefers-color-scheme.
   Schrift: Bricolage Grotesque (Display) und JetBrains Mono (Beschriftungen), beide selbst gehostet;
   Fliesstext in der Systemschrift (Segoe UI Variable unter Windows, wie in der App). */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/jetbrains-mono-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --bg: #F6F6F8;
  --bg-raised: #FFFFFF;
  --fg: #0E0E13;
  --fg-soft: #2A2A35;
  --muted: #55556A;
  --line: rgba(14, 14, 19, 0.10);
  --accent: #6B41F0;
  --accent-hover: #5A30E0;
  --accent-text: #5530D8;
  --dot: #6B41F0;
  --glow: rgba(107, 65, 240, 0.16);
  --shot-ring: rgba(14, 14, 19, 0.08);
  --shot-shadow: 0 1px 2px rgba(14, 14, 19, 0.06), 0 24px 60px -12px rgba(14, 14, 19, 0.22);

  --band-bg: #0E0E13;
  --band-fg: #F2F2F6;
  --band-muted: #A6A6B8;
  --band-line: rgba(255, 255, 255, 0.10);

  --font-display: "Bricolage Grotesque", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --font-body: "Segoe UI Variable Text", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Consolas, Menlo, monospace;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0E0E13;
    --bg-raised: #16161D;
    --fg: #F2F2F6;
    --fg-soft: #D9D9E3;
    --muted: #A6A6B8;
    --line: rgba(255, 255, 255, 0.09);
    --accent-text: #A898FA;
    --dot: #8B7CF6;
    --glow: rgba(107, 65, 240, 0.28);
    --shot-ring: rgba(255, 255, 255, 0.08);
    --shot-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.7);
    --band-bg: #16161D;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; text-wrap: balance; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(107, 65, 240, 0.25); }

.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 10; background: var(--fg); color: var(--bg); padding: 8px 14px; border-radius: 8px; text-decoration: none; }
.skip:focus { left: 8px; }

/* ---------- Beschriftungen ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 20px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); flex: none; }
.dot { color: var(--dot); }
.muted { color: var(--muted); }

/* ---------- Kopf ---------- */
.kopf { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s; }
.kopf.ist-gescrollt { border-bottom-color: var(--line); }
.kopf__innen { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }
.marke { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.marke svg { width: 30px; height: 30px; flex: none; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; font-size: 15px; color: var(--fg-soft); }
.nav a:not(.btn):hover { color: var(--fg); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.nav a[aria-current="page"] { color: var(--fg); font-weight: 600; }
@media (max-width: 760px) { .nav .nav__weit { display: none; } .nav { gap: 16px; } }

/* ---------- Knoepfe ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  background: var(--accent); color: #fff !important; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: 0;
  transition: background-color .2s, transform .2s;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: translateY(1px); }
.btn--klein { min-height: 40px; padding: 0 18px; font-size: 15px; }
.pfeil {
  display: inline-flex; align-items: center; gap: 8px; min-height: 48px;
  font-weight: 600; text-decoration: none; color: var(--fg);
}
.pfeil::after { content: "→"; transition: transform .2s; color: var(--accent-text); }
.pfeil:hover::after { transform: translateX(4px); }
.pfeil:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }

/* ---------- Screenshots ---------- */
.shot { margin: 0; }
.shot img, .shot picture { border-radius: var(--radius); }
.shot img { box-shadow: 0 0 0 1px var(--shot-ring), var(--shot-shadow); background: var(--bg-raised); }
.shot figcaption { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* ---------- Hero ----------
   Links der Claim, rechts eine nachgebaute Titus-Szene (HTML/CSS, Musterdaten): eine Frage an
   den Assistenten, die Quellen-Chips (Kunden, Aufgaben, Kalender, Dokumente) und die Antwort als
   Karte. Farben der Szene folgen der App (Schiene #6B41F0, dunkel #13131A/#1A1A22). */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero__raster { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(44px, 7vw, 64px); align-items: center; }
.hero__text { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.7rem, 6.9vw, 5.8rem); line-height: 0.98; letter-spacing: -0.035em; }
.hero .lead { margin: 28px 0 0; max-width: 34rem; font-size: clamp(1.1rem, 1.6vw, 1.25rem); line-height: 1.55; color: var(--fg-soft); text-wrap: pretty; }
.aktionen { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; margin-top: 32px; }
.ab-breit { display: none; }
@media (min-width: 1100px) {
  .hero__raster { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; }
  .hero h1 { font-size: clamp(3.6rem, 5vw, 4.9rem); }
  .ab-breit { display: inline; }
}

/* Die Szene */
.szene {
  --f-bg: #F9F9FB; --f-karte: #FFFFFF; --f-ring: rgba(14, 14, 19, 0.08); --f-fg: #0E0E13; --f-muted: #62627A;
  --f-chip: #F0F0F4; --f-frage: #EEEAFE; --f-akzent: #5530D8;
  position: relative; margin: 0; font-size: 14px; line-height: 1.45; color: var(--f-fg);
}
@media (prefers-color-scheme: dark) {
  .szene { --f-bg: #13131A; --f-karte: #1A1A22; --f-ring: rgba(255, 255, 255, 0.08); --f-fg: #F2F2F6; --f-muted: #9C9CB0;
    --f-chip: #22222C; --f-frage: #2A2146; --f-akzent: #B9AEFB; }
}
.szene::before {
  content: ""; position: absolute; inset: 10% -8% -14% -8%; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, var(--glow), transparent 100%);
}
.szene svg { fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.fenster {
  position: relative; z-index: 1; display: grid; grid-template-columns: 52px minmax(0, 1fr);
  background: var(--f-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 0 0 1px var(--shot-ring), var(--shot-shadow);
}
.fenster__schiene { background: var(--accent); display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 12px 0; color: rgba(255, 255, 255, 0.82); }
.fenster__mini { display: none; }
.fenster__logo { width: 28px; height: 28px; margin-bottom: 8px; stroke: none !important; }
.fenster__app { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 999px; }
.fenster__app svg { width: 18px; height: 18px; }
.fenster__app.ist-aktiv { background: rgba(255, 255, 255, 0.18); color: #fff; }
.fenster__haupt { display: flex; flex-direction: column; min-width: 0; }
.fenster__kopf { display: flex; align-items: flex-start; gap: 12px; padding-left: 20px; border-bottom: 1px solid var(--f-ring); min-height: 56px; }
.fenster__titel { display: flex; flex-direction: column; justify-content: center; min-height: 56px; margin-right: auto; min-width: 0; }
.fenster__titel strong { font-weight: 600; font-size: 13px; }
.fenster__titel span { font-size: 11px; color: var(--f-muted); }
.fenster__kunde { display: inline-flex; align-items: center; gap: 7px; align-self: center; height: 32px; padding: 0 12px; border-radius: 999px; background: var(--f-karte); box-shadow: 0 0 0 1px var(--f-ring); font-size: 12px; font-weight: 600; white-space: nowrap; }
.fenster__kunde svg { width: 14px; height: 14px; color: var(--f-muted); }
.fenster__knoepfe { display: flex; flex: none; }
.fenster__knoepfe span { display: grid; place-items: center; width: 46px; height: 32px; color: var(--f-muted); }
.fenster__knoepfe svg { width: 10px; height: 10px; stroke-width: 1; stroke-linecap: butt; }

.chat { flex: 1; display: flex; flex-direction: column; gap: 16px; padding: 24px clamp(16px, 3vw, 32px) 18px; }
.chat__frage { text-wrap: balance; align-self: flex-end; max-width: 85%; margin: 0; padding: 10px 16px; border-radius: 18px 18px 6px 18px; background: var(--f-frage); font-weight: 500; }
.chat__antwort { display: flex; flex-direction: column; gap: 10px; max-width: 34rem; }
.quellen { display: flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--f-muted); }
.quellen__titel { display: inline-flex; align-items: center; gap: 6px; }
.quellen__titel svg { width: 14px; height: 14px; }
.quellen__zahl, .quellen__live { font-family: var(--font-body); font-size: 10px; letter-spacing: 0; text-transform: none; padding: 1px 6px; border-radius: 999px; }
.quellen__zahl { background: var(--f-chip); }
.quellen__live { color: var(--f-akzent); background: color-mix(in srgb, var(--accent) 12%, transparent); opacity: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { padding: 3px 10px; border-radius: 999px; background: var(--f-chip); box-shadow: 0 0 0 1px var(--f-ring); font-size: 11.5px; font-weight: 500; color: var(--f-muted); }
.chat__text { margin: 6px 0 0; text-wrap: pretty; }
.karte { list-style: none; margin: 2px 0 0; padding: 4px 0; background: var(--f-karte); border-radius: 12px; box-shadow: 0 0 0 1px var(--f-ring); }
.posten { display: flex; align-items: center; gap: 12px; padding: 10px 14px; }
.posten + .posten { border-top: 1px solid var(--f-ring); }
.posten__icon { display: grid; place-items: center; flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--f-chip); color: var(--f-akzent); }
.posten__icon svg { width: 16px; height: 16px; }
.posten__text { display: flex; flex-direction: column; min-width: 0; margin-right: auto; }
.posten__text strong { font-weight: 600; font-size: 13.5px; }
.posten__text small { font-size: 12px; color: var(--f-muted); }
.marke-prio { flex: none; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 999px; color: var(--f-akzent); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.chat__aktionen { display: flex; gap: 8px; }
.chat__aktionen span { display: inline-flex; align-items: center; height: 30px; padding: 0 12px; border-radius: 999px; font-size: 12px; font-weight: 600; box-shadow: 0 0 0 1px var(--f-ring); background: var(--f-karte); }
.chat__aktionen span:first-child { color: var(--f-akzent); }
.eingabe { display: flex; align-items: center; gap: 12px; margin: 0 clamp(12px, 2.4vw, 24px) clamp(12px, 2.4vw, 20px); padding: 0 14px; height: 48px; border-radius: 14px; background: var(--f-karte); box-shadow: 0 0 0 1px var(--f-ring); color: var(--f-muted); font-size: 13px; }
.eingabe__plus { font-size: 18px; line-height: 1; }
.eingabe__feld { margin-right: auto; }
.eingabe__modus { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 12px; color: var(--f-fg); }
.eingabe__modus svg { width: 15px; height: 15px; color: var(--f-muted); }
.szene__hinweis { position: relative; z-index: 1; margin-top: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-align: right; }

@media (max-width: 560px) {
  .szene { font-size: 13.5px; }
  .fenster { grid-template-columns: minmax(0, 1fr); }
  .fenster__schiene { display: none; }
  .fenster__mini { display: block; flex: none; align-self: center; width: 24px; height: 24px; stroke: none !important; }
  .fenster__kopf { padding-left: 14px; gap: 8px; }
  .fenster__kunde { display: none; }
  .fenster__knoepfe span { width: 38px; }
  .chat { padding: 18px 14px 14px; gap: 14px; }
  .posten { padding: 10px 12px; gap: 10px; }
  .chat__frage { max-width: 92%; }
}

/* Belegbare Fakten direkt unter dem Hero */
.hero__fakten { list-style: none; margin: clamp(56px, 7vw, 88px) 0 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr); border-top: 1px solid var(--line); }
.hero__fakten li { display: flex; flex-direction: column; gap: 4px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.hf__titel { font-weight: 650; font-size: 15.5px; }
.hf__text { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
@media (min-width: 640px) { .hero__fakten { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; } }
@media (min-width: 1100px) {
  .hero__fakten { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero__fakten li { padding: 24px 24px 28px 0; border-bottom: 0; }
  .hero__fakten li + li { padding-left: 24px; border-left: 1px solid var(--line); }
}

/* Eingang: eine orchestrierte Sequenz, sonst ruhig */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow, .hero h1, .hero .lead, .hero .aktionen, .szene .fenster { animation: hoch .9s cubic-bezier(.2,.7,.2,1) both; }
  .hero h1 { animation-delay: .06s; }
  .hero .lead { animation-delay: .16s; }
  .hero .aktionen { animation-delay: .24s; }
  .szene .fenster { animation-duration: 1.1s; animation-delay: .3s; }
  @keyframes hoch { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  .js .zeige { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  .js .zeige.ist-da { opacity: 1; transform: none; }

  /* Szene: startet erst, wenn site.js .laeuft setzt (Fenster sichtbar). Nur opacity/transform,
     der Platz ist von Anfang an reserviert -> kein Layout-Shift. */
  .js .szene .s1, .js .szene .s2, .js .szene .chip, .js .szene .quellen__zahl, .js .szene .s3, .js .szene .karte, .js .szene .posten, .js .szene .s4 { opacity: 0; }
  .js .szene.laeuft .s1, .js .szene.laeuft .s2, .js .szene.laeuft .chip, .js .szene.laeuft .s3, .js .szene.laeuft .karte, .js .szene.laeuft .posten, .js .szene.laeuft .s4 { animation: auf .55s cubic-bezier(.2,.7,.2,1) both; }
  .js .szene.laeuft .quellen__zahl { animation: auf .3s ease both 1.7s; }
  .js .szene.laeuft .s1 { animation-delay: .5s; }
  .js .szene.laeuft .s2 { animation-delay: 1s; }
  .js .szene.laeuft .c1 { animation-delay: 1.1s; }
  .js .szene.laeuft .c2 { animation-delay: 1.3s; }
  .js .szene.laeuft .c3 { animation-delay: 1.5s; }
  .js .szene.laeuft .c4 { animation-delay: 1.7s; }
  .js .szene.laeuft .s3 { animation-delay: 2.1s; }
  .js .szene.laeuft .karte { animation-delay: 2.35s; }
  .js .szene.laeuft .p1 { animation-delay: 2.45s; }
  .js .szene.laeuft .p2 { animation-delay: 2.6s; }
  .js .szene.laeuft .p3 { animation-delay: 2.75s; }
  .js .szene.laeuft .s4 { animation-delay: 3s; }
  .js .szene.laeuft .quellen__live { animation: live 1.9s ease both 1s; }
  @keyframes auf { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  @keyframes live { 0% { opacity: 0; } 12%, 78% { opacity: 1; } 100% { opacity: 0; } }
}

/* ---------- Abschnitte ---------- */
.abschnitt { padding-block: clamp(64px, 8vw, 112px); overflow-x: clip; }
.abschnitt--eng { padding-block: clamp(48px, 6vw, 80px); }
.h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); max-width: 18ch; }
.h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); letter-spacing: -0.015em; line-height: 1.12; }

/* Was Titus ist */
.intro { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.aussage { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.45rem, 2.6vw, 2.1rem); line-height: 1.24; letter-spacing: -0.015em; max-width: 34ch; margin: 0; text-wrap: pretty; }
.aussage .muted { color: var(--muted); }
.fakten { display: grid; grid-template-columns: 1fr; gap: 0; margin: clamp(48px, 6vw, 72px) 0 0; padding: 0; list-style: none; }
.fakten li { padding: 20px 0; border-top: 1px solid var(--line); }
.fakten dt, .fakten .fakt__titel { font-weight: 650; font-size: 16px; }
.fakten .fakt__text { color: var(--muted); font-size: 15px; margin: 4px 0 0; }
@media (min-width: 900px) {
  .intro { grid-template-columns: 3fr 9fr; gap: 48px; }
  .intro .eyebrow { margin-top: 12px; }
  .fakten { grid-template-columns: repeat(3, 1fr); column-gap: 40px; }
}

/* Funktion mit grossem Bild (CRM) */
.funktion { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.funktion__text p { color: var(--fg-soft); max-width: 34rem; }
.funktion__text .h2 { margin-bottom: 24px; }
.liste { list-style: none; margin: 28px 0 0; padding: 0; }
.liste li { position: relative; padding: 12px 0 12px 26px; border-top: 1px solid var(--line); font-size: 16px; }
.liste li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 8px; height: 8px; border-radius: 50%; background: var(--dot); }
.liste li:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 1000px) {
  .funktion { grid-template-columns: 5fr 7fr; gap: 64px; }
  .funktion .shot { margin-right: calc(-1 * min(12vw, 160px)); }
}

/* KI & Modell-Slots */
.ki__kopf { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: end; }
.ki__kopf > p { color: var(--fg-soft); max-width: 36rem; margin: 0; }
@media (min-width: 1000px) { .ki__kopf { grid-template-columns: 1fr 1fr; gap: 64px; } }
.slots { display: grid; grid-template-columns: 1fr; margin: clamp(48px, 6vw, 72px) 0 0; border-top: 1px solid var(--line); }
.slot { padding: 28px 0 32px; border-bottom: 1px solid var(--line); }
.slot__name { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.03em; line-height: 1; }
.slot__rolle { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-text); }
.slot p { margin: 10px 0 0; color: var(--muted); font-size: 15px; max-width: 26rem; }
@media (max-width: 799px) {
  .slot { display: grid; grid-template-columns: 112px 1fr; column-gap: 16px; align-items: baseline; padding: 22px 0 24px; }
  .slot__name { font-size: 2.4rem; grid-row: span 2; }
  .slot__rolle { margin-top: 0; }
}
@media (min-width: 800px) {
  .slots { grid-template-columns: repeat(3, 1fr); }
  .slot { padding: 36px 32px 40px 0; border-bottom: 0; }
  .slot + .slot { padding-left: 32px; border-left: 1px solid var(--line); }
}
.ki__fuss { display: grid; grid-template-columns: 1fr; gap: 20px 64px; margin-top: 40px; color: var(--fg-soft); font-size: 16px; }
.ki__fuss p { margin: 0; max-width: 34rem; }
@media (min-width: 1000px) { .ki__fuss { grid-template-columns: 1fr 1fr; } }

/* Bereiche als Zeilen */
.zeilen { margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.zeile { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.zeile__nr { font-family: var(--font-mono); font-size: 13px; color: var(--muted); padding-top: 6px; }
.zeile__titel { font-size: clamp(1.45rem, 2.2vw, 1.85rem); }
.zeile__text p { margin: 0; color: var(--fg-soft); max-width: 38rem; }
.zeile__punkte { margin: 12px 0 0; padding: 0; list-style: none; font-size: 15px; color: var(--muted); }
.zeile__punkte li + li { margin-top: 4px; }
@media (min-width: 900px) {
  .zeile { grid-template-columns: 64px 4fr 7fr; gap: 32px; padding: 40px 0; }
  .zeile__punkte { margin-top: 16px; }
}

.bild-breit { margin-top: clamp(56px, 7vw, 88px); }

/* ---------- Datenhoheit (immer dunkel) ---------- */
.band { background: var(--band-bg); color: var(--band-fg); position: relative; overflow: hidden; }
.band::before {
  content: ""; position: absolute; left: -10%; bottom: -60%; width: 80%; height: 120%;
  background: radial-gradient(closest-side, rgba(107,65,240,.26), rgba(107,65,240,0) 100%); pointer-events: none;
}
.band .wrap { position: relative; }
.band .eyebrow { color: var(--band-muted); }
.band .dot { color: #8B7CF6; }
.band__kopf { display: grid; grid-template-columns: 1fr; gap: 24px; }
.band__kopf > p { color: var(--band-muted); max-width: 36rem; margin: 0; font-size: 18px; }
@media (min-width: 1000px) { .band__kopf { grid-template-columns: 7fr 5fr; gap: 64px; align-items: end; } }
.hoheit { display: grid; grid-template-columns: 1fr; margin: clamp(48px, 6vw, 80px) 0 0; padding: 0; list-style: none; }
.hoheit li { padding: 26px 0; border-top: 1px solid var(--band-line); }
.hoheit__titel { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #B9AEFB; }
.hoheit__text { margin: 10px 0 0; color: #DADAE4; font-size: 16px; max-width: 32rem; }
@media (min-width: 800px) { .hoheit { grid-template-columns: 1fr 1fr; column-gap: 48px; } }
@media (min-width: 1100px) { .hoheit { grid-template-columns: repeat(3, 1fr); } }
.band__hinweis { margin-top: 40px; color: var(--band-muted); font-size: 15px; max-width: 46rem; }

/* ---------- Einrichtung in acht Schritten ---------- */
.acht { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1000px) { .acht { grid-template-columns: 5fr 7fr; gap: 64px; } }
.acht .h2 { margin-bottom: 24px; }
.acht p:not(.eyebrow) { color: var(--fg-soft); max-width: 30rem; }
.schrittliste { counter-reset: s; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.schrittliste li { counter-increment: s; display: flex; gap: 18px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); }
.schrittliste li span { margin-left: auto; font-size: 14px; }
.schrittliste li::before { content: counter(s, decimal-leading-zero); font-family: var(--font-mono); font-size: 13px; color: var(--muted); min-width: 24px; }
.schrittliste strong { font-weight: 650; }
.schrittliste span { color: var(--muted); }
@media (min-width: 640px) { .schrittliste { grid-template-columns: 1fr 1fr; column-gap: 32px; } }

/* ---------- Abschluss-CTA ---------- */
.cta { text-align: left; }
.cta h2 { font-size: clamp(2.8rem, 7vw, 6rem); letter-spacing: -0.035em; line-height: 0.98; }
.cta p:not(.eyebrow) { margin-top: 24px; max-width: 34rem; color: var(--fg-soft); font-size: 18px; }

/* ---------- Fuss ---------- */
.fuss { border-top: 1px solid var(--line); padding: 40px 0 48px; font-size: 14px; color: var(--muted); }
.fuss__innen { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: space-between; align-items: center; }
.fuss nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.fuss a { text-decoration: none; }
.fuss a:hover { color: var(--fg); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Unterseiten ---------- */
.seitenkopf { padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(40px, 5vw, 64px); }
.seitenkopf h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); letter-spacing: -0.03em; max-width: 16ch; }
.seitenkopf .lead { margin-top: 24px; max-width: 40rem; font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--fg-soft); }

.text { max-width: 44rem; }
.text h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); letter-spacing: -0.015em; margin: 56px 0 16px; }
.text h3 { font-family: var(--font-body); font-weight: 650; font-size: 17px; letter-spacing: 0; margin: 28px 0 8px; }
.text p, .text li { color: var(--fg-soft); }
.text ul { padding-left: 1.2em; }
.text li + li { margin-top: 6px; }
.text a { color: var(--accent-text); text-underline-offset: 3px; }
.text address { font-style: normal; }
.text > :first-child { margin-top: 0; }

/* Erste Schritte: Inhaltsverzeichnis + Inhalt */
.doku { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; padding-bottom: clamp(80px, 10vw, 128px); }
.inhalt { font-size: 15px; }
.inhalt ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.inhalt li { border-bottom: 1px solid var(--line); }
.inhalt a { display: flex; gap: 12px; padding: 10px 0; text-decoration: none; color: var(--fg-soft); }
.inhalt a span { font-family: var(--font-mono); font-size: 12px; color: var(--muted); padding-top: 3px; min-width: 20px; }
.inhalt a:hover { color: var(--fg); }
@media (min-width: 1000px) {
  .doku { grid-template-columns: 220px minmax(0, 1fr); gap: 72px; }
  .inhalt { position: sticky; top: 100px; align-self: start; }
}
.kapitel { padding-top: 8px; scroll-margin-top: 90px; }
.kapitel + .kapitel { margin-top: clamp(64px, 8vw, 96px); }
.kapitel__nr { font-family: var(--font-mono); font-size: 13px; color: var(--accent-text); letter-spacing: 0.1em; }
.kapitel h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 10px 0 20px; }
.kapitel > p, .kapitel > ul, .kapitel > ol { max-width: 42rem; color: var(--fg-soft); }
.kapitel ul, .kapitel ol { padding-left: 1.2em; }
.kapitel li + li { margin-top: 6px; }
.kapitel a { color: var(--accent-text); text-underline-offset: 3px; }
.ui { font-weight: 650; color: var(--fg); }
code { font-variant-ligatures: none; font-family: var(--font-mono); font-size: 0.86em; background: var(--line); padding: 2px 6px; border-radius: 6px; overflow-wrap: anywhere; }

.hinweis { margin: 28px 0; padding: 22px 24px; background: var(--bg-raised); border-radius: 12px; max-width: 42rem; }
@media (prefers-color-scheme: light) { .hinweis { box-shadow: 0 0 0 1px var(--line); } }
.hinweis__titel { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 8px; }
.hinweis p { margin: 0; color: var(--fg-soft); }
.hinweis p + p, .hinweis ol { margin-top: 10px; }
.hinweis ol { margin-bottom: 0; color: var(--fg-soft); }

.schritt { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px 48px; padding: 32px 0; border-top: 1px solid var(--line); }
.schritt:last-of-type { border-bottom: 1px solid var(--line); }
.schritt h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.01em; margin: 0 0 10px; }
.schritt h3 small { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.schritt p { color: var(--fg-soft); margin: 0 0 .8em; }
.schritt .shot { max-width: 460px; }
.schritt .shot img { border-radius: 10px; }
@media (min-width: 1100px) { .schritt { grid-template-columns: minmax(0, 1fr) 400px; align-items: start; } }

/* 404 */
.leer { min-height: 60vh; display: flex; align-items: center; }
.leer h1 { font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -0.035em; }
.fuss__text { margin: 0; }
.kapitel .zwischen { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.01em; margin: 40px 0 10px; }
.ohne-oben { padding-top: 0 !important; }
.leer .lead { margin-top: 24px; font-size: 1.15rem; }
