/* ═══════════════════════════════════════════════════════════════════
   Liquiditätsplanung — Marketing-Site, site-weite Identität.
   Swiss-Kanzlei-Premium: Georgia-Serif-Headings, system-ui-Body,
   ein Akzent (#1a4d8f), flach, 1px-Linien, Supra-Akzentlinien.
   Konsistent zur bestehenden Landing. Über wire.yml extra_css geladen.
═══════════════════════════════════════════════════════════════════ */

:root {
  --ink:    #1a1d21;
  --muted:  #5b626b;
  --faint:  #9aa0a8;
  --line:   #e6e8ec;
  --line-s: #c2c6cc;
  --accent: #1a4d8f;
  --accent-d: #14397a;
  --rot:    #c0392b;
  --amber:  #b7791f;
  --gruen:  #176a36;
  --bg:     #fff;
  --bg-2:   #f7f8fa;
  --bg-tint: #f0f4fa;
  --serif:  Georgia, "Times New Roman", serif;
  --sans:   system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* overflow-x: clip statt hidden -- clip kappt horizontal, erzeugt aber KEINEN
   Scroll-Container auf body (hidden tut das implizit), sonst stirbt das
   position:sticky des Headers. */
html, body { overflow-x: clip; max-width: 100%; }
body {
  font: 400 17px/1.65 var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headings durchweg Serif, ruhig, eng. */
h1, h2, h3 { font-family: var(--serif); color: var(--ink); letter-spacing: -.015em; font-weight: 400; }
a { color: var(--accent); text-underline-offset: 2px; }

/* ── HEADER / MARKETING-NAV (#274) ───────────────────────────────── */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.site-logo-text {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
  font-size: 19px;
}
/* Domain als Marke: TLD ".de" im Markenblau absetzen (brand.js umschliesst sie). */
.site-logo-text .brz-tld { color: var(--accent); }
.header-nav a, .offerings-nav a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .01em;
}
.header-nav a:hover, .offerings-nav a:hover, .header-nav a.nav-active, .offerings-nav a.nav-active {
  color: var(--accent);
}
.offerings-bar { border-top: 1px solid var(--line); }

/* CTA-Button in der Nav — quadratisch, Versal, wie die bestehende .cta */
.nav-cta, a.nav-cta {
  background: var(--accent);
  color: #fff !important;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 9px 18px;
}
.nav-cta:hover { background: var(--accent-d); border-color: var(--accent-d); }

/* ── LANDING-SEKTIONEN (Shortcode-Chrome) ───────────────────────── */
.landing-content .section-inner { max-width: 64rem; }

/* Hero */
.section-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.section-hero .section-inner { padding-top: 2.25rem; padding-bottom: 2.25rem; max-width: 64rem; }
.section-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.14;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 .6rem;
}
/* Supra-Akzentlinie über der Hero-H1 */
.section-hero h1::before {
  content: ""; display: block; width: 28px; height: 2px;
  background: var(--accent); margin: 0 0 1.3rem;
}
.section-hero p, .section-hero .section-inner > p:first-of-type {
  font-size: 1.16rem; line-height: 1.65; color: var(--muted); max-width: 46ch;
}
.hero-actions { margin-top: 1.9rem; gap: .7rem; }

/* Alternierende Sektionsbänder */
.section-light { background: var(--bg-2); }
.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -.018em;
  color: var(--ink);
}
.section h2::before {
  content: ""; display: block; width: 24px; height: 2px;
  background: var(--accent); margin: 0 0 1rem;
}

/* ── BUTTONS (Shortcode :::cta -> .btn) ──────────────────────────── */
.btn, a.btn {
  display: inline-block;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.btn:hover { background: var(--bg-tint); text-decoration: none; }
.btn-primary, a.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-d); border-color: var(--accent-d); color: #fff; }
/* Prosa-Link-Styles (.article-body a, s.u. Z.~369) nicht in die :::cta-/close-band-
   Buttons bluten lassen: gleiche Spezifitaet wie a.btn, aber spaeter definiert, sonst
   erben Buttons blaue Textfarbe (Primaer = blau auf blau, unsichtbar) + Unterstreichung. */
