/* ============================================================
   Patcarlis Website · styles.css
   Design-System: 02-design-system.md
   Regeln: nur #000000 und #FFFFFF. border-radius: 0. Keine Grautoene.
   ============================================================ */

/* ------------------------------------------------------------
   1. Font-Face (self-hosted, DSGVO-konform)
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('/assets/fonts/SchibstedGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('/assets/fonts/SchibstedGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('/assets/fonts/SchibstedGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/JetBrainsMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------
   2. Design-Tokens
   ------------------------------------------------------------ */
:root {
  color-scheme: light dark;

  --ink: #000000;
  --paper: #FFFFFF;

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 56px;
  --s-8: 64px;
  --s-9: 80px;

  --border-hair: 1px solid var(--ink);
  --border-thin: 1.5px solid var(--ink);
  --border-thick: 2px solid var(--ink);
  --radius: 0;

  --t-fast: 120ms;
  --t-base: 180ms;
  --t-slow: 240ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --wrap-max: 1120px;
  --wrap-narrow: 880px;

  --font-sans: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --nav-height: 64px;
}

html { color-scheme: light dark; }

/* ------------------------------------------------------------
   3. Reset und Basis
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  /* Fixed-Nav-Ausgleich fuer Anker-Links */
  scroll-padding-top: calc(var(--nav-height) + var(--s-4));
}

body {
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

main,
section,
header,
footer,
nav,
article,
aside {
  background: var(--paper);
  color: var(--ink);
}

img,
svg {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

hr {
  border: 0;
  border-top: var(--border-hair);
  margin: var(--s-6) 0;
}

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

/* ------------------------------------------------------------
   4. Typografie
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(40px, 6.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 68ch;
}

strong { font-weight: 500; }
em { font-style: italic; }

/* Mono-Label (Eyebrow, Steps, Meta) */
.label-mono,
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.eyebrow-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.eyebrow-breadcrumb li {
  display: inline;
}
.eyebrow-breadcrumb li + li::before {
  content: " · ";
}
.eyebrow-breadcrumb a {
  color: inherit;
}

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

/* muted: reduziertes Gewicht, NICHT reduzierte Farbe. Keine Opacity. */
.muted {
  font-weight: 400;
}

h1 .muted,
h2 .muted,
h3 .muted,
h4 .muted {
  font-weight: 400;
  color: var(--ink);
}

/* ------------------------------------------------------------
   5. Layout-Container
   ------------------------------------------------------------ */
.wrap,
.wrap-narrow {
  width: 100%;
  padding-inline: var(--s-4);
  margin-inline: auto;
}

.wrap { max-width: var(--wrap-max); }
.wrap-narrow { max-width: var(--wrap-narrow); }

@media (min-width: 600px) {
  .wrap,
  .wrap-narrow {
    padding-inline: var(--s-6);
  }
}

@media (min-width: 1024px) {
  .wrap,
  .wrap-narrow {
    padding-inline: var(--s-8);
  }
}

.section {
  padding-block: var(--s-8);
}

@media (min-width: 1024px) {
  .section { padding-block: var(--s-9); }
}

.section-inverted {
  background: var(--ink);
  color: var(--paper);
}
.section-inverted *,
.section-inverted h1,
.section-inverted h2,
.section-inverted h3,
.section-inverted h4,
.section-inverted p,
.section-inverted a,
.section-inverted .eyebrow,
.section-inverted .label-mono {
  color: var(--paper);
}
/* Semantische Container (header/footer/nav/article/aside) haben per
   Default background: var(--paper) — innerhalb einer invertierten
   Section würde das zu Weiß-auf-Weiß (bzw. Schwarz-auf-Schwarz im
   Dark Mode) führen. Hintergrund transparent machen, damit die
   Section-Farbe durchscheint. */
.section-inverted header,
.section-inverted footer,
.section-inverted nav,
.section-inverted article,
.section-inverted aside {
  background: transparent;
}

/* Grid-Klassen */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--s-5);
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
  .grid-2 { gap: var(--s-6); }
}

.section-header {
  margin-bottom: var(--s-7);
  max-width: 760px;
}

.section-header .eyebrow {
  display: block;
  margin-bottom: var(--s-4);
}

.section-header p {
  margin-top: var(--s-4);
  max-width: 640px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

/* ------------------------------------------------------------
   6. Komponenten
   ------------------------------------------------------------ */

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 0 var(--s-5);
  border: var(--border-thin);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}

@media (min-width: 768px) {
  .btn { min-height: 44px; }
}

.btn:hover,
.btn:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.btn[disabled],
.btn[aria-disabled="true"] {
  border-style: dashed;
  cursor: not-allowed;
  background: var(--paper);
  color: var(--ink);
}

