@import url('fonts.css');

/* ==========================================================================
   HERMYON — Grundgerüst
   Leitidee: Die Seite sieht aus wie ein Nachweis, nicht wie eine Werbung.
   Registerlogik, Haarlinien, viel ruhiges Schwarz, Gold nur wo es etwas bedeutet.

   Konstruktionsregeln (aus dem Bauplan, nicht verhandelbar):
   - Kein Canvas-Frame-Scrub. Bewegtbild = <video> oder Standbild.
   - Keine Animation, die einen Textblock bewegt.
   - Text nie über der hellen Zone eines Bildes -> Hero ist zweispaltig,
     Schrift und Kugel teilen sich die Fläche, sie überlagern sich nie.
   - Kopf und Fuß existieren einmal: src/_top.html und src/_foot.html,
     zusammengesetzt von build.mjs. Nie in die fertigen Seiten schreiben.
   ========================================================================== */

:root {
  /* Farben — Markenhue 85 (Gold). Jeder Neutralton ist dorthin getönt,
     kein reines Schwarz, kein reines Weiß. */
  --bg:        oklch(0.145 0.004 85);
  --bg-lift:   oklch(0.181 0.006 85);
  --bg-panel:  oklch(0.212 0.008 85);

  --gold:      oklch(0.731 0.115 85);
  --gold-lift: oklch(0.800 0.120 87);
  --gold-dim:  oklch(0.731 0.115 85 / 0.55);
  --gold-hair: oklch(0.731 0.115 85 / 0.26);

  --ink:       oklch(0.920 0.017 88);
  --ink-2:     oklch(0.760 0.015 88);
  --ink-3:     oklch(0.590 0.013 88);
  --line:      oklch(0.920 0.017 88 / 0.13);
  --line-soft: oklch(0.920 0.017 88 / 0.07);

  /* Typografie */
  --serif: 'Vollkorn', Georgia, 'Times New Roman', serif;
  --sans:  'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Fließende Skala, Verhältnis ~1.3 */
  --t-xs:  clamp(0.72rem, 0.70rem + 0.10vw, 0.78rem);
  --t-sm:  clamp(0.86rem, 0.83rem + 0.15vw, 0.95rem);
  --t-md:  clamp(1.02rem, 0.97rem + 0.24vw, 1.18rem);
  --t-lg:  clamp(1.32rem, 1.20rem + 0.60vw, 1.75rem);
  --t-xl:  clamp(1.85rem, 1.55rem + 1.50vw, 2.90rem);
  --t-2xl: clamp(2.40rem, 1.80rem + 3.00vw, 4.40rem);
  --t-3xl: clamp(3.00rem, 2.00rem + 5.00vw, 6.60rem);

  /* Raum */
  --pad-x: clamp(1.4rem, 6vw, 7.5rem);
  --gap:   clamp(2.5rem, 5vw, 5rem);
  /* Abstaende haengen an der Breite, nicht an der Fensterhoehe: sonst sieht
     dieselbe Seite auf einem grossen Monitor voellig anders aus als auf einem
     Laptop. Nur der Hero darf sich an der Hoehe orientieren. */
  --sec-y: clamp(4.5rem, 7.5vw, 9rem);
  --raum:  clamp(2.2rem, 4vw, 3.6rem);
  --max:   1440px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-md);
  font-weight: 300;
  /* Helle Schrift auf dunklem Grund wirkt dünner — mehr Durchschuss. */
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold); color: oklch(0.145 0.004 85); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Bausteine ---------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

section { padding-block: var(--sec-y); }

/* Registernummer — das wiederkehrende Motiv der ganzen Seite. */
.reg {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h2 { font-size: var(--t-2xl); }
h3 { font-size: var(--t-lg); line-height: 1.24; }

/* min(...) statt blossem ch: eine Zeilenlaenge in ch kann auf schmalen
   Geraeten breiter werden als der Bildschirm und schiebt die Seite auf. */
p { max-width: min(68ch, 100%); }

.lead {
  font-size: var(--t-lg);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-2);
}

.hair {
  height: 1px;
  background: var(--line);
  border: 0;
}