.article-body a.btn { text-decoration: none; }
.article-body a.btn-primary { color: #fff; }

/* ── FEATURE-CARDS (1px-Grid, flach, Hover-Akzentstreifen) ──────── */
.feature-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature-card {
  background: var(--bg);
  border: none;
  border-radius: 0;
  padding: 28px 26px;
  box-shadow: none;
  position: relative;
  transition: background .15s;
}
.feature-card:hover { background: var(--bg-2); transform: none; box-shadow: none; }
.feature-card::after {
  content: ""; position: absolute; left: 0; top: 22px; bottom: 22px;
  width: 2px; background: transparent; transition: background .2s;
}
.feature-card:hover::after { background: var(--accent); }
.feature-card h3 {
  font-family: var(--serif); font-weight: 400; font-size: 17px;
  color: var(--ink); margin: 0 0 .5rem; letter-spacing: -.005em;
}
.feature-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ── STEP-FLOW (:::steps) ────────────────────────────────────────── */
.step-marker {
  background: var(--accent); color: #fff;
  border-radius: 2px; box-shadow: none;
}
.steps .step-title, .steps h3 {
  font-family: var(--serif); font-weight: 400; color: var(--ink);
}

/* ── METRIK-KACHELN (:::stats) ───────────────────────────────────── */
.stats, .stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 1.6rem 0;
}
.stats .stat, .stats-bar .stat { background: var(--bg); padding: 26px 24px; position: relative; }
.stats .stat::before {
  content: ""; display: block; width: 20px; height: 2px;
  background: var(--accent); margin-bottom: 14px;
}
.stat-value {
  font-family: var(--serif); font-weight: 400; font-size: 30px;
  line-height: 1.1; color: var(--ink); font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 13px; line-height: 1.5; color: var(--muted); margin-top: 8px; }

/* ── QUOTE-CARDS (:::quotes) ─────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.quote {
  background: var(--bg); border: none; border-radius: 0; padding: 30px 28px;
  font-family: var(--serif); font-size: 16px; line-height: 1.55; color: var(--ink);
}
.quote cite, .quote .quote-author {
  display: block; margin-top: 16px; font-family: var(--sans); font-style: normal;
  font-size: 13px; color: var(--muted); letter-spacing: .01em;
}

/* ── TRUST-STRIP / DSGVO-BADGE-Reihe ─────────────────────────────── */
.trust-strip {
  list-style: none; padding: 0; margin: 1.4rem 0 0;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.trust-strip li {
  font-family: var(--sans); font-size: 12.5px; color: var(--muted);
  border: 1px solid var(--line-s); border-radius: 2px; padding: 5px 11px;
  display: inline-flex; align-items: center; gap: 7px;
}
.trust-strip li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gruen); }

/* ── TRUST-SEALS -- drei Vertrauens-Siegel (Homepage-Hero-Abschluss) ─
   Ersetzt die alte .trust-strip-Pillenreihe NUR auf der Homepage.
   Flaches Blueprint-Band: 1px-Trennlinien, Stahlstich-Marken (SVG),
   Georgia-Label; Siegel 3 zeigt die drei Gruender-Portraets.
   RULE-52: nur ASCII-Bindestriche in diesem Block. */
.trust-seals { margin: 1.5rem 0 0; }
.trust-seal-row { display: flex; flex-wrap: wrap; align-items: stretch; border: 1px solid var(--line); border-radius: 3px; background: var(--bg); overflow: hidden; }
.trust-seal { flex: 1 1 0; min-width: 210px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 17px 22px; border-left: 1px solid var(--line); }
.trust-seal:first-child { border-left: none; }
.trust-seal-mark { flex: none; width: 42px; height: 42px; display: block; }
.trust-seal-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-seal-label { font-family: var(--serif); font-size: 15px; font-weight: 400; letter-spacing: -0.01em; color: var(--ink); line-height: 1.25; }
.trust-seal-sub { font-family: var(--sans); font-size: 12px; color: var(--muted); line-height: 1.35; }
.trust-seal-faces { flex: none; display: inline-flex; align-items: center; padding-left: 3px; }
.trust-seal-faces img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--bg); box-shadow: 0 0 0 1px var(--line-s); background: var(--bg-2); }
.trust-seal-faces img + img { margin-left: -13px; }
@media (max-width: 768px) {
  .trust-seal { flex: 1 1 100%; border-left: none; border-top: 1px solid var(--line); }
  .trust-seal:first-child { border-top: none; }
}

