/* Schrift wie in App und Landingpage (21.09.2026). */
@font-face { font-family: "Geist"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url(/fonts/geist.woff2) format("woff2-variations"); }

/* Rechtsseiten Satzmeister — bewusst statisch, ohne React und ohne externe Ressourcen.
   Die Seiten müssen auch dann erreichbar sein, wenn die App nicht lädt. */
:root {
  --bg: #EEF7F6; --surface: #FBFEFE; --rim: #BFE1DC; --accent: #0EA5A0;
  /* Textfarben am 20.09.2026 abgedunkelt, identisch zu src/theme.js.
     Die alten erreichten 4,23:1 (dim) und 2,20:1 (faint) -- unter dem
     WCAG-Minimum. Bei Impressum und Datenschutzerklaerung ist Lesbarkeit
     keine Geschmacksfrage. */
  --text: #13293D; --dim: #4A6070; --faint: #576E7C; --accentText: #0A7774;
}
* { box-sizing: border-box; }
body {
  margin: 0; padding: 24px 16px 64px;
  background: linear-gradient(160deg, #E3F6F1 0%, #E7EFFB 35%, #EFE9FA 65%, #F7EAF2 100%);
  background-attachment: fixed; color: var(--text);
  font: 16px/1.65 "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
main {
  max-width: 720px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--rim); border-radius: 18px; padding: 32px 28px;
}
a { color: var(--accent); }
a.zurueck {
  display: inline-block; margin-bottom: 24px; text-decoration: none;
  font-weight: 600; font-size: 15px;
}
h1 { font-size: 27px; margin: 0 0 4px; letter-spacing: -.02em; }
h2 { font-size: 19px; margin: 34px 0 10px; letter-spacing: -.01em; }
h3 { font-size: 16px; margin: 22px 0 6px; }
p, li { color: var(--text); }
.lead { color: var(--dim); margin: 0 0 28px; }
dl { margin: 0; }
dt { font-weight: 600; margin-top: 14px; }
dd { margin: 2px 0 0; }
table { border-collapse: collapse; width: 100%; margin: 12px 0; font-size: 15px; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--rim); vertical-align: top; }
th { color: var(--dim); font-weight: 600; }
.kasten {
  background: #E9F3F1; border: 1px solid var(--rim); border-left: 4px solid var(--accent);
  border-radius: 10px; padding: 14px 16px; margin: 18px 0;
}
.kasten p { margin: 0; font-size: 15px; }
.todo { border-left-color: #D6608F; background: #FCEEF4; }
footer { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--rim);
  font-size: 14px; color: var(--faint); }
footer a { color: var(--dim); }
@media (max-width: 600px) { main { padding: 24px 18px; } h1 { font-size: 23px; } }
