/* Stylesheet für Datenschutz und Impressum.
 *
 * Dieselben Farben wie App und Startseite — wer hier landet, soll nicht das
 * Gefühl haben, auf einer fremden Seite gelandet zu sein. Rechtstexte sind
 * kein Grund, hässlich zu werden.
 */

@font-face {
  font-family: 'Space Grotesk';
  src: url('/fonts/space-grotesk-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #0A1120;
  --surface: #131E33;
  --surface-2: #1C2B45;
  --line: #27395A;
  --text: #E8EDF7;
  --muted: #8296B8;
  --amber: #F2A23C;
  --mint: #4FD1A5;
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.logo {
  font-family: var(--display); font-size: 19px; font-weight: 600;
  letter-spacing: -.3px; text-decoration: none; color: var(--text);
}
.logo span { color: var(--amber); }

.btn {
  display: inline-block; padding: 10px 18px; min-height: 44px; line-height: 24px;
  font-family: var(--display); font-size: 14px; font-weight: 600;
  border-radius: 10px; text-decoration: none;
  border: 1px solid var(--line); color: var(--text);
}
.btn:hover { border-color: var(--muted); }

article { padding: 44px 0 56px; }

h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 5vw, 38px); letter-spacing: -.8px;
  margin-bottom: 16px;
}

h2 {
  font-family: var(--display); font-weight: 600; font-size: 18px;
  letter-spacing: -.2px;
  margin: 34px 0 12px; padding-top: 20px;
  border-top: 1px solid var(--line);
}

p { margin-bottom: 14px; color: var(--muted); }
p strong { color: var(--text); font-weight: 600; }

.lead {
  font-size: 16.5px; color: var(--text);
  padding: 18px 20px; margin-bottom: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--mint);
  border-radius: 12px;
}

ul { margin: 0 0 16px 20px; }
li { color: var(--muted); margin-bottom: 8px; }

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

table {
  width: 100%; border-collapse: collapse; margin-bottom: 18px;
  font-size: 14px;
}
th, td {
  text-align: left; padding: 11px 12px;
  border-bottom: 1px solid var(--line); color: var(--muted);
  vertical-align: top;
}
th {
  font-family: var(--display); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .6px;
  color: var(--text); background: var(--surface);
}
td:first-child { color: var(--text); }

/* Platzhalter, die noch ausgefüllt werden müssen — sollen auffallen. */
.hint {
  font-size: 13px; color: var(--amber);
  padding: 12px 14px; margin: 4px 0 16px;
  background: rgba(242, 162, 60, .07);
  border: 1px solid var(--amber); border-radius: 10px;
}

.updated {
  margin-top: 34px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

footer {
  border-top: 1px solid var(--line); padding: 26px 0 40px;
  color: var(--muted); font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--text); text-decoration: none; }
.links { display: flex; gap: 18px; flex-wrap: wrap; }