.section-inverted .btn,
.section-inverted .btn-primary {
  border-color: var(--paper);
}
.section-inverted .btn {
  background: transparent;
  color: var(--paper);
}
.section-inverted .btn:hover,
.section-inverted .btn:focus-visible {
  background: var(--paper);
  color: var(--ink);
}
.section-inverted .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.section-inverted .btn-primary:hover,
.section-inverted .btn-primary:focus-visible {
  background: transparent;
  color: var(--paper);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.btn-row.center {
  justify-content: center;
}

/* Card */
.card {
  border: var(--border-thin);
  padding: var(--s-5);
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.section-inverted .card {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
}

/* Form-Field */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.form-field .optional,
.form-field .required {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  padding: var(--s-3);
  border: var(--border-thin);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  transition: border-width var(--t-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: var(--s-7);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-width: 3px;
  padding: calc(var(--s-3) - 1.5px);
}

.form-field [aria-invalid="true"] {
  border-width: 3px;
  padding: calc(var(--s-3) - 1.5px);
}

.form-row {
  display: grid;
  gap: var(--s-3);
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

/* Fieldset für optionale Prozess-Check-Felder: Default-Browser-Rahmen
   (grauer groove) neutralisieren, damit die Schwarz/Weiß-Regel hält. */
.form-fieldset {
  border: var(--border-thin);
  border-radius: 0;
  background: var(--paper);
  padding: var(--s-4);
  margin: 0 0 var(--s-5);
}
.form-fieldset legend {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 var(--s-2);
}
.form-fieldset .form-field:last-child {
  margin-bottom: 0;
}
.form-fieldset textarea {
  min-height: 64px;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--s-3);
  align-items: start;
  margin-block: var(--s-5);
  font-size: 14px;
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: var(--border-thin);
  border-radius: 0;
  background: var(--paper);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  display: inline-block;
}

.form-consent input[type="checkbox"]:checked {
  background: var(--ink);
}

.form-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.form-consent label {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
}

.form-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-success,
.form-error {
  border: var(--border-thin);
  padding: var(--s-4);
  margin-block: var(--s-4);
  font-size: 15px;
  line-height: 1.5;
  background: var(--paper);
  color: var(--ink);
}
.form-error {
  border-width: 3px;
  padding: calc(var(--s-4) - 1.5px);
}

.form-error::before {
  content: "FEHLER · ";
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.form-success::before {
  content: "GESENDET · ";
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.form-note {
  font-size: 13px;
  line-height: 1.5;
  margin-top: var(--s-4);
}

.form-note a { text-decoration: underline; text-underline-offset: 3px; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  border: var(--border-thin);
  padding: 6px var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
  line-height: 1;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--ink);
  /* Quadrat, kein Kreis */
  display: inline-block;
}

.section-inverted .badge {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
}
.section-inverted .badge::before { background: var(--paper); }

/* Alert */
.alert {
  border: var(--border-thin);
  padding: var(--s-5);
  display: grid;
  gap: var(--s-2);
}
.alert > .label-mono { color: var(--ink); }

/* Table */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--paper);
}

.table-scroll:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 700px) {
  .table {
    min-width: 560px;
  }
}

.table thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  padding: var(--s-4) var(--s-3);
  border-bottom: var(--border-thick);
  color: var(--ink);
  vertical-align: bottom;
}

.table tbody td {
  padding: var(--s-4) var(--s-3);
  border-bottom: var(--border-hair);
  vertical-align: top;
  line-height: 1.5;
}

.table tbody tr:last-child td { border-bottom: 0; }

.table td.num,
.table th.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.table tbody tr {
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.table tbody tr:hover {
  background: var(--ink);
  color: var(--paper);
}
.table tbody tr:hover td { border-bottom-color: var(--ink); }

.table-note {
  margin-top: var(--s-4);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--ink);
  max-width: 60ch;
}

/* ------------------------------------------------------------
   7. Nav und Footer
   ------------------------------------------------------------ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  color: var(--ink);
  border-bottom: var(--border-hair);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: var(--s-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--ink);
}

.brand-mark svg { width: 100%; height: 100%; }

.nav-links {
  display: none;
  gap: var(--s-6);
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  padding: var(--s-2) 0;
  position: relative;
  transition: font-weight var(--t-fast) var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  font-weight: 500;
}

.nav-links a[aria-current="page"] {
  font-weight: 500;
  border-bottom: var(--border-thick);
  padding-bottom: calc(var(--s-2) - 2px);
}

.nav-links .nav-cta {
  border: var(--border-thin);
  padding: var(--s-2) var(--s-4);
  border-bottom: var(--border-thin);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  font-weight: 500;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--ink);
  color: var(--paper);
  border-bottom: var(--border-thin);
  padding-bottom: var(--s-2);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: var(--border-thin);
  background: var(--paper);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform var(--t-base) var(--ease);
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: inline-flex;
  }
}

@media (max-width: 1023.98px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s-5) var(--s-4);
    border-top: var(--border-hair);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform var(--t-base) var(--ease), visibility 0s linear var(--t-base);
    z-index: 40;
  }
  .nav-links.is-open {
    display: flex;
    transform: translateY(0);
    visibility: visible;
    transition: transform var(--t-base) var(--ease), visibility 0s;
  }
  .nav-links a {
    padding: var(--s-4) 0;
    border-bottom: var(--border-hair);
    font-size: 20px;
  }
  .nav-links .nav-cta {
    border: var(--border-thin);
    padding: var(--s-4);
    margin-top: var(--s-4);
    text-align: center;
  }
}

/* Nav-Dropdown fuer "Branchen" --
   Klick auf "Branchen" -> Hub-Seite.
   Hover (Desktop) oder Focus -> Submenu mit allen Detailseiten.
   Auf Mobile (Burger) wird das Submenu inline als Akkordeon angezeigt. */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-arrow {
  display: inline-block;
  font-size: 0.7em;
  margin-left: 2px;
  transition: transform var(--t-fast) var(--ease);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility 0s linear var(--t-fast);
  z-index: 50;
}
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility 0s linear 0s;
  }
  .nav-dropdown:hover .nav-dropdown-arrow,
  .nav-dropdown:focus-within .nav-dropdown-arrow {
    transform: rotate(180deg);
  }
}
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility 0s linear 0s;
}
.nav-dropdown-menu li + li {
  border-top: 1px solid var(--ink);
}
.nav-dropdown-menu li a {
  display: block;
  padding: var(--s-3) var(--s-4);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}
