/* Shared stylesheet for the legal and support pages.
   privacy/, terms/ and support/ each carried an identical copy of this
   inline, including three identical :root blocks. Page-specific rules
   (privacy's table, support's disclosure list) stay inline on the page
   that uses them. */

:root {
  --bg: #0E0E0F; --surface: #151515; --ink: #EDEBE6; --dim: #9C9C98;
  --faint: #82817C; --off: rgba(237, 235, 230, 0.12);
  --amber: #E0B25E; --red: #F0281E;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--mono); font-size: 15px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
.wrap { width: min(100% - 40px, 760px); margin-inline: auto; }
a { color: var(--amber); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

header { padding: 40px 0 8px; }
.prompt { color: var(--dim); font-size: 0.85rem; margin: 0 0 30px; }
.prompt .path { color: var(--amber); }
.prompt .chev { color: var(--red); }
h1 { font-size: clamp(1.7rem, 5vw, 2.3rem); line-height: 1.16; margin: 0 0 10px; letter-spacing: -0.01em; }
.updated { color: var(--faint); font-size: 0.8rem; margin: 0 0 8px; }

main { padding-bottom: 20px; }
h2 {
  font-size: 1rem; margin: 38px 0 12px; color: var(--ink);
  text-transform: lowercase; letter-spacing: 0.02em;
}
h2::before { content: "~/ "; color: var(--amber); }
p { color: var(--dim); margin: 0 0 14px; max-width: 68ch; }
strong { color: var(--ink); font-weight: 700; }
ul, ol { color: var(--dim); padding-left: 20px; margin: 0 0 14px; max-width: 68ch; }
li { margin-bottom: 8px; }
li::marker { color: var(--amber); }
code {
  background: var(--surface); border: 1px solid var(--off); border-radius: 4px;
  padding: 1px 5px; font-size: 0.88em; color: var(--ink);
}

footer {
  border-top: 1px solid var(--off); margin-top: 46px;
  padding: 26px 0 60px; color: var(--faint); font-size: 0.8rem;
}
footer .prompt { margin: 0 0 10px; }
footer nav a { margin-right: 18px; }

@media (prefers-color-scheme: light) {
  :root { --bg: #FBFAF7; --surface: #FFFFFF; --ink: #18140C; --dim: #4A473F;
          --faint: #6E6B62; --off: rgba(24, 20, 12, 0.14); --amber: #8A6416; --red: #95110A; }
}
