/* HerpBase legal pages. Deliberately plain: these are read once, usually by someone checking
   whether we can be trusted, and occasionally by an App Store reviewer. */
:root {
  --bg: #ffffff;
  --fg: #1a1c1a;
  --muted: #5c625d;
  --rule: #e3e6e3;
  --accent: #2f7d4f;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #142019;
    --fg: #e8ece9;
    --muted: #9aa39d;
    --rule: #26332b;
    --accent: #6cc38d;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}
main { max-width: 44rem; margin: 0 auto; padding: 3rem 1.25rem 6rem; }
header { border-bottom: 1px solid var(--rule); padding-bottom: 1.5rem; margin-bottom: 2rem; }
header a { color: var(--accent); font-weight: 600; text-decoration: none; }
h1 { font-size: 2rem; line-height: 1.2; margin: 0 0 .4rem; letter-spacing: -0.02em; }
h2 { font-size: 1.2rem; margin: 2.5rem 0 .6rem; letter-spacing: -0.01em; }
.updated { color: var(--muted); font-size: .95rem; margin: 0; }
.lede { font-size: 1.1rem; }
a { color: var(--accent); }
ul { padding-left: 1.2rem; }
li { margin: .35rem 0; }
strong { font-weight: 600; }
footer { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); color: var(--muted); font-size: .95rem; }
footer a { color: var(--accent); }
