/* =========================
   Base & Reset léger
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  background: #f7f8fa;
  color: #1f2937;
  line-height: 1.6;
}

/* =========================
   Layout
========================= */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-header {
  margin-bottom: 8px;
}

.page-footer {
  margin-top: 24px;
  text-align: center;
}

/* =========================
   Typographie
========================= */
h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
  color: #111827;
}

h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

h2 {
  font-size: 1.35rem;
  margin-top: 24px;
}

h3 {
  font-size: 1.1rem;
  margin-top: 16px;
}

p {
  margin: 8px 0 12px;
}

.lede {
  font-size: 1.05rem;
  color: #374151;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}

.small {
  font-size: 0.9rem;
}

.tiny {
  font-size: 0.75rem;
}

/* =========================
   Cards
========================= */
.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card + .card {
  margin-top: 8px;
}

.card--quote {
  background: #f9fafb;
  border-left: 4px solid #2563eb;
}

.callout {
  background: #f8fafc;
  border-left: 4px solid #16a34a;
}

.legal {
  background: #ffffff;
}

/* =========================
   Texte & listes
========================= */
.list {
  padding-left: 20px;
  margin: 8px 0 16px;
}

.list li {
  margin-bottom: 6px;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
  color: #111827;
}

.quote-sub {
  font-size: 0.9rem;
  color: #4b5563;
}

.muted {
  color: #6b7280;
}

/* =========================
   Séparateurs
========================= */
.divi