@media (max-width: 1023.98px) {
  /* Im Burger-Menue: Submenu inline als Akkordeon,
     immer sichtbar (kein Hover/Click-Toggle noetig). */
  .nav-dropdown {
    display: block;
    width: 100%;
  }
  .nav-dropdown-trigger {
    display: block;
  }
  .nav-dropdown-arrow {
    display: none;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-left: 2px solid var(--ink);
    margin: var(--s-2) 0 var(--s-3) var(--s-4);
    min-width: 0;
    transition: none;
  }
  .nav-dropdown-menu li + li {
    border-top: none;
  }
  .nav-dropdown-menu li a {
    padding: var(--s-2) var(--s-3);
    font-size: 15px;
    border-bottom: var(--border-hair);
  }
}

/* Footer */
.site-footer {
  background: var(--paper);
  color: var(--ink);
  border-top: var(--border-thick);
  padding-block: var(--s-8) var(--s-6);
  margin-top: var(--s-9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s-5); }
}

.footer-brand {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-block;
  margin-bottom: var(--s-3);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.5;
  max-width: 34ch;
  color: var(--ink);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--s-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.footer-col a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  display: inline-block;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  border-bottom-color: var(--ink);
}

.footer-bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-4);
  border-top: var(--border-hair);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ------------------------------------------------------------
   8. Hero (shared across pages)
   ------------------------------------------------------------ */
.hero {
  padding-block: var(--s-9) var(--s-8);
  border-bottom: var(--border-hair);
}

.hero .eyebrow {
  display: inline-block;
  margin-bottom: var(--s-5);
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: var(--s-5);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  max-width: 760px;
  margin-bottom: var(--s-6);
}

/* ------------------------------------------------------------
   9. Seiten-spezifische Sektionen
   ------------------------------------------------------------ */

/* Home: Badge, Analogie, Prinzipien, Produkte, Zielgruppe, Markt, CTA */
.home-hero {
  padding-block: var(--s-9) var(--s-8);
}

.home-hero h1 {
  font-size: clamp(44px, 8vw, 80px);
  max-width: 20ch;
  margin-bottom: var(--s-5);
}

.home-hero .hero-sub { max-width: 760px; margin-bottom: var(--s-6); }

.home-hero .badge { margin-bottom: var(--s-5); }

/* Analogie */
.analogy {
  padding-block: var(--s-9);
  border-block: var(--border-hair);
  text-align: center;
}

.analogy .wrap-narrow {
  max-width: var(--wrap-narrow);
}

.analogy .eyebrow {
  display: block;
  margin-bottom: var(--s-6);
}

.analogy-quote {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin-inline: auto;
}

.analogy-quote .muted { font-weight: 400; }

.analogy-caption {
  margin-top: var(--s-6);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Prinzipien (Home + Preise + Ueber uns) */
.feature-grid {
  display: grid;
  gap: var(--s-6);
}
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.feature h3 { letter-spacing: -0.02em; }
.feature p { max-width: 46ch; }

/* Produkte (Home-Teaser + Preise-Tier-Karten Basis) */
.product-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  border: var(--border-thin);
  padding: var(--s-5);
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  min-height: 420px;
}

.product-card:hover,
.product-card:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.product-card .label-mono { color: inherit; }

.product-card h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.product-card p { max-width: 38ch; }

/* Nano + Voll Tiers innerhalb der Produktkarte */
.product-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  flex: 1;
}

.product-tier {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: var(--s-3);
  padding-block: var(--s-3);
  border-top: 1px solid currentColor;
}

.product-tier:last-child {
  border-bottom: 1px solid currentColor;
}

.product-tier dt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
}

.product-tier dd {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
}

.product-tier-price {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: inherit;
}

.product-tier-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: inherit;
  opacity: 1;
}

/* Detailseite: groesseres Tier-Block (leistungen.html) */
.product-tiers-detail {
  margin-top: var(--s-4);
  margin-bottom: var(--s-3);
  flex: none;
}

.product-tiers-detail .product-tier {
  grid-template-columns: 130px 1fr;
  padding-block: var(--s-4);
  gap: var(--s-4);
}

.product-tiers-detail .product-tier dt {
  font-size: 12px;
}

.product-tiers-detail .product-tier-price {
  font-size: 24px;
}

.product-tiers-detail .product-tier-meta {
  font-size: 12px;
}

.product-tier-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-top: var(--s-3);
  color: inherit;
  max-width: 60ch;
}

.product-section.inverted .product-tier-note,
.product-section.inverted .product-tiers-detail dt,
.product-section.inverted .product-tiers-detail .product-tier-price,
.product-section.inverted .product-tiers-detail .product-tier-meta {
  color: var(--paper);
}

.product-section.inverted .product-tier {
  border-top-color: var(--paper);
}

.product-section.inverted .product-tier:last-child {
  border-bottom-color: var(--paper);
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-4);
  border-top: 1.5px solid currentColor;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.product-card-arrow {
  width: 32px;
  height: 32px;
  border: 1.5px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1;
}

/* Beispiele (Home) */
.examples .section-header { max-width: 720px; }

.example-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .example-grid { grid-template-columns: repeat(2, 1fr); }
}

.example-card {
  border: var(--border-thin);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  background: var(--paper);
}

.example-card h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.example-card > p { max-width: 52ch; }

.example-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin: 0;
  padding-top: var(--s-4);
  border-top: 1.5px solid var(--ink);
}

.example-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.example-meta dt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.example-meta dd {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.examples-disclaimer {
  margin-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  max-width: 60ch;
  color: var(--ink);
}

/* Zielgruppe */
.audience-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}

.audience-card {
  border: var(--border-thin);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  background: var(--paper);
}

.audience-card h3 { letter-spacing: -0.02em; font-size: 22px; }
.audience-card p { flex: 1; max-width: 40ch; }

.audience-sub {
  padding-top: var(--s-4);
  border-top: var(--border-hair);
}

