/* Shared legal page styles for privacy / terms (static HTML). */
:root {
  color-scheme: dark;
  --bg: #141414;
  --fg: #f2f2f2;
  --muted: #a3a3a3;
  --line: #333;
  --accent: #ffc107;
}

* {
  box-sizing: border-box;
}

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

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

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

.brand {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

h1 {
  font-size: 2rem;
  margin: 0 0 8px;
  font-weight: 700;
}

.tagline {
  color: var(--muted);
  margin: 0 0 20px;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

nav a {
  font-weight: 600;
}

nav a[aria-current='page'] {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 4px;
}

h2 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.updated {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 28px;
}

h3 {
  font-size: 1.05rem;
  margin: 28px 0 10px;
}

p,
ul {
  margin: 0 0 12px;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 6px;
}

.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.email {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 22px 0 10px;
}

.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 28px;
  background: var(--fg);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
}

.cta:hover {
  text-decoration: none;
  opacity: 0.92;
}
