/* The privacy and terms pages. Deliberately not styles.css: those are app
   chrome for a phone-sized UI, and these are documents somebody reads. Same
   palette, different job. They must also stand up on their own, because a
   store reviewer opens them cold in a desktop browser. */

:root {
  --ground: #f4f8f8;
  --surface: #ffffff;
  --ink: #16211f;
  --ink-soft: #3d5250;
  --muted: #6a7f7c;
  --line: #dde8e6;
  --accent: #0c7b87;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #0f1918;
    --surface: #16211f;
    --ink: #e9f1ef;
    --ink-soft: #bfcecb;
    --muted: #8ca09d;
    --line: #26332f;
    --accent: #4bc3ce;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding-inline: 20px;
  background: var(--ground);
  color: var(--ink);
  font: 17px/1.62 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.doc { max-width: 680px; margin-inline: auto; padding-block: 44px 72px; }

.eyebrow { margin: 0 0 20px; font-size: 14px; letter-spacing: .04em; }
.eyebrow a { color: var(--accent); font-weight: 600; text-decoration: none; }

h1 {
  font-size: clamp(28px, 5.5vw, 38px); line-height: 1.15; letter-spacing: -.02em;
  margin: 0 0 14px; text-wrap: balance;
}
.lede { color: var(--muted); font-size: 16px; margin: 0 0 8px; }

section {
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line);
}
h2 {
  font-size: 21px; line-height: 1.25; letter-spacing: -.01em;
  margin: 0 0 12px; text-wrap: balance;
}
h3 {
  font-size: 16px; margin: 26px 0 6px; color: var(--ink);
  letter-spacing: .01em;
}
p { margin: 0 0 14px; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

ul.plain { margin: 0 0 16px; padding-left: 22px; }
ul.plain li { margin-bottom: 9px; color: var(--ink-soft); }
ul.plain li::marker { color: var(--muted); }

a { color: var(--accent); text-underline-offset: 2px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

footer {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 15px; color: var(--muted);
}
footer p { color: var(--muted); margin: 0; }