/* ── BADGES (:::badges) ──────────────────────────────────────────── */
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.2rem 0; }
.badge {
  font-family: var(--sans); font-size: 12px; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 2px; padding: 5px 12px;
  background: var(--bg-tint);
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); color: var(--muted); }
.footer-heading { font-family: var(--sans); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.footer-tagline { font-family: var(--serif); font-size: 15px; line-height: 1.55; color: var(--ink); max-width: 46ch; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }

/* ── AUSRICHTUNG ───────────────────────────────────────────────────
   Wire zentriert Landing-Sektionen per Default; dadurch schwimmen die
   linken Akzentstriche. Lösung: Body-Sektionen linksbündig (editorial,
   wie der Original-Look), Hero bleibt zentriert -- dort wandern
   Akzentlinie + Trust-Strip mittig, damit nichts schwimmt. */
.section .section-inner { text-align: left; }
.stats .stat, .stats-bar .stat { text-align: left; }
/* Hero zentriert (konsistent mit dem Loesungen-Hero): Supra-Strich, Lead,
   Buttons, Trust-Strip und Stats mittig. Sonst klebt der schmale Lead links
   und die rechte Hero-Haelfte bleibt leer. Body-Sektionen bleiben links. */
.section-hero .section-inner { text-align: center; }
.section-hero h1::before { margin-left: auto; margin-right: auto; }
.section-hero p, .section-hero .section-inner > p:first-of-type { margin-left: auto; margin-right: auto; }
.section-hero .hero-actions { justify-content: center; }
.section-hero .trust-strip { justify-content: center; }
.section-hero .stats, .section-hero .stats-bar { margin-left: auto; margin-right: auto; }

/* ── MOBILE-HYGIENE (analog mailorga) ────────────────────────────── */
.offerings-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; flex-wrap: nowrap; }
.offerings-nav::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
  .offerings-bar, .offerings-inner, .site-header, .section, .section-inner, .landing-content { max-width: 100%; }
  .offerings-nav a { white-space: nowrap; }
  .hero-actions { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════════════════
   Blueprint-Photo-Treatment -- wiederverwendbar auf allen Seiten.
   .bp-photo   Container mit Duotone-Overlay: jedes <img> wirkt
               blueprint-blau, monochrom, kohaerent zur Linienzeichnung.
   .bp-band    Breites Bild-Band in Content-Spalten-Breite
               (min(94vw, 96rem)), analog zur .herobanner-Breite.
   Verwendung: <div class="bp-band bp-photo"><img src="..." alt="..."></div>
═══════════════════════════════════════════════════════════════════ */

/* Duotone-Container */
.bp-photo {
  position: relative;
  overflow: hidden;
  display: block;
}

/* Das Bild: Graustufen + leichter Kontrast-/Helligkeit-Ausgleich */
.bp-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.02) brightness(1.12);
}

/* Overlay: Blueprint-Blau als Multiply -- Duotone-Blau-Effekt */
.bp-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1a4d8f;
  mix-blend-mode: multiply;
  opacity: .40;
  pointer-events: none;
}

/* Breites Band -- passt zur Content-Breite des .herobanner */
.bp-band {
  width: 100%;
  height: clamp(200px, 26vw, 300px);
  margin: 10px auto;
  border: 1px solid #e6e8ec;
  overflow: hidden;
}

.bp-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bildunterschrift unter dem Band */
.bp-caption {
  width: 100%;
  margin: 6px auto 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: italic;
  color: #9aa0a8;
  letter-spacing: .01em;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .bp-band { width: 100%; }
  .bp-caption { width: 100%; }
}