/* Markt-Zahlen (invertiert) */
.market {
  background: var(--ink);
  color: var(--paper);
}
.market .section-header h2 span.muted,
.market .section-header p,
.market .section-header .eyebrow { color: var(--paper); }

.market-grid {
  display: grid;
  gap: var(--s-7);
}
@media (min-width: 768px) {
  .market-grid { grid-template-columns: repeat(3, 1fr); }
}

.market-item {
  border-top: 2px solid var(--paper);
  padding-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.market-item .label-mono { color: var(--paper); }

.market-value {
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--paper);
}

.market-value-unit {
  font-size: 0.5em;
  margin-left: 4px;
  color: var(--paper);
  font-weight: 400;
}

.market-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--paper);
  max-width: 38ch;
}

/* CTA-Block */
.cta-block {
  padding-block: var(--s-9);
  text-align: center;
}

.cta-block .wrap-narrow {
  max-width: 760px;
}

.cta-block h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: var(--s-5);
  line-height: 1.1;
}

.cta-block p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0 auto var(--s-5);
}

.cta-block .btn-row {
  justify-content: center;
}

/* Leistungen: Produkt-Blocks mit Nummerierter Liste */
.product-section {
  padding-block: var(--s-9);
  border-bottom: var(--border-hair);
}
.product-section.inverted {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
}
.product-section.inverted .eyebrow,
.product-section.inverted h2,
.product-section.inverted h3,
.product-section.inverted p,
.product-section.inverted .label-mono {
  color: var(--paper);
}

.product-block {
  display: grid;
  gap: var(--s-7);
  align-items: start;
}
@media (min-width: 960px) {
  .product-block { grid-template-columns: 5fr 7fr; gap: var(--s-8); }
}
/* Grid-Kinder duerfen unter ihre Inhalts-Mindestbreite schrumpfen. Sonst zwingt
   ein langes Kompositum in der Ueberschrift (z. B. "Entscheidungsunterstuetzung")
   die linke Spalte breiter und quetscht die rechte numbered-list unleserlich. */
.product-block > * { min-width: 0; }

.product-name {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-block: var(--s-4) var(--s-5);
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Produkt-Icons (Kompass, Werkstatt, Betrieb) */
.product-icon {
  display: block;
  width: 56px;
  height: 56px;
  color: currentColor;
  margin-bottom: var(--s-4);
}
@media (min-width: 720px) {
  .product-icon {
    width: 72px;
    height: 72px;
  }
}
@media (min-width: 960px) {
  .product-icon {
    width: 88px;
    height: 88px;
  }
}

.product-tagline {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  margin-bottom: var(--s-5);
  max-width: 38ch;
}

.product-meta {
  display: inline-flex;
  align-items: center;
  padding: var(--s-2) var(--s-3);
  border: var(--border-thin);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
.product-section.inverted .product-meta {
  border-color: var(--paper);
  color: var(--paper);
}

.numbered-list {
  display: flex;
  flex-direction: column;
}

.numbered-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--s-4);
  padding-block: var(--s-4);
  border-top: var(--border-hair);
  align-items: start;
}

.product-section.inverted .numbered-list li {
  border-top-color: var(--paper);
}

.numbered-list li:first-child { border-top: 0; padding-top: 0; }

.numbered-list .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 5px;
}

.numbered-list .text {
  font-size: 17px;
  line-height: 1.5;
  max-width: 60ch;
}

/* Product flow (Uebergang) */
.flow {
  padding-block: var(--s-8);
  text-align: center;
  border-bottom: var(--border-hair);
}
.flow .wrap-narrow { max-width: 720px; }
.flow .eyebrow {
  display: block;
  margin-bottom: var(--s-4);
}
.flow-text {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  margin-inline: auto;
  max-width: 60ch;
}
.flow-text strong { font-weight: 500; }

/* Not-doing-Liste */
.not-doing-list {
  display: grid;
  gap: 0;
  border-top: var(--border-hair);
}
@media (min-width: 768px) {
  .not-doing-list {
    grid-template-columns: 1fr 1fr;
    border-top: 0;
  }
  .not-doing-list li:nth-child(-n+2) { border-top: var(--border-hair); }
  .not-doing-list li:nth-child(2n) { border-left: var(--border-hair); padding-left: var(--s-5); }
}

.not-doing-list li {
  padding: var(--s-5) 0;
  border-bottom: var(--border-hair);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  color: var(--ink);
}

.not-doing-list li::before {
  content: "×";
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1em;
  flex-shrink: 0;
  width: 1ch;
}

/* Preise-Tiers */
.tier-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .tier-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}

