/* Feuille unique, servie telle quelle. Aucun build, aucune police distante : ces pages doivent
   se charger partout, y compris sur un vieux téléphone et une connexion faible — c'est le public
   de l'app, et une page de confidentialité qui ne s'affiche pas vaut une page absente. */

:root {
  --brand: #2b5fe3;
  --brand-dark: #1e48be;
  --text: #24292f;
  --muted: #5b6670;
  --rule: #e5e5e5;
  --bg: #ffffff;
  --surface: #f7f8fa;
}

@media (prefers-color-scheme: dark) {
  :root {
    --brand: #6f96f5;
    --brand-dark: #4c7bf0;
    --text: #f1f7fb;
    --muted: #9fb0ba;
    --rule: #37464f;
    --bg: #131f24;
    --surface: #1c2b32;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

header {
  border-bottom: 2px solid var(--rule);
  background: var(--surface);
}

.bar {
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--text);
  text-decoration: none;
}

.wordmark span { color: var(--brand); }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

h1 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 8px 0 4px;
}

h2 {
  font-size: 20px;
  margin: 34px 0 10px;
  padding-top: 18px;
  border-top: 2px solid var(--rule);
}

h2:first-of-type { border-top: 0; padding-top: 0; }

.updated {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 28px;
}

a { color: var(--brand); }

ul { padding-left: 22px; }
li { margin: 6px 0; }

.callout {
  background: var(--surface);
  border: 2px solid var(--rule);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 16px;
  display: block;
  overflow-x: auto;
}

th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

th { font-weight: 700; }

footer {
  border-top: 2px solid var(--rule);
  margin-top: 48px;
  padding-top: 20px;
  font-size: 15px;
  color: var(--muted);
}

footer a { margin-right: 14px; display: inline-block; }