/* ── FAQ (:::faq native) – flache Linien-Liste statt Box (Wire-Default-Box ueberschrieben) ── */
.faq { margin: 0 auto; max-width: 72rem; }
.faq-item {
  border: 0; border-top: 1px solid var(--line); border-radius: 0;
  margin: 0; background: transparent; overflow: visible;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item[open] { border-color: var(--line); }
.faq-item summary {
  padding: 15px 4px 15px 0;
  font-family: var(--serif); font-weight: 400; font-size: 16px; line-height: 1.3;
  color: var(--ink);
}
.faq-item summary:hover { background: transparent; color: var(--accent); }
.faq-item[open] summary { color: var(--accent); border-bottom: none; }
.faq-item summary::after { color: var(--accent); font-weight: 300; }
.faq-answer { padding: 0 0 16px; }
.faq-answer p { margin: 0 0 10px; color: var(--muted); line-height: 1.7; max-width: 64ch; font-size: 15px; }


/* Dezenter Rechts-/Abgrenzungs-Hinweis */
.legal-note { max-width: 64ch; margin: 1.4rem auto; padding: 12px 0 12px 16px; border-left: 2px solid var(--line-s); color: var(--faint); font-size: 13px; line-height: 1.6; }


/* ── Einheitliche Content-/Sektionsbreite ueber ALLE Seiten (Unterseiten-Praezision) ── */
.landing-content .section .section-inner,
.landing-content .section-hero .section-inner { max-width: 72rem; margin-left: auto; margin-right: auto; }
.legal-note { margin-left: 0; margin-right: auto; }  /* links an der Content-Kante statt zentriert */


/* H2 + Sektionsinhalt der Body-Sektionen linksbuendig (Wire zentriert per
   Default -> ueberschreiben). Der Hero ist bewusst ausgenommen -- er ist
   zentriert (s. oben), darum :not(.section-hero). */
.landing-content .section h2 { text-align: left; }
.landing-content .section:not(.section-hero) .section-inner { text-align: left; }


/* ── Artikel/Blog – Editorial-Look (Georgia, schmale Lesespalte, blaue H2) wie /about ── */
.article-header h1, .article-hero h1 { font-family: var(--serif); color: var(--ink); font-weight: 400; letter-spacing: -.018em; }
.article-body { font-family: var(--serif); color: var(--ink); }
.article-body p, .article-body li { font-size: 1.05rem; line-height: 1.78; color: #2c3138; }
.article-body h2 { font-family: var(--serif); color: var(--accent); font-weight: 400; font-size: 1.4rem; border-top: 1px solid var(--line); padding-top: 1.4rem; margin-top: 2.2rem; letter-spacing: -.01em; }
.article-body h2::before { display: none; }
.article-body h3 { font-family: var(--serif); color: var(--accent); font-weight: 400; font-size: 1.12rem; margin-top: 1.6rem; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body strong { color: var(--ink); }


/* Article-CTA-Banner-Button: weiss bleibt sichtbar auf blauem Banner (Hover-Fix) */
.article-cta-btn { background: #fff; color: var(--accent); }
.article-cta-btn:hover { background: #eef2f8; color: var(--accent); opacity: 1; text-decoration: none; }


/* Nav-Feinschliff: keine Doppellinie (graue Header-Border weg), aktive Akzentlinie sauber, etwas weniger puristisch */
.site-header { border-bottom: none; }
.header-nav a.nav-active { color: var(--accent); font-weight: 500; border-bottom: 2px solid var(--accent); }
.header-nav a { transition: color .15s; }


/* App-Screenshot (echtes Produkt-Visual, clean, KEIN Duotone) */
.app-shot { width: 100%; max-width: 72rem; margin: 1.6rem auto; }
.app-shot img { width: 100%; height: auto; display: block; border: 1px solid var(--line-s); border-radius: 4px; box-shadow: 0 18px 44px -30px rgba(26,29,33,.45); }
.app-shot figcaption { font-size: 12px; font-style: italic; color: var(--faint); margin-top: 8px; }


/* Artikel-Tabellen: breiter als die Lesespalte ausbrechen (weniger Scrollen) + Schrift/Spacing */
.article-body .table-wrap {
  margin-left: calc(-1 * clamp(0rem, 9vw, 8rem));
  margin-right: calc(-1 * clamp(0rem, 9vw, 8rem));
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article-body table { font-family: var(--sans); font-size: 14px; border-collapse: collapse; width: 100%; margin: 0; }
.article-body th, .article-body td { padding: 11px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 1.5; }
.article-body thead th { font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 600; border-bottom: 1.5px solid var(--line-s); background: var(--bg-2); }
.article-body tbody tr:last-child td { border-bottom: none; }
.article-body td { color: #3d4249; font-variant-numeric: tabular-nums; }
.article-body td strong, .article-body th { color: var(--ink); }


/* ── Team-Seite (/about) -- Hauptstile inline in about/index.md, hier globale Ergaenzungen ── */
/* Stahlstich-Portraet: Graustufen + leichter Kontrast, 1px-Rahmen, editorial */
.team-portrait {
  display: block;
  border: 1px solid var(--line-s);
  box-shadow: 0 12px 40px -18px rgba(26,29,33,.32);
}
/* Eyebrow-Label ueber Personenname */
.team-bio-eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
/* Rechtlicher Hinweis -- zurueckhaltend, lesbar */
.team-legal-note {
  font-size: 12px;
  color: var(--faint);
  line-height: 1.6;
  border-left: 2px solid var(--line-s);
  padding-left: 14px;
  margin-top: 2rem;
  max-width: 58ch;
}


/* ── Header-Wortmarke: "liqui.de" statt Bildmarke ──────────────────
   site_name = "liqui.de" treibt Header-Wortmarke, Footer, Title-Suffix
   und OG einheitlich. Hier nur: Favicon-Icon im Nav aus, Wortmarke als
   Serif. Wire blendet den Sitenamen in der gescrollten .content-nav-brand
   normalerweise aus (zeigt dort nur das Icon) -- da wir kein Icon zeigen,
   diese Ausblendung ueberschreiben, sonst verschwindet die Marke. */
.site-logo-img { display: none; }
.site-logo .site-logo-text,
.content-nav-brand .site-logo-text,
.content-nav-brand.visible .site-logo-text {
  display: inline;
  margin-left: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.site-logo:hover .site-logo-text,
.content-nav-brand:hover .site-logo-text { color: var(--accent); }

/* ── Sidebar-CTA-Bild (Team-Trio) ──────────────────────────────────
   Trio-PNG bringt eigene Form (Kreise) + Transparenz mit -> kein
   Rahmen, kein Radius, volle Kartenbreite, leicht eingerueckt. */
.sidebar-card-img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  border-radius: 0;
  background: transparent;
  margin: 2px 0 14px;
}

/* ═══════════════════════════════════════════════════════════════════
   UX-Review-Fixes (mkt-ux #277-#280) -- 2026-06-29
═══════════════════════════════════════════════════════════════════ */

/* U1 -- Header bleibt beim Scrollen oben (CTA immer erreichbar). */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
}

/* U8 -- Mobile: angedeuteter Scroll-Hinweis (Fade rechts) auf der
   Offerings-Leiste, da die Scrollbar versteckt ist. */
@media (max-width: 768px) {
  .offerings-nav {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 18px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 18px), transparent);
  }
}

/* C7 -- Stat-Strip im Hero ohne graue Leerbaender (Margin gegen
   Sektions-Hintergrund), Werte gleich hoch fuer ruhige Kante. */
.section-hero .stats, .section-hero .stats-bar { margin-top: .4rem; margin-bottom: 0; }
.stat-value { min-height: 1.1em; }

/* ═══════════════════════════════════════════════════════════════════
   Enterprise-Masthead (#nav-2) -- 2026-06-29
   Zwei-Zeilen-Header neu gewichtet: oben ruhige Utility-Zeile (Marke
   gross links, Sekundaerlinks + Suche als Cluster rechts), unten die
   Primaer-Nav linksbuendig unter der Marke, CTA rechts. Ein zusammen-
   haengender weisser Block mit Haarlinien, keine konkurrierenden Kanten.
═══════════════════════════════════════════════════════════════════ */

/* -- Top-Zeile (Offerings) = Utility-Streifen ----------------------- */
.offerings-bar {
  background: #fff;
  border-top: none;
  border-bottom: 1px solid var(--line);
  min-height: 48px;
}
.offerings-inner { gap: 0; height: 48px; }
/* Marke gross, ohne den altmodischen Trenn-Strich rechts */
.offerings-bar .site-logo {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.offerings-bar .site-logo .site-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -.022em;
  color: var(--ink);
}
/* Sekundaerlinks nach rechts, dezent (Utility, nicht Primaer-Nav) */
.offerings-nav {
  flex: 0 0 auto;
  margin-left: auto;
  gap: 2px;
}
.offerings-nav a {
  font-size: 13px;
  color: var(--faint);
  padding: 6px 13px;
  border-radius: 2px;
}
.offerings-nav a:hover,
.offerings-nav a.nav-active { color: var(--accent); background: var(--bg-2); }
/* Suche abgesetzt durch Haarlinie */
.header-utilities {
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}
.header-utilities .utility-link { color: var(--faint); display: flex; padding: 6px; border-radius: 2px; }
.header-utilities .utility-link:hover { color: var(--accent); background: var(--bg-2); }

/* -- Haupt-Zeile (Primaer-Nav) -------------------------------------- */
.site-header.content-nav-bar {
  border-bottom: 1px solid var(--line-s);
  height: 58px;
}
/* erster Nav-Link exakt unter die Marke (Link-Padding ausgleichen) */
.header-nav { margin-left: -12px; }
.header-nav a { font-size: 14.5px; padding: 8px 13px; }
.header-nav a:hover { color: var(--accent); }
/* CTA klar rechts */
.header-nav .nav-cta { margin-left: auto; }

/* B4 -- handgebaute 1px-Hairline-Raster (.kat-grid, .fkt-grid, .kh-grid):
   bei ungerader Kartenzahl scheint der graue Container-Hintergrund durch die
   leere Zelle der letzten Reihe (graues Geisterfeld). Fix: die allein
   stehende letzte Karte (ungerades letztes Kind) fuellt die ganze Reihe.
   Deckt FSC (5/2-Spalten) und e-rechnung (7/3-Spalten bzw. 7/2 mobil) ab. */
.kat-grid > *:last-child:nth-child(odd),
.fkt-grid > *:last-child:nth-child(odd),
.kh-grid  > *:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* U10 -- layout:raw (z.B. /pitch/ Prosa-Version) hat keine schmale Lesespalte;
   bare Markdown-Prosa laeuft sonst randlos ueber die volle Breite. Direkte
   main-Kinder bekommen Lesespalten-Breite. Landing/Artikel nutzen Wrapper
   (.section/.article-body) und sind nicht betroffen. */
main#main-content > :is(h2, h3, p, ul, ol, blockquote) {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Navigator (/navigator/) -- visueller Index entlang der Financial Supply
   Chain. Alles unter .navx gescoped (eigene Farb-Vars, keine Kollision mit
   Wire-Klassen .card/.grid/.panel). Markup wird zur Laufzeit von
   assets/navigator.js erzeugt. ASCII-Bindestriche only (RULE-52).
   ========================================================================== */
.navx {
  --ink: #1a1d21; --muted: #5b636e; --line: #e6e8ec; --bg: #f6f7f9;
  --blue: #1a4d8f; --blue-d: #143a6b; --box: #1a4d8f; --box-d: #143a6b;
  --dash: #8fa9cb; --gold: #f0c14b; --slate: #5b636e;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 18px 80px;
  color: var(--ink);
}
.navx * { box-sizing: border-box; }

.navx-hd h1 { font-size: 34px; line-height: 1.15; margin: 0 0 8px; }
.navx-lead { color: var(--muted); font-size: 17px; max-width: 760px; margin: 0; }

.navx-howto {
  display: flex; gap: 10px; align-items: flex-start;
  background: #eef3fa; border: 1px solid #d4e0f0; border-radius: 8px;
  padding: 12px 14px; margin: 18px 0; font-size: 14px; color: #33414f;
}
.navx-howto svg { flex: 0 0 auto; margin-top: 1px; }

.navx-diagram {
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  padding: 10px 14px; margin: 4px 0 18px;
}
.navx-diagram svg { width: 100%; height: auto; display: block; }

/* SVG-Interaktion */
.navx .clk { cursor: pointer; }
.navx .box { transition: fill .15s, stroke .15s; }
.navx .arrowline { transition: stroke .15s, stroke-width .15s; }
.navx .alabel { transition: fill .15s; }
.navx .clk:hover .box { fill: var(--box-d); }
.navx .clk:hover .arrowline { stroke: var(--blue); }
.navx .clk:hover .alabel { fill: var(--blue); font-weight: 600; }
.navx .clk.sel .box { stroke: var(--gold); stroke-width: 3.5; }
.navx .clk.sel .arrowline { stroke: var(--blue); stroke-width: 3; }
.navx .clk.sel .alabel { fill: var(--blue-d); font-weight: 700; }
.navx .shield:hover .shbody { fill: var(--blue-d); }
.navx .shield.sel .shbody { stroke: var(--gold); stroke-width: 3.5; }
.navx .flash .box { stroke: var(--gold); stroke-width: 4; }
.navx .flash .arrowline { stroke: var(--gold); stroke-width: 4; }
.navx .flash .shbody { stroke: var(--gold); stroke-width: 4; }

/* Steuerleiste: Suche + Rollen */
.navx-controls {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  justify-content: space-between; margin: 0 0 16px;
}
.navx-search {
  flex: 1 1 260px; display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 8px; padding: 9px 12px; background: #fff;
}
.navx-search input { border: 0; outline: 0; width: 100%; font-size: 15px; background: transparent; color: var(--ink); }
.navx-roles { display: flex; gap: 6px; }
.navx-roles button {
  border: 1px solid var(--line); background: #fff; border-radius: 8px;
  padding: 8px 13px; cursor: pointer; font-size: 13.5px; color: var(--ink);
}
.navx-roles button:hover { border-color: var(--blue); }
.navx-roles button.on { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Themen-Chips */
.navx-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.navx .chip {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 7px 13px; cursor: pointer; font-size: 13.5px; color: var(--ink);
}
.navx .chip:hover { border-color: var(--blue); }
.navx .chip.sel { background: var(--blue); color: #fff; border-color: var(--blue); }
.navx .chip .n {
  font-size: 11.5px; font-weight: 700; background: #eef1f5; color: var(--muted);
  border-radius: 999px; padding: 1px 7px; min-width: 20px; text-align: center;
}
.navx .chip.sel .n { background: rgba(255,255,255,.25); color: #fff; }

/* Panel */
.navx-panel { margin-top: 18px; }
.navx .ptitle { font-size: 22px; font-weight: 700; margin: 0 0 2px; }
.navx .psub { color: var(--muted); font-size: 15px; margin: 0 0 4px; max-width: 760px; }
.navx .pcount { color: var(--muted); font-size: 13.5px; margin: 0 0 6px; }
.navx .empty { color: var(--muted); font-size: 14.5px; padding: 6px 0; }

/* Sektionen (Wissen / Angebot / Tools) */
.navx .sec { margin-top: 26px; }
.navx .sech {
  position: relative; display: flex; align-items: center; margin: 0 0 14px;
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--blue-d); padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.navx .sech::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 32px; height: 2px; background: var(--blue);
}
.navx .sech-angebot::after { background: var(--gold); }
.navx .sech-tools::after { background: #1a7a3c; }
.navx .sech .secn {
  margin-left: auto; font-size: 11.5px; font-weight: 700; letter-spacing: 0;
  background: #eef1f5; color: var(--muted); border-radius: 999px; padding: 1px 8px;
}

/* Karten-Grid */
.navx .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(252px, 1fr)); gap: 14px; }
.navx .card {
  border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px;
  background: #fff; display: flex; flex-direction: column;
}
.navx .card .ct { font-weight: 600; color: var(--blue-d); text-decoration: none; font-size: 15px; }
.navx .card a.ct:hover { text-decoration: underline; }
.navx .card .ct.plan { color: var(--muted); cursor: default; }
.navx .card .cd { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 6px 0 0; }
.navx .card .subs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 9px; }
.navx .card .subs a { font-size: 12.5px; color: var(--blue); text-decoration: none; font-weight: 600; }
.navx .card .subs a:hover { text-decoration: underline; }

/* Angebot-Block */
.navx .offer {
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  background: #fffaf0; border: 1px solid #e6d39a; border-left: 4px solid var(--gold);
  border-radius: 10px; padding: 16px 18px;
}
.navx .offer-t { font-weight: 700; font-size: 16px; margin: 0 0 4px; color: var(--ink); }
.navx .offer-l { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }
.navx .offer-btn {
  flex: 0 0 auto; background: var(--blue); color: #fff; text-decoration: none;
  padding: 11px 17px; border-radius: 8px; font-weight: 600; font-size: 14px; white-space: nowrap;
}
.navx .offer-btn:hover { background: var(--blue-d); }

/* Tool-Karten */
.navx .card.tool .ct { padding-right: 4px; }
.navx .card.isplan { border-style: dashed; background: #fbfbfc; }
.navx .tbadge {
  align-self: flex-start; margin-top: 6px; font-size: 11px; font-weight: 700;
  border-radius: 999px; padding: 2px 9px; letter-spacing: .02em;
}
.navx .tbadge.live { background: #e7f6ec; color: #1a7a3c; }
.navx .tbadge.plan { background: #fdf3da; color: #9a7a16; }

.navx mark { background: #fff2a8; color: inherit; padding: 0 1px; border-radius: 2px; }

.navx-about { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.navx-about h2 { font-size: 20px; margin: 0 0 10px; }
.navx-about p { color: var(--muted); font-size: 14.5px; line-height: 1.65; max-width: 760px; }
.navx-about a { color: var(--blue); }

@media (max-width: 640px) {
  .navx-hd h1 { font-size: 27px; }
  .navx-controls { flex-direction: column; align-items: stretch; }
  .navx .offer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .navx .offer-btn { align-self: stretch; text-align: center; }
}

/* CLOSE-BAND -- Entscheidungs-Band (Seitenabschluss, Content-Seiten).
   Zwei Spalten: links Motivbruecke + CTAs + Trust (team-trio.png),
   rechts Navigator-Preview. Stack auf <=768px: Text zuerst, Visual darunter.
   RULE-52: nur ASCII-Bindestriche in diesem Block. */
.close-band { border-top: 1px solid var(--line); background: var(--bg-2); padding: 3.5rem 1.25rem; margin-top: 2.5rem; }
.close-band-inner { max-width: 72rem; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 4rem; align-items: center; }
.close-band-h { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.85rem); font-weight: 400; letter-spacing: -0.016em; color: var(--ink); margin: 0 0 .9rem; }
.close-band-h::before { content: ""; display: block; width: 24px; height: 2px; background: var(--accent); margin: 0 0 1rem; }
.close-band-bridge { font-size: 1rem; line-height: 1.72; color: var(--muted); max-width: 48ch; margin: 0 0 1.75rem; }
.close-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; margin-bottom: 1.9rem; }
.close-band-trust { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.close-band-trio { display: block; width: 100%; max-width: 210px; height: auto; border: none; border-radius: 0; background: transparent; margin: 0 0 .5rem; }
.close-band-caption { font-family: var(--sans); font-size: 12.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.close-band-shot { margin: 0; display: block; }
.close-band-shot img { width: 100%; height: auto; display: block; border: 1px solid var(--line-s); border-radius: 4px; box-shadow: 0 18px 44px -30px rgba(26,29,33,.45); }
.close-band-shot figcaption { font-size: 12px; font-style: italic; color: var(--faint); margin-top: 7px; }
@media (max-width: 768px) {
  .close-band { padding: 2.25rem 1rem; margin-top: 2rem; }
  .close-band-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .close-band-bridge { max-width: 100%; }
  .close-band-trio { max-width: 180px; }
}

/* HUB-HERO -- gemeinsamer Blueprint-Hero fuer Kategorie-Landingpages.
   Full-bleed Stahlstich-Hintergrund mit Weiss-Overlay fuer Lesbarkeit,
   Eyebrow ueber der Serif-H1. Ersetzt das leere weisse Hero-Void durch
   die on-brand Blueprint-Textur (wie /loesungen/).
   RULE-52: ausschliesslich ASCII-Bindestriche in diesem Block. */
.hub-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(38px, 6vh, 62px) 24px clamp(30px, 4.5vh, 48px);
  box-sizing: border-box;
  background:
    linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.78) 46%, rgba(255,255,255,.86)),
    #fff url(blueprint.jpg) 50% 38% / cover no-repeat;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.hub-hero .hub-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.hub-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 auto 16px;
}
.hub-hero h1::before {
  content: ""; display: block; width: 28px; height: 2px;
  background: var(--accent); margin: 0 auto 1.3rem;
}
.hub-hero .hub-sub {
  font-size: 17px; color: var(--muted); line-height: 1.62;
  max-width: 46rem; margin: 0 auto;
}
@media (max-width: 768px) {
  .hub-hero { padding-left: 20px; padding-right: 20px; }
}

/* FOLD-CONTAINER -- Stats-Leisten und das Funktionen-Raster stehen als direkte
   Kinder von .landing-content (vor dem ersten ---), sind also NICHT in
   .section > .section-inner gewickelt und liefen daher full-bleed ueber die
   volle Viewport-Breite (auf 1920px: 4 Chips mit Riesenluecken, Werte winzig;
   die 6 Bausteine rand-zu-rand "kaputt"). Auf die Content-Spalte (72rem)
   zentrieren, damit sie mit close-band, Artikel-Rastern und H2-Sektionen
   fluchten. Die reichen Fold-Assets (.er-timeline, .ls-decision, .fsc-steps)
   bleiben bewusst breiter (96rem) und sind hier NICHT erfasst.
   Child-Kombinator (0,2,0) schlaegt die Basis-Regel (0,1,0), Top/Bottom-Margin
   bleibt erhalten. RULE-52: nur ASCII-Bindestriche in diesem Block. */
.landing-content > .stats,
.landing-content > .stats-bar,
.landing-content > .fkt-grid {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
