/*
 * Pinn Access : feuille de style unique (mobile first). Le monde visuel est celui d'une carte marine et de son livre de pilotage :
 * eaux profondes (bandes sombres), eaux peu profondes (fonds clairs), terre ocre (l'unique action, ambre), magenta de carte (zone
 * interdite, danger, fait non confirmé), encre noire pour le texte.
 * Classes lisibles (BEM léger) : .bloc, .bloc__element, .bloc--variante. Le propriétaire peut modifier ce fichier par FTP :
 * la version du fichier (?v=) change toute seule à chaque enregistrement (asset_url dans includes/config.php).
 * Sommaire : 1 jetons · 2 base · 3 mise en page · 4 en-tête · 5 hero · 6 texte · 7 encadrés · 8 tableaux et états · 9 index et cartes
 * 10 partenaires (CTA) · 11 FAQ, étapes · 12 outils et champs · 13 graphiques · 14 pied de page · 15 pages spéciales · 16 mouvement
 */

/* ============================== 1. Jetons ============================== */
@font-face {
  font-family: "Atkinson Next";
  src: url("/assets/fonts/atkinson-next-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Eaux profondes (bandes sombres) */
  --deep-950: #06232f;
  --deep-900: #082c3b;
  --deep-800: #0b4b70;
  /* Eaux peu profondes (fonds clairs) */
  --paper: #ffffff;
  --paper-2: #f4f7f9;
  --shallow-100: #e6f2f6;
  --shallow-200: #cfe6ee;
  /* Encre */
  --ink: #0a2236;
  --ink-2: #43566b;
  --on-dark: #ffffff;
  --on-dark-2: #c1d0d7;
  /* Liens et actions secondaires */
  --primary: #0b63a8;
  --primary-strong: #0a5a99;
  --link-on-dark: #8fd0f5;
  /* Terre ocre : l'unique action (texte encre dessus) */
  --amber: #ffc53d;
  --amber-hover: #ffd261;
  --amber-press: #f2b01e;
  --amber-100: #fff4d6;
  --amber-line: #d99a10;
  --amber-700: #7a4b00;
  /* Magenta de carte : zone interdite, danger, fait non confirmé */
  --magenta: #a3155a;
  --magenta-100: #fbe9f1;
  --magenta-800: #8a104c;
  --magenta-on-dark: #ff9cc6;
  /* Fait confirmé */
  --green: #12805f;
  --green-100: #e3f5ee;
  --green-800: #0b5f46;
  /* Traits */
  --line: #d4dee6;
  --line-strong: #9fb1c1;
  --field: #5f7388;
  --focus: #0b63a8;
  /* Teintes de silos (repères de couleur : jamais le seul porteur de sens) */
  --silo-1: #0b63a8;
  --silo-2: #0b7f86;
  --silo-3: #267a43;
  --silo-4: #5e7f1e;
  --silo-5: #4b4fbf;
  --silo-6: #7a4fb5;
  --silo-7: #8f3b2f;
  --silo-8: #1f7a99;
  --silo-9: #8a6a1a;
  --silo-10: #4f6f8f;
  /* Séries de graphiques (lues par assets/js/charts.js) : 4 séries au maximum */
  --chart-1: #0b63a8;
  --chart-2: #2a9d8f;
  --chart-3: #7a4fb5;
  --chart-4: #8a6a1a;

  --font: "Atkinson Next", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --step--1: 0.8125rem;
  --step-0: clamp(1.0625rem, 1.03rem + 0.16vw, 1.125rem);
  --step-1: clamp(1.1875rem, 1.13rem + 0.28vw, 1.3125rem);
  --step-2: clamp(1.375rem, 1.26rem + 0.55vw, 1.625rem);
  --step-3: clamp(1.625rem, 1.42rem + 1vw, 2.125rem);
  --step-4: clamp(2.25rem, 1.6rem + 2.9vw, 3.75rem);

  --gutter: 1rem;
  --header-h: 4.0625rem;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-1: 0 1px 2px rgba(7, 30, 46, 0.08), 0 6px 16px rgba(7, 30, 46, 0.08);
  --shadow-2: 0 2px 4px rgba(7, 30, 46, 0.1), 0 16px 32px rgba(7, 30, 46, 0.14);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 48rem) { :root { --gutter: 1.5rem; } }
@media (min-width: 64rem) { :root { --gutter: 2rem; } }

/* ============================== 2. Base ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 1.5rem; scrollbar-color: var(--field) var(--paper-2); scrollbar-width: thin; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  caret-color: var(--primary);
  overflow-wrap: break-word;
  min-width: 20rem;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 700; text-wrap: balance; }
p, ul, ol, dl, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--primary-strong); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
::selection { background: var(--amber); color: var(--deep-950); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
.band--deep :focus-visible, .hero :focus-visible, .site-header :focus-visible, .ext-page :focus-visible { outline-color: var(--amber); }
button { font: inherit; color: inherit; }
table { font-variant-numeric: tabular-nums; }
.num { font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }

.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 0.75rem; top: -4rem; z-index: 100; padding: 0.75rem 1rem; background: var(--amber); color: var(--deep-950); font-weight: 700; border-radius: var(--radius); transition: top 0.15s var(--ease-out); }
.skip-link:focus { top: 0.75rem; }

.icon { flex: none; fill: none; stroke: currentColor; }

/* ============================== 3. Mise en page ============================== */
.container { width: min(100% - 2 * var(--gutter), 74rem); margin-inline: auto; }
.band { padding-block: clamp(2.5rem, 1.9rem + 3vw, 5.5rem); position: relative; }
.band--paper { background: var(--paper); }
.band--tint { background: var(--paper-2); }
.band--shallow { background-color: var(--shallow-100); background-image: linear-gradient(rgba(11, 75, 112, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 75, 112, 0.06) 1px, transparent 1px); background-size: 4rem 4rem; }
.band--deep { background: var(--deep-950); color: var(--on-dark); --link: var(--link-on-dark); }
.band--deep::before { content: ""; position: absolute; inset: 0; background: url("/assets/img/icons/contours.svg") center / cover no-repeat; opacity: 0.55; pointer-events: none; }
.band--deep > * { position: relative; }
.band--deep a:not(.btn) { color: var(--link-on-dark); }
.band__title { font-size: var(--step-3); letter-spacing: -0.01em; max-width: 34rem; }
.band__lead { margin-top: 0.75rem; max-width: 40rem; color: var(--ink-2); }
.band--deep .band__lead { color: var(--on-dark-2); }
.band__head { margin-bottom: clamp(1.5rem, 1.2rem + 1.5vw, 2.75rem); }

/* Article : colonne de lecture (68-72 caractères) et colonne latérale collante à partir de 64rem */
.article { display: grid; gap: 2.5rem; }
@media (min-width: 64rem) {
  .article--side { grid-template-columns: minmax(0, 46rem) minmax(0, 19rem); justify-content: space-between; align-items: start; }
  .article__side { position: sticky; top: 1.5rem; display: grid; gap: 1.25rem; }
}

/* Cadre de carte : bande alternée noir et blanc, comme la bordure d'une carte marine */
.neatline { height: 0.5rem; border: 1px solid var(--ink); background: repeating-linear-gradient(90deg, var(--ink) 0 1.25rem, var(--paper) 1.25rem 2.5rem); }

/* ============================== 4. En-tête ============================== */
.site-header { position: absolute; inset: 0 0 auto; z-index: 30; color: var(--on-dark); border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.page--plain .site-header { position: relative; background: var(--deep-950); }
.site-header__inner { display: flex; align-items: center; gap: 0.75rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: inherit; text-decoration: none; min-height: 2.75rem; }
.brand:hover { text-decoration: none; }
.brand__mark { border-radius: 7px; }
.brand__name { font-weight: 750; font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1; white-space: nowrap; }
.brand__note { display: none; font-size: var(--step--1); color: var(--on-dark-2); padding-left: 0.6rem; border-left: 1px solid rgba(255, 255, 255, 0.28); line-height: 1.2; }
@media (min-width: 40rem) { .brand__note { display: inline-block; } }
.age-mark { margin-left: auto; display: inline-flex; align-items: center; justify-content: center; min-width: 2.25rem; height: 1.75rem; padding-inline: 0.4rem; border: 1.5px solid currentColor; border-radius: 999px; font-size: var(--step--1); font-weight: 750; letter-spacing: 0.02em; }

.site-nav__toggle { display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; min-height: 2.75rem; padding: 0 0.85rem; background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.5); border-radius: var(--radius); cursor: pointer; font-weight: 650; }
.site-nav__toggle:hover { background: rgba(255, 255, 255, 0.1); }
.site-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--deep-950); border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.js .site-nav { display: none; }
.js .site-header.is-open .site-nav { display: block; }
/* Sans JavaScript (mobile) : la barre reste dans le flux et le menu est déplié sous la marque */
@media (max-width: 59.99rem) {
  html:not(.js) .site-header { position: relative; background: var(--deep-950); }
  html:not(.js) .site-nav { position: static; }
  html:not(.js) .site-nav__toggle { display: none; }
}
.site-nav__list { display: grid; width: min(100% - 2 * var(--gutter), 74rem); padding-block: 0.5rem 1rem; margin-inline: auto; }
.site-nav__item { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.site-nav__link { display: flex; align-items: center; gap: 0.35rem; min-height: 2.75rem; padding: 0.4rem 0.25rem; color: var(--on-dark); font-weight: 650; text-decoration: none; }
.site-nav__link:hover { text-decoration: underline; text-underline-offset: 0.3em; text-decoration-thickness: 2px; text-decoration-color: var(--amber); }
.site-nav__link.is-soon { color: var(--on-dark-2); cursor: default; }
.site-nav__link.is-soon:hover { text-decoration: none; }
.site-nav__link.is-current { box-shadow: inset 0 0 0 1.5px var(--amber); border-radius: 999px; padding-inline: 0.9rem; }
.site-nav__more { position: relative; }
.site-nav__more-summary { cursor: pointer; list-style: none; }
.site-nav__more-summary::-webkit-details-marker { display: none; }
.site-nav__more[open] .site-nav__more-chevron { transform: rotate(180deg); }
.site-nav__sub { padding: 0 0 0.5rem 0.75rem; }
@media (min-width: 60rem) {
  .site-header__inner { gap: 1.5rem; }
  .age-mark { margin-left: 0; order: 3; }
  .site-nav__toggle { display: none; }
  .js .site-nav { display: block; }
  .site-nav { position: static; flex: 1; background: transparent; border: 0; }
  .site-nav__list { display: flex; align-items: center; gap: 0.1rem; width: auto; margin: 0; padding: 0; }
  .site-nav__item { border: 0; }
  .site-nav__link { padding: 0.4rem 0.7rem; font-size: 0.9375rem; border-radius: 999px; }
  .site-nav__link.is-current { padding-inline: 0.9rem; }
  .site-nav__item--more { margin-left: auto; }
  .site-nav__sub { position: absolute; right: 0; top: calc(100% + 0.4rem); min-width: 15rem; padding: 0.5rem; background: var(--deep-950); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: var(--radius-lg); box-shadow: var(--shadow-2); }
}

/* ============================== 5. Hero (image de fond en <picture>) ============================== */
.hero { position: relative; isolation: isolate; overflow: hidden; color: var(--on-dark); background: var(--deep-950); padding-top: calc(var(--header-h) + clamp(2rem, 1.2rem + 4vw, 4.5rem)); padding-bottom: clamp(4rem, 3rem + 4.5vw, 7.5rem); --link: var(--link-on-dark); }
.page--plain .hero { padding-top: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
/* Voile pétrole du bas vers le haut, puis isobathes : lisibilité du texte sur toute image */
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(to top, rgba(6, 35, 47, 0.94) 0%, rgba(6, 35, 47, 0.78) 48%, rgba(6, 35, 47, 0.6) 100%); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: url("/assets/img/icons/contours.svg") center / cover no-repeat; opacity: 0.6; pointer-events: none; }
.hero__frame { position: absolute; left: 0; right: 0; bottom: 0; height: 0.5rem; border-block: 1px solid rgba(255, 255, 255, 0.85); background: repeating-linear-gradient(90deg, #fff 0 1.25rem, var(--deep-950) 1.25rem 2.5rem); }
.hero__inner { display: grid; gap: 2rem; }
.hero__title { font-size: var(--step-4); font-weight: 750; letter-spacing: -0.02em; line-height: 1.04; max-width: 20ch; }
.hero__lead { margin-top: 1rem; max-width: 34rem; font-size: var(--step-1); line-height: 1.45; color: #f2f7f9; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem; margin-top: 1.75rem; }
.hero__aside { min-width: 0; }
.hero--compact { padding-bottom: clamp(3rem, 2.5rem + 3vw, 5rem); }
.hero--compact .hero__title { font-size: var(--step-3); max-width: 28ch; }
@media (min-width: 64rem) {
  .hero--split .hero__inner { grid-template-columns: minmax(0, 36rem) minmax(0, 1fr); gap: 4rem; align-items: center; }
}

/* Fil d'Ariane : sur mobile, seulement « Back to parent » */
.crumbs { margin-bottom: 1.25rem; font-size: 0.875rem; }
.crumbs__list { display: flex; flex-wrap: wrap; align-items: center; gap: 0.15rem 0; }
.crumbs__item { display: none; align-items: center; color: var(--on-dark-2); }
.crumbs__item a { color: var(--on-dark); text-decoration-color: rgba(255, 255, 255, 0.45); }
.crumbs__item--parent { display: inline-flex; }
.crumbs__item--parent::before { content: ""; width: 0.55rem; height: 0.55rem; margin-right: 0.45rem; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
.crumbs__item--current { display: none; }
@media (min-width: 48rem) {
  .crumbs__item { display: inline-flex; }
  .crumbs__item--parent::before { content: none; }
  .crumbs__item + .crumbs__item::before { content: ""; width: 0.4rem; height: 0.4rem; margin: 0 0.6rem; border: 0; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); opacity: 0.7; }
  /* Une seule page courante, un seul anneau : « vous êtes ici » */
  .crumbs__item--current span { display: inline-block; max-width: 36ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 0.1rem 0.7rem; border-radius: 999px; box-shadow: inset 0 0 0 1.5px currentColor; }
}
.band:not(.band--deep) .crumbs__item, .band:not(.band--deep) .crumbs__item a { color: var(--ink-2); }

/* Bloc de réponse : la réponse d'abord, puis la version de la source et la limite (lecture en balayage : réponse, source, limite) */
.answer-wrap { position: relative; z-index: 2; margin-top: -3rem; }
.answer { background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-2); overflow: hidden; }
.answer__body { padding: 1.5rem 1.25rem 1.25rem; }
.answer__lead { font-size: var(--step-2); font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; text-wrap: balance; }
.answer__body p + p { margin-top: 0.75rem; }
.readouts { display: grid; border-top: 1px solid var(--line); background: var(--paper-2); }
.readouts__item { padding: 0.85rem 1.25rem; border-top: 1px solid var(--line); }
.readouts__item:first-child { border-top: 0; }
.readouts dt { font-size: var(--step--1); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); }
.readouts dd { margin: 0.15rem 0 0; font-weight: 650; font-variant-numeric: tabular-nums; }
@media (min-width: 48rem) {
  .answer__body { padding: 2rem 2rem 1.75rem; }
  .readouts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .readouts__item { padding: 1rem 2rem; border-top: 0; border-left: 1px solid var(--line); }
  .readouts__item:first-child { border-left: 0; }
}
/* Grand écran : la réponse à gauche (44rem de lecture), source, version et limite en colonne à droite */
@media (min-width: 64rem) {
  .answer:has(.readouts) { display: grid; grid-template-columns: minmax(0, 1fr) 19rem; }
  .answer__body { max-width: 46rem; }
  .readouts { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line); align-content: center; background: var(--paper-2) url("/assets/img/icons/rose.svg") no-repeat right 0.8rem top 0.75rem / 2.6rem; }
  .readouts__item:first-child { padding-right: 4rem; }
  .readouts__item { padding: 1rem 1.5rem; border-left: 0; border-top: 1px solid var(--line); }
  .readouts__item:first-child { border-top: 0; }
}

/* ============================== 6. Texte ============================== */
.prose { max-width: 44rem; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: var(--step-3); letter-spacing: -0.01em; margin-top: 2.6em; }
.prose h3 { font-size: var(--step-2); margin-top: 2em; }
.prose h2 + *, .prose h3 + * { margin-top: 0.7em; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose ul { list-style: none; }
.prose ul > li { position: relative; }
.prose ul > li::before { content: ""; position: absolute; left: -1.05rem; top: 0.72em; width: 0.42rem; height: 0.42rem; border-radius: 50%; background: var(--primary); }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: 0.45em; }
.prose ol > li::marker { font-weight: 700; color: var(--primary-strong); }
.prose strong { font-weight: 700; }
.prose small, .small { font-size: 0.875rem; color: var(--ink-2); }
/* Une seule phrase clé par page peut être surlignée : la barre ocre d'un surligneur */
.crux { background: linear-gradient(transparent 58%, var(--amber) 58% 94%, transparent 94%); padding-inline: 0.1em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.quote { padding: 1rem 1.25rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.quote__text { font-size: var(--step-1); line-height: 1.45; }
.quote__source { margin-top: 0.5rem; font-size: 0.875rem; color: var(--ink-2); }
.ext-mention { text-decoration-style: dotted; }
.ext-mention__icon { display: inline-block; vertical-align: -0.12em; margin-left: 0.15em; width: 0.9em; height: 0.9em; }
.figure { margin-block: 1.5rem; }
.figure__img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.figure__caption { margin-top: 0.5rem; font-size: 0.875rem; color: var(--ink-2); }

/* Glossaire */
.glossary { border-top: 2px solid var(--ink); }
.glossary__row { padding: 0.9rem 0; border-bottom: 1px solid var(--line); display: grid; gap: 0.25rem; }
.glossary dt { font-weight: 700; }
.glossary dd { margin: 0; color: var(--ink-2); }
@media (min-width: 48rem) { .glossary__row { grid-template-columns: 14rem minmax(0, 1fr); gap: 1.5rem; } }

/* Sommaire de page */
.page-toc { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.page-toc summary { cursor: pointer; padding: 0.85rem 1rem; font-weight: 700; display: flex; align-items: center; justify-content: space-between; min-height: 2.75rem; }
.page-toc ol { padding: 0 1rem 1rem; display: grid; gap: 0.15rem; counter-reset: toc; }
.page-toc li a { display: block; padding: 0.35rem 0; font-size: 0.9375rem; }

/* ============================== 7. Encadrés (étiquette obligatoire : jamais la couleur seule) ============================== */
.note { position: relative; margin-top: 1.5rem; padding: 1.5rem 1.15rem 1.1rem; border: 1.5px solid var(--primary); border-radius: var(--radius); background: #f0f8fb; }
.note__tab { position: absolute; top: -0.85rem; left: 0.85rem; display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.2rem 0.65rem 0.2rem 0.5rem; background: var(--primary); color: #fff; border-radius: 3px; font-size: 0.75rem; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.3; }
.note__body > * + * { margin-top: 0.7em; }
.note__body ul { padding-left: 1.2rem; list-style: disc; }
/* Zone interdite : trait magenta en tirets, comme sur une carte */
.note--warn { border: 2px dashed var(--magenta); background: var(--magenta-100); }
.note--warn .note__tab { background: var(--magenta); }
/* Conseil : double trait ocre */
.note--tip { border: 4px double var(--amber-line); background: var(--amber-100); padding-top: 1.35rem; }
.note--tip .note__tab { background: var(--amber); color: var(--deep-950); top: -1rem; }
/* Verdict : trait d'encre plein */
.note--verdict { border: 2px solid var(--ink); background: var(--paper); }
.note--verdict .note__tab { background: var(--ink); }
.band--deep .note { color: var(--ink); }
.band--deep .note a { color: var(--primary-strong); }

/* ============================== 8. Tableaux, états, forces et faiblesses ============================== */
.table-frame { border: 1px solid var(--ink); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.table-frame::before { content: ""; display: block; height: 0.875rem; border-bottom: 1px solid var(--line-strong);
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 1rem, var(--paper) 1rem 2rem) 0 0 / 100% 0.375rem no-repeat,
    repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 1rem) 0 0.5rem / 100% 0.3125rem no-repeat,
    repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 0.25rem) 0 0.5rem / 100% 0.1875rem no-repeat; }
/* Ombres de défilement : elles n'apparaissent que du côté où le tableau continue (indice visible sur mobile) */
.table-scroll { overflow-x: auto; max-width: 100%; background:
  linear-gradient(to right, var(--paper) 30%, rgba(255, 255, 255, 0)) 0 0 / 2.5rem 100% no-repeat local,
  linear-gradient(to left, var(--paper) 30%, rgba(255, 255, 255, 0)) 100% 0 / 2.5rem 100% no-repeat local,
  linear-gradient(to right, rgba(7, 30, 46, 0.2), rgba(7, 30, 46, 0)) 0 0 / 0.7rem 100% no-repeat scroll,
  linear-gradient(to left, rgba(7, 30, 46, 0.2), rgba(7, 30, 46, 0)) 100% 0 / 0.7rem 100% no-repeat scroll; }
.ruled { width: 100%; border-collapse: collapse; font-size: 0.9375rem; line-height: 1.45; }
.ruled caption { padding: 0.75rem 1rem; text-align: left; font-weight: 700; font-size: 1rem; }
.ruled th, .ruled td { padding: 0.75rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.ruled th:last-child, .ruled td:last-child { border-right: 0; }
.ruled thead th { background: var(--shallow-200); border-bottom: 2px solid var(--ink); font-weight: 700; white-space: nowrap; }
.ruled tbody th { font-weight: 700; background: var(--paper-2); }
.ruled tbody tr:last-child > * { border-bottom: 0; }
.ruled td.num, .ruled th.num { text-align: right; }
.table-note { padding: 0.65rem 1rem; border-top: 1px solid var(--line); background: var(--paper-2); font-size: 0.8125rem; color: var(--ink-2); }

/* États : trait plein = confirmé, tirets magenta = contesté ou non vérifié ; toujours une icône et un mot */
.state { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.1rem 0.55rem 0.1rem 0.4rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; line-height: 1.5; white-space: nowrap; }
.state--confirmed { border: 1.5px solid var(--green); color: var(--green-800); background: var(--green-100); }
.state--contested, .state--unverified { border: 1.5px dashed var(--magenta); color: var(--magenta-800); background: var(--magenta-100); }
.badge { display: inline-block; padding: 0.1rem 0.6rem; border: 1px solid var(--amber-line); border-radius: 999px; background: var(--amber-100); color: var(--amber-700); font-size: 0.8125rem; font-weight: 700; line-height: 1.5; }

/* Fiche opérateur : points forts et points faibles côte à côte, sans encadrés imbriqués */
.operator { display: grid; gap: 1.25rem; padding: 1.25rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); }
.operator__head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; }
.operator__name { font-size: var(--step-2); }
.operator__cols { display: grid; gap: 1.25rem; }
.operator__col-title { font-size: 0.875rem; font-weight: 750; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem; }
.operator__list li { display: grid; grid-template-columns: 1.25rem minmax(0, 1fr); gap: 0.5rem; padding: 0.35rem 0; }
.operator__list .icon { margin-top: 0.2rem; }
.operator__list--pro .icon { color: var(--green); }
.operator__list--con .icon { color: var(--magenta); }
.operator__fit { padding-top: 1rem; border-top: 1px dashed var(--line-strong); font-size: 0.9375rem; color: var(--ink-2); }
@media (min-width: 48rem) { .operator__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; } }

/* ============================== 9. Index de la carte (navigation entre guides) ============================== */
.chart-index { display: grid; border-top: 2px solid var(--ink); }
.chart-index__item { border-bottom: 1px solid var(--line-strong); }
.chart-index__link { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.25rem 1rem; align-items: start; padding: 1.1rem 0.25rem; color: inherit; text-decoration: none; transition: background-color 0.15s, transform 0.2s var(--ease-out); }
.chart-index__link:hover { background: var(--shallow-100); text-decoration: none; }
.chart-index__link:hover .chart-index__title { text-decoration: underline; text-decoration-color: var(--silo, var(--primary)); text-decoration-thickness: 2px; text-underline-offset: 0.2em; }
.chart-index__mark { grid-row: span 3; display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: var(--radius); background: var(--silo, var(--primary)); color: #fff; }
.chart-index__item:not(:has(.chart-index__mark)) .chart-index__link { grid-template-columns: minmax(0, 1fr); border-left: 0; position: relative; padding-left: 1.4rem; }
.chart-index__item:not(:has(.chart-index__mark)) .chart-index__link::before { content: ""; position: absolute; left: 0.2rem; top: 1.65rem; width: 0.6rem; height: 0.6rem; border-radius: 50%; border: 2px solid var(--silo, var(--primary)); background: var(--paper); }
.chart-index__title { font-size: var(--step-1); font-weight: 700; line-height: 1.3; }
.chart-index__desc { color: var(--ink-2); font-size: 0.9375rem; line-height: 1.5; max-width: 60ch; }
.chart-index__go { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.9375rem; font-weight: 700; color: var(--primary-strong); }
.chart-index__item--major .chart-index__title { font-size: var(--step-2); }
.chart-index__item--major .chart-index__desc { font-size: 1rem; }
.chart-index__item.is-here { box-shadow: inset 0 0 0 2px var(--silo, var(--primary)); border-radius: var(--radius); }
.chart-index__item.is-here .chart-index__link { padding-inline: 0.75rem; }
.chart-index__item.is-here:not(:has(.chart-index__mark)) .chart-index__link { padding-left: 2.15rem; }
.chart-index__item.is-here:not(:has(.chart-index__mark)) .chart-index__link::before { left: 0.85rem; }
/* Index des silos : les hubs des sujets obligatoires en grand (2 colonnes), les autres en compact (3 colonnes) */
.chart-index--minor { margin-top: 2rem; }
.chart-index--minor .chart-index__title { font-size: var(--step-1); }
@media (min-width: 48rem) {
  .chart-index--major, .chart-index--minor { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; }
  .chart-index--major .chart-index__item:first-child:nth-last-child(n+3) { grid-column: 1 / -1; }
  .chart-index--major .chart-index__item:first-child:nth-last-child(n+3) .chart-index__title { font-size: var(--step-3); }
  .chart-index--minor .chart-index__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (min-width: 64rem) { .chart-index--minor { grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr)); column-gap: 1.5rem; } .chart-index--minor .chart-index__item:last-child:nth-child(odd) { grid-column: auto; } }

/* Plan du site */
.toc { display: grid; gap: 2rem; }
.toc__group { border-top: 3px solid var(--silo, var(--ink)); padding-top: 0.75rem; }
.toc__title { font-size: var(--step-2); }
.toc__need { color: var(--ink-2); font-size: 0.9375rem; margin-top: 0.15rem; }
.toc__list { margin-top: 0.75rem; }
.toc__item { padding: 0.4rem 0; border-bottom: 1px solid var(--line); }
.toc__item--hub { font-weight: 700; }
@media (min-width: 48rem) { .toc { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 3rem; } }

/* Pages sœurs */
.keep-reading { border-top: 2px solid var(--ink); padding-top: 0.75rem; }
.keep-reading__title { font-weight: 750; font-size: var(--step-1); }
.keep-reading__list { margin-top: 0.5rem; }
.keep-reading__item { border-bottom: 1px solid var(--line); }
.keep-reading__link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 2.75rem; padding: 0.7rem 0; color: var(--ink); font-weight: 600; text-decoration: none; }
.keep-reading__link:hover { color: var(--primary-strong); }
.keep-reading__link:hover .keep-reading__icon { transform: translateX(3px); }
.keep-reading__icon { transition: transform 0.2s var(--ease-out); color: var(--primary); }

/* ============================== 10. Partenaires : lignes de route sur une ligne d'approche ============================== */
.cta { background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); overflow: hidden; }
.cta__intro { padding: 1.25rem 1.25rem 1rem; background: var(--shallow-100); border-bottom: 1px solid var(--line-strong); }
.cta__title { font-size: var(--step-2); font-weight: 700; line-height: 1.2; }
.cta__note { margin-top: 0.4rem; font-size: 0.9375rem; color: var(--ink-2); max-width: 46rem; }
.routes { position: relative; padding: 0.5rem 1.25rem 0.5rem 2.75rem; }
/* La ligne d'approche : trait en tirets qui relie les routes */
.routes::before { content: ""; position: absolute; left: 1.4rem; top: 2.2rem; bottom: 2.2rem; border-left: 2px dashed var(--line-strong); }
.route { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.75rem 1rem; align-items: center; padding: 1rem 0; border-top: 1px solid var(--line); }
.route:first-child { border-top: 0; }
.route::before { content: ""; position: absolute; left: -1.75rem; top: 1.6rem; width: 0.7rem; height: 0.7rem; border-radius: 50%; border: 2px solid var(--primary); background: var(--paper); }
.route__logo { display: grid; place-items: center; width: 7.5rem; height: 3rem; padding: 0.4rem 0.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.logo { max-width: 100%; height: auto; max-height: 1.75rem; width: auto; }
.route__body { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.15rem 0.6rem; min-width: 0; }
.route__name { font-weight: 750; font-size: 1.0625rem; }
.route__kind { font-size: 0.8125rem; color: var(--ink-2); font-weight: 600; }
.route__note { flex-basis: 100%; font-size: 0.875rem; color: var(--ink-2); line-height: 1.45; }
.route__go { grid-column: 1 / -1; justify-content: center; }
.cta--access .route::before { border-color: var(--green); }
@media (min-width: 40rem) {
  .route { grid-template-columns: auto minmax(0, 1fr) auto; }
  .route__go { grid-column: auto; }
}

/* Boutons : une seule couleur d'action par écran (ocre, texte encre) */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 2.75rem; padding: 0.55rem 1.15rem; border: 2px solid transparent; border-radius: var(--radius); font-size: 1rem; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer; transition: background-color 0.15s, border-color 0.15s, transform 0.2s var(--ease-out), box-shadow 0.2s; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--amber); color: var(--deep-950); box-shadow: 0 1px 0 rgba(6, 35, 47, 0.25); }
.btn--primary:hover { background: var(--amber-hover); box-shadow: 0 6px 14px rgba(6, 35, 47, 0.22); }
.btn--primary:active { background: var(--amber-press); }
.btn--secondary { background: transparent; color: var(--primary-strong); border-color: var(--primary); }
.btn--secondary:hover { background: var(--shallow-100); }
.hero .btn--secondary, .band--deep .btn--secondary { color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.hero .btn--secondary:hover, .band--deep .btn--secondary:hover { background: rgba(255, 255, 255, 0.12); }
.btn--sm { padding: 0.45rem 0.95rem; font-size: 0.9375rem; }
.btn[aria-disabled="true"], .btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; }

