/* Shared minimal stylesheet for the static legal/support pages
   (terms.html, privacy.html, support.html) — plain, self-hosted, no
   build step, so these stay reachable even if the SPA bundle fails to
   load. Colors match the app's own light-mode ink/paper palette (see
   src/index.css) for a consistent look without pulling in Tailwind. */

:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #17140f;
  --ink-muted: #6f6b63;
  --ink-faint: #b0aca1;
}

body {
  margin: 0;
  padding: 2.5rem 1.25rem 4rem;
  background: var(--paper);
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.6;
}

main {
  max-width: 42rem;
  margin: 0 auto;
}

h1 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 2rem;
}

p,
li {
  color: var(--ink);
}

.updated {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

a {
  color: var(--ink);
}

a:hover {
  opacity: 0.7;
}

.back {
  display: inline-block;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1.5px dashed var(--ink-faint);
  color: var(--ink-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.back:hover {
  color: var(--ink);
}
