/* Shared styling for the static legal pages (public/privacy.html, public/terms.html).
   Kept self-contained — these pages don't go through the Vite/Tailwind build.
   Palette mirrors the app's dark theme in src/index.css. */
:root {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --border: oklch(1 0 0 / 10%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
}

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

h1 {
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.05rem;
  margin-top: 2rem;
}

p,
li {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

strong {
  color: var(--foreground);
}

a {
  color: var(--foreground);
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
}

.updated {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted-foreground);
  text-align: center;
}