/* ============================== 11. FAQ, étapes ============================== */
.faq { display: grid; gap: 0.6rem; max-width: 50rem; }
.faq__item { background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: var(--radius); transition: border-color 0.15s, background-color 0.15s; }
.faq__item[open] { border-color: var(--primary); background: #f5fafc; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.25rem; padding: 0.85rem 1.1rem; cursor: pointer; list-style: none; font-weight: 650; font-size: 1.0625rem; line-height: 1.35; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--primary-strong); }
.faq__chevron { color: var(--primary); transition: transform 0.2s var(--ease-out); }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a { padding: 0 1.1rem 1.1rem; max-width: 46rem; }
.faq__a > * + * { margin-top: 0.7em; }
.band--deep .faq__q:hover { color: var(--primary-strong); }
.band--deep .faq__a a { color: var(--primary-strong); }
.band--deep .faq__item { color: var(--ink); }

/* Étapes : les numéros sont posés sur une ligne d'approche en tirets */
.steps { position: relative; counter-reset: step; display: grid; gap: 1.5rem; }
.steps::before { content: ""; position: absolute; left: 1.1rem; top: 1.4rem; bottom: 1.4rem; border-left: 2px dashed var(--line-strong); }
.steps__item { position: relative; counter-increment: step; padding-left: 3.5rem; min-height: 2.5rem; }
.steps__item::before { content: counter(step); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--deep-950); color: #fff; font-weight: 750; font-variant-numeric: tabular-nums; }
.steps__title { font-weight: 700; font-size: var(--step-1); line-height: 1.3; padding-top: 0.25rem; }
.steps__item p { margin-top: 0.3rem; color: var(--ink-2); }

/* ============================== 12. Outils et champs ============================== */
.tool { background: var(--paper); border: 1px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-1); overflow: hidden; }
.tool::before { content: ""; display: block; height: 0.875rem; border-bottom: 1px solid var(--line-strong);
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 1rem, var(--paper) 1rem 2rem) 0 0 / 100% 0.375rem no-repeat,
    repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 1rem) 0 0.5rem / 100% 0.3125rem no-repeat,
    repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 0.25rem) 0 0.5rem / 100% 0.1875rem no-repeat; }
