/*
  CLAUDE_PK: v7.42.26 — Gemeinsamer Style für /impressum, /datenschutz, /agb.
  Bewusst minimalistisch (Lesbarkeit > Inszenierung). Keine Aurora-Effekte,
  kein Scroll-Choreography. Apple-style typography aus der Main-Landing.
*/
:root {
  --text: #0a0a0a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #8e8e93;
  --border: rgba(13, 31, 58, 0.10);
  --bg-alt: #f7f7f9;
  --accent: #1D1D1F;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--text); background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.legal-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.legal-topbar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.legal-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.legal-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-weight: 600; font-size: 14.5px;
  letter-spacing: -0.01em;
}
.legal-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
}
.legal-back {
  font-size: 13.5px; color: var(--text-secondary);
  text-decoration: none; font-weight: 500;
}
.legal-back:hover { color: var(--text); }

.legal-main {
  padding: 56px 24px 80px;
}

.legal-eyebrow {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-tertiary); margin: 0 0 14px;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
  margin: 0 0 12px;
}

.legal-lead {
  font-size: 17px; color: var(--text-secondary);
  margin: 0 0 32px;
}

h2 {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.3;
  margin: 36px 0 12px;
  color: var(--text);
}

h3 {
  font-size: 15px; font-weight: 600;
  margin: 24px 0 8px;
  color: var(--text);
}

p, li { font-size: 15.5px; color: var(--text-secondary); margin: 0 0 12px; }

a {
  color: var(--text);
  text-decoration-color: var(--text-tertiary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { text-decoration-color: var(--text); }

section {
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
section:last-of-type { border-bottom: none; }

strong { color: var(--text); font-weight: 600; }

ul, ol { padding-left: 22px; margin: 0 0 12px; }
li { margin-bottom: 6px; }

.legal-footer {
  border-top: 1px solid var(--border);
  padding: 24px 24px 40px;
  margin-top: 40px;
  background: var(--bg-alt);
}
.legal-footer .legal-container {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
.legal-footer p { font-size: 12.5px; color: var(--text-tertiary); margin: 0; }
.legal-footer nav { display: flex; gap: 16px; }
.legal-footer nav a { font-size: 12.5px; color: var(--text-secondary); text-decoration: none; }
.legal-footer nav a:hover { color: var(--text); }
