/* Stil fuer die Rechtsseiten. Nutzt dieselben Design-Tokens wie die Startseite. */
:root {
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --bg: #FBFBF9; --surface: #FFFFFF; --surface-2: #F3F3EE;
  --ink: #17191D; --muted: #565B63; --faint: #898E97;
  --line: #E6E5DF; --line-strong: #D7D6CE;
  --accent: #0C5B4D; --accent-strong: #0A4D41; --accent-ink: #FFFFFF;
  --accent-tint: #EAF2EF; --accent-tint-2: #DBE9E3;
  --radius-card: 16px; --maxw: 820px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0E1013; --surface: #16191D; --surface-2: #1B1F24;
    --ink: #F0F0EC; --muted: #A4AAB2; --faint: #757B84;
    --line: #262A30; --line-strong: #313640;
    --accent: #43BBA0; --accent-strong: #54C9AE; --accent-ink: #06140F;
    --accent-tint: #14201C; --accent-tint-2: #182821;
  }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body); background: var(--bg); color: var(--ink);
  line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent-strong); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand .mark { width: 26px; height: 26px; border-radius: 7px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-size: 0.78rem; font-weight: 700; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; border-radius: 999px; padding: 11px 22px; border: 1px solid var(--line-strong); color: var(--ink); text-decoration: none; transition: background 0.18s var(--ease), transform 0.18s var(--ease); }
.btn:hover { background: var(--surface-2); transform: translateY(-1px); color: var(--ink); }

/* Legal content */
.legal { padding: 72px 0 96px; }
.legal .eyebrow { font-size: 0.82rem; font-weight: 600; color: var(--accent); margin-bottom: 14px; }
.legal h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 2.7rem); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 10px; }
.legal .stand { color: var(--faint); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; margin: 40px 0 14px; }
.legal h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin: 26px 0 10px; }
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal ul { color: var(--muted); margin: 0 0 14px 22px; }
.legal li { margin-bottom: 7px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal .block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 24px 26px; margin-bottom: 14px; }
.legal .block p:last-child { margin-bottom: 0; }
.todo { background: var(--accent-tint); border: 1px dashed var(--accent); color: var(--accent-strong); border-radius: 6px; padding: 1px 7px; font-weight: 600; font-size: 0.95em; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 40px 0; }
.foot { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { font-size: 0.9rem; color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--ink); }
.foot small { color: var(--faint); font-size: 0.85rem; display: block; margin-top: 14px; }
