@font-face{font-family:'Archivo';font-weight:500 700;font-style:normal;font-display:swap;src:url('/fonts/archivo-500-700.woff2') format('woff2')}
@font-face{font-family:'Instrument Sans';font-weight:400 500;font-style:normal;font-display:swap;src:url('/fonts/instrument-sans-400-500.woff2') format('woff2')}
@font-face{font-family:'Instrument Serif';font-weight:400;font-style:italic;font-display:swap;src:url('/fonts/instrument-serif-400-italic.woff2') format('woff2')}
@font-face{font-family:'IBM Plex Mono';font-weight:400;font-style:normal;font-display:swap;src:url('/fonts/ibm-plex-mono-400.woff2') format('woff2')}
@font-face{font-family:'IBM Plex Mono';font-weight:500;font-style:normal;font-display:swap;src:url('/fonts/ibm-plex-mono-500.woff2') format('woff2')}
:root{
  /* Grundflaechen */
  --bone: #F1F0EB;
  --ink: #0A1220;
  --soft: #4A5666;
  --dim: #8B93A1;
  --line: #D9D7CF;
  --field-border: #C6C3B9;
  --white: #FFFFFF;
  --error: #A81C2A;
  --ph-line: #B98B00;
  --ph-text: #7A5C00;

  /* Tagesspektrum, Stufe 0 (Morgen) bis 6 (Abend) */
  --fill-0: #00B8F8;  --text-0: #0073A8;  --light-0: #2ED0FF;  --tint-0: #E4F6FD;
  --fill-1: #109BF8;  --text-1: #0062C4;  --light-1: #4FA1FF;  --tint-1: #E6F0FE;
  --fill-2: #1B6FF7;  --text-2: #1B54F5;  --light-2: #6B8BFF;  --tint-2: #E8EDFE;
  --fill-3: #2E45F0;  --text-3: #3A2FD0;  --light-3: #9B7CFF;  --tint-3: #EBEAFD;
  --fill-4: #6B34E6;  --text-4: #6B2AC4;  --light-4: #B45CF5;  --tint-4: #F0EAFD;
  --fill-5: #9A27D4;  --text-5: #8E1FB4;  --light-5: #D45FE0;  --tint-5: #F5E9FB;
  --fill-6: #C81FA6;  --text-6: #A81C86;  --light-6: #F06BB8;  --tint-6: #FAE8F4;

  /* Verlaeufe */
  --spectrum: linear-gradient(90deg,#00B8F8,#109BF8,#1B6FF7,#2E45F0,#6B34E6,#9A27D4,#C81FA6);
  --grad-heading: linear-gradient(96deg,#00B8F8,#2E45F0 55%,#C81FA6);
  --grad-heading-dark: linear-gradient(96deg,#2ED0FF,#B45CF5);
  --grad-cta: linear-gradient(104deg,#109BF8,#6B34E6 58%,#C81FA6);
  --grad-button: linear-gradient(96deg,#1B6FF7,#6B34E6);

  /* Schrift */
  --font-display: 'Archivo','Segoe UI',system-ui,sans-serif;
  --font-body: 'Instrument Sans','Segoe UI',system-ui,sans-serif;
  --font-serif: 'Instrument Serif',Georgia,serif;
  --font-mono: 'IBM Plex Mono',ui-monospace,monospace;

  /* Raster */
  --page-max: 1280px;
  --gutter-desktop: 88px;
  --gutter-mobile: 20px;
  --section-desktop: 80px;
  --section-mobile: 40px;
  --rule: 1px;
  --radius: 2px;
}

/* tracktime247 – Stylesheet der Website. Designwerte stehen in tokens.css (wird beim Bauen davorgesetzt). Umbruchpunkte: ab 1024 px Desktop, 768–1023 px Tablet, darunter Handy. */

/* Bewusste Abweichungen von tokens.css, damit die Vorgabe "Textkontrast mindestens 4,5:1, ab 24 px mindestens 3:1" (design-system.md, Barrierefreiheit) eingehalten wird:
   - Blass (#8B93A1) erreicht auf Knochenweiß nur etwa 2,7:1 und ist für Text zu hell. Hier wird für Text ein dunklerer Ton verwendet.
   - Der Überschriftenverlauf beginnt mit einem etwas tieferen Cyan (#0089C8 statt #00B8F8): 3,4:1 statt 2,0:1 auf Knochenweiß (große Schrift).
   - Der Verlauf des Abschlussbands beginnt mit #1B6FF7 statt #109BF8: weiße Schrift 4,6:1 statt 3,0:1. */
:root {
  --dim: #5F6B7C;
  --grad-heading: linear-gradient(96deg, #0089C8, #2E45F0 55%, #C81FA6);
  --grad-cta: linear-gradient(104deg, #1B6FF7, #6B34E6 58%, #C81FA6);
}

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

html { background: var(--bone); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.042em;
  text-wrap: balance;
}
h3, h4 { letter-spacing: -0.028em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

a { color: var(--text-2); text-decoration: none; }
a:hover { color: var(--ink); text-decoration: underline; }
:focus-visible { outline: 2px solid var(--text-2); outline-offset: 2px; }

@media (min-width: 768px) { body { font-size: 16.5px; } }
@media (min-width: 1024px) { body { font-size: 17px; } }

/* Hilfsklassen aus dem Entwurf */
.mn { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
.tnum { font-family: var(--font-mono); font-weight: 500; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.sub { color: var(--soft); }
.dim { color: var(--dim); }
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 50; background: var(--ink); color: var(--bone); padding: 10px 16px; border-radius: var(--radius); font-family: var(--font-display); font-weight: 600; }
.skip:focus { top: 12px; color: var(--bone); text-decoration: none; }

/* Tagesspektrum: jede Stufe setzt vier Variablen */
.lv-0 { --fill: var(--fill-0); --text: var(--text-0); --light: var(--light-0); --tint: var(--tint-0); }
.lv-1 { --fill: var(--fill-1); --text: var(--text-1); --light: var(--light-1); --tint: var(--tint-1); }
.lv-2 { --fill: var(--fill-2); --text: var(--text-2); --light: var(--light-2); --tint: var(--tint-2); }
.lv-3 { --fill: var(--fill-3); --text: var(--text-3); --light: var(--light-3); --tint: var(--tint-3); }
.lv-4 { --fill: var(--fill-4); --text: var(--text-4); --light: var(--light-4); --tint: var(--tint-4); }
.lv-5 { --fill: var(--fill-5); --text: var(--text-5); --light: var(--light-5); --tint: var(--tint-5); }
.lv-6 { --fill: var(--fill-6); --text: var(--text-6); --light: var(--light-6); --tint: var(--tint-6); }

/* Raster */
.wrap { width: 100%; max-width: var(--page-max); margin-inline: auto; padding-inline: var(--gutter); }
:root { --gutter: var(--gutter-mobile); --section: var(--section-mobile); }
@media (min-width: 768px) { :root { --gutter: 40px; --section: 56px; } }
@media (min-width: 1024px) { :root { --gutter: var(--gutter-desktop); --section: var(--section-desktop); } }

/* Überschriftengrößen: Desktopwert je Klasse, Handy etwa 70 %, Tablet etwa 85 % */
.fs-28 { --fs: 28px; } .fs-30 { --fs: 30px; } .fs-34 { --fs: 34px; } .fs-38 { --fs: 38px; } .fs-42 { --fs: 42px; }
.fs-44 { --fs: 44px; } .fs-46 { --fs: 46px; } .fs-48 { --fs: 48px; } .fs-50 { --fs: 50px; } .fs-52 { --fs: 52px; }
.fs-54 { --fs: 54px; } .fs-56 { --fs: 56px; } .fs-58 { --fs: 58px; } .fs-60 { --fs: 60px; }
.hd { font-size: max(var(--min, 30px), calc(var(--fs, 40px) * 0.7)); }
h1.hd { --min: 35px; }
@media (min-width: 768px) and (max-width: 1023.98px) { .hd { font-size: max(var(--min, 30px), calc(var(--fs, 40px) * 0.85)); } }
@media (min-width: 1024px) { .hd { font-size: var(--fs, 40px); } }

/* Überschriftenwort */
h1 em, .grad em { background: var(--grad-heading); -webkit-background-clip: text; background-clip: text; color: transparent; }
.on-dark em.grad-em, .dark h2 em { background: var(--grad-heading-dark); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-band h2 em { color: #B8F4FF; background: none; -webkit-text-fill-color: #B8F4FF; }
h2 em.c-4 { color: var(--text-4); } h2 em.c-5 { color: var(--text-5); }

/* Schaltflächen */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 15px 28px; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  background: var(--ink); color: var(--bone);
}
.btn:hover { background: var(--text-2); color: #fff; text-decoration: none; }
.btn-s { min-height: 46px; padding: 11px 20px; font-size: 14.5px; }
.btn-c { background: var(--grad-button); color: #fff; }
.btn-c:hover { background: var(--ink); color: #fff; }
.btn-o { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-o:hover { background: var(--ink); color: var(--bone); }
.btn-w { background: var(--bone); color: var(--ink); }
.btn-w:hover { background: var(--ink); color: var(--bone); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.6; cursor: not-allowed; }
.btn[disabled]:hover { background: var(--grad-button); }

/* Merkmale und Platzhalter */
.tag {
  display: inline-block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 2px; white-space: nowrap;
}
.tag-base { border: 1px solid var(--text-0); color: var(--text-0); }
.tag-module { background: var(--fill); color: #fff; }
.ph {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  border-bottom: 1px dashed var(--ph-line); color: var(--ph-text); white-space: nowrap;
}
.ph-wrap { white-space: normal; }

/* Kopfzeile */
.spectrum-bar { height: 5px; background: var(--spectrum); }
.site-header { position: relative; border-bottom: 1px solid var(--line); background: var(--bone); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-block: 14px; }
.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo img { display: block; height: 42px; width: auto; }
.nav {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.nav:hover { color: var(--text-2); text-decoration: none; }
.nav[aria-current="page"] { color: var(--text-2); }
.site-nav { display: none; }
.site-actions { display: flex; align-items: center; gap: 10px; }
.site-actions > .nav { display: none; }
.site-actions .btn { min-height: 44px; padding: 10px 16px; font-size: 14px; }

.menu summary {
  list-style: none; width: 44px; height: 44px; border: 1px solid var(--ink); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 0;
}
.menu summary::-webkit-details-marker { display: none; }
.menu summary i { display: block; width: 16px; height: 1.5px; background: var(--ink); }
.menu summary i + i { background: var(--fill-4); }
.menu[open] summary { background: var(--ink); }
.menu[open] summary i, .menu[open] summary i + i { background: var(--bone); }
.menu__panel {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 20; background: var(--bone);
  border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 22px;
}
.menu__panel ul { max-width: var(--page-max); margin-inline: auto; }
.menu__panel li + li { border-top: 1px solid var(--line); }
.menu__panel a { display: flex; align-items: center; min-height: 48px; }

@media (min-width: 1024px) {
  .site-header__inner { gap: 30px; padding-block: 18px; }
  .logo img { height: 78px; }
  .site-nav { display: flex; align-items: center; gap: 28px; }
  .site-actions { gap: 18px; }
  .site-actions > .nav { display: inline; }
  .site-actions .btn { min-height: 46px; padding: 11px 20px; font-size: 14.5px; }
  .menu { display: none; }
}

/* Einstiegsbereich */
.hero { padding-block: 32px 34px; border-bottom: 1px solid var(--line); }
.hero__inner { display: grid; gap: 22px; }
.hero__text { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.hero__lead { font-size: 17.5px; line-height: 1.5; color: var(--soft); max-width: 660px; }
.hero__actions { display: flex; flex-direction: column; align-items: stretch; gap: 20px; }
.hero__actions .btn { align-self: stretch; }
.hero__more {
  font-family: var(--font-display); font-size: 15.5px; font-weight: 600; color: var(--ink);
  border-bottom: 2px solid var(--fill-3); padding-bottom: 3px; align-self: flex-start;
}
.hero__more:hover { text-decoration: none; color: var(--text-2); }
.eyebrow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.eyebrow .mn { margin-left: 5px; font-size: 10px; }
.dots { display: inline-flex; gap: 8px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.dots i:nth-child(1) { background: var(--fill-0); } .dots i:nth-child(2) { background: var(--fill-2); }
.dots i:nth-child(3) { background: var(--fill-4); } .dots i:nth-child(4) { background: var(--fill-6); }
.crumbs { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.crumbs .mn { font-size: 10px; }
.crumbs .sep { font-size: 11px; color: var(--dim); }
.crumbs a.mn { color: var(--dim); }
.crumbs [aria-current="page"] { color: var(--ink); }
.hero__aside { min-width: 0; }

@media (min-width: 768px) {
  .hero { padding-block: 56px 48px; }
  .hero__lead { font-size: 19px; }
  .hero__actions { flex-direction: row; align-items: center; gap: 26px; }
  .hero__actions .btn { align-self: auto; }
  .hero__more { font-size: 16px; }
  .eyebrow .mn { font-size: 12px; }
  .crumbs .mn { font-size: 10px; }
  .dots i { width: 9px; height: 9px; } .dots { gap: 12px; }
}
@media (min-width: 1024px) {
  .hero { padding-block: 76px 64px; }
  .hero__inner { grid-template-columns: minmax(0, 740px) minmax(260px, 1fr); gap: 56px; align-items: end; }
  .hero__inner--wide { grid-template-columns: minmax(0, 900px) minmax(260px, 1fr); }
  .hero__inner--single { grid-template-columns: minmax(0, 900px); }
  .hero__text { gap: 26px; }
  .hero__lead { font-size: 20px; }
}

/* Faktenspalte (Startseite) */
.facts { display: flex; flex-direction: column; gap: 14px; }
.fact { display: flex; flex-direction: column; gap: 2px; padding-left: 16px; border-left: 3px solid var(--fill); }
.fact .mn { font-size: 10.5px; color: var(--dim); }
.fact strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.fact.lv-0 { --fill: #00B8F8; } .fact.lv-1 { --fill: #1B6FF7; } .fact.lv-2 { --fill: #2E45F0; } .fact.lv-3 { --fill: #9A27D4; } .fact.lv-4 { --fill: #C81FA6; }
.facts-band { padding-block: 26px 30px; }
@media (min-width: 1024px) { .fact strong { font-size: 17px; } }

/* Abschnitte */
.section { padding-block: var(--section); }
.section--tight-bottom { padding-bottom: 30px; }
.section--tight { padding-block: 40px; }
.rows-wrap { max-width: var(--page-max); margin-inline: auto; }
.rows-note-wrap { padding-top: 0; }
.section--top-flush { padding-top: 0; }
.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 780px; margin-bottom: 30px; }
.section-head .mn, .eyebrow-label { font-size: 12px; color: var(--text-2); }
.section-head p { font-size: 17px; line-height: 1.5; color: var(--soft); }
@media (min-width: 1024px) { .section-head { margin-bottom: 40px; } .section-head p { font-size: 18.5px; } }
.dark { background: var(--ink); color: var(--bone); }
.dark h2 { color: #fff; }

/* Tagesleiste (nur ab Tablet) */
.day { background: var(--ink); padding-block: 64px 56px; display: none; }
.day__head { display: flex; align-items: baseline; justify-content: space-between; gap: 40px; margin-bottom: 66px; }
.day__head h2 { color: var(--bone); }
.day__head .mn { color: rgba(241, 240, 235, 0.68); }
.day__bar { position: relative; height: 48px; margin-bottom: 26px; }
.day__block {
  position: absolute; top: 0; height: 48px; border-radius: 2px; display: flex; align-items: center; padding: 0 12px; background: var(--fill);
}
.day__block span { font-size: 10px; letter-spacing: 0.1em; color: #fff; white-space: nowrap; overflow: hidden; }
.day__block.lv-0 span { color: #04222E; }
.day__block--pause { background: rgba(241, 240, 235, 0.16); }
.day__now { position: absolute; top: -16px; bottom: -6px; width: 1px; background: var(--light-6); }
.day__now::before { content: ''; position: absolute; top: -9px; left: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--light-6); box-shadow: 0 0 0 6px rgba(240, 107, 184, 0.22); }
.day__now span { position: absolute; top: -36px; left: -26px; font-size: 12px; color: var(--ink); background: var(--light-6); padding: 3px 7px; }
.day__axis { position: relative; height: 34px; border-top: 1px solid rgba(241, 240, 235, 0.16); margin-bottom: 26px; }
.day__tick { position: absolute; top: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; transform: translateX(-50%); }
.day__tick::before { content: ''; width: 1px; height: 7px; background: rgba(241, 240, 235, 0.22); }
.day__tick--major::before { height: 13px; background: var(--light); }
.day__tick span { font-size: 11px; color: rgba(241, 240, 235, 0.72); }
.day__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
/* Lage der Blöcke, Marken und der Uhrzeitmarke auf der Achse 06 bis 20 Uhr (Anteile in Prozent) */
.day__bar > .day__block:nth-child(1) { left: 8.57%; width: 17.62%; }
.day__bar > .day__block:nth-child(2) { left: 26.19%; width: 18.45%; }
.day__bar > .day__block:nth-child(3) { left: 44.64%; width: 3.57%; }
.day__bar > .day__block:nth-child(4) { left: 48.21%; width: 26.79%; }
.day__bar > .day__block:nth-child(5) { left: 75%; width: 9.29%; }
.day__now { left: 84.29%; }
.day__tick:nth-child(1) { left: 0%; } .day__tick:nth-child(2) { left: 7.14%; } .day__tick:nth-child(3) { left: 14.29%; } .day__tick:nth-child(4) { left: 21.43%; }
.day__tick:nth-child(5) { left: 28.57%; } .day__tick:nth-child(6) { left: 35.71%; } .day__tick:nth-child(7) { left: 42.86%; } .day__tick:nth-child(8) { left: 50%; }
.day__tick:nth-child(9) { left: 57.14%; } .day__tick:nth-child(10) { left: 64.29%; } .day__tick:nth-child(11) { left: 71.43%; } .day__tick:nth-child(12) { left: 78.57%; }
.day__tick:nth-child(13) { left: 85.71%; } .day__tick:nth-child(14) { left: 92.86%; } .day__tick:nth-child(15) { left: 100%; }
.day__legend { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.day__legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; color: rgba(241, 240, 235, 0.78); }
.day__legend i { width: 12px; height: 12px; border-radius: 2px; background: var(--fill); display: block; }
.day__legend i.pause { background: rgba(241, 240, 235, 0.16); border: 1px solid rgba(241, 240, 235, 0.3); }
.day__note { font-size: 10.5px; color: rgba(241, 240, 235, 0.66); }
@media (min-width: 768px) { .day { display: block; } }

/* Zeilenliste */
.rows { display: flex; flex-direction: column; gap: 4px; --label-w: 132px; }
.rows--118 { --label-w: 118px; } .rows--110 { --label-w: 110px; } .rows--90 { --label-w: 90px; }
.row {
  display: grid; grid-template-columns: 5px minmax(0, 1fr); background: var(--tint);
}
.row__bar { grid-row: 1 / span 3; background: var(--fill); }
.row__label { grid-column: 2; font-size: 13px; letter-spacing: 0.08em; color: var(--text); padding: 20px 18px 0; }
.row__body { grid-column: 2; display: flex; flex-direction: column; gap: 8px; padding: 8px 18px 0; min-width: 0; }
.row__body :is(h2, h3) { font-size: 24px; color: var(--ink); letter-spacing: -0.028em; }
.row--strong :is(h2, h3) { color: var(--text); }
.row__body p { font-size: 16px; color: var(--soft); }
.row__tag { grid-column: 2; padding: 12px 18px 22px; }
.row__tag:empty { padding-bottom: 14px; padding-top: 0; }
.row__tag .mn { font-size: 10.5px; color: var(--dim); }
.row :is(h2, h3) a { color: inherit; }
.row :is(h2, h3) a:hover { color: var(--text); }
.rows-note {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 24px; margin-top: 4px;
}
.rows-wrap > .rows-note { border-top: 1px solid var(--line); }
.rows-note p { font-size: 17px; max-width: 620px; color: var(--soft); }
@media (min-width: 768px) {
  .rows { gap: 0; }
  .row {
    grid-template-columns: 6px var(--label-w) minmax(0, 1fr) 150px; column-gap: 34px; align-items: stretch; border-top: 1px solid var(--line);
  }
  .row__bar { grid-row: auto; }
  .row__label { grid-column: auto; font-size: 15px; padding: 34px 0 34px 24px; }
  .row__body { grid-column: auto; max-width: 640px; padding: 30px 0 34px; gap: 9px; }
  .row__body :is(h2, h3) { font-size: 30px; }
  .row__body p { font-size: 16.5px; }
  .row__tag { grid-column: auto; text-align: right; padding: 36px 24px 34px 0; }
  .row__tag:empty { padding: 36px 24px 34px 0; }
  .rows-note { flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; margin-top: 0; padding-top: 30px; }
}
.rows-wrap { padding-inline: 0; }
@media (max-width: 767.98px) { .rows-wrap { padding-inline: 0; } .rows-wrap .rows { margin-inline: 0; } }

/* Kennzahlenband */
.stats { background: var(--ink); padding-block: 40px; }
.stats h2 { color: #fff; max-width: 800px; margin-bottom: 28px; }
.stat-list { display: grid; gap: 22px; }
.stat { display: flex; flex-direction: column; gap: 8px; padding-top: 20px; border-top: 1px solid rgba(241, 240, 235, 0.16); }
.stat::before { content: ''; width: 30px; height: 4px; border-radius: 2px; background: var(--light); }
.stat__num { font-family: var(--font-display); font-size: 38px; font-weight: 700; letter-spacing: -0.045em; color: var(--light); line-height: 1; }
.stat__num .arrow { color: var(--light-6); }
.stat .mn { color: var(--bone); font-size: 11px; }
.stat p:last-child { font-size: 15px; line-height: 1.5; color: rgba(241, 240, 235, 0.74); }
@media (min-width: 768px) {
  .stats { padding-block: 64px 56px; }
  .stat-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 0; }
  .stat { padding: 20px 30px 0; border-top: 0; border-left: 1px solid rgba(241, 240, 235, 0.16); }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat .mn { font-size: 12px; }
}
@media (min-width: 1024px) {
  .stats { padding-block: 80px; }
  .stats h2 { margin-bottom: 48px; }
  .stat { gap: 13px; }
  .stat::before { width: 32px; }
  .stat__num { font-size: 46px; white-space: nowrap; }
}
/* vier Spalten erst, wenn "12 / 60 / 11" hineinpasst; darunter zwei Spalten */
@media (min-width: 1200px) {
  .stat-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
  .stat { padding: 0 30px; border-left: 1px solid rgba(241, 240, 235, 0.16); }
  .stat:nth-child(odd) { border-left: 1px solid rgba(241, 240, 235, 0.16); padding-left: 30px; }
  .stat:first-child { border-left: 0; padding-left: 0; }
}
/* Dreispaltiger Text im dunklen Band (Sicherheit) */
.stat-list--3 .stat__title { font-family: var(--font-display); font-size: 23px; font-weight: 700; letter-spacing: -0.028em; color: var(--bone); line-height: 1.1; }
.stat-list--3 .stat p:last-child { font-size: 15.5px; line-height: 1.55; color: rgba(241, 240, 235, 0.76); }
@media (min-width: 1024px) {
  .stat-list--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stat-list--3 .stat { gap: 10px; }
  .stat-list--3 .stat::before { width: 30px; }
  .stat-list--3 .stat:nth-child(odd) { padding-left: 30px; }
  .stat-list--3 .stat:first-child { padding-left: 0; }
}
@media (min-width: 768px) and (max-width: 1023.98px) { .stat-list--3 { grid-template-columns: 1fr; } .stat-list--3 .stat { border-left: 0; padding: 20px 0 0; border-top: 1px solid rgba(241, 240, 235, 0.16); } }
.dark .section-head .mn { color: var(--light-2); }
.dark .section-head p { color: rgba(241, 240, 235, 0.7); }

/* Farbfelder */
.panels { display: grid; gap: 16px; }
.panel { background: var(--tint); border-top: 5px solid var(--fill); padding: 24px 22px 12px; min-width: 0; }
.panel__title { font-size: 12px; color: var(--text); margin-bottom: 16px; }
.panel h2.panel__title-h { font-size: 28px; margin-bottom: 18px; }
.panel h3 { font-size: 23px; color: var(--text); margin-bottom: 4px; }
.panel p.sub { font-size: 15.5px; }
.checklist li { display: flex; align-items: baseline; gap: 14px; padding: 13px 0; border-top: 1px solid color-mix(in srgb, var(--text) 20%, transparent); }
.checklist li > span:first-child { font-size: 14px; color: var(--text); flex: 0 0 auto; }
.checklist li > span:last-child { font-size: 16px; }
.checklist--split { display: grid; gap: 0 40px; }
.panel .btn { margin-top: 12px; margin-bottom: 14px; }
.panel .lead-price { margin: 4px 0 6px; }
.panel .price-note { font-size: 15.5px; margin-bottom: 14px; }
.panel--note { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px 22px; }
.panel--note p { font-size: 16px; }
.panel--stack > * + * { margin-top: 14px; }
.panel-gap { margin-top: 28px; }
@media (min-width: 768px) {
  .panels--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .panels--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
  .panel { padding: 30px 32px 20px; }
  .panel--note { padding: 26px 28px; }
  .checklist--split { grid-template-columns: 1fr 1fr; }
  .checklist li > span:last-child { font-size: 16.5px; }
}
@media (min-width: 768px) and (max-width: 1023.98px) { .panels--3 { grid-template-columns: 1fr; } }

/* Fragen und Antworten */
.faq { display: grid; gap: 22px; }
.faq__head { display: flex; flex-direction: column; gap: 12px; }
.faq__head .mn { color: var(--text-2); }
.faq__head h2 { font-size: 30px; }
.faq__head a { font-size: 16px; font-weight: 600; margin-top: 6px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { padding: 20px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 7px; }
.faq__item h3 { font-size: 19px; }
.faq__item p { font-size: 16px; color: var(--soft); }
@media (min-width: 768px) { .faq__item p { font-size: 16.5px; } }
@media (min-width: 1024px) {
  .faq { grid-template-columns: 380px minmax(0, 1fr); gap: 60px; align-items: start; }
  .faq__head h2 { font-size: 38px; }
}

/* Abschlussband */
.cta-band { background: var(--grad-cta); padding-block: 48px; }
.cta-band__inner { display: flex; flex-direction: column; gap: 22px; }
.cta-band h2 { color: #fff; max-width: 800px; }
.cta-band__side { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.cta-band__side p { font-size: 17px; line-height: 1.55; color: rgba(255, 255, 255, 0.88); }
@media (min-width: 768px) { .cta-band { padding-block: 72px; } }
@media (min-width: 1024px) {
  .cta-band { padding-block: 92px; }
  .cta-band__inner { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 64px; }
  .cta-band__side { flex: 0 0 340px; }
}
@media (max-width: 767.98px) { .cta-band { background: linear-gradient(140deg, #1B6FF7, #6B34E6 58%, #C81FA6); } }

/* Fußzeile */
.site-footer { padding-block: 40px 32px; }
.footer__grid { display: grid; gap: 28px; grid-template-columns: 1fr 1fr; }
.footer__brand { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 16px; }
.footer__brand img { height: 46px; width: auto; align-self: flex-start; }
.footer__brand p.sub { font-size: 15px; max-width: 250px; }
.eu-badge { display: flex; align-items: center; gap: 10px; background: var(--tint-0); padding: 9px 12px; align-self: flex-start; }
.eu-badge b { display: inline-block; background: var(--text-0); color: var(--tint-0); padding: 3px 7px; font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em; border-radius: 2px; }
.eu-badge span { font-size: 10.5px; color: var(--text-0); }
.footer__brand .mn { font-size: 10.5px; }
.footer__col .mn { font-size: 10.5px; margin-bottom: 16px; }
.footer__col:nth-of-type(1) .mn { color: var(--text-2); } .footer__col:nth-of-type(2) .mn { color: var(--text-3); } .footer__col:nth-of-type(3) .mn { color: var(--text-4); }
.footer__col ul { display: flex; flex-direction: column; gap: 4px; }
.footer__col a { display: inline-flex; align-items: center; min-height: 32px; font-size: 15px; color: var(--ink); }
.footer__base { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; }
.footer__base p { font-size: 10px; line-height: 2; color: var(--dim); }
.footer__base p:last-child { font-size: 10.5px; }
@media (min-width: 1024px) {
  .site-footer { padding-block: 56px 40px; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
  .footer__brand { grid-column: auto; }
  .footer__brand img { height: 100px; }
  .footer__base { margin-top: 44px; }
}

/* Tabelle (Rollen) */
.table-wrap { width: 100%; }
.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; color: var(--soft); padding: 0 20px 14px 0; font-size: 10.5px; }
.table td { padding: 17px 20px 17px 0; border-top: 1px solid var(--line); font-size: 16px; color: var(--soft); vertical-align: top; }
@media (min-width: 768px) { .table th:first-child { width: 26%; } .table th:last-child { width: 74%; } }
@media (max-width: 767.98px) {
  /* Tabellen werden zu Listen */
  .table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .table, .table tbody, .table tr, .table td { display: block; width: 100%; }
  .table tr { padding: 16px 0; border-top: 1px solid var(--line); }
  .table td { border: 0; padding: 0; }
  .table td:first-child { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 17px; margin-bottom: 4px; }
}

/* Unterlagen (Sicherheit) */
.doclist li { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line); }
.doclist strong { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.doclist p { font-size: 15px; color: var(--soft); margin-top: 3px; }
.doclist .ph { flex: 0 0 auto; margin-top: 3px; }
.doclist li:last-child { border-bottom: 1px solid var(--line); }

/* Formulare */
input, select, textarea {
  font-family: var(--font-body); font-size: 16.5px; color: var(--ink); background: var(--white); border: 1px solid var(--field-border);
  border-radius: 2px; padding: 14px 15px; width: 100%; min-height: 52px;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--text-2); outline-offset: 1px; border-color: var(--text-2); }
input[type="checkbox"] { width: 22px; min-height: 22px; height: 22px; padding: 0; flex: 0 0 auto; margin-top: 2px; accent-color: var(--fill-3); }
label { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--soft); margin-bottom: 8px; }
.req { color: var(--error); }
.hint { font-size: 14px; color: #5A6B82; margin-top: 7px; }
.err { font-size: 14px; color: var(--error); margin-top: 7px; font-weight: 500; }
.field { display: flex; flex-direction: column; }
.field-grid { display: grid; gap: 20px; }
.form { display: flex; flex-direction: column; gap: 20px; }
.form-consent { display: flex; align-items: flex-start; gap: 12px; }
.form-consent label { text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-size: 15px; color: var(--soft); margin: 0; }
/* Köderfeld gegen Bots (nie "display: none" oder "visibility: hidden": manche Bots überspringen genau das; unsichtbar für Auge und Vorleseprogramm). */
.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; left: -9999px; }
.form-actions { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.form-error-msg, .form-state { display: none; }
.form-error-msg { color: var(--error); font-size: 14px; font-weight: 500; margin-top: 7px; }
/* Feldfehler ohne Skript: nach der Eingabe meldet der Browser ungültige Felder */
input:user-invalid, select:user-invalid, textarea:user-invalid, input[aria-invalid="true"] { border-color: var(--error); box-shadow: inset 0 0 0 1px var(--error); }
input:user-invalid ~ .form-error-msg, input[aria-invalid="true"] ~ .form-error-msg { display: block; }
.form-success { display: none; }
form[data-state="sending"] .btn { opacity: 0.6; pointer-events: none; }
form[data-state="success"] .form-body { display: none; }
form[data-state="success"] .form-success { display: block; }
.form-success h2 { font-size: 26px; margin: 10px 0; }
@media (min-width: 768px) { .field-grid { grid-template-columns: 1fr 1fr; } .form-actions { flex-direction: row; align-items: center; gap: 22px; } }
.two-col { display: grid; gap: 28px; }
@media (min-width: 1024px) { .two-col { grid-template-columns: minmax(0, 1fr) 380px; gap: 56px; align-items: start; } .two-col--login { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 26px; } }
.side-stack { display: flex; flex-direction: column; gap: 22px; }
.search { display: flex; flex-direction: column; gap: 10px; max-width: 560px; }
.search__row { display: flex; gap: 10px; }
.search__row .btn { flex: 0 0 auto; }
.subdomain { display: flex; align-items: stretch; }
.subdomain input { border-right: 0; border-radius: 2px 0 0 2px; min-width: 0; }
.subdomain .mn { display: flex; align-items: center; padding: 0 14px; background: var(--white); border: 1px solid var(--field-border); border-left: 0; border-radius: 0 2px 2px 0; font-size: 11px; color: var(--soft); white-space: nowrap; letter-spacing: 0.08em; }
@media (max-width: 420px) { .subdomain .mn { padding: 0 8px; font-size: 10px; letter-spacing: 0.04em; } }
.form-states { display: grid; gap: 22px; }
@media (min-width: 1024px) { .form-states { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.state-card { background: var(--white); border-top: 3px solid var(--fill); padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; }
.state-card h3 { font-size: 20px; }
.state-card .form-state, .state-card .form-error-msg { display: block; }

/* Artikel */
.article { display: grid; gap: 40px; padding-block: 32px 48px; }
.article__main { max-width: 800px; min-width: 0; display: flex; flex-direction: column; gap: 22px; }
.article__main h2 { font-size: 26px; margin-top: 16px; }
.article__main p, .article__main li { font-size: 17px; }
.article__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.steps { display: flex; flex-direction: column; gap: 12px; padding-left: 0; counter-reset: step; }
.steps li { counter-increment: step; display: flex; gap: 14px; align-items: baseline; color: var(--soft); }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--text-2); flex: 0 0 auto; }
.note-box { background: var(--tint-2); border-left: 5px solid var(--fill-2); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.note-box .mn { color: var(--text-2); font-size: 11px; }
.figure-ph { display: flex; align-items: center; justify-content: center; min-height: 200px; background: var(--white); border: 1px dashed var(--ph-line); padding: 20px; text-align: center; }
.article__aside { display: flex; flex-direction: column; gap: 22px; }
.toc { background: var(--white); padding: 18px 20px; }
.toc .mn { margin-bottom: 10px; color: var(--soft); }
.toc li { border-top: 1px solid var(--line); }
.toc a { display: flex; align-items: center; min-height: 44px; color: var(--ink); font-size: 15px; }
.helpful { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); }
.helpful p { font-family: var(--font-display); font-weight: 600; margin-right: 8px; }
@media (min-width: 1024px) { .article { grid-template-columns: minmax(0, 1fr) 300px; gap: 72px; padding-block: 40px 72px; } .article__aside { position: sticky; top: 24px; align-self: start; } .article__main h2 { font-size: 30px; } }
.article__title { margin-bottom: 4px; }

/* Rechtstexte */
.legal-block { max-width: 860px; padding-block: 8px 44px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.legal-block .panel { width: 100%; }
.legal-block h2 { font-size: 30px; }

/* Ausdruck */
@media print { .site-header, .cta-band, .menu, .spectrum-bar { display: none; } body { background: #fff; } }
@media (prefers-reduced-motion: no-preference) { .btn, a { transition: background-color 0.15s, color 0.15s; } }

/* Ergänzungen */
.section--no-bottom { padding-bottom: 0; }
.section-head--wide { max-width: none; }
@media (min-width: 768px) { .section-head--wide { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 48px; } .section-head--wide h2 { max-width: 720px; } }
.section-head--wide .mn { color: var(--dim); font-size: 12px; }
.price-hint { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.price-hint p { max-width: 720px; font-size: 16px; }
.c-0 { color: var(--text-0); } .c-1 { color: var(--text-1); } .c-2 { color: var(--text-2); } .c-3 { color: var(--text-3); }
.c-4 { color: var(--text-4); } .c-5 { color: var(--text-5); } .c-6 { color: var(--text-6); }
.article .checklist { --text: var(--text-2); }
.article .checklist li { border-top-color: var(--line); }
.provider { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.contact-ph { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding-bottom: 12px; }
.contact-ph .ph { white-space: normal; }
.panel--price .lead-price { font-family: var(--font-display); font-size: 30px; }
.rows-note { padding-bottom: 24px; }
@media (min-width: 768px) { .rows-note { padding-bottom: 48px; } }
.hero .panel { min-width: 0; }
.hero__aside .search { max-width: none; }
.panel--stack form + p, .panel--stack p + form { margin-top: 4px; }
.panel--stack { display: flex; flex-direction: column; gap: 18px; padding-bottom: 30px; }
.panel--stack .panel__title-h { margin-bottom: 0; }
.panel--stack .panel__title { margin: 8px 0 -6px; }
.legal-block .ph { margin-top: -4px; }
.legal-block .panel { margin-top: 8px; }
.state-card .field { margin-top: 4px; }
@media (max-width: 767.98px) { .section-head--wide .mn { display: none; } }
