/* Shared chrome for the legal pages (terms/, privacy/). The landing page
   (index.html) keeps its own inline styles — its hero design diverges too
   much to share. Page-specific rules stay inline after the <link>. */
:root {
  --accent: #3E6E5A;
  --accent-text: #3E6E5A;
  --accent-soft: rgba(62, 110, 90, 0.12);
  --bg: #FBFAF8;
  --surface: #FFFFFF;
  --ink: #22302B;
  --muted: #5C6B64;
  --border: rgba(34, 48, 43, 0.10);
}
@media (prefers-color-scheme: dark) {
  :root {
    --accent: #4A7C65;
    --accent-text: #7FA893;
    --accent-soft: rgba(74, 124, 101, 0.18);
    --bg: #151A18;
    --surface: #1D2320;
    --ink: #E8EDEA;
    --muted: #9AA8A1;
    --border: rgba(232, 237, 234, 0.10);
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
a { color: var(--accent-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
header { padding: 28px 0 0; }
.header-row { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: flex; align-items: center; gap: 9px;
  font-weight: 650; font-size: 17px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
}
.brand svg { width: 24px; height: 24px; color: var(--accent); }
nav { display: flex; gap: 22px; font-size: 14.5px; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--ink); }

article { max-width: 680px; margin: 0 auto; padding: 72px 24px 96px; }
.updated { font-size: 14px; color: var(--muted); margin-top: 10px; }
h1 { font-size: clamp(32px, 6vw, 44px); line-height: 1.12; letter-spacing: -0.025em; font-weight: 700; }
h2 { font-size: 21px; letter-spacing: -0.01em; font-weight: 700; margin-top: 44px; }
p, li { font-size: 16.5px; }
p { margin-top: 14px; }
ul { margin: 14px 0 0 22px; }
li { margin-top: 6px; }

footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 52px; font-size: 14px; color: var(--muted);
}
.footer-row { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
