/* Aparté — tokens du design system (voir DESIGN.md). */
:root {
  --bg: #f6f2ea;
  --surface: #fff;
  --surface2: #efe9dd;
  --ink: #26211b;
  --ink2: #5d564a;
  --ink3: #8f8577;
  --line: #e5dccb;
  --accent: #4c518f;
  --accent-s: #3c4176;
  --spark: #d3963b;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121017;
    --surface: #1a1721;
    --surface2: #231f2c;
    --ink: #ece6d9;
    --ink2: #a89f90;
    --ink3: #7a7266;
    --line: #2c2735;
    --accent: #9ca1e2;
    --accent-s: #b7bbec;
    --spark: #e0b266;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ---- en-tête ---- */
header { padding: 28px 0; }
.bar { display: flex; align-items: center; justify-content: space-between; }
.wordmark {
  font: 600 26px/1 var(--serif);
  color: var(--ink);
  text-decoration: none;
  position: relative;
}
.wordmark .acc { position: relative; }
.wordmark .acc::after {
  content: "";
  position: absolute; top: -2px; left: 56%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--spark);
  box-shadow: 0 0 8px 2px rgba(211, 150, 59, 0.5);
}
.lang { font-size: 13px; color: var(--ink3); text-decoration: none; }
.lang:hover { color: var(--accent-s); }

/* ---- héros ---- */
.hero { padding: 56px 0 40px; text-align: center; }
.orb {
  width: 96px; height: 96px; margin: 0 auto 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #5c62a6, #33376b 70%);
  box-shadow: 0 16px 40px rgba(51, 55, 107, 0.32);
  position: relative;
  display: grid; place-items: center;
}
.orb .dot {
  position: absolute; top: 16px; right: 18px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--spark);
  box-shadow: 0 0 16px 4px rgba(224, 178, 102, 0.6);
}
h1 { font: 600 34px/1.25 var(--serif); letter-spacing: -0.01em; }
.sub { color: var(--ink2); font-size: 17px; margin-top: 14px; }
.tag {
  display: inline-block; margin-top: 24px; padding: 8px 16px;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; color: var(--ink2); background: var(--surface);
}

/* ---- points ---- */
.points { display: grid; gap: 12px; padding: 24px 0 48px; }
.pt {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px;
}
.pt .ic { flex: none; width: 22px; height: 22px; color: var(--accent-s); margin-top: 2px; }
.pt b { display: block; font-size: 15px; margin-bottom: 2px; }
.pt span { font-size: 14px; color: var(--ink2); }

/* ---- section ---- */
section { padding: 40px 0; border-top: 1px solid var(--line); }
h2 { font: 600 22px/1.3 var(--serif); margin-bottom: 14px; }
h3 { font: 600 16px/1.4 var(--sans); margin: 26px 0 8px; }
p { color: var(--ink2); font-size: 15px; margin-bottom: 12px; }
p strong, li strong { color: var(--ink); }
ul { margin: 0 0 14px 20px; }
li { color: var(--ink2); font-size: 15px; margin-bottom: 6px; }
a { color: var(--accent-s); }
.quiet { font-size: 13px; color: var(--ink3); }
.callout {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--spark);
  border-radius: 12px; padding: 16px; margin: 18px 0;
}
.callout p:last-child { margin-bottom: 0; }
footer {
  padding: 40px 0 56px; border-top: 1px solid var(--line);
  text-align: center; font-size: 13px; color: var(--ink3);
}
footer a { margin: 0 8px; }
