/* Deep-space indigo, matching the app's surface. Deliberately one small
   stylesheet with no build step, no fonts fetched, and no third-party asset, so
   these pages stay fast, private (no analytics, no trackers) and independently
   deployable from the app release cycle. */

:root {
  --bg: #0e1230;
  --surface: #171b3d;
  --ink: #eceaf7;
  --dim: #a8abd0;
  --accent: #ffc857;
  --rule: #2a2f5c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0.6rem 0 0.25rem;
}

h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}

h3 {
  font-size: 1rem;
  margin: 1.4rem 0 0.35rem;
}

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

ul {
  padding-left: 1.15rem;
}

li {
  margin: 0.4rem 0;
}

.meta,
.dim {
  color: var(--dim);
  font-size: 0.9rem;
}

/* The pending-review banner. Deliberately prominent: these pages are honest
   drafts, and a reader should not mistake them for counsel-approved terms. */
.status {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin: 0 0 1.5rem;
  color: var(--dim);
  font-size: 0.9rem;
}

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

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  color: var(--dim);
  font-size: 0.9rem;
}

/* Honour a reader's reduced-motion and contrast preferences rather than
   overriding them; there is no motion here by design. */
@media (prefers-contrast: more) {
  :root {
    --dim: #cfe0d4;
    --rule: #4a5f53;
  }
}
