/* ClipDiver — pages publiques (accueil, conditions, confidentialité) */
:root {
  --abyss: #0e2a3b;     /* texte, titres */
  --current: #2c6f8f;   /* liens */
  --surface: #edf3f6;   /* fond */
  --foam: #ffffff;      /* feuille de lecture */
  --line: #c6d6de;      /* filets */
  --muted: #4f6875;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root { --abyss:#dbe8ee; --current:#7cc0de; --surface:#0b1a23; --foam:#11232e; --line:#23404f; --muted:#9bb3bf; }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--surface); color: var(--abyss);
  font: 1.0625rem/1.7 "Source Serif 4", Georgia, "Times New Roman", serif;
}
a { color: var(--current); text-underline-offset: .18em; }
a:focus-visible { outline: 3px solid var(--current); outline-offset: 2px; border-radius: 2px; }
header.site {
  max-width: 44rem; margin: 0 auto; padding: 1.5rem 1.25rem .5rem;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  font-family: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif; font-size: .95rem;
}
header.site .name { font-weight: 700; letter-spacing: -.01em; color: var(--abyss); text-decoration: none; font-size: 1.1rem; }
header.site nav a { margin-left: 1rem; }
main {
  max-width: 44rem; margin: 1rem auto 3rem; padding: 2.5rem 2rem;
  background: var(--foam); border-left: 4px solid var(--current);
}
h1, h2 { font-family: "Instrument Sans", system-ui, sans-serif; line-height: 1.2; letter-spacing: -.015em; }
h1 { font-size: 2.1rem; margin: 0 0 .4rem; }
h2 { font-size: 1.25rem; margin: 2.2rem 0 .4rem; }
.updated { color: var(--muted); margin-top: 0; font-size: .95rem; }
p, li { max-width: 68ch; }
table { border-collapse: collapse; width: 100%; font-size: .95rem; margin: .5rem 0 1rem; }
th, td { text-align: left; vertical-align: top; padding: .5rem .6rem; border-bottom: 1px solid var(--line); }
.tablewrap { overflow-x: auto; }
footer { max-width: 44rem; margin: 0 auto 2rem; padding: 0 1.25rem; color: var(--muted); font-size: .9rem;
  font-family: "Instrument Sans", system-ui, sans-serif; }
.lead { font-size: 1.2rem; }
@media (max-width: 36rem) { main { padding: 1.75rem 1.1rem; border-left-width: 3px; } h1 { font-size: 1.7rem; } }
h3 { font-family: "Instrument Sans", system-ui, sans-serif; font-size: 1.05rem; margin: 1.5rem 0 .3rem; }