.tier {
  border: var(--border-thin);
  padding: var(--s-5);
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.tier-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.tier-featured .label-mono,
.tier-featured h3,
.tier-featured p,
.tier-featured li {
  color: var(--paper);
}

.tier-tag {
  color: var(--ink);
}
.tier-featured .tier-tag { color: var(--paper); }

.tier-name {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.tier-price {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.tier-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.tier-features li {
  padding: var(--s-3) 0;
  border-top: var(--border-hair);
  font-size: 15px;
  line-height: 1.45;
}

.tier-featured .tier-features li { border-top-color: var(--paper); }

.tier-features li:first-child { border-top: 0; padding-top: 0; }

.tier-note {
  padding-top: var(--s-4);
  border-top: var(--border-hair);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.tier-featured .tier-note { border-top-color: var(--paper); color: var(--paper); }

/* Rabatte */
.discounts-grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 720px) {
  .discounts-grid { grid-template-columns: 1fr 1fr; }
}

.discount {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--s-4);
  padding: var(--s-5);
  border: var(--border-thin);
  background: var(--paper);
  align-items: center;
}

.discount-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.discount-text strong {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.discount-text {
  font-size: 15px;
  line-height: 1.5;
}

.discounts-note {
  margin-top: var(--s-5);
  font-size: 15px;
  line-height: 1.5;
  max-width: 60ch;
}

/* Rechenbeispiel */
.calc {
  border: var(--border-thin);
  padding: var(--s-5);
  background: var(--paper);
}

.calc-context {
  padding-bottom: var(--s-5);
  border-bottom: var(--border-hair);
  margin-bottom: var(--s-5);
}

.calc-context h3 {
  font-size: 22px;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}
.calc-context p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 70ch;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
  padding-block: var(--s-4);
  border-top: var(--border-hair);
}
.calc-row:first-of-type { border-top: 0; padding-top: 0; }

@media (min-width: 800px) {
  .calc-row {
    grid-template-columns: 40px 1fr 160px 140px;
    gap: var(--s-4);
    align-items: start;
  }
}

.calc-row.total {
  border-top: var(--border-thick);
  padding-top: var(--s-4);
  margin-top: var(--s-2);
  font-weight: 500;
}

.calc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
  padding-top: 4px;
}

.calc-item strong {
  display: block;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.calc-item span {
  font-size: 14px;
  line-height: 1.5;
}

.calc-detail {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding-top: 4px;
}

.calc-amount {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}

@media (min-width: 800px) {
  .calc-amount { text-align: right; }
}

.calc-comparison {
  margin-top: var(--s-5);
  padding: var(--s-5);
  background: var(--ink);
  color: var(--paper);
}
.calc-comparison h3 {
  color: var(--paper);
  font-size: 22px;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}
.calc-comparison p {
  color: var(--paper);
  font-size: 15px;
  line-height: 1.55;
  max-width: 70ch;
}
.calc-comparison strong {
  color: var(--paper);
  font-weight: 500;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding-block: var(--s-5);
  border-top: var(--border-hair);
}
.faq-item:first-child { border-top: 0; padding-top: 0; }

.faq-q {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}

.faq-a {
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}
.faq-a strong { font-weight: 500; }

.section-inverted .faq-item { border-top-color: var(--paper); }

/* Ablauf: Phase-Grid */
.phase-section {
  padding-block: var(--s-8);
  border-bottom: var(--border-hair);
}
.phase-section:last-of-type { border-bottom: 0; }

.phase-grid {
  display: grid;
  gap: var(--s-6);
  align-items: start;
}
@media (min-width: 960px) {
  .phase-grid { grid-template-columns: 4fr 8fr; gap: var(--s-8); }
}
/* Gleiche Absicherung wie beim product-block: Grid-Kinder duerfen schrumpfen. */
.phase-grid > * { min-width: 0; }

.phase-number {
  font-family: var(--font-mono);
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin-bottom: var(--s-4);
}

.phase-timing {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--s-3);
}

.phase-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--s-4);
}

.phase-lead {
  font-size: 17px;
  line-height: 1.55;
  max-width: 46ch;
}

.agenda-list {
  display: flex;
  flex-direction: column;
}

.agenda-item {
  padding-block: var(--s-5);
  border-top: var(--border-hair);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
  align-items: start;
}

@media (min-width: 600px) {
  .agenda-item { grid-template-columns: 150px 1fr; gap: var(--s-5); }
}

.agenda-item:first-child { border-top: 0; padding-top: 0; }

.agenda-time {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 4px;
}

.agenda-title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-2);
}

.agenda-desc {
  font-size: 15px;
  line-height: 1.55;
  max-width: 70ch;
}

/* Prinzipien-Strip (Ablauf) */
.principles-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 720px) {
  .principles-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}
@media (min-width: 1100px) {
  .principles-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
}

.principle {
  border-top: 2px solid var(--paper);
  padding-top: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.principle-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
}

.principle-name {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.principle-desc {
  font-size: 15px;
  line-height: 1.55;
  max-width: 36ch;
  color: var(--paper);
}

/* Ueber uns: Mission + Founders */
.founders-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 800px) {
  .founders-grid { grid-template-columns: 1fr 1fr; }
}

.founder-card {
  border: var(--border-thin);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border: var(--border-thin);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  flex-shrink: 0;
}

.founder-avatar.placeholder {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.founder-name {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}

.founder-bio {
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
}

.placeholder-box {
  border: 1.5px dashed var(--ink);
  padding: var(--s-5);
  margin-top: var(--s-6);
  font-size: 14px;
  line-height: 1.5;
}
.placeholder-box strong {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--s-2);
}

.team-single-grid {
  max-width: 620px;
  margin-inline: auto;
}

/* Werte-Grid */
.values-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.value-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: inherit;
}

.value h3 { font-size: 24px; letter-spacing: -0.02em; }

.value p { font-size: 15px; line-height: 1.65; max-width: 44ch; }

.section-inverted .value-num,
.section-inverted .value h3,
.section-inverted .value p { color: var(--paper); }

/* Approach (Ueber uns · Unterschiede) */
.approach-grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 800px) {
  .approach-grid { grid-template-columns: 1fr 1fr; }
}

.approach-item {
  padding: var(--s-5);
  border: var(--border-thin);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.approach-item h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.approach-item p {
  font-size: 15px;
  line-height: 1.65;
  max-width: 44ch;
}

/* Post-30-Tage (Ablauf) */
.post-grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 900px) {
  .post-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
  padding: var(--s-5);
  border: var(--border-thin);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background: var(--paper);
}

.post-card h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}

/* Kontakt */
.contact-grid {
  display: grid;
  gap: var(--s-7);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.2fr 1fr; gap: var(--s-9); }
}

.contact-form-col h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  margin-bottom: var(--s-3);
}

