/* Minimal, review-friendly legal pages (static). */

:root {
  color-scheme: light;
  --bg: #ffffff;
  --fg: #0b0f17;
  --muted: #4b5563;
  --border: #e5e7eb;
  --link: #0b5fff;
  --max: 860px;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px 72px;
}

header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

h1 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.01em;
}

p, li {
  font-size: 15px;
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

nav {
  margin-top: 10px;
}

nav a {
  margin-right: 14px;
  white-space: nowrap;
}

section + section {
  margin-top: 18px;
}

footer {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

