/* Operant — site stylesheet. Tokens follow the "Industry" design system of the original draft. */

:root {
  --color-bg: #f2f2f3;
  --color-surface: #e9e9ea;
  --color-text: #1d1f20;
  --color-accent: #2b5fa8;
  --color-accent-100: #e9f0fb;
  --color-accent-200: #d2e0f6;
  --color-accent-600: #25529a;
  --color-accent-700: #2b5fa8;
  --color-accent-800: #1f4a85;
  --color-accent-900: #17345f;
  --color-ok: #2f7d4f;
  --color-divider: color-mix(in srgb, #1d1f20 16%, transparent);
  --color-muted: color-mix(in srgb, #1d1f20 70%, transparent);
  --color-soft: color-mix(in srgb, #1d1f20 78%, transparent);
  --font-heading: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --shadow-md: 0 3px 10px color-mix(in srgb, #2b2b2d 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2b2b2d 22%, transparent);
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
p { margin: 0; }
a { color: var(--color-accent-700); text-underline-offset: 3px; }
a:hover { color: var(--color-accent-900); }
img, svg { display: block; max-width: 100%; }
figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }
.section { padding: 72px 0 60px; }
.section-hero { padding: 80px 0 64px; }
.section-last { padding-bottom: 80px; }
.kicker {
  display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; color: var(--color-accent-700); margin-bottom: 12px;
}
.rule { height: 1px; border: 0; margin: 0 0 28px; background: var(--color-divider); }
.h2 { font-size: clamp(28px, 3.2vw, 40px); max-width: 28ch; }
.lead { font-size: 16px; line-height: 1.5; margin-top: 16px; max-width: 60ch; color: var(--color-soft); }
.g2 { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 32px clamp(24px, 5vw, 96px); align-items: start; }
.g2-even { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.g3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 48px); margin-top: 44px; }
.g6 { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; margin-top: 44px; }
.mt-44 { margin-top: 44px; }

/* Blueprint frame */
.blueprint { position: relative; border: 1px solid var(--color-divider); background: transparent; }
.blueprint > .corner {
  position: absolute; width: 11px; height: 11px;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.blueprint > .corner::before, .blueprint > .corner::after { content: ""; position: absolute; background: currentColor; }
.blueprint > .corner::before { left: 5px; top: 0; width: 1px; height: 100%; }
.blueprint > .corner::after { top: 5px; left: 0; width: 100%; height: 1px; }
.blueprint > .corner.tl { top: -6px; left: -6px; }
.blueprint > .corner.tr { top: -6px; right: -6px; }
.blueprint > .corner.bl { bottom: -6px; left: -6px; }
.blueprint > .corner.br { bottom: -6px; right: -6px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 15px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 1px solid var(--color-divider);
  padding: 12px 20px; border-radius: 0; transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-800); color: #fff; }
.btn-primary:active { background: var(--color-accent-900); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); color: var(--color-text); }
.btn-sm { font-size: 13px; padding: 8px 14px; }
.btn-lg { font-size: 16px; padding: 14px 26px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 20px;
  padding: 12px max(20px, calc((100% - var(--max)) / 2 + 20px));
  border-bottom: 1px solid var(--color-divider);
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(8px);
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px; margin-right: auto;
  font-family: var(--font-heading); font-weight: 600; font-size: 20px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--color-text); text-decoration: none;
}
.nav-brand img { width: 28px; height: 28px; border-radius: 6px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: inherit; text-decoration: none; font-size: 14px; }
.nav-links a:hover { color: var(--color-accent-700); }

/* Hero */
.hero { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 48px clamp(32px, 5vw, 80px); align-items: center; }
.hero h1 {
  font-size: clamp(40px, 5.2vw, 72px); line-height: 1.02; letter-spacing: 0.01em;
  margin-left: -0.05em; overflow-wrap: normal;
}
.hero h1 .accent { color: var(--color-accent-700); }
.hero-lead { font-size: 17px; line-height: 1.5; max-width: 56ch; margin-top: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.trust { display: grid; grid-template-columns: repeat(2, max-content); justify-content: start; gap: 8px 32px; margin-top: 20px; font-size: 13.5px; color: var(--color-muted); }
.trust li { display: grid; grid-template-columns: 6px 1fr; gap: 10px; align-items: center; white-space: nowrap; }
.trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }

/* Planner mockup (pure CSS, mirrors the app's daily planner) */
.mock { background: #fff; box-shadow: var(--shadow-lg); font-family: var(--font-body); font-size: 11px; color: var(--color-text); overflow: hidden; border: 1px solid var(--color-divider); }
.mock-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--color-divider); }
.mock-title b { display: block; font-size: 13px; font-weight: 700; }
.mock-title span { color: var(--color-muted); font-size: 10px; }
.mock-tabs { display: flex; gap: 4px; }
.mock-tabs span { padding: 4px 8px; border: 1px solid var(--color-divider); font-size: 10px; color: var(--color-muted); white-space: nowrap; }
.mock-tabs .on { background: var(--color-bg); color: var(--color-text); font-weight: 600; }
.mock-tabs .cta { background: var(--color-text); color: #fff; border-color: var(--color-text); font-weight: 600; }
.mock-body { display: grid; grid-template-columns: minmax(0, 1fr) 140px; }
.mock-plan { min-width: 0; }
.mock-date { display: flex; align-items: center; gap: 8px; padding: 8px 12px; font-size: 11px; border-bottom: 1px solid var(--color-divider); }
.mock-date .chev { width: 18px; height: 18px; display: grid; place-items: center; border: 1px solid var(--color-divider); color: var(--color-muted); font-size: 12px; }
.mock-date em { margin-left: auto; font-style: normal; padding: 3px 8px; border: 1px solid var(--color-divider); color: var(--color-muted); font-size: 10px; }
.mock-sched { display: grid; grid-template-columns: 98px minmax(0, 1fr); }
.mock-res { display: flex; align-items: center; gap: 7px; padding: 8px 10px; border-right: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); min-width: 0; }
.mock-res i { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--color-accent-100); color: var(--color-accent-700); font-style: normal; font-size: 9px; font-weight: 700; display: grid; place-items: center; }
.mock-res b { display: block; font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-res small { display: block; font-size: 9px; color: var(--color-muted); }
.mock-hdr { font-weight: 600; font-size: 11px; }
.mock-hours { display: grid; grid-template-columns: repeat(8, 1fr); border-bottom: 1px solid var(--color-divider); }
.mock-hours span { text-align: center; padding: 8px 0; font-family: var(--font-mono); font-size: 9.5px; color: var(--color-muted); border-right: 1px solid var(--color-divider); }
.mock-hours span:last-child { border-right: 0; }
.mock-track {
  display: grid; grid-template-columns: repeat(8, 1fr); align-items: center; min-height: 40px; padding: 5px 0;
  border-bottom: 1px solid var(--color-divider);
  background: repeating-linear-gradient(to right, transparent 0, transparent calc(12.5% - 1px), var(--color-divider) calc(12.5% - 1px), var(--color-divider) 12.5%);
}
.bar { margin: 0 2px; padding: 5px 5px; font-size: 10px; font-weight: 600; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #c5d7f1; color: #12263d; border-left: 3px solid #2b5fa8; border-radius: 2px; }
.bar-alt { background: #bfe3cf; border-left-color: #2f7d4f; color: #10321f; }
.bar-urgent { background: #ffd2bd; border-left-color: #c2410c; color: #5a1e07; }
.mock-side { border-left: 1px solid var(--color-divider); padding: 10px; display: flex; flex-direction: column; gap: 8px; background: #fafafa; min-width: 0; }
.mock-side-h { font-size: 9px; letter-spacing: 0.05em; white-space: nowrap; text-transform: uppercase; font-weight: 700; color: var(--color-muted); }
.mock-side-h span { color: var(--color-accent-700); }
.mock-card { background: #fff; border: 1px solid var(--color-divider); border-top: 2px solid var(--color-accent); padding: 7px 8px; }
.mock-card-h { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9px; color: var(--color-muted); margin-bottom: 3px; }
.mock-card b { display: block; font-size: 11px; font-weight: 600; line-height: 1.2; }
.mock-card small { display: block; font-size: 9px; color: var(--color-muted); margin-top: 2px; }
.prio { font-family: var(--font-body); font-weight: 700; font-size: 8.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-ok); }
.prio::before { content: "●"; margin-right: 3px; }
.prio-hi { color: #c2410c; }
.mock-map {
  position: relative; flex: 1; min-height: 96px; margin-top: auto; border: 1px solid var(--color-divider); overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 34%, #fff 34% 40%, transparent 40% 100%),
    linear-gradient(0deg, transparent 0 55%, #fff 55% 62%, transparent 62% 100%),
    linear-gradient(35deg, transparent 0 48%, #e3e5e8 48% 52%, transparent 52% 100%),
    radial-gradient(circle at 78% 30%, #cfe3cd 0 18px, transparent 19px),
    #edf0ea;
}
.pin { position: absolute; left: 52%; top: 42%; width: 12px; height: 12px; border-radius: 50% 50% 50% 0; background: #2b5fa8; transform: rotate(-45deg); box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.pin::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: #fff; }
.pin-2 { left: 24%; top: 66%; background: #c2410c; }

/* Before / after */
.compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin-top: 44px; }
.compare > div { padding: 28px clamp(20px, 3vw, 40px); }
.compare > div + div { border-left: 1px solid var(--color-divider); }
.compare h3 { font-size: 14px; letter-spacing: 0.1em; margin-bottom: 18px; }
.compare .neg h3 { color: var(--color-muted); }
.compare .pos h3 { color: var(--color-accent-700); }
.compare li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 15px; line-height: 1.45; padding: 7px 0; color: var(--color-soft); }
.compare li::before { font-weight: 700; }
.compare .neg li::before { content: "×"; color: var(--color-muted); }
.compare .pos li::before { content: "✓"; color: var(--color-accent-700); }
.proof { margin-top: 20px; font-size: 14px; color: var(--color-muted); }

/* Cards */
.card { padding: 20px 16px 24px; }
.card .num { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 36px; line-height: 1; color: var(--color-accent-700); font-feature-settings: "tnum" 1; }
.card h3 { font-size: 20px; margin-top: 16px; hyphens: auto; overflow-wrap: anywhere; }
.card p { font-size: 14px; line-height: 1.5; margin-top: 10px; color: var(--color-soft); }
.card-k { display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--color-accent-700); }
.card-lg { padding: 24px; }
.card-lg h3 { font-size: 24px; margin-top: 12px; }
.card-lg li { display: grid; grid-template-columns: 12px 1fr; gap: 10px; font-size: 15px; line-height: 1.5; color: color-mix(in srgb, var(--color-text) 85%, transparent); }
.card-lg li::before { content: ""; width: 12px; height: 1px; background: var(--color-accent); margin-top: 11px; }
.card-lg ul { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* Table */
.table { width: 100%; border-collapse: collapse; font-size: 14px; table-layout: fixed; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-muted); padding: 12px 20px 12px 0; border-bottom: 1px solid var(--color-divider);
}
.table th:first-child, .table td:first-child { padding-left: 20px; width: 64px; }
.table td { padding: 14px 20px 14px 0; border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent); vertical-align: middle; }
.table tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }
.table .n { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--color-accent-700); font-feature-settings: "tnum" 1; }
.table .t { font-family: var(--font-heading); font-weight: 600; font-size: 20px; letter-spacing: 0.02em; text-transform: uppercase; }
.table .d { font-size: 15px; line-height: 1.5; color: var(--color-soft); }

/* Definition list (Ansatz) */
.dl { margin: 0; display: grid; }
.dl > div { display: grid; grid-template-columns: minmax(140px, 1fr) minmax(0, 2fr); gap: 16px; padding: 16px 0; border-top: 1px solid var(--color-divider); }
.dl dt { font-family: var(--font-heading); font-weight: 600; font-size: 20px; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.2; }
.dl dd { margin: 0; font-size: 15px; line-height: 1.5; color: var(--color-soft); }

/* Steps */
.step { border-top: 1px solid var(--color-text); padding-top: 16px; }
.step .num { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 48px; line-height: 1; color: var(--color-accent-700); }
.step h3 { font-size: 24px; margin-top: 16px; }
.step p { font-size: 15px; line-height: 1.5; margin-top: 10px; color: var(--color-soft); }

/* FAQ */
.faq { max-width: 800px; }
.faq details { border-bottom: 1px solid var(--color-divider); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 18px 0; cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 22px; letter-spacing: 0.01em; line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--color-accent-700); }
.faq summary svg { flex: none; color: var(--color-accent-700); transition: transform .2s; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details p { padding: 0 44px 20px 0; font-size: 15px; line-height: 1.55; color: color-mix(in srgb, var(--color-text) 85%, transparent); }

/* Contact */
.contact { padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px clamp(24px, 5vw, 80px); }
.contact h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; max-width: 16ch; }
.contact .lead { max-width: 40ch; }
.contact-mail { display: inline-block; margin-top: 24px; font-family: var(--font-heading); font-weight: 600; font-size: 22px; letter-spacing: 0.02em; }
.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: var(--color-muted); }
.input {
  width: 100%; min-height: 44px; padding: 10px 12px; font: inherit; font-size: 15px; color: var(--color-text);
  background: #fff; border: 1px solid var(--color-divider); border-radius: 0; caret-color: var(--color-accent);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 120px; resize: vertical; }
.check { display: flex; align-items: center; gap: 10px; font-size: 15px; cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--color-accent); margin: 0; }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.form-note { font-size: 12.5px; color: var(--color-muted); max-width: 44ch; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* Footer */
.footer {
  padding: 32px 0 48px; border-top: 1px solid var(--color-divider);
  display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--color-muted);
}
.footer ul { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--color-accent-700); }

/* Legal prose pages */
.legal { max-width: 760px; padding: 64px 0 80px; }
.legal h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 8px; }
.legal h2 { font-size: 22px; margin: 36px 0 10px; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.6; color: color-mix(in srgb, var(--color-text) 88%, transparent); }
.legal p + p { margin-top: 10px; }
.legal ul { list-style: disc; padding-left: 20px; display: grid; gap: 6px; }
.legal .todo { background: #fff3c4; border: 1px dashed #c9a227; padding: 1px 6px; font-family: var(--font-mono); font-size: 13px; }
.legal address { font-style: normal; }
.legal .meta { font-size: 13px; color: var(--color-muted); margin-bottom: 28px; }

/* Responsive */
@media (max-width: 1200px) {
  .g6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero h1 { max-width: 16ch; }
}
@media (max-width: 880px) {
  .section { padding: 56px 0 44px; }
  .g2, .g2-even, .g3, .contact, .form { grid-template-columns: 1fr; }
  .g6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare { grid-template-columns: 1fr; }
  .compare > div + div { border-left: 0; border-top: 1px solid var(--color-divider); }
  .nav-links { display: none; }
  .table .t { font-size: 17px; }
  .table th:nth-child(1), .table td:nth-child(1) { display: none; }
  .table th, .table td { padding-left: 16px; }
}
@media (max-width: 520px) {
  .g6 { grid-template-columns: 1fr; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .mock-tabs .cta { display: none; }
  .hero-cta .btn, .form-foot .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
  .trust { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .faq summary svg { transition: none; }
}

/* Phase 2: subheadlines, TOC, claims, function & industry accordions, news */
.sub { font-family: var(--font-heading); font-weight: 600; font-size: 18px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--color-accent-700); margin-top: 10px; }
.toc { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; margin-top: 56px; padding-top: 16px; border-top: 1px solid var(--color-divider); font-size: 13px; }
.toc span { font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); font-size: 11px; }
.toc a { color: var(--color-text); text-decoration: none; }
.toc a:hover { color: var(--color-accent-700); text-decoration: underline; }
.h3-line { font-size: 22px; margin-top: 44px; }
.claims { margin-top: 20px; }
.claims h4 { font-size: 22px; margin-top: 10px; }
.claims p { font-size: 14.5px; line-height: 1.5; margin-top: 10px; color: var(--color-soft); }
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 28px; }
.quote { border-left: 2px solid var(--color-accent); padding: 4px 0 4px 18px; }
.quote p { font-size: 16px; line-height: 1.5; font-style: italic; }
.quote footer { margin-top: 8px; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-muted); }
.fn { margin-top: 32px; max-width: 900px; }
.fn details, .branchen details { border-bottom: 1px solid var(--color-divider); }
.fn summary, .branchen summary { display: flex; align-items: center; gap: 16px; padding: 18px 0; cursor: pointer; list-style: none; font-family: var(--font-heading); font-weight: 600; font-size: 22px; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.2; }
.fn summary::-webkit-details-marker, .branchen summary::-webkit-details-marker { display: none; }
.fn summary span:first-child { flex: 1; }
.fn summary svg, .branchen summary svg { flex: none; margin-left: auto; color: var(--color-accent-700); transition: transform .2s; }
.fn details[open] summary svg, .branchen details[open] summary svg { transform: rotate(45deg); }
.fn summary:hover, .branchen summary:hover { color: var(--color-accent-700); }
.fn ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 32px; padding: 0 44px 22px 0; }
.fn li { display: grid; grid-template-columns: 12px 1fr; gap: 10px; font-size: 15px; line-height: 1.5; color: color-mix(in srgb, var(--color-text) 85%, transparent); }
.fn li::before { content: ""; width: 12px; height: 1px; background: var(--color-accent); margin-top: 11px; }
.branchen { margin-top: 32px; border-top: 1px solid var(--color-divider); }
.branchen summary { padding: 16px 0; }
.branchen summary .n { flex: none; width: 36px; font-family: var(--font-body); font-size: 13px; letter-spacing: 0.08em; color: var(--color-accent-700); font-feature-settings: "tnum" 1; }
.branchen summary .t { flex: 0 0 auto; min-width: 0; font-size: 20px; }
.branchen summary .d { flex: 1; font-family: var(--font-body); font-weight: 400; font-size: 15px; letter-spacing: 0; text-transform: none; color: var(--color-soft); }
.branchen details p { max-width: 72ch; padding: 0 44px 22px 36px; font-size: 15.5px; line-height: 1.6; color: color-mix(in srgb, var(--color-text) 88%, transparent); }
.neu { margin-top: 28px; max-width: 800px; display: grid; }
.neu li { display: grid; grid-template-columns: 140px 1fr; gap: 4px 20px; padding: 14px 0; border-top: 1px solid var(--color-divider); font-size: 15px; line-height: 1.5; }
.neu time { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-muted); padding-top: 3px; grid-row: span 2; }
.neu b { font-family: var(--font-heading); font-weight: 600; font-size: 19px; letter-spacing: 0.02em; text-transform: uppercase; }
.neu span { color: var(--color-soft); }
@media (max-width: 880px) {
  .fn ul, .quotes { grid-template-columns: 1fr; }
  .branchen summary { flex-wrap: wrap; gap: 6px 12px; }
  .branchen summary .d { flex-basis: 100%; padding-left: 48px; }
  .branchen details p { padding-left: 0; }
  .neu li { grid-template-columns: 1fr; }
  .neu time { grid-row: auto; }
}