.contact-form-col > p {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: var(--s-6);
  max-width: 50ch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.contact-info h2 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: var(--border-thick);
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-bottom: var(--s-4);
  border-bottom: var(--border-hair);
}
.contact-info-block:last-child { border-bottom: 0; padding-bottom: 0; }

.contact-info-value {
  font-size: 17px;
  line-height: 1.5;
}
.contact-info-value a {
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1px;
}
.contact-info-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: var(--s-2);
}

/* Expect-Strip */
.expect-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 800px) {
  .expect-grid { grid-template-columns: repeat(3, 1fr); }
}

.expect {
  padding-top: var(--s-4);
  border-top: 2px solid var(--paper);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.expect .label-mono { color: var(--paper); }
.expect h3 { font-size: 20px; color: var(--paper); letter-spacing: -0.015em; }
.expect p { font-size: 15px; line-height: 1.55; color: var(--paper); max-width: 34ch; }

/* Legal (Impressum + Datenschutz) */
.legal-content {
  padding-block: var(--s-8);
  font-size: 16px;
  line-height: 1.65;
}
.legal-content h1 { margin-bottom: var(--s-4); }
.legal-content .legal-lead {
  font-size: 18px;
  line-height: 1.55;
  max-width: 60ch;
  margin-bottom: var(--s-5);
}
.legal-content .legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: var(--s-8);
  padding-top: var(--s-4);
  border-top: var(--border-hair);
}
.legal-content h2 {
  font-size: 28px;
  font-weight: 500;
  margin-top: var(--s-8);
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.legal-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: var(--s-6);
  margin-bottom: var(--s-2);
  letter-spacing: -0.015em;
}
.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.65;
  max-width: 68ch;
}
.legal-content p { margin-bottom: var(--s-3); }
.legal-content ul {
  list-style: disc;
  margin: var(--s-3) 0 var(--s-3) var(--s-5);
}
.legal-content li { margin-bottom: var(--s-2); }
.legal-content strong { font-weight: 500; }
.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Fehlerseite 404 */
.error-page {
  padding-block: var(--s-9);
}
.error-page h1 {
  font-size: clamp(48px, 8vw, 96px);
  margin-block: var(--s-4);
  max-width: 18ch;
}
.error-page p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: var(--s-5);
}

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

.sr-only-focusable:focus-visible {
  position: fixed;
  top: var(--s-2);
  left: var(--s-2);
  z-index: 200;
  width: auto;
  height: auto;
  padding: var(--s-3) var(--s-4);
  margin: 0;
  clip: auto;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
}

.reveal {
  transform: translateY(12px);
  transition: transform var(--t-slow) var(--ease);
  will-change: transform;
}
.reveal.is-visible {
  transform: translateY(0);
}

.required {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-left: 4px;
}

[hidden] { display: none !important; }

/* Fokus Ring (global Fallback) */
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.section-inverted :focus-visible,
.market :focus-visible {
  outline-color: var(--paper);
}

/* ------------------------------------------------------------
   11. Dark Mode (nur Farb-Inversion der Token)
   ------------------------------------------------------------ */
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #FFFFFF;
    --paper: #000000;
  }
}

/* ------------------------------------------------------------
   12. Reduced Motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    transform: none !important;
  }
}

/* ------------------------------------------------------------
   13. Print
   ------------------------------------------------------------ */
@media print {
  .site-nav,
  .site-footer,
  .cta-block,
  .btn { display: none; }
  body { background: #FFFFFF; color: #000000; }
  a { text-decoration: underline; }
}

/* ------------------------------------------------------------
   14. Praxisbeispiele, Anwendungsfälle, Architektur (UX-Iteration)
   ------------------------------------------------------------ */
.example-box {
  margin-top: var(--s-5);
  padding: var(--s-4) var(--s-5);
  border: 2px solid currentColor;
}
.example-box .label-mono { display: block; margin-bottom: var(--s-2); }
.example-box p { margin: 0; max-width: 72ch; line-height: 1.6; }

/* Im Bausteine-/Produkt-Grid ist .example-box das dritte Grid-Kind und landete
   sonst in der schmalen linken 5fr-Spalte (gequetscht, rechts leer). Volle
   Breite nutzt den Raum und macht den Beispieltext lesbarer. */
.product-block .example-box { grid-column: 1 / -1; }

.product-section.inverted .example-box {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
}
.product-section.inverted .example-box .label-mono,
.product-section.inverted .example-box p,
.product-section.inverted .example-box strong {
  color: var(--paper);
}

.use-case-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .use-case-grid { grid-template-columns: repeat(3, 1fr); }
}
.use-case {
  border: 2px solid currentColor;
  padding: var(--s-5);
}
.use-case .label-mono { display: block; margin-bottom: var(--s-3); }
.use-case h3 { font-size: 18px; line-height: 1.3; margin: 0 0 var(--s-3); }
.use-case p { margin: 0 0 var(--s-2); font-size: 15px; line-height: 1.6; }
.use-case p:last-child { margin-bottom: 0; }

/* Kompakte Variante fuer die Hub-Seite: Pain-Satz + Produktliste + Detail-Link */
.use-case-grid-compact { gap: var(--s-3); }
.use-case-grid-compact .use-case { padding: var(--s-4); }
.use-case-pain { font-size: 14px; margin: 0 0 var(--s-3) !important; }
.use-case-products {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-3);
  font-size: 14px;
}
.use-case-products li {
  position: relative;
  padding-left: 1.1em;
  line-height: 1.7;
}
.use-case-products li::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 0;
}
.use-case-link { margin: 0 !important; font-size: 14px; }
.branchen-hub {
  padding: var(--s-6) 0 var(--s-7);
}
.branchen-hub .eyebrow {
  display: block;
  margin-bottom: var(--s-3);
}
.branchen-hub h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  margin: 0 0 var(--s-4);
}
.branchen-intro {
  font-size: 15px;
  max-width: 68ch;
  margin: 0 0 var(--s-5);
}
.branchen-hint {
  text-align: center;
  font-size: 14px;
  margin-top: var(--s-4);
}

