/* ProprioPreuve — feuille de style du site vitrine (/, pages documents, vérification, légal).
   Reprend les tokens de assets/css/app.css : même papier, même encre, même cobalt.
   Le vert « preuve » est réservé à ce qui valide (coches, tampons, statut authentique).
   Mobile d'abord. Aucun framework, aucune dépendance. */

:root {
  color-scheme: light;

  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #f0f2f8;
  --surface-3: #e4e8f2;
  --text: #0b0f1a;
  --text-soft: #5b6479;
  --text-faint: #666f84;
  --line: #e3e7f0;
  --line-strong: #cdd3e1;

  --ink: #0b0f1a;
  --ink-2: #141a2b;
  --ink-3: #1c2338;
  --ink-line: rgba(255, 255, 255, .09);
  --ink-soft: #9aa3bf;
  --ink-text: #f5f7ff;

  --accent: #2b59ff;
  --accent-hover: #1f47e0;
  --accent-soft: #eaf0ff;
  --proof: #c6f432;
  --proof-ink: #3d5200;
  --proof-soft: #f1fbd3;
  --ok: #0a7a4b;
  --ok-soft: #e4f7ee;
  --warn: #b25e00;
  --warn-soft: #fff3e0;
  --warn-dot: #ffb224;
  --bad-dot: #ff6369;
  --danger: #c9282d;
  --danger-soft: #feeced;

  --radius-xl: 28px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-sm: 0 1px 2px rgba(11, 15, 26, .05);
  --shadow: 0 1px 2px rgba(11, 15, 26, .04), 0 8px 24px -6px rgba(11, 15, 26, .08);
  --shadow-lg: 0 2px 6px rgba(11, 15, 26, .06), 0 24px 60px -12px rgba(11, 15, 26, .18);
  --ring: 0 0 0 4px rgba(43, 89, 255, .16);
  --ease: cubic-bezier(.16, 1, .3, 1);

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;

  --maxw: 1160px;
  --gutter: clamp(16px, 4.4vw, 32px);
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 var(--font);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-hover); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(43, 89, 255, .18); }

.skip { position: absolute; left: -9999px; top: 10px; z-index: 100; background: var(--surface); padding: 10px 14px; border-radius: var(--radius-sm); box-shadow: var(--shadow); color: var(--text); }
.skip:focus { left: 10px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 780px; }

.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.ico { display: inline-block; flex: none; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ico--sm { width: 16px; height: 16px; }
.ico--lg { width: 24px; height: 24px; }
.mono { font-family: var(--mono); font-size: .92em; letter-spacing: .01em; }

/* ---------- boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent;
  font: 600 15.5px/1 var(--font); letter-spacing: -.01em; text-decoration: none; cursor: pointer;
  transition: background .2s var(--ease), color .2s, border-color .2s, box-shadow .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn .ico { transition: transform .25s var(--ease); }
.btn:hover .ico--go { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 8px 20px -8px rgba(43, 89, 255, .7); }
.btn--primary:hover { background: var(--accent-hover); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 12px 26px -8px rgba(43, 89, 255, .75); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { color: var(--text); border-color: var(--text); }
.btn--on-ink { background: rgba(255,255,255,.06); color: var(--ink-text); border-color: rgba(255,255,255,.18); }
.btn--on-ink:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 14.5px; }
.btn--block { width: 100%; }

/* ---------- en-tête ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 247, 251, .82);
  -webkit-backdrop-filter: saturate(1.6) blur(14px); backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header__bar { display: flex; align-items: center; gap: 12px; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -.025em; color: var(--text); text-decoration: none; margin-right: auto; }
.logo:hover { color: var(--text); }
.logo__glyph { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: var(--ink); color: var(--proof); }
.logo__glyph .ico { width: 18px; height: 18px; stroke-width: 2.4; }
.nav { display: none; }
.nav a { color: var(--text-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; padding: 8px 12px; border-radius: 999px; transition: color .2s, background .2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); background: rgba(11, 15, 26, .05); }
.header__cta { display: inline-flex; padding: 0 14px; }
.lg-only { display: none; }
@media (max-width: 399px) { .logo { font-size: 17px; gap: 8px; } .header__bar { gap: 8px; } .header__cta { padding: 0 12px; font-size: 14px; } }
@media (max-width: 359px) { .header__cta { display: none; } }

.menu { position: relative; }
.menu > summary { list-style: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; cursor: pointer; color: var(--text); border: 1px solid var(--line-strong); background: var(--surface); }
.menu > summary::-webkit-details-marker { display: none; }
.menu[open] > summary { border-color: var(--text); }
.menu__panel {
  position: absolute; right: 0; top: calc(100% + 10px); width: min(320px, calc(100vw - 2 * var(--gutter)));
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; display: grid; gap: 2px;
  animation: pop .22s var(--ease) both;
}
.menu__panel a { display: flex; align-items: center; gap: 10px; padding: 12px 12px; border-radius: 10px; color: var(--text); text-decoration: none; font-weight: 500; }
.menu__panel a:hover { background: var(--surface-2); }
.menu__panel .ico { color: var(--text-faint); }
.menu__panel .btn { margin-top: 8px; color: #fff; justify-content: center; }
.menu__panel .btn .ico { color: #fff; }
.menu__sep { height: 1px; background: var(--line); margin: 6px 4px; }
@keyframes pop { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }

@media (min-width: 960px) {
  .nav { display: flex; align-items: center; gap: 2px; margin-right: 8px; }
  .header__cta { padding: 0 16px; }
  .lg-only { display: inline; }
  .sm-only { display: none; }
  .menu { display: none; }
}

/* ---------- typographie de section ---------- */
.section { padding: clamp(64px, 9vw, 104px) 0; }
.section--tight { padding: clamp(44px, 7vw, 72px) 0; }
.section--line { border-top: 1px solid var(--line); }
.section__head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--accent); }
.kicker::before { content: ""; width: 14px; height: 2px; border-radius: 2px; background: currentColor; }
.h2 { margin: 0; font-size: clamp(30px, 5.2vw, 46px); line-height: 1.06; font-weight: 700; letter-spacing: -.04em; text-wrap: balance; }
.h2 .serif { font-size: 1.1em; letter-spacing: -.02em; }
.h3 { margin: 0; font-size: 18px; line-height: 1.3; font-weight: 650; letter-spacing: -.02em; }
.lead { margin: 16px 0 0; font-size: clamp(17px, 2vw, 19px); line-height: 1.55; color: var(--text-soft); text-wrap: pretty; }
.muted { color: var(--text-soft); }
.small { font-size: 14px; }