/* Knöpfe: Fläche für den einen Weg, Umriss für alles andere. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95em 1.9em;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.btn:hover {
  background: var(--gold);
  color: oklch(0.145 0.004 85);
}

.btn--solid {
  background: var(--gold);
  color: oklch(0.145 0.004 85);
}

.btn--solid:hover {
  background: var(--gold-lift);
  border-color: var(--gold-lift);
}

.btn--quiet {
  border-color: var(--line);
  color: var(--ink-2);
  padding-inline: 0;
  border-width: 0 0 1px 0;
}

.btn--quiet:hover {
  background: none;
  color: var(--gold);
  border-color: var(--gold);
}

/* ==========================================================================
   Kopfleiste
   ========================================================================== */

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.145 0.004 85 / 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.top__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  min-height: 4.6rem;
}

.mark {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.46em;
  color: var(--ink);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  font-size: var(--t-sm);
  color: var(--ink-2);
}

.nav a { transition: color 0.3s var(--ease); }
.nav a:hover, .nav a[aria-current='page'] { color: var(--gold); }

.nav__cta {
  border: 1px solid var(--gold-hair);
  padding: 0.55em 1.2em;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: var(--t-xs);
  text-transform: uppercase;
  font-weight: 500;
}

.nav__cta:hover { background: var(--gold); color: var(--bg); }

/* Schalter fuer die schmale Kopfleiste. Auf breiten Schirmen gibt es ihn nicht. */
.nav__toggle {
  display: none;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: none;
  border: 0;
  padding: 0.55em 0;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.nav__toggle:hover,
.top--offen .nav__toggle { color: var(--gold); }

/* ==========================================================================
   Hero — zweispaltig. Schrift links, Kugel rechts. Sie überlagern sich nie.
   ========================================================================== */

.hero {
  position: relative;
  /* Knapp gehalten: die Vertrauenszeile am Fuss des Hero muss ohne Scrollen
     sichtbar sein, sonst verpufft der wichtigste Beleg der Seite. */
  padding-block: clamp(2.2rem, 5vh, 4rem) clamp(2.6rem, 6vh, 5rem);
  overflow: hidden;
}

.hero__in {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: min(66vh, 600px);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3vh, 2.4rem);
}

.hero__eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold-hair), transparent);
  max-width: 9rem;
}

.hero h1 {
  font-size: var(--t-3xl);
  font-weight: 600;
  margin-bottom: clamp(1.2rem, 2.6vh, 2rem);
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero__text {
  font-size: var(--t-lg);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: min(30ch, 100%);
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.hero__do {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2rem;
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}

/* Die drei überprüfbaren Merkmale — keine Behauptungen, nachsehbare Dinge. */
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 1.3rem 0 0;
  margin: 0;
  border-top: 1px solid var(--line-soft);
  font-size: var(--t-xs);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 400;
}

.proof li { list-style: none; display: flex; align-items: center; gap: 0.6rem; }

.proof li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

/* Die Kugel. Eigene Spalte, weicher Rand, kein Text darüber.
   Mit Legende: ein Bild ohne Erklärung ist Dekoration, mit Erklärung
   ist es eine Aussage. */
.hero__orb {
  position: relative;
  justify-self: center;
  width: min(100%, 620px);
  margin: 0;
}

.hero__orb video,
.hero__orb img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  /* Ausblenden zum Rand hin, damit die Kugel im Schwarz sitzt statt
     als Kachel zu kleben. */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 54%, transparent 76%);
  mask-image: radial-gradient(circle at 50% 50%, #000 54%, transparent 76%);
}

.hero__orb figcaption {
  position: relative;
  margin-top: clamp(-1.5rem, -2vw, -1rem);
  text-align: center;
  font-size: var(--t-xs);
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--ink-3);
}

.hero__orb::after {
  content: '';
  position: absolute;
  inset: -14% -18% auto;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%,
              oklch(0.731 0.115 85 / 0.10) 0%, transparent 62%);
  pointer-events: none;
}

/* ==========================================================================
   Abschnittskopf — überall gleich: Registerzeile, Überschrift, Beisatz
   ========================================================================== */