.architecture-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .architecture-grid { grid-template-columns: repeat(2, 1fr); }
}
.architecture-item h3 { font-size: 17px; margin: 0 0 var(--s-2); }
.architecture-item p { margin: 0; font-size: 15px; line-height: 1.6; max-width: 56ch; }

/* ----------------------------------------------------------------
   Vokabel-Hierarchie Paket > Baustein > Agent
   Spec: docs/12-merge-products-agents.md
   ---------------------------------------------------------------- */

.vokabel-list {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
  margin: 0 0 var(--s-5);
  padding: 0;
}
@media (min-width: 720px) {
  .vokabel-list { grid-template-columns: repeat(3, 1fr); }
}
.vokabel-item {
  border: 2px solid currentColor;
  padding: var(--s-4);
}
.vokabel-item dt {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  margin: 0 0 var(--s-2);
}
.vokabel-item dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.vokabel-merksatz {
  border: 2px solid currentColor;
  padding: var(--s-4) var(--s-5);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 var(--s-5);
}
.vokabel-hint-section {
  padding-block: var(--s-4) 0;
}
.vokabel-hint-section .vokabel-hint {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 72ch;
}
.use-case .use-case-meta {
  border-top: 1px solid currentColor;
  padding-top: var(--s-3);
  margin-top: var(--s-4) !important;
  margin-bottom: 0 !important;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.use-case .use-case-meta-label {
  font-weight: 600;
}
.use-case .use-case-meta-sep {
  margin: 0 0.4em;
}

/* ----------------------------------------------------------------
   Blog (/aktuelles/) — Index, Article, Source-Annotation
   Spec: docs/09-blog-strategy.md
   ---------------------------------------------------------------- */

.post-index-hero {
  padding-block: var(--s-8) var(--s-6);
  border-bottom: var(--border-hair);
}
.post-index-hero .eyebrow { display: block; margin-bottom: var(--s-4); }
.post-index-hero h1 { margin: 0 0 var(--s-4); }
.post-index-hero p { margin: 0; max-width: 56ch; }
.post-index-hero a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
@media (min-width: 720px) {
  .post-index-hero { padding-block: var(--s-9) var(--s-7); }
}

.post-list { display: grid; gap: var(--s-6); }

.post-card {
  border-top: var(--border-hair);
  padding-top: var(--s-5);
}
.post-card:first-child { border-top: 0; padding-top: 0; }
.post-card .label-mono { display: block; margin-bottom: var(--s-3); }
.post-card h2 { font-size: 28px; line-height: 1.2; margin: 0 0 var(--s-3); }
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover { text-decoration: underline; text-underline-offset: 6px; }
.post-card p { margin: 0 0 var(--s-3); max-width: 60ch; }
.post-card-more {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.post-card-more:hover { text-decoration: underline; text-underline-offset: 4px; }
.post-empty {
  padding: var(--s-6);
  border: var(--border-thin);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
}

.post-article { padding-block: var(--s-7) var(--s-6); }
@media (min-width: 720px) {
  .post-article { padding-block: var(--s-9) var(--s-7); }
}
.post-header { margin-bottom: var(--s-6); border-bottom: var(--border-hair); padding-bottom: var(--s-5); }
.post-header .label-mono { display: block; margin-bottom: var(--s-4); }
.post-header h1 { margin: 0 0 var(--s-4); }
.post-byline {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.post-body h2 {
  font-size: 28px;
  line-height: 1.25;
  margin: var(--s-7) 0 var(--s-3);
}
.post-body h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: var(--s-5) 0 var(--s-3);
}
.post-body p { margin: 0 0 var(--s-4); max-width: 64ch; }
.post-body ul,
.post-body ol { margin: 0 0 var(--s-4) var(--s-5); padding: 0; }
.post-body li { margin-bottom: var(--s-2); max-width: 60ch; }
.post-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { text-decoration-thickness: 2px; }
.post-body code {
  font-family: var(--font-mono);
  font-size: 14px;
  border: var(--border-hair);
  padding: 1px 6px;
}
.post-body pre {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
  border: var(--border-thin);
  padding: var(--s-3) var(--s-4);
  overflow-x: auto;
  margin: 0 0 var(--s-4);
}
.post-body pre code { border: 0; padding: 0; }
.post-body table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 var(--s-4);
}
.post-body th,
.post-body td {
  border: var(--border-hair);
  padding: var(--s-2) var(--s-3);
  text-align: left;
  font-size: 15px;
}
.post-body th {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-body .source,
aside.source {
  display: block;
  border-left: var(--border-thick);
  padding: var(--s-2) var(--s-4);
  margin: 0 0 var(--s-4);
  font-size: 14px;
  line-height: 1.5;
  background: var(--paper);
  color: var(--ink);
}
aside.source .label-mono {
  display: inline-block;
  margin-right: var(--s-2);
}
aside.source a { color: var(--ink); }

.post-footer {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: var(--border-hair);
}
.post-back { margin: 0; }
.post-back a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.post-back a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ------------------------------------------------------------
   11. Form-Honeypot (Spamschutz, fuer Menschen unsichtbar)
   ------------------------------------------------------------ */
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ------------------------------------------------------------
   12. Problemgefuehrte Startseite (Schmerz -> Loesung -> Branchen -> Schritt)
   ------------------------------------------------------------ */

/* Vertrauenszeile direkt unter den Hero-CTAs */
.hero-note {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  max-width: 64ch;
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: var(--border-hair);
}

/* Acht Problemkarten */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 700px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}
.problem-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  border: var(--border-thin);
  background: var(--paper);
  padding: var(--s-5);
}
.problem-card .label-mono { display: block; }
.problem-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.problem-card p { margin: 0; font-size: 15px; line-height: 1.6; max-width: 60ch; }
.problem-card .problem-lead { font-weight: 500; }
.problem-card .problem-benefit {
  border-left: var(--border-thick);
  padding-left: var(--s-3);
}
.problem-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: var(--s-2) 0 0;
  padding: 0;
  margin-top: auto;
}
.problem-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  border: var(--border-hair);
  padding: 6px var(--s-2);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}
