/* Shared styling for the static legal pages (light + designed dark variant) */
:root {
  color-scheme: light dark;
  --indigo: #6366f1;
  --ink: #111827;
  --muted: #6b7280;
  --bg: #fff7ed;
  --panel: #ffffff;
  --border: #e5e7eb;
  --link: #4f46e5;
  --notice-bg: #eef2ff;
  --notice-border: #c7d2fe;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f3f4f6;
    --muted: #9ca3af;
    --bg: #111827;
    --panel: #1f2937;
    --border: #374151;
    --link: #a5b4fc;
    --notice-bg: #1e1b4b;
    --notice-border: #4338ca;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}
header a {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
}
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}
h1 { font-size: 1.7rem; margin-bottom: 0.25rem; }
h2 { font-size: 1.15rem; margin-top: 2rem; }
p.meta { color: var(--muted); font-size: 0.9rem; margin-top: 0; }
a { color: var(--link); }
table { border-collapse: collapse; width: 100%; font-size: 0.92rem; }
th, td { text-align: left; border-bottom: 1px solid var(--border); padding: 8px 10px; vertical-align: top; }
th { color: var(--muted); font-weight: 600; }
footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 40px;
  color: var(--muted);
  font-size: 0.85rem;
}
footer a { color: var(--muted); }
.notice {
  background: var(--notice-bg);
  border: 1px solid var(--notice-border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
}
