/* Shared styling for the legal pages (/privacy, /terms) — same palette and
   type as the landing page, pared down for long-form text. */
:root {
  --ink: #0E1216;
  --line: #2A333C;
  --text: #E9E6DE;
  --muted: #8B95A0;
  --tally: #FF4438;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--tally); color: #fff; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.site-header {
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.wordmark {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-weight: 800; letter-spacing: 0.06em; font-size: 17px; color: var(--text);
}
.tally-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--tally); }

main { padding: 56px 0 80px; }
main h1 { font-size: 34px; line-height: 1.2; margin-bottom: 8px; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
main h2 { font-size: 21px; margin: 36px 0 10px; }
main p, main li { color: var(--text); margin-bottom: 12px; }
main ul { padding-left: 22px; margin-bottom: 12px; }
main a { color: var(--text); text-decoration: underline; text-decoration-color: var(--muted); }
main a:hover { text-decoration-color: var(--tally); }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; }
.site-footer .wrap {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.site-footer a { color: var(--muted); text-decoration: underline; text-decoration-color: transparent; }
.site-footer a:hover { text-decoration-color: var(--tally); }
.site-footer .copyright { color: var(--muted); font-size: 15px; }