.kopf {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.kopf .reg { display: block; margin-bottom: 1.1rem; }
.kopf p { color: var(--ink-2); }

@media (max-width: 860px) {
  .kopf { grid-template-columns: 1fr; align-items: start; }
}

/* ==========================================================================
   Haltung — eine Aussage, links, gross. Kein Bild, kein Schmuck.
   ========================================================================== */

.haltung { background: var(--bg-lift); }

.haltung__satz {
  font-family: var(--serif);
  font-size: var(--t-2xl);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
  text-wrap: balance;
}

.haltung__satz span { color: var(--gold); font-style: italic; font-weight: 500; }

.haltung__in {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 860px) { .haltung__in { grid-template-columns: 1fr; } }

/* ==========================================================================
   Schritte — nummeriert wie ein Ablauf, getrennt durch Haarlinien
   ========================================================================== */

.schritte { display: grid; gap: 0; }

.schritt {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding-block: clamp(1.8rem, 4vw, 2.8rem);
  border-top: 1px solid var(--line-soft);
}

.schritt:last-child { border-bottom: 1px solid var(--line-soft); }

.schritt__nr {
  font-family: var(--serif);
  font-size: var(--t-lg);
  color: var(--gold);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.schritt h3 { font-size: var(--t-lg); }
.schritt p { color: var(--ink-2); font-size: var(--t-md); }

@media (max-width: 860px) {
  .schritt {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0.4rem 1.2rem;
    align-items: start;
  }
  .schritt p { grid-column: 2; }
}

/* ==========================================================================
   Datenblatt — die Fakten wie in einem Beiblatt, nicht wie Werbekacheln
   ========================================================================== */

.daten { background: var(--bg-lift); }

/* Feste Spaltenzahl statt auto-fit: bei sechs Eintraegen liesse auto-fit
   je nach Breite eine einzelne Zelle allein in der letzten Reihe stehen. */
.daten__liste {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

@media (max-width: 1000px) { .daten__liste { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .daten__liste { grid-template-columns: 1fr; } }

.daten__zeile { background: var(--bg-lift); padding: clamp(1.4rem, 3vw, 2.1rem); }

.daten__wert {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.daten__wert--gold { color: var(--gold); }

.daten__was {
  font-size: var(--t-sm);
  color: var(--ink-3);
  line-height: 1.5;
}

/* Der ehrliche Satz zum Sprachmodell. Steht bewusst gross und allein. */
.klartext {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid var(--gold-hair);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
}

.klartext .reg { padding-top: 0.35em; }
.klartext p { font-size: var(--t-md); color: var(--ink-2); max-width: 74ch; }
.klartext strong { color: var(--ink); font-weight: 500; }

@media (max-width: 700px) { .klartext { grid-template-columns: 1fr; } }

/* ==========================================================================
   Cautela — der eine Weg. Bekommt Fläche, die anderen bekommen Zeilen.
   ========================================================================== */

.cautela__in {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.cautela h2 { font-size: var(--t-2xl); margin-bottom: 1.4rem; }
.cautela__text { color: var(--ink-2); margin-bottom: 2rem; }

.kette {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
  padding: 0;
  list-style: none;
}

.kette li {
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line);
  padding: 0.5em 0.9em;
}

.kette li:last-child { border-color: var(--gold-hair); color: var(--gold); }

/* Preistafel: offene Preise sind hier ein Vertrauensbaustein, kein Detail. */
.tafel { border: 1px solid var(--line); }

.tafel__kopf {
  padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.3rem, 3vw, 1.8rem);
  border-bottom: 1px solid var(--line);
  background: var(--bg-lift);
}

.tafel__reihe {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(0.9rem, 2vw, 1.2rem) clamp(1.3rem, 3vw, 1.8rem);
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--t-sm);
}

.tafel__reihe:last-of-type { border-bottom: 0; }
.tafel__reihe span:first-child { color: var(--ink-2); }

.tafel__preis {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.tafel__fuss {
  padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1.3rem, 3vw, 1.8rem);
  border-top: 1px solid var(--line);
  font-size: var(--t-xs);
  color: var(--ink-3);
  line-height: 1.6;
}

@media (max-width: 860px) { .cautela__in { grid-template-columns: 1fr; } }

/* ==========================================================================
   Agenten-Register — Zeilen statt Kacheln
   ========================================================================== */

/* Keine eigene Oberkante: der Abschnittskopf zieht bereits eine Linie,
   zwei parallele Haarlinien sehen nach Versehen aus. */
.register { border-top: 0; }

.eintrag {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1.25fr) minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding-block: clamp(1.6rem, 3.5vw, 2.4rem);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s var(--ease), padding-inline 0.4s var(--ease);
}

.eintrag:hover {
  background: var(--bg-lift);
  padding-inline: clamp(0.6rem, 1.5vw, 1.2rem);
}

.eintrag__nr {
  font-family: var(--serif);
  font-size: var(--t-md);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.eintrag__name {
  display: block;
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.eintrag__wer {
  display: block;
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.4;
}

.eintrag__claim { color: var(--ink-2); font-size: var(--t-sm); }

.stand {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.stand::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.stand--frei { color: var(--gold); }
.stand--bald::before { background: none; box-shadow: inset 0 0 0 1px currentColor; }

@media (max-width: 860px) {
  .eintrag {
    grid-template-columns: 3rem minmax(0, 1fr);
    align-items: start;
    gap: 0.5rem 1rem;
  }
  .eintrag__claim, .eintrag .stand { grid-column: 2; }
}

/* ==========================================================================
   Stimme + Zitat + Abschluss
   ========================================================================== */

/* overflow: hidden, weil dieser Abschnitt auf /agenten/ die Kugel aufnimmt:
   Ihr Leuchten (.hero__orb::after) ragt absichtlich über den Bildrand hinaus
   und schiebt sonst die ganze Seite um ein paar Pixel auf. Im Hero fasst
   .hero das Leuchten genauso ein. Gemessen am 02.08.2026: 17 px bei 1280. */
.stimme { background: var(--bg-lift); overflow: hidden; }

.stimme__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* Eine Wellenform aus reinem CSS: kein Bild, keine Datei, kein Ladefehler. */
.welle {
  display: flex;
  align-items: center;
  gap: 4px;
  height: clamp(80px, 14vw, 130px);
}

.welle i {
  flex: 1;
  background: var(--gold);
  opacity: 0.5;
  height: var(--h, 30%);
  border-radius: 1px;
}

.zitat { text-align: left; }

.zitat blockquote {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  max-width: 24ch;
  margin: 0 0 1.6rem;
  text-wrap: balance;
}

.zitat cite {
  font-style: normal;
  font-size: var(--t-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.schluss { text-align: left; }

.schluss h2 { max-width: 16ch; margin-bottom: 1.4rem; }
.schluss p { color: var(--ink-2); margin-bottom: clamp(2rem, 4vw, 3rem); }

.schluss__do { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; align-items: center; }

@media (max-width: 860px) { .stimme__in { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ — dieselbe Haarlinien-Logik wie .schritte, als natives <details>.
   Kein JS: die Klappmechanik kommt vom Browser, nichts, das sich lösen kann.
   ========================================================================== */

.fragen { display: grid; gap: 0; }

.frage { border-top: 1px solid var(--line-soft); padding-block: clamp(1.2rem, 3vw, 1.8rem); }
.frage:last-child { border-bottom: 1px solid var(--line-soft); }

.frage__q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.frage__q::-webkit-details-marker { display: none; }

.frage__q::after {
  content: '+';
  flex-shrink: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: var(--t-lg);
}

.frage[open] .frage__q::after { content: '–'; }

.frage__a {
  color: var(--ink-2);
  font-size: var(--t-md);
  max-width: min(68ch, 100%);
  margin-top: 0.9rem;
}

/* ==========================================================================
   Produktseiten — ein Muster für alle Agenten
   ========================================================================== */

.pkopf {
  padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.pkopf__in {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.pkopf__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.4rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.pkopf h1 {
  font-size: var(--t-3xl);
  margin-bottom: 0.6rem;
}

.pkopf__claim {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  color: var(--gold);
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
  max-width: min(22ch, 100%);
}

.pkopf__text { color: var(--ink-2); font-size: var(--t-md); }

.pkopf__do {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  align-items: center;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

@media (max-width: 900px) {
  .pkopf__in { grid-template-columns: 1fr; align-items: start; }
}

/* Feste Spaltenzahl: sechs Gründe in einem auto-fit-Raster lassen je nach
   Breite Lücken stehen, und eine leere Zelle liest sich als Fehler. */
.gruende {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}

@media (max-width: 1000px) { .gruende { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .gruende { grid-template-columns: 1fr; } }

.grund { background: var(--bg); padding: clamp(1.6rem, 3vw, 2.4rem); }
.grund h3 { font-size: var(--t-md); font-family: var(--sans); font-weight: 500;
  letter-spacing: 0; margin-bottom: 0.7rem; color: var(--ink); }
.grund p { color: var(--ink-3); font-size: var(--t-sm); }

.daten .grund { background: var(--bg-lift); }

/* Eckdaten: eine Zeile Kurzangaben, wie der Fuß eines Beiblatts */
.eck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.eck div { display: grid; gap: 0.4rem; }

/* Über die volle Seitenbreite (Firmenangaben auf /ueber-uns/) braucht die Liste
   eine feste Spaltenzahl: auto-fit legt dort sonst einen leeren Track an. */
.eck--breit { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 860px) { .eck--breit { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .eck--breit { grid-template-columns: 1fr; } }

.eck dt, .eck__was {
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.eck dd, .eck__wert {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--t-md);
  color: var(--ink);
  line-height: 1.35;
}

/* Beweis-Block: was belegt, dass das Werkzeug wirklich arbeitet */
.beweis {
  background: var(--bg-lift);
  border: 1px solid var(--gold-hair);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
}

.beweis .reg { padding-top: 0.35em; }
.beweis h3 { font-size: var(--t-lg); margin-bottom: 0.8rem; }
.beweis p { color: var(--ink-2); }

@media (max-width: 700px) { .beweis { grid-template-columns: 1fr; } }

/* ==========================================================================
   Wissen — Verzeichnis der Fachbeiträge
   Ein Beitrag ist hier ein Eintrag in einem Verzeichnis, kein Blogeintrag mit
   Vorschaubild. Dieselbe Registerlogik wie bei den Agenten.
   ========================================================================== */

.stuecke { border-top: 1px solid var(--line); }

.stueck {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: clamp(0.8rem, 3vw, 3rem);
  padding-block: clamp(1.8rem, 4vw, 2.8rem);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s var(--ease), padding-inline 0.4s var(--ease);
}

.stueck:hover {
  background: var(--bg-lift);
  padding-inline: clamp(0.6rem, 1.5vw, 1.2rem);
}

.stueck__datum {
  display: block;
  margin-top: 0.7rem;
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.6;
}

.stueck__titel {
  display: block;
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.9rem;
  transition: color 0.4s var(--ease);
}

.stueck:hover .stueck__titel { color: var(--gold); }

.stueck__text {
  display: block;
  color: var(--ink-2);
  font-size: var(--t-sm);
  max-width: min(62ch, 100%);
}

.stueck__mehr {
  display: inline-block;
  margin-top: 1.3rem;
  padding-bottom: 0.35em;
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-hair);
}

@media (max-width: 860px) {
  .stueck { grid-template-columns: 1fr; gap: 0.9rem; }
  .stueck__datum { margin-top: 0.4rem; }
}

/* ==========================================================================
   Beitrag — ein Fachtext sieht aus wie ein Dokument: Kopf mit Eckdaten,
   Lesespalte linksbündig wie der Rest der Seite, Fundstellen am Fuß.
   ========================================================================== */

.bkopf {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.bkopf__in {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.bkopf h1 {
  font-size: var(--t-2xl);
  margin: 1.2rem 0 1.4rem;
  max-width: min(20ch, 100%);
}

.bkopf__vor {
  font-size: var(--t-lg);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  max-width: min(48ch, 100%);
}

@media (max-width: 900px) {
  .bkopf__in { grid-template-columns: 1fr; align-items: start; }
}

/* Inhaltsverzeichnis: bei einem Text dieser Länge eine Orientierung,
   kein Schmuck. Deshalb eine Zeile zwischen zwei Haarlinien. */
.inhalt {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1.8rem;
  padding-block: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-block: 1px solid var(--line);
}

.inhalt__was {
  font-size: var(--t-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.inhalt a {
  font-size: var(--t-sm);
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.inhalt a:hover { color: var(--gold); border-bottom-color: var(--gold-hair); }

/* Lesespalte. Die Zeilenlänge steht hier, nicht an jedem Absatz. */
.lese { max-width: min(70ch, 100%); }
.lese p { max-width: 100%; margin-bottom: 1.25em; color: var(--ink-2); }
.lese strong { color: var(--ink); font-weight: 500; }

.lese h2 {
  font-size: var(--t-xl);
  margin: clamp(2.6rem, 5vw, 3.6rem) 0 1.1rem;
  max-width: min(24ch, 100%);
}

.lese > h2:first-child { margin-top: 0; }
.lese > :last-child { margin-bottom: 0; }

.lese ul, .lese ol { list-style: none; padding: 0; margin: 0 0 1.6rem; }

.lese li {
  position: relative;
  padding: 0.95rem 0 0.95rem 2rem;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-2);
  line-height: 1.62;
}

.lese li:last-child { border-bottom: 1px solid var(--line-soft); }

.lese ul li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 1.6em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.lese ol { counter-reset: schritt; }
.lese ol li { counter-increment: schritt; padding-left: 3.2rem; }

.lese ol li::before {
  content: counter(schritt, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.9em;
  font-family: var(--serif);
  font-size: var(--t-md);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* Die Gegenüberstellung der beiden Wortlaute. Sie ist der Kern des Beitrags
   und darf deshalb breiter stehen als der Fließtext. */
.wortlaut {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: min(96ch, 100%);
  margin: clamp(2rem, 4vw, 2.8rem) 0;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.wortlaut figure { margin: 0; padding: clamp(1.4rem, 3vw, 2rem); background: var(--bg); }

.wortlaut figcaption {
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1rem;
}

.wortlaut blockquote {
  margin: 0;
  font-size: var(--t-sm);
  line-height: 1.65;
  color: var(--ink-3);
}

/* Die geänderten Wörter markiert, nicht farbig überschrieben. */
.wortlaut em {
  font-style: normal;
  color: var(--ink-2);
  text-decoration: underline;
  text-decoration-color: var(--gold-hair);
  text-underline-offset: 3px;
}

.wortlaut .neu { background: var(--bg-lift); box-shadow: inset 0 0 0 1px var(--gold-hair); }
.wortlaut .neu figcaption { color: var(--gold); }
.wortlaut .neu blockquote { color: var(--ink-2); }
.wortlaut .neu em { color: var(--ink); text-decoration-color: var(--gold-dim); }
.wortlaut .neu strong { color: var(--ink); font-weight: 500; }

@media (max-width: 760px) { .wortlaut { grid-template-columns: 1fr; } }

/* Wörtliches Zitat aus einer Quelle. Haarlinien oben und unten statt
   farbigem Seitenstreifen. */
.quelle {
  margin: clamp(1.8rem, 4vw, 2.4rem) 0;
  padding-block: clamp(1.2rem, 2.5vw, 1.6rem);
  border-block: 1px solid var(--line);
  font-family: var(--serif);
  font-size: var(--t-md);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-2);
}

.quelle cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Fundstellen: der Grund, warum der Text kein Meinungsbeitrag ist. */
.fund {
  max-width: min(88ch, 100%);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border: 1px solid var(--line);
}

.fund h2 { font-size: var(--t-lg); margin-bottom: 1rem; }
.fund ul { list-style: none; padding: 0; margin: 0; }

.fund li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.5rem;
  border-top: 1px solid var(--line-soft);
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--ink-3);
}

.fund li:first-child { border-top: 0; }

.fund li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.4em;
  width: 4px;
  height: 4px;
  background: var(--gold-dim);
  transform: rotate(45deg);
}

.abbinder {
  max-width: min(88ch, 100%);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid var(--gold-hair);
}

.abbinder p { font-size: var(--t-sm); color: var(--ink-3); margin-bottom: 0.9rem; }
.abbinder strong { color: var(--ink-2); font-weight: 500; }
.abbinder a { color: var(--gold); }

.abbinder__do {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2rem;
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

/* ==========================================================================
   Fuß
   ========================================================================== */

.foot {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem);
  font-size: var(--t-sm);
  color: var(--ink-3);
}

.foot__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--gap);
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}

.foot h4 {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 1.1rem;
}

.foot ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.foot a { transition: color 0.3s var(--ease); }
.foot a:hover { color: var(--gold); }

.foot__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
  font-size: var(--t-xs);
  color: var(--ink-3);
}

/* ==========================================================================
   Bewegung — nur Einblenden, nie Verschieben von Textblöcken beim Scrollen.
   ========================================================================== */

/* Nur mit `js` am <html> wird ueberhaupt versteckt. Ohne JavaScript — oder
   wenn seite.js nicht ausgefuehrt wird — steht der Text da, wo er hingehoert.
   Am 03.08.2026 lief das Skript auf allen Seiten nicht, und alles unter dem
   Hero blieb schwarz. Inhalt darf nicht von einem Skript abhaengen. */
.js .rise {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js .rise.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rise { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Schmale Bildschirme
   ========================================================================== */

@media (max-width: 900px) {
  .hero__in {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
    min-height: 0;
  }

  .hero__orb { order: -1; width: min(62%, 300px); }

  /* Ausnahme: In .stimme (Abschnitt „Der gemeinsame Kern“ auf /agenten/) bleibt
     die Kugel hinter dem Text. Dort erklärt der Text das Bild — im Hero führt
     das Bild. Sonst stünde die Bildlegende über der Überschrift, die sie erklärt. */
  .stimme .hero__orb { order: 0; }
  .hero__text { max-width: min(46ch, 100%); }

  /* Bis zum 03.08.2026 stand hier `.nav a:not(.nav__cta) { display: none }`: Auf dem
     Telefon verschwand die komplette Navigation, uebrig blieb der Quick-Check. Wer per
     Presse-Mail auf /wissen/ landete, kam von dort nur ueber den Fuss weiter — am Ende
     einer langen Seite. Jetzt klappt die Navigation als Verzeichnis auf.

     Sie liegt ueber dem Inhalt statt ihn zu schieben (Konstruktionsregel 3: keine
     Animation, die einen Textblock verschiebt). */
  .nav__toggle { display: block; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 var(--pad-x) 1.6rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    font-size: var(--t-md);
  }
  .top--offen .nav { display: flex; }

  /* Registerzeilen, kein Kachelraster: dasselbe Motiv wie auf den Seiten. */
  .nav a {
    padding: 1.05rem 0;
    border-top: 1px solid var(--line-soft);
    color: var(--ink);
  }
  .nav a:first-child { border-top: 0; }

  .nav__cta {
    margin-top: 1.3rem;
    padding: 0.9em 1.2em;
    text-align: center;
    border: 1px solid var(--gold-hair);
    font-size: var(--t-xs);
  }
}

@media (max-width: 560px) {
  .top__in { min-height: 4rem; }
  .mark { letter-spacing: 0.34em; font-size: var(--t-xs); }
  .hero__do { gap: 1rem; }
  .hero__do .btn { width: 100%; justify-content: center; }
}

/* ---- Datentabellen (Wissen: Sichtbarkeits-Index, 15.09.2026) ----
   Nur die Tabelle darf breiter sein als die Spalte; sie scrollt dann in
   ihrem eigenen Rahmen (.tab-wrap), die Seite nie. */
.tab-wrap { overflow-x: auto; margin: 0 0 2.2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tab { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.tab th, .tab td { padding: 0.7rem 0.9rem 0.7rem 0; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line-soft); }
.tab thead th { font-family: var(--sans); font-weight: 500; font-size: var(--t-xs); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); border-bottom: 1px solid var(--line); }
.tab tbody th { font-weight: 500; color: var(--ink); white-space: nowrap; }
.tab td { color: var(--ink-2); }
.tab td:first-child { color: var(--ink-3); width: 3rem; }
.tab tbody td:nth-child(2) { color: var(--ink); }
.tab--kat td { white-space: nowrap; }
.tab__n { color: var(--ink-3); font-size: var(--t-xs); }
.lese .tab-wrap { max-width: 100%; }
.lese h2 + .tab-wrap, .lese p + .tab-wrap { margin-top: 0.4rem; }
