/* Privacy Policy and Terms: plain pages that load without the app. Same tokens
   as the site and the 404 page. */
:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --label: #1d1d1f;
  --label-secondary: rgba(60, 60, 67, 0.74);
  --separator: rgba(60, 60, 67, 0.16);
  --accent: #0b6bfc;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --surface: #1c1c1e;
    --label: #f5f5f7;
    --label-secondary: rgba(235, 235, 245, 0.6);
    --separator: rgba(84, 84, 88, 0.6);
    --accent: #3b8bff;
  }
  .logo { filter: invert(1) hue-rotate(180deg); }
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--label); }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.47;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  padding: 0 1.25rem 4rem;
}
header, main, footer { max-width: 42rem; margin: 0 auto; }
header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; }
.logo-link { display: inline-block; }
.logo { display: block; height: 1.375rem; width: auto; }
.back { font-size: 0.9375rem; color: var(--accent); text-decoration: none; }
.back:hover { text-decoration: underline; }
main {
  margin-top: 1.5rem;
  padding: 2.5rem clamp(1.25rem, 5vw, 3rem);
  background: var(--surface);
  border-radius: 1.5rem;
}
h1 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 6vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.updated { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--label-secondary); }
.lede { margin: 1.5rem 0 0; font-size: 1.1875rem; line-height: 1.42; color: var(--label-secondary); }
h2 {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--separator);
  font-size: 1.3125rem;
  line-height: 1.24;
  letter-spacing: 0.01em;
  font-weight: 600;
}
h2 + p, h2 + ul { margin-top: 0.75rem; }
p, ul { margin: 1rem 0 0; }
ul { padding-left: 1.25rem; }
li + li { margin-top: 0.375rem; }
strong { font-weight: 600; }
a { color: var(--accent); }
a:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 50%, transparent); outline-offset: 2px; border-radius: 4px; }
footer { padding: 2rem 0 0; font-size: 0.8125rem; color: var(--label-secondary); display: flex; gap: 1.25rem; flex-wrap: wrap; }
footer a { color: inherit; }
