/* Insero — Legal pages (Impressum / Datenschutz / AGB) */
:root {
  --ink: #09090c;
  --ink-2: #111117;
  --violet: #c9a7ff;
  --violet-2: #8b5cf6;
  --rule: rgba(255,255,255,0.08);
  --text: #ebe9f2;
  --mute: #9898a6;
}
* { box-sizing: border-box; }
html, body { background: var(--ink); color: var(--text); margin: 0; }
body {
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}
.legal-shell { max-width: 760px; margin: 0 auto; padding: 56px 28px 96px; }
.legal-nav {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 48px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.legal-nav a { color: var(--mute); text-decoration: none; transition: color .2s; }
.legal-nav a:hover { color: var(--violet); }
.legal-nav .brand { color: var(--text); font-weight: 600; }
.legal-nav .dot { opacity: .35; }
.legal-shell h1 {
  font-family: "Fraunces", "Geist", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #fff;
}
.legal-shell .kicker {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 48px;
}
.legal-shell h2 {
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  color: #fff;
  font-weight: 600;
}
.legal-shell h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-shell h3 { font-size: 15px; margin: 22px 0 8px; color: #fff; font-weight: 600; }
.legal-shell p, .legal-shell li { color: var(--text); }
.legal-shell a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.legal-shell ul { padding-left: 20px; }
.legal-shell code {
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  background: var(--ink-2);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--rule);
}
.legal-shell .placeholder {
  background: var(--ink-2);
  border: 1px dashed rgba(201,167,255,0.35);
  padding: 16px 18px;
  border-radius: 10px;
  color: var(--mute);
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  margin: 12px 0;
}
.legal-shell footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--mute);
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.04em;
}