.tool__head { padding: 1.25rem 1.25rem 0; }
.tool__title { font-size: var(--step-2); }
.tool__lead { margin-top: 0.35rem; color: var(--ink-2); font-size: 0.9375rem; }
.tool__form { display: grid; gap: 1rem; padding: 1.25rem; }
.tool__result { padding: 1.25rem; background: var(--shallow-100); border-top: 1px solid var(--line-strong); }
.tool__result:empty { display: none; }
.tool__foot { padding: 0.75rem 1.25rem; border-top: 1px solid var(--line); background: var(--paper-2); font-size: 0.8125rem; color: var(--ink-2); }
.field { display: grid; gap: 0.35rem; }
.field__label { font-weight: 700; font-size: 0.9375rem; }
.field__hint { font-size: 0.8125rem; color: var(--ink-2); }
.input, .select { width: 100%; min-height: 2.75rem; padding: 0.55rem 0.8rem; font: inherit; font-variant-numeric: tabular-nums; color: var(--ink); background: var(--paper); border: 1.5px solid var(--field); border-radius: var(--radius); }
.input::placeholder { color: var(--ink-2); opacity: 0.8; }
.input:hover, .select:hover { border-color: var(--ink); }
.input:focus-visible, .select:focus-visible { outline: 3px solid var(--focus); outline-offset: 1px; }
.input[aria-invalid="true"] { border-color: var(--magenta); border-style: dashed; background: var(--magenta-100); }
.field__error { color: var(--magenta-800); font-weight: 650; font-size: 0.875rem; display: none; }
.field__error:not(:empty) { display: block; }
.choice { display: flex; align-items: flex-start; gap: 0.7rem; min-height: 2.75rem; padding: 0.5rem 0; cursor: pointer; }
.choice input { flex: none; width: 1.35rem; height: 1.35rem; margin-top: 0.15rem; accent-color: var(--primary); }
.readout-list { display: grid; }
.readout-list > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line-strong); }
.readout-list dt { color: var(--ink-2); }
.readout-list dd { margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; }
.tool-grid { display: grid; gap: 1rem; }
@media (min-width: 40rem) { .tool-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ============================== 13. Graphiques (Chart.js chargé à la demande, tableau de repli) ============================== */
.chart { background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 1.1rem 1.1rem 0.9rem; box-shadow: var(--shadow-1); }
.chart__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem 1rem; }
.chart__title { font-weight: 700; font-size: var(--step-1); }
.chart__chip { padding: 0.1rem 0.6rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; }
.chart__chip--real { border: 1.5px solid var(--green); background: var(--green-100); color: var(--green-800); }
.chart__chip--calc { border: 1.5px solid var(--primary); background: #eaf3fb; color: var(--primary-strong); }
.chart__chip--assumed, .chart__chip--illustrative { border: 1.5px dashed var(--magenta); background: var(--magenta-100); color: var(--magenta-800); }
.chart__canvas { position: relative; height: 16rem; margin-top: 0.75rem; }
.chart__canvas canvas { width: 100% !important; height: 100% !important; }
.chart__table { margin-top: 0.75rem; }
.chart__table summary { cursor: pointer; font-weight: 650; font-size: 0.9375rem; min-height: 2.75rem; display: flex; align-items: center; color: var(--primary-strong); }
.chart__caption { margin-top: 0.6rem; font-size: 0.8125rem; color: var(--ink-2); }
@media (min-width: 48rem) { .chart__canvas { height: 20rem; } }

/* ============================== 14. Pied de page ============================== */
.site-footer { background: var(--shallow-100); color: var(--ink); }
.site-footer__independence { background: var(--shallow-200); border-block: 1px solid var(--line-strong); }
.site-footer__independence-inner { display: flex; gap: 1rem; align-items: flex-start; padding-block: 1.25rem; font-size: 0.9375rem; line-height: 1.5; }
.site-footer__independence-inner p { max-width: 46rem; }
.site-footer__independence-icon { margin-top: 0.15rem; color: var(--deep-800); }
.site-footer__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.5rem; padding-block: 2.5rem; }
.site-footer__about { grid-column: 1 / -1; }
.site-footer .brand { color: var(--ink); }
.site-footer .brand__mark { border-radius: 7px; }
.site-footer__tagline { margin-top: 0.75rem; max-width: 28rem; font-size: 0.9375rem; color: var(--ink-2); }
.site-footer__about p + p { margin-top: 0.5rem; }
.site-footer__mail { font-weight: 650; }
.site-footer__title { font-weight: 750; margin-bottom: 0.6rem; }
.site-footer__list li + li { margin-top: 0.15rem; }
.site-footer__list a, .site-footer__list span { display: inline-block; padding: 0.3rem 0; font-size: 0.9375rem; }
.site-footer__list a { color: var(--ink); }
.site-footer__legal { padding-block: 1.25rem 2rem; border-top: 1px solid var(--line-strong); font-size: 0.8125rem; line-height: 1.5; color: var(--ink-2); }
.site-footer__legal p { max-width: 46rem; }
.site-footer__legal a { color: var(--ink-2); }
@media (min-width: 48rem) {
  .site-footer__grid { grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); }
  .site-footer__about { grid-column: auto; }
}

