/* One stylesheet for three pages. No build step, no CDN, no fonts to fetch —
   these pages have to load for an App Review reviewer on a bad connection, and
   the only thing that can go wrong is something that has to be downloaded. */

:root {
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --rule: #e3e0d9;
  --paper: #faf9f6;
  --accent: #7a4a2b;
  --flag-bg: #fff4e5;
  --flag-ink: #8a4b00;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8e6e1;
    --muted: #a3a099;
    --rule: #333029;
    --paper: #16150f;
    --accent: #d99a6c;
    --flag-bg: #2b1f0f;
    --flag-ink: #f0c088;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0 auto;
  padding: 3rem 1.25rem 6rem;
  max-width: 44rem;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.6 ui-serif, Georgia, "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
}

header { border-bottom: 1px solid var(--rule); padding-bottom: 1.5rem; margin-bottom: 2.5rem; }
header a { color: var(--ink); text-decoration: none; }
.wordmark { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
.tagline { color: var(--muted); font-size: 0.95rem; margin-top: 0.35rem; }

h1 { font-size: 1.9rem; line-height: 1.25; margin: 0 0 0.5rem; letter-spacing: -0.02em; }
h2 { font-size: 1.2rem; margin: 2.5rem 0 0.75rem; letter-spacing: -0.01em; }
h3 { font-size: 1rem; margin: 1.75rem 0 0.5rem; }
.updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 2rem; }

a { color: var(--accent); }
ul { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }
strong { font-weight: 700; }

table { border-collapse: collapse; width: 100%; margin: 1rem 0; font-size: 0.95rem; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 0.6rem 0.75rem 0.6rem 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-weight: 700; }

/* Anything that must be replaced before these pages go live. Loud on purpose:
   a placeholder that ships is worse than a page that was never written. */
.fill {
  background: var(--flag-bg);
  color: var(--flag-ink);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em;
  font-weight: 700;
}

.note {
  background: var(--flag-bg);
  color: var(--flag-ink);
  border-left: 3px solid currentColor;
  padding: 0.9rem 1.1rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}

footer { border-top: 1px solid var(--rule); margin-top: 4rem; padding-top: 1.5rem; color: var(--muted); font-size: 0.9rem; }
footer a { margin-right: 1.25rem; }
