/* ===========================================================================
   Fonte — pages légales (confidentialité, mentions…)
   Page de texte : une colonne de lecture, aucune fioriture.
   Volontairement indépendante de style.css (feuille de la landing).
   =========================================================================== */
:root {
  --ink: #1c1c1e;
  --ink-soft: #5c5c5c;
  --line: #e7e7eb;
  --accent: #2e7df2;
  --sans: "General Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.topbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
.topbar a {
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
}
.topbar a:hover { color: var(--ink); }
.lang { text-decoration: underline; text-underline-offset: 2px; }

h1 { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.updated { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }

h2 { margin-top: 36px; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }

p { margin-top: 12px; }
strong { font-weight: 600; }

ul { margin-top: 12px; padding-left: 20px; }
li { margin-top: 6px; }

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

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}
footer a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
footer a:hover { color: var(--ink); }

@media (max-width: 600px) {
  .legal { padding: 32px 20px 64px; }
  h1 { font-size: 27px; }
}