/* ---------- héro ---------- */
.hero-wrap { padding-top: 8px; }
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius-xl); background: var(--ink); color: var(--ink-text);
  padding: clamp(40px, 7vw, 76px) clamp(22px, 5vw, 64px) clamp(36px, 6vw, 64px);
  box-shadow: var(--shadow-lg);
}
.hero::before {
  content: ""; position: absolute; top: -30%; right: -18%; width: 680px; height: 680px; z-index: -1;
  background: radial-gradient(closest-side, rgba(43, 89, 255, .55), transparent);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .55;
  background-image: linear-gradient(var(--ink-line) 1px, transparent 1px), linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at 75% 10%, #000 5%, transparent 65%);
  mask-image: radial-gradient(ellipse at 75% 10%, #000 5%, transparent 65%);
}
.hero__grid { display: grid; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px;
  padding: 6px 14px 6px 10px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,.06); border: 1px solid var(--ink-line); color: #d8def0;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--proof); box-shadow: 0 0 0 4px rgba(198, 244, 50, .18); }
.hero__title { margin: 0; font-size: clamp(38px, 8.2vw, 70px); line-height: 1; font-weight: 700; letter-spacing: -.048em; text-wrap: balance; }
.hero__title .serif { color: var(--proof); font-size: 1.1em; letter-spacing: -.02em; padding-right: .04em; }
.hero__sub { margin: 22px 0 0; color: #b9c1d9; font-size: clamp(17px, 2vw, 19px); line-height: 1.55; max-width: 36em; text-wrap: pretty; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__note { margin: 16px 0 0; font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hero__note .ico { color: var(--proof); }
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.08fr .92fr; gap: 40px; }
}

