/* Deliberately plain, and readable on a phone: these two pages are opened
   from a link in the app footer and from a store listing, usually in a
   webview, usually by someone checking one specific thing. */
:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --fg: #16191c;
  --muted: #5b6470;
  --rule: #e4e7eb;
  --link: #2f6f3e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0c10;
    --fg: #e8eaed;
    --muted: #9aa3ae;
    --rule: #232830;
    --link: #b8e986;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
}
main { max-width: 44rem; margin: 0 auto; padding: 2.5rem 1.25rem 5rem; }
h1 { font-size: 1.9rem; line-height: 1.2; margin: 0 0 .35rem; }
h2 {
  font-size: 1.15rem;
  margin: 2.4rem 0 .6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
}
h3 { font-size: 1rem; margin: 1.5rem 0 .4rem; }
p, ul { margin: 0 0 1rem; }
ul { padding-left: 1.2rem; }
li { margin-bottom: .4rem; }
a { color: var(--link); }
.meta { color: var(--muted); font-size: .875rem; margin-bottom: 2rem; }
.lede { font-size: 1.05rem; }
.back { margin-bottom: 1.5rem; font-weight: 600; }
.back a { text-decoration: none; }