/* ============================== 15. Pages spéciales : redirection partenaire, 404 ============================== */
.ext-page { min-height: 100vh; min-height: 100dvh; margin: 0; display: flex; flex-direction: column; color: var(--on-dark); background: var(--deep-950) url("/assets/img/icons/contours.svg") center / cover no-repeat; }
.ext-page__top { width: min(100% - 2 * var(--gutter), 30rem); margin: 1rem auto 0; display: flex; align-items: center; justify-content: space-between; }
.ext-page__main { flex: 1; display: grid; place-items: center; padding: 1.25rem var(--gutter) 2rem; }
.ext-card { width: min(100%, 30rem); background: var(--paper); color: var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.ext-card__head { display: flex; align-items: center; gap: 0.5rem; margin: 0; padding: 0.6rem 1.1rem; background: var(--deep-800); color: #fff; font-weight: 700; }
.ext-card__body { padding: 1.5rem 1.25rem; text-align: center; }
.ext-card__logo { display: flex; align-items: center; justify-content: center; min-height: 6rem; padding: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.ext-card__title { margin-top: 1.1rem; }
.ext-card__title { font-size: var(--step-3); }
.ext-card__lead { margin-top: 0.5rem; color: var(--ink-2); }
.ext-card__progress { height: 6px; margin: 1.25rem 0 0.5rem; border-radius: 3px; background: var(--shallow-200); overflow: hidden; }
.ext-card__bar { height: 100%; background: var(--primary); transform-origin: left center; }
.ext-card__status { margin: 0; font-size: 0.875rem; color: var(--ink-2); }
.ext-card__before { margin-top: 1.5rem; text-align: left; }
.ext-card__foot { display: grid; gap: 0.6rem; padding: 1rem 1.25rem 1.25rem; text-align: center; background: var(--paper-2); border-top: 1px solid var(--line); font-size: 0.9375rem; }
.ext-card__foot .btn { width: 100%; }

/* ============================== 16. Mouvement (un seul moment : la ligne d'approche se dessine) ============================== */
.approach { width: 100%; height: auto; max-width: 32rem; margin-inline: auto; }
.approach text { font-family: var(--font); }
.approach__label { fill: #fff; font-size: 15.5px; font-weight: 700; }
.approach__sub { fill: #c1d0d7; font-size: 12.5px; }
.approach__line { fill: none; stroke: #fff; stroke-width: 2.2; stroke-dasharray: 7 7; stroke-linecap: round; }
.approach__line--dead { stroke: var(--magenta-on-dark); }
.approach__node { fill: var(--deep-950); stroke: #fff; stroke-width: 2.2; }
.approach__beacon { fill: var(--amber); stroke: var(--deep-950); stroke-width: 1.5; stroke-linejoin: round; }
.approach__zone { fill: url(#hatch); stroke: var(--magenta-on-dark); stroke-width: 2; stroke-dasharray: 6 5; }
.approach__flag { fill: var(--magenta-on-dark); font-size: 12.5px; font-weight: 750; letter-spacing: 0.05em; }
@media (prefers-reduced-motion: no-preference) {
  .approach__lines { animation: approach-draw 1.5s var(--ease-out) 0.25s both; }
  .approach__beacon-group { animation: approach-fade 0.6s var(--ease-out) 1.2s both; }
}
@keyframes approach-draw { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes approach-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: no-preference) {
  .ext-card { animation: ext-rise 0.6s var(--ease-out) both; }
  .ext-card__bar { animation: ext-fill var(--leave, 2.7s) linear both; }
}
@keyframes ext-rise { from { opacity: 0; transform: translateY(1rem); } }
@keyframes ext-fill { from { transform: scaleX(0); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ext-card__progress { display: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
