/* Shared styles for the legal pages (impressum, privacy) — brand palette, readable prose. */
:root {
  color-scheme: dark light;
  --bg: #171e29;
  --text: #f3f6fa;
  --muted: #93a1b3;
  --hair: rgba(255, 255, 255, 0.10);
  --accent: #2dd4bf;
}
@media (prefers-color-scheme: light) {
  :root { --bg: #f7f6f3; --text: #1f2937; --muted: #5b6675; --hair: rgba(31, 41, 55, 0.12); --accent: #0f766e; }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 44rem; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.mono { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--text); margin-bottom: 2.5rem; }
.mono svg { width: 26px; height: auto; }
.mono .dot { fill: var(--accent); }
.mono span { font-weight: 800; letter-spacing: 0.14em; font-size: 0.95rem; }
h1 { font-size: clamp(1.7rem, 5vw, 2.2rem); font-weight: 750; letter-spacing: -0.01em; margin: 0 0 0.5rem; }
.lead { color: var(--muted); font-size: 0.9rem; margin: 0 0 2.4rem; }
h2 { font-size: 1.05rem; font-weight: 700; margin: 2.3rem 0 0.5rem; }
p { margin: 0.6rem 0; }
address { font-style: normal; margin: 0.5rem 0; }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.15s ease; }
a:hover, a:focus-visible { border-bottom-color: currentColor; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
ul { padding-left: 1.2rem; margin: 0.5rem 0; }
li { margin: 0.25rem 0; }
.muted { color: var(--muted); }
hr { border: 0; border-top: 1px solid var(--hair); margin: 2.6rem 0; }
footer { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--hair); color: var(--muted); font-size: 0.85rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }
footer a { color: var(--muted); }