a.problem-tag:hover,
a.problem-tag:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

/* Branchen-Streifen (untergeordnet, nicht mehr Hauptstruktur) */
.branchen-strip .branchen-strip-note {
  margin-top: var(--s-4);
  font-size: 14px;
}

/* Proof-/Demo-Karten ("Was wir konkret zeigen koennen") */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 700px) {
  .demo-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}
@media (min-width: 1000px) {
  .demo-grid { grid-template-columns: repeat(3, 1fr); }
}
.demo-card {
  display: flex;
  flex-direction: column;
  border: var(--border-thin);
  background: var(--paper);
  padding: 0;
  overflow: hidden;
}

/* Stilisiertes S/W-UI-Mockup: schwarze Fläche, weiße Linien, Mono-Labels.
   Sektion ist NICHT .section-inverted, daher Umkehr lokal setzen. */
.demo-mock {
  flex: 1;
  background: var(--ink);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.demo-mock,
.demo-mock h3,
.demo-mock dt,
.demo-mock dd,
.demo-mock p,
.demo-mock span,
.demo-mock li { color: var(--paper); }

.demo-mock-bar {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--paper);
}
.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper);
  flex-shrink: 0;
}
.demo-mock-title { margin: 0; font-size: 16px; line-height: 1.2; }
.demo-mock-flow {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.demo-mock-block {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: var(--s-2);
}
.demo-mock-block dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}
.demo-mock-block dd { margin: 0; font-size: 13px; line-height: 1.5; }
.demo-check,
.demo-cite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.demo-check { flex-wrap: wrap; gap: var(--s-1) var(--s-3); }
.demo-cite { flex-direction: column; gap: var(--s-1); }
.demo-check li,
.demo-cite li { font-size: 13px; line-height: 1.5; }
.demo-check li::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1px solid var(--paper);
  border-radius: 0;
  margin-right: 6px;
  vertical-align: -1px;
}
.demo-cite li::before { content: "[ "; font-family: var(--font-mono); }
.demo-cite li::after { content: " ]"; font-family: var(--font-mono); }
.demo-mock-human {
  margin: 0;
  margin-top: auto;
  padding-top: var(--s-2);
  border-top: 1px solid var(--paper);
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  gap: var(--s-2);
  align-items: baseline;
}
.demo-mock-human .label-mono { font-size: 10px; flex-shrink: 0; }
.demo-pilot { margin: 0; padding: var(--s-3); font-size: 13px; line-height: 1.5; }
.demo-disclaimer { margin-top: var(--s-5); font-size: 14px; max-width: 72ch; }

@media (min-width: 1000px) {
  .demo-mock { padding: var(--s-4); }
  .demo-mock-block dd,
  .demo-check li,
  .demo-cite li { font-size: 14px; }
  .demo-pilot { padding: var(--s-4); font-size: 14px; }
}
@media (max-width: 480px) {
  .demo-mock-block { grid-template-columns: 1fr; gap: 2px; }
  .demo-mock-block dt { font-size: 9px; }
  .demo-mock-block dd,
  .demo-check li,
  .demo-cite li,
  .demo-pilot { font-size: 12px; }
}

/* ------------------------------------------------------------
   13. Branchen-/Einsatzfeld-Detailseiten (problemgeführt)
   ------------------------------------------------------------ */

/* Mensch-in-der-Schleife-Hinweis innerhalb einer Problemkarte */
.problem-human {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-top: var(--border-hair);
  padding-top: var(--s-3);
  margin-top: auto;
}

/* "Empfohlener erster Pilot" — hervorgehobener Block */
.pilot-card {
  border: var(--border-thick);
  background: var(--paper);
  padding: var(--s-6);
}
.section-inverted .pilot-card {
  border-color: var(--paper);
  background: transparent;
}
.pilot-card .label-mono { display: block; margin-bottom: var(--s-3); }
.pilot-card h3 { margin: 0 0 var(--s-3); font-size: 24px; letter-spacing: -0.02em; }
.pilot-card .pilot-why { list-style: none; padding: 0; margin: var(--s-4) 0 0; display: grid; gap: var(--s-2); }
.pilot-card .pilot-why li { position: relative; padding-left: var(--s-5); font-size: 15px; line-height: 1.6; }
.pilot-card .pilot-why li::before { content: "→"; position: absolute; left: 0; font-family: var(--font-mono); }

/* Proof: "So könnte ein erster Pilot aussehen" — Spezifikations-Liste */
.pilot-spec {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: var(--border-hair);
}
@media (min-width: 600px) { .pilot-spec { grid-template-columns: max-content 1fr; } }
.pilot-spec > div {
  display: contents;
}
.pilot-spec dt {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: var(--s-3) var(--s-4) var(--s-3) 0;
  border-bottom: var(--border-hair);
}
.pilot-spec dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  padding: var(--s-3) 0;
  border-bottom: var(--border-hair);
}
@media (max-width: 599px) { .pilot-spec dt { border-bottom: 0; padding-bottom: 0; } }