/* visuel : pile de pages + tampon */
.paper { position: relative; width: 100%; max-width: 420px; margin: 0 auto; aspect-ratio: 420 / 540; }
.paper__sheet {
  position: absolute; inset: 6% 12% 4% 12%; border-radius: 12px; background: #fff;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .8s var(--ease);
}
.paper__sheet--1 { transform: translateX(-11%) rotate(-8deg) scale(.93); opacity: .55; }
.paper__sheet--2 { transform: translateX(10%) rotate(6deg) scale(.95); opacity: .75; }
.paper:hover .paper__sheet--1 { transform: translateX(-15%) rotate(-11deg) scale(.93); }
.paper:hover .paper__sheet--2 { transform: translateX(14%) rotate(9deg) scale(.95); }
.paper__page {
  position: absolute; inset: 6% 12% 4% 12%; border-radius: 12px; background: #fff; color: var(--text);
  padding: 7% 7% 6%; display: flex; flex-direction: column; gap: 3.2%;
  box-shadow: 0 40px 80px -24px rgba(0,0,0,.75);
  font-size: clamp(8px, 2.2vw, 10.5px); line-height: 1.35;
}
.pp__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; padding-bottom: 3%; border-bottom: 1px solid var(--line); }
.pp__title { font-weight: 700; font-size: 1.35em; letter-spacing: -.02em; }
.pp__meta { color: var(--text-faint); font-size: .9em; }
.pp__logo { width: 2.4em; height: 2.4em; border-radius: .6em; background: var(--ink); color: var(--proof); display: grid; place-items: center; flex: none; }
.pp__logo .ico { width: 1.4em; height: 1.4em; stroke-width: 2.6; }
.pp__room { font-weight: 650; font-size: 1.05em; margin-top: 1%; }
.pp__rows { display: grid; gap: .45em; }
.pp__row { display: flex; justify-content: space-between; align-items: center; gap: 6px; padding: .35em 0; border-bottom: 1px dashed var(--line); }
.chip { display: inline-flex; align-items: center; gap: .4em; padding: .2em .65em; border-radius: 999px; font-weight: 600; font-size: .92em; background: var(--ok-soft); color: var(--ok); white-space: nowrap; }
.chip::before { content: ""; width: .5em; height: .5em; border-radius: 50%; background: currentColor; }
.chip--warn { background: var(--warn-soft); color: var(--warn); }
.pp__photos { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4%; }
.pp__photo { position: relative; aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden; background: linear-gradient(160deg, #dfe6f7 0%, #b8c6ea 55%, #8ea3d8 100%); }
.pp__photo::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 38%; background: linear-gradient(180deg, #c9b79a, #a8916d); }
.pp__photo::after { content: ""; position: absolute; left: 18%; top: 22%; width: 28%; height: 34%; border-radius: 3px; background: rgba(255,255,255,.55); box-shadow: 0 0 0 2px rgba(255,255,255,.35); }
.pp__photo--2 { background: linear-gradient(160deg, #eef3dc, #cbd99a); }
.pp__photo--2::after { left: 30%; top: 30%; width: 40%; height: 26%; border-radius: 50% 50% 40% 40%; background: rgba(255,255,255,.45); }
.pp__stamp-time { position: absolute; right: 5%; bottom: 6%; z-index: 1; font-family: var(--mono); font-size: .78em; font-weight: 600; color: #ffd166; text-shadow: 0 1px 2px rgba(0,0,0,.7); }
.pp__sigs { display: grid; grid-template-columns: 1fr 1fr; gap: 6%; margin-top: auto; }
.pp__sig { border-top: 1px solid var(--line-strong); padding-top: .4em; color: var(--text-faint); font-size: .85em; }
.pp__sig svg { width: 100%; height: 2.6em; color: var(--accent); margin-bottom: .2em; }
.pp__foot { display: flex; justify-content: space-between; gap: 6px; padding-top: 3%; border-top: 1px solid var(--line); color: var(--text-faint); font-size: .8em; }
.pp__foot strong { color: var(--text); font-family: var(--mono); font-weight: 600; letter-spacing: .02em; }
.stamp {
  position: absolute; right: 2%; top: 44%; z-index: 3; transform: rotate(-11deg);
  display: grid; justify-items: center; gap: 2px;
  padding: 10px 16px 9px; border: 3px solid var(--proof); border-radius: 12px;
  color: var(--proof); background: rgba(11, 15, 26, .9);
  box-shadow: 0 0 0 4px rgba(11,15,26,.9), 0 0 0 5px rgba(198,244,50,.5), 0 16px 40px -8px rgba(198, 244, 50, .4);
  animation: stamp .7s .35s var(--ease) both;
}
.stamp__word { font-weight: 800; font-size: clamp(16px, 3.6vw, 20px); letter-spacing: .16em; line-height: 1; }
.stamp__sub { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
@keyframes stamp { from { opacity: 0; transform: rotate(-4deg) scale(1.35); } to { opacity: 1; transform: rotate(-11deg) scale(1); } }

/* ---------- bandeau de confiance ---------- */
.trust { padding: 22px 0 0; }
.trust__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 10px; }
.trust__item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 500; color: var(--text); }
.trust__icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--ink); color: var(--proof); flex: none; }
.trust__icon .ico { width: 18px; height: 18px; }
.trust__item small { display: block; color: var(--text-soft); font-weight: 400; font-size: 13px; }
@media (min-width: 640px) { .trust__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .trust__list { grid-template-columns: repeat(5, 1fr); } .trust__item { flex-direction: column; align-items: flex-start; gap: 10px; } }

/* ---------- cartes ---------- */
.cards { display: grid; gap: 14px; }
@media (min-width: 720px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } .cards--3 { grid-template-columns: repeat(2, 1fr); } .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } .cards--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.card p { margin: 0; color: var(--text-soft); font-size: 15px; }
.card__icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 6px; }
.card__ref { margin-top: auto !important; padding-top: 10px; font-size: 13px !important; color: var(--text-faint) !important; }
.card--link { text-decoration: none; color: inherit; transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s; }
.card--link:hover { color: inherit; box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.card--link .card__icon { transition: background .25s var(--ease), color .25s, transform .35s var(--ease); }
.card--link:hover .card__icon { background: var(--accent); color: #fff; transform: rotate(-6deg); }
.card__go { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 8px; font-weight: 600; font-size: 14.5px; color: var(--accent); }
.card__go .ico { transition: transform .25s var(--ease); }
.card--link:hover .card__go .ico { transform: translateX(3px); }
.card__tag { position: absolute; top: 22px; right: 22px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; background: var(--surface-2); color: var(--text-soft); }

.note { margin: 22px 0 0; font-size: 13.5px; color: var(--text-faint); max-width: 70ch; }

/* ---------- problème : chiffre de loi ---------- */
.law { font-family: var(--serif); font-style: italic; font-size: 30px; line-height: 1; color: var(--text); letter-spacing: -.01em; }

/* ---------- étapes ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; }
.step::before { counter-increment: step; content: counter(step); width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; font-weight: 700; background: var(--ink); color: var(--proof); margin-bottom: 6px; }
.step p { margin: 0; color: var(--text-soft); font-size: 15px; }
.step__visual { margin-top: auto; padding-top: 14px; }
.mini { border-radius: var(--radius-sm); background: var(--surface-2); padding: 14px; display: grid; gap: 8px; font-size: 13px; }
.mini__row { display: flex; justify-content: space-between; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 9px; padding: 8px 10px; }
.mini__count { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-variant-numeric: tabular-nums; }
.mini__count span { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; background: var(--surface-2); color: var(--text-soft); font-weight: 600; }
.mini__btn { justify-self: start; display: inline-flex; align-items: center; gap: 6px; background: var(--ink); color: var(--ink-text); border-radius: 999px; padding: 6px 12px; font-weight: 600; font-size: 12.5px; }
.mini__btn .ico { color: var(--proof); width: 14px; height: 14px; stroke-width: 2.4; }
.mini__seg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.mini__seg span { text-align: center; padding: 5px 0; border-radius: 7px; background: var(--surface); border: 1px solid var(--line); color: var(--text-soft); font-size: 11.5px; }
.mini__seg .is-on { background: var(--ok-soft); color: var(--ok); border-color: #b9e6cf; font-weight: 600; }
.mini__sig { background: var(--surface); border: 1px dashed var(--line-strong); border-radius: 9px; padding: 8px 10px; color: var(--accent); }
.mini__sig svg { height: 34px; width: 100%; }
.mini__meta { display: flex; align-items: center; gap: 6px; color: var(--text-soft); font-size: 12px; }
.mini__meta .ico { width: 14px; height: 14px; color: var(--ok); }

/* ---------- fonctionnalités ---------- */
.features { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature { background: var(--surface); padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; transition: background .25s; }
.feature:hover { background: #fbfcff; }
.feature__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--surface-2); color: var(--text); margin-bottom: 6px; transition: background .25s, color .25s; }
.feature:hover .feature__icon { background: var(--accent-soft); color: var(--accent); }
.feature p { margin: 0; color: var(--text-soft); font-size: 14.5px; }
.feature { position: relative; }
.feature__badge { position: absolute; top: 28px; right: 24px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; background: var(--ink); color: var(--proof); }

/* ---------- panneau encre (vérification, CTA) ---------- */
.ink {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius-xl); background: var(--ink); color: var(--ink-text);
  padding: clamp(36px, 6vw, 72px) clamp(22px, 5vw, 64px);
}
.ink::before { content: ""; position: absolute; left: -20%; bottom: -60%; width: 640px; height: 640px; z-index: -1; background: radial-gradient(closest-side, rgba(43, 89, 255, .45), transparent); }
.ink .kicker { color: var(--proof); }
.ink .h2 { color: #fff; }
.ink .lead { color: #b9c1d9; }
.ink a:not(.btn) { color: #c9d5ff; }
.ink__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .ink__grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.ticks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: #d6dcef; font-size: 15.5px; }
.ticks .ico { color: var(--proof); margin-top: 3px; stroke-width: 2.2; }
.ticks--light li { color: var(--text); }
.ticks--light .ico { color: var(--ok); }
.ticks strong { color: #fff; font-weight: 600; }
.ticks--light strong { color: var(--text); }

.verify-demo { display: grid; gap: 14px; }
.vd__pdf { background: #fff; color: var(--text); border-radius: 14px; padding: 16px 18px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); font-size: 13px; }
.vd__pdf-row { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; color: var(--text-faint); }
.vd__pdf-row strong { color: var(--text); font-family: var(--mono); font-weight: 600; }
.vd__lines { display: grid; gap: 6px; margin-bottom: 14px; }
.vd__lines span { height: 6px; border-radius: 3px; background: var(--surface-3); }
.vd__lines span:nth-child(2) { width: 80%; }
.vd__lines span:nth-child(3) { width: 55%; }
.vd__arrow { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 13px; padding-left: 6px; }
.vd__arrow .ico { transform: rotate(90deg); }
.vd__result { background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: 14px; padding: 18px; display: grid; gap: 12px; }
.vd__status { display: flex; align-items: center; gap: 12px; }
.vd__seal { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--proof); color: var(--ink); flex: none; }
.vd__seal .ico { stroke-width: 2.6; }
.vd__status strong { display: block; color: #fff; font-size: 16px; letter-spacing: -.01em; }
.vd__status div span { color: var(--ink-soft); font-size: 13px; }
.vd__dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; margin: 0; font-size: 13.5px; }
.vd__dl dt { color: var(--ink-soft); }
.vd__dl dd { margin: 0; color: #e6ebfa; text-align: right; overflow-wrap: anywhere; }

/* ---------- documents ---------- */
.doccard__name { font-size: 19px; font-weight: 650; letter-spacing: -.02em; margin: 0; }
.doccard__for { font-size: 13px !important; font-weight: 600; color: var(--text-faint) !important; }

/* ---------- pros ---------- */
.pro { display: grid; gap: 40px; align-items: start; }
@media (min-width: 960px) { .pro { grid-template-columns: 1fr 1fr; gap: 64px; } }
.cover {
  position: relative; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  padding: 26px; display: grid; gap: 14px; max-width: 460px;
}
.cover__brand { display: flex; align-items: center; gap: 12px; }
.cover__logo { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #0f766e, #14b8a6); color: #fff; display: grid; place-items: center; font-weight: 800; letter-spacing: -.02em; }
.cover__brand strong { display: block; letter-spacing: -.01em; }
.cover__brand div span { color: var(--text-faint); font-size: 13px; }
.cover__title { font-size: 22px; font-weight: 700; letter-spacing: -.03em; margin: 8px 0 0; }
.cover__lines { display: grid; gap: 7px; }
.cover__lines span { height: 7px; border-radius: 4px; background: var(--surface-3); }
.cover__lines span:nth-child(2) { width: 70%; }
.cover__search { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; background: var(--surface-2); color: var(--text-soft); font-size: 14px; }
.cover__folders { display: grid; gap: 6px; }
.cover__folder { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; font-size: 13.5px; }
.cover__folder .ico { color: var(--accent); }
.cover__folder em { margin-left: auto; font-style: normal; color: var(--text-faint); font-size: 12.5px; }

/* ---------- tarifs ---------- */
.pricing { display: grid; gap: 14px; align-items: stretch; }
@media (min-width: 900px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
.plan {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 28px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.plan__name { margin: 0; font-size: 16px; font-weight: 650; letter-spacing: -.01em; }
.plan__for { margin: -8px 0 0; color: var(--text-soft); font-size: 14.5px; }
.plan__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 8px; margin: 4px 0 0; }
.plan__amount { font-size: 46px; line-height: 1; font-weight: 700; letter-spacing: -.045em; font-variant-numeric: tabular-nums; }
.plan__unit { color: var(--text-soft); font-size: 15px; }
.plan__sub { margin: -6px 0 0; font-size: 14px; color: var(--ok); font-weight: 600; }
.plan ul { list-style: none; margin: 4px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: 15px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li .ico { color: var(--ok); margin-top: 2px; width: 18px; height: 18px; stroke-width: 2.2; }
.plan .btn { margin-top: auto; }
.plan__badge { position: absolute; top: -12px; left: 26px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .02em; box-shadow: 0 6px 16px -6px rgba(43,89,255,.8); }
.plan--featured { background: var(--ink); color: var(--ink-text); border-color: var(--ink); box-shadow: var(--shadow-lg); isolation: isolate; overflow: visible; }
.plan--featured::before { content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1; background: radial-gradient(420px 260px at 100% 0%, rgba(43, 89, 255, .45), transparent 70%); }
.plan--featured .plan__for, .plan--featured .plan__unit { color: #b9c1d9; }
.plan--featured .plan__sub { color: #c9d5ff; }
.plan--featured ul { border-color: var(--ink-line); }
.plan--featured li .ico { color: var(--proof); }
@media (min-width: 900px) { .plan--featured { transform: translateY(-8px); } }
.pricing__note { margin: 20px 0 0; text-align: center; color: var(--text-soft); font-size: 14.5px; }
.pricing__note strong { color: var(--text); }

.compare td.num, .compare th.num { text-align: right; font-variant-numeric: tabular-nums; }
@media (min-width: 560px) { .compare td.num, .compare th.num { white-space: nowrap; } }
@media (max-width: 559px) { .prose table { font-size: 14px; } .prose th, .prose td { padding: 10px 10px; } }
.compare tr.is-us td, .compare tr.is-us th { background: var(--proof-soft); }
.compare tr.is-us th { color: var(--proof-ink); }

/* ---------- guides ---------- */
.guide-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 18px; color: var(--text-faint); font-size: 14px; }
.guide-card__meta { font-size: 13px !important; color: var(--text-faint) !important; }
.example { padding: 18px 20px; border-radius: var(--radius-sm); border: 1px dashed var(--line-strong); background: var(--surface); font-size: 15.5px; }
.example strong:first-child { display: block; margin-bottom: 6px; font-size: 13px; letter-spacing: .02em; color: var(--text-faint); font-weight: 600; }

/* check-list imprimable */
.cl-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cl { display: grid; gap: 18px; }
@media (min-width: 800px) { .cl { grid-template-columns: 1fr 1fr; } }
.cl__block { break-inside: avoid; padding: 20px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.cl__block h2 { margin: 0 0 12px; font-size: 17px; letter-spacing: -.015em; display: flex; align-items: center; gap: 10px; }
.cl__block h2 span { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--ink); color: var(--proof); font-size: 13px; flex: none; }
.cl__block ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; line-height: 1.45; }
.cl__block li { display: flex; gap: 10px; align-items: flex-start; }
.cl__block li::before { content: ""; flex: none; width: 16px; height: 16px; margin-top: 2px; border: 1.6px solid var(--line-strong); border-radius: 4px; background: var(--surface); }
.cl__block--wide { grid-column: 1 / -1; }
.cl__rooms { display: grid; gap: 8px 24px; }
@media (min-width: 800px) { .cl__rooms { grid-template-columns: repeat(2, 1fr); } }
.cl__print-head { display: none; }
@media print {
  @page { margin: 12mm; }
  body { font-size: 11pt; }
  .page-hero, .cl-actions, .no-print, .skip { display: none !important; }
  .cl__print-head { display: block; margin-bottom: 10px; }
  .cl__print-head h1 { font-size: 18pt; margin: 0; }
  .cl__print-head p { margin: 2px 0 0; font-size: 9pt; color: #555; }
  .wrap { max-width: none; padding: 0; }
  .section, .section--tight { padding: 0 !important; }
  .cl { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cl__block { padding: 8px 10px; border-radius: 6px; border-color: #bbb; box-shadow: none; }
  .cl__block h2 { font-size: 11pt; margin-bottom: 6px; }
  .cl__block h2 span { background: #000; color: #fff; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .cl__block ul { font-size: 9pt; gap: 3px; }
  .cl__block li::before { width: 10px; height: 10px; margin-top: 1px; border-color: #555; }
}

/* ---------- à propos ---------- */
.placeholder { padding: 22px 24px; border-radius: var(--radius); border: 2px dashed #e5c55e; background: #fffbea; color: #5c4300; }
.placeholder p { margin: 0; }
.placeholder p + p { margin-top: 8px; }
.principles { display: grid; gap: 14px; }
@media (min-width: 800px) { .principles { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .2s, box-shadow .25s var(--ease); }
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; font-weight: 600; font-size: 16.5px; letter-spacing: -.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2) center / 14px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b0f1a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: transform .3s var(--ease), background-color .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--accent-soft); }
.faq__a { padding: 0 20px 20px; color: var(--text-soft); font-size: 15.5px; }
.faq__a p { margin: 0 0 10px; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- CTA final ---------- */
.cta { text-align: center; }
.cta .h2 { max-width: 16em; margin: 0 auto; }
.cta .lead { max-width: 34em; margin-left: auto; margin-right: auto; }
.cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }

/* ---------- pied de page ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 36px; font-size: 14.5px; color: var(--text-soft); margin-top: clamp(40px, 8vw, 80px); }
.footer__grid { display: grid; gap: 36px; grid-template-columns: 1fr 1fr; }
.footer__brand { grid-column: 1 / -1; display: grid; gap: 14px; align-content: start; max-width: 340px; }
.footer__brand p { margin: 0; }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr repeat(4, 1fr); gap: 28px; } .footer__brand { grid-column: auto; } }
.footer h2 { font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--text); margin: 0 0 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { color: var(--text-soft); text-decoration: none; }
.footer a:hover { color: var(--text); text-decoration: underline; }
.footer .logo, .footer .logo:hover { color: var(--text); text-decoration: none; }
.origin { display: inline-flex; align-items: center; gap: 8px; align-self: start; justify-self: start; padding: 6px 12px 6px 10px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 13px; color: var(--text); font-weight: 500; }
.origin .ico { color: var(--accent); width: 16px; height: 16px; }
.flag { display: inline-flex; width: 18px; height: 12px; border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px rgba(11,15,26,.08); }
.flag i { flex: 1; }
.flag i:nth-child(1) { background: #0055a4; } .flag i:nth-child(2) { background: #fff; } .flag i:nth-child(3) { background: #ef4135; }
.footer__legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 8px; font-size: 13px; color: var(--text-faint); }
.footer__legal p { margin: 0; max-width: 90ch; }
.footer__legal strong { color: var(--text-soft); font-weight: 600; }

/* ---------- pages intérieures (documents, légal) ---------- */
.page-hero { padding: clamp(40px, 8vw, 88px) 0 clamp(28px, 5vw, 48px); }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin: 0 0 20px; padding: 0; list-style: none; font-size: 13.5px; color: var(--text-faint); }
.crumbs a { color: var(--text-soft); text-decoration: none; }
.crumbs a:hover { color: var(--text); text-decoration: underline; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line-strong); }
.page-title { margin: 0; font-size: clamp(36px, 7vw, 60px); line-height: 1.02; font-weight: 700; letter-spacing: -.045em; text-wrap: balance; }
.page-title .serif { font-size: 1.08em; color: var(--accent); letter-spacing: -.02em; }
.page-hero .lead { max-width: 40em; }
.page-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.facts li { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 13.5px; font-weight: 500; }
.facts .ico { width: 16px; height: 16px; color: var(--ok); stroke-width: 2.2; }

.layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 48px; }
@media (min-width: 1000px) { .layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 64px; align-items: start; } }
.aside { display: grid; gap: 14px; }
@media (min-width: 1000px) { .aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.aside__card { padding: 22px; border-radius: var(--radius); background: var(--ink); color: var(--ink-text); display: grid; gap: 12px; }
.aside__card p { margin: 0; color: #b9c1d9; font-size: 14.5px; }
.aside__card strong { font-size: 17px; letter-spacing: -.02em; }
.toc { padding: 20px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.toc h2 { font-size: 13px; margin: 0 0 10px; color: var(--text-faint); font-weight: 600; letter-spacing: .02em; }
.toc ol { margin: 0; padding: 0 0 0 18px; display: grid; gap: 7px; font-size: 14.5px; }
.toc a { color: var(--text-soft); text-decoration: none; }
.toc a:hover { color: var(--accent); }

.prose { font-size: 17px; line-height: 1.7; color: #262d3f; max-width: 720px; }
.prose > * + * { margin-top: 1.05em; }
.prose h2 { margin: 2.2em 0 0; font-size: clamp(25px, 3.6vw, 32px); line-height: 1.15; letter-spacing: -.035em; color: var(--text); text-wrap: balance; }
.prose h2:first-child { margin-top: 0; }
.prose h2 .serif { font-size: 1.1em; }
.prose h3 { margin: 1.8em 0 0; font-size: 19px; line-height: 1.3; letter-spacing: -.02em; color: var(--text); }
.prose p, .prose ul, .prose ol { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .45em; }
.prose li::marker { color: var(--text-faint); }
.prose strong { color: var(--text); font-weight: 620; }
.prose .checklist { list-style: none; padding: 0; display: grid; gap: 10px; }
.prose .checklist li { margin: 0; display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); font-size: 16px; line-height: 1.55; }
.prose .checklist .ico { color: var(--ok); margin-top: 2px; stroke-width: 2.2; }
.prose .pitfalls { list-style: none; padding: 0; display: grid; gap: 10px; }
.prose .pitfalls li { margin: 0; padding: 14px 16px 14px 18px; border-left: 3px solid var(--warn-dot); background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 16px; line-height: 1.55; }
.callout { padding: 18px 20px; border-radius: var(--radius-sm); background: var(--accent-soft); color: #1d2a55; font-size: 15.5px; line-height: 1.6; }
.callout strong { color: #0e1b4a; }
.callout--legal { background: var(--surface-2); color: var(--text-soft); font-size: 14.5px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.5; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-size: 13px; color: var(--text-faint); font-weight: 600; background: var(--surface-2); }
.prose tbody th { background: var(--surface); color: var(--text); font-size: inherit; font-weight: 600; }
.prose tr:last-child td, .prose tr:last-child th { border-bottom: 0; }
.prose .faq { margin-top: 1.2em; }

/* ---------- légal ---------- */
.draft-banner { background: #fff7e0; border-bottom: 1px solid #f2dc9b; color: #5c4300; font-size: 14px; }
.draft-banner .wrap { display: flex; gap: 10px; align-items: flex-start; padding-top: 12px; padding-bottom: 12px; }
.draft-banner .ico { color: var(--warn); margin-top: 1px; }
.todo { background: #fff1c2; color: #5c4300; border-radius: 4px; padding: 0 .3em; font-weight: 600; font-size: .92em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.legal-meta { color: var(--text-faint); font-size: 14px; margin-top: 12px; }

/* ---------- vérification ---------- */
.verify { display: grid; gap: 20px; }
.vform { padding: clamp(22px, 4vw, 32px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 600; font-size: 14.5px; }
.field small { color: var(--text-faint); font-size: 13px; }
.input {
  width: 100%; min-height: 56px; padding: 0 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line-strong); background: var(--surface);
  font: 500 17px/1 var(--font); color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.input:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.input--code { font-family: var(--mono); font-size: 22px; letter-spacing: .14em; text-transform: uppercase; text-align: center; }
.input--fp { font-family: var(--mono); font-size: 14px; }
.input[aria-invalid="true"] { border-color: var(--danger); }
.field__error { color: var(--danger); font-size: 13.5px; font-weight: 500; }
.vadvanced > summary { cursor: pointer; font-size: 14px; color: var(--text-soft); font-weight: 500; list-style-position: inside; }
.vadvanced[open] > summary { margin-bottom: 12px; }
.vres { border-radius: var(--radius); padding: clamp(22px, 4vw, 30px); border: 1px solid var(--line); background: var(--surface); display: grid; gap: 16px; animation: rise .35s var(--ease) both; }
.vres:focus { outline: none; }
.vres__head { display: flex; gap: 14px; align-items: flex-start; }
.vres__seal { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; flex: none; background: var(--surface-2); color: var(--text-soft); }
.vres__seal .ico { width: 24px; height: 24px; stroke-width: 2.2; }
.vres__title { margin: 0; font-size: 21px; letter-spacing: -.025em; line-height: 1.25; }
.vres__sub { margin: 4px 0 0; color: var(--text-soft); font-size: 15px; }
.vres--ok { background: var(--ink); border-color: var(--ink); color: var(--ink-text); }
.vres--ok .vres__seal { background: var(--proof); color: var(--ink); }
.vres--ok .vres__sub { color: #b9c1d9; }
.vres--warn .vres__seal { background: var(--warn-soft); color: var(--warn); }
.vres--bad .vres__seal { background: var(--danger-soft); color: var(--danger); }
.vres__dl { display: grid; grid-template-columns: 1fr; gap: 4px 20px; margin: 0; font-size: 15px; }
@media (min-width: 560px) { .vres__dl { grid-template-columns: 170px 1fr; } }
.vres__dl dt { color: var(--text-faint); padding-top: 8px; }
.vres__dl dd { margin: 0; padding: 0 0 8px; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
@media (min-width: 560px) { .vres__dl dd { padding-top: 8px; } }
.vres--ok .vres__dl dt { color: var(--ink-soft); }
.vres--ok .vres__dl dd { border-color: var(--ink-line); color: #fff; }
.fp { font-family: var(--mono); font-size: 13.5px; line-height: 1.6; letter-spacing: .02em; word-break: break-all; }
.fp mark { background: rgba(198, 244, 50, .22); color: inherit; border-radius: 3px; padding: 0 2px; }
.vres__versions { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; font-size: 14px; }
.vres__versions li { display: flex; flex-wrap: wrap; gap: 4px 12px; justify-content: space-between; padding: 10px 12px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); }
.vres__versions .fp { font-size: 12.5px; color: var(--text-soft); }
.vres--ok .vres__versions li { background: rgba(255,255,255,.05); border-color: var(--ink-line); }
.vres--ok .vres__versions .fp { color: var(--ink-soft); }
.vres__note { margin: 0; font-size: 13.5px; color: var(--text-faint); }
.vres--ok .vres__note { color: var(--ink-soft); }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- 404 ---------- */
.nf { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.nf__code { font-family: var(--serif); font-style: italic; font-size: clamp(90px, 20vw, 160px); line-height: 1; color: var(--accent); letter-spacing: -.02em; }

/* ---------- mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ---------- impression (pages légales) ---------- */
@media print {
  .header, .footer, .aside, .draft-banner { display: none !important; }
  body { background: #fff; }
}
