/* Feuille de style des pages PUBLIQUES du portail (portal, about, privacy,
   terms, data-deletion).

   SOURCE UNIQUE : chaque page portait auparavant sa propre copie du CSS, ce qui
   a produit des variantes divergentes du logo et de la charte — exactement ce
   qui a fait refuser la review TikTok. Toute évolution se fait ICI. Aucun
   <style> par page, aucune police externe (CSP), aucun JavaScript.

   Palette : charte Libella Robotics V2 (apps/libella-web-robotics/tailwind.config).
   Le violet du Social Hub n'a rien à faire ici : ces pages sont celles du
   PORTAIL.

   CONTRASTES WCAG VÉRIFIÉS (cette feuille est aussi la documentation du
   dossier de review — la maintenir exacte) :
   — zones claires : texte 15,97:1 ; texte secondaire 6,01:1 (surface) /
     6,27:1 (carte) ; lien accent #067A6C 5,02:1 sur surface / 5,24:1 sur
     carte ; accent-ink sur accent-soft 4,67:1 ; note 6,92:1 ; banner
     10,48:1 / 13,06:1 ; blanc sur forêt 14,67:1 (hover #0A423C : 11,31:1).
   — hero sombre (tout texte se valide contre l'extrémité CLAIRE #062E2A du
     dégradé, pire cas) : blanc 14,67:1 ; blanc .72 composite 8,20:1 (ne
     jamais baisser l'alpha) ; menthe #2ECCB6 7,28:1 (AA corps ET grand
     texte) ; teal #0A9B8A 4,24:1 → GRAND texte ou décoratif uniquement.
   — INTERDITS (ne jamais réintroduire) : texte blanc sur teal 3,46:1 ;
     texte blanc sur menthe 2,01:1 (un CTA menthe porte un texte forêt) ;
     menthe en texte sur fonds clairs 1,93:1 (décoratif pur : filets, halos) ;
     menthe superposée au teal 1,72:1 ; glyphes officiels des plateformes
     (Facebook/Instagram/TikTok/YouTube/LinkedIn) jamais posés sur fond
     sombre, jamais recolorés, jamais redimensionnés par une règle générique.
   — .btn-hero (menthe/texte forêt) est réservé au hero sombre : ne jamais le
     réutiliser sur fond clair.

   Dark mode : volontairement absent (pages light-only) ; color-scheme:light
   neutralise l'auto-dark de Chrome Android qui recalculerait ces ratios. */

:root {
  color-scheme: light;

  --surface: #fafafa;    /* fond de page  */
  --card: #ffffff;
  --ink: #1e1e1e;        /* texte principal */
  --muted: #5a6169;      /* texte secondaire — 6,01:1 sur --surface */
  --accent: #0a9b8a;     /* teal-vif : traits, icônes, focus — jamais en texte */
  --accent-ink: #067a6c; /* même teinte assombrie pour du TEXTE */
  --accent-soft: #e6f5f2;
  --forest: #062e2a;     /* fond des boutons principaux, legal-strip, hero */
  --banner-ink: #0b3f39; /* texte du bandeau interne sur accent-soft */

  /* Hero sombre — seul temps fort sombre du système (portal uniquement). */
  --mint: #2eccb6;             /* accent texte sur fonds sombres UNIQUEMENT */
  --hero-ink: #ffffff;
  --hero-muted: rgba(255, 255, 255, 0.72); /* 8,20:1 — ne pas baisser l'alpha */
  --hero-grad: linear-gradient(150deg, #062e2a 0%, #0c1114 72%, #151b1e 100%);

  --border: #e4e7e6;
  --border-hover: #d5dad8;
  --hairline: rgba(6, 46, 42, 0.1); /* séparateurs teintés forêt */
  --soft: #f1f4f3;
  --note-bg: #fff8e6;
  --note-border: #f0d68a;
  --note-ink: #6b5307;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px; /* rayon charte V2 : grandes cartes, en-card, tuile phare */
  --wrap: 1080px;
  --wrap-doc: 860px; /* colonne de lecture des pages légales */

  --shadow: 0 1px 2px rgba(6, 46, 42, .04), 0 8px 24px -12px rgba(6, 46, 42, .12);
  /* Pile charte V2 : ombre teintée forêt + bordure rendue en inset
     (les cartes qui la portent n'ont pas de border CSS). */
  --shadow-lift:
    0 10px 28px rgba(6, 46, 42, 0.055),
    0 20px 58px rgba(6, 46, 42, 0.06),
    inset 0 0 0 1px rgba(6, 46, 42, 0.08);

  /* Hauteur cumulée du site-top collant (44 strip + 58 header) + 16 d'air.
     Consommée par scroll-padding-top : toute ancre, présente ou future,
     atterrit sous le bandeau sans liste de sélecteurs à maintenir. */
  --anchor-offset: 118px;

  /* Couture hero/contenu : la en-card chevauche la frontière de cette
     valeur. Appariée par calc() — retoucher UNE variable ne casse rien. */
  --seam: 44px;

  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  /* Aucune police externe : la CSP du portail bloque les CDN, et une police
     système évite tout décalage de rendu au chargement. */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16.5px;          /* ≥16px : pas de zoom forcé sur iOS */
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  /* Les URLs longues (security.google.com/…) cassent plutôt que de créer un
     défilement horizontal à 375px (WCAG 1.4.10 Reflow). */
  overflow-wrap: break-word;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap-doc { max-width: var(--wrap-doc); }

a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Anneau de focus visible partout : navigation clavier exigée en
   accessibilité. Contexte sombre (strip, hero) : anneau menthe 7,28:1. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.top-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.legal-strip :focus-visible,
.hero :focus-visible {
  outline-color: var(--mint);
}
/* Exception : la en-card est BLANCHE — l'anneau menthe y tomberait à 2,01:1.
   Retour à l'anneau teal (3,46:1 sur carte, ≥3:1 non-texte). */
.hero .en-card :focus-visible { outline-color: var(--accent); }
.legal-strip a:focus-visible { outline-offset: -3px; }

strong { font-weight: 650; }
code {
  font-family: var(--mono);
  font-size: .92em; background: var(--soft);
  padding: 1px 5px; border-radius: 5px;
}

/* Lien d'évitement : première tabulation, masqué jusqu'au focus.
   z-index 60 : au-dessus du .site-top collant. */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: #fff;
  padding: 10px 16px; border-radius: 0 0 var(--radius-sm) 0; z-index: 60;
}
.skip:focus { left: 0; }

/* ---------------------------------------------------------------- en-tête --
   Deux étages dans UN conteneur collant : (1) la barre légale forêt porte en
   permanence les chaînes anglaises littérales que les reviewers cherchent
   (« Privacy Policy », « Terms of Service », « Data Deletion ») ; (2) la
   barre principale allégée garde marque, 2 liens et le CTA de connexion.
   Résout à la fois la nav encombrée, le mobile sans JS et le CTA permanent. */

.site-top { position: sticky; top: 0; z-index: 30; }

.legal-strip { background: var(--forest); color: var(--hero-muted); }
.legal-strip .wrap { display: flex; align-items: center; gap: 14px; min-height: 44px; }
.legal-strip .strip-tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mint); white-space: nowrap;
}
.legal-strip nav {
  margin-left: auto; display: flex;
  overflow-x: auto; scrollbar-width: none; /* mobile : défilement, pas de wrap */
}
.legal-strip nav::-webkit-scrollbar { display: none; }
.legal-strip a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0 10px; font-size: 12.5px; font-weight: 500;
  color: var(--hero-muted); white-space: nowrap; border-radius: 8px;
}
.legal-strip a:hover { color: #fff; text-decoration: none; }
.legal-strip a[aria-current="page"] { color: var(--mint); }
/* Fondu du bord droit : signale la suite du défilement sans piéger le focus. */
.legal-strip { position: relative; }
.legal-strip::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 28px;
  background: linear-gradient(to left, var(--forest), transparent);
  pointer-events: none;
}

.site-header {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
/* Un reviewer sous navigateur dégradé doit voir un header opaque propre. */
@supports not (backdrop-filter: blur(1px)) {
  .site-header { background: #fff; }
}
.site-header .wrap {
  display: flex; align-items: center; gap: 14px; min-height: 58px;
}

.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); padding: 6px 0; min-height: 44px; }
.brand:hover { text-decoration: none; }
/* Le PNG canonique est un carré plein : aucun arrondi ici, sous peine de
   recréer l'écart avec l'icône déposée sur les portails développeur. */
.brand img { width: 30px; height: 30px; flex: none; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-size: 15px; letter-spacing: -.1px; }
.brand-text small {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}

.top-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.top-nav a {
  color: var(--muted); font-size: 14px; font-weight: 500; white-space: nowrap;
  /* min-height plutôt qu'un simple padding : la règle mobile plus bas réduit le
     padding, et un padding seul retombait alors sous la cible tactile
     minimale. La contrainte de hauteur, elle, survit à toute surcharge. */
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: color .18s ease, background-color .18s ease;
}
.top-nav a:hover { color: var(--ink); background: var(--soft); text-decoration: none; }
.top-nav a[aria-current="page"] { color: var(--accent-ink); background: var(--accent-soft); }

/* Retour au portail. Les pages satellites étaient un cul-de-sac : ce contrôle
   distinct (bordure + flèche) se lit comme un retour, pas comme un onglet. */
.top-nav a.nav-back {
  color: var(--ink); border: 1px solid var(--border); background: var(--card);
  font-weight: 600; margin-right: 6px; gap: 7px;
}
.top-nav a.nav-back:hover { background: var(--soft); border-color: var(--border-hover); }
.top-nav a.nav-back svg { flex: none; }

/* CTA de connexion permanent — pilule forêt (14,67:1 AAA). */
.btn-login {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 18px; border-radius: 999px;
  background: var(--forest); color: #fff;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: background-color .18s ease;
}
.btn-login:hover { background: #0a423c; color: #fff; text-decoration: none; }
.btn-login svg { flex: none; }

/* ------------------------------------------------------------------ boutons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 11px 18px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--card); color: var(--ink);
  font-size: 14.8px; font-weight: 600; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { background: var(--soft); border-color: var(--border-hover); text-decoration: none; }
.btn svg { flex: none; }

/* -------------------------------------------------------------------- héros
   LE seul moment sombre du système (portal uniquement), pleine largeur.
   PAS d'overflow:hidden ici : la en-card chevauche volontairement la couture
   basse (margin-bottom négatif) — un clipping la couperait. */

.hero {
  position: relative;
  background: var(--hero-grad);
  color: var(--hero-ink);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(10, 155, 138, .16), transparent 60%);
  pointer-events: none;
}
/* Grain statique ~2,5 % : masque le banding du dégradé forêt→noir et rejoint
   le grain du site vitrine. Tuile SVG en data:URI — aucun asset à déployer. */
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; padding-top: 64px; }

.hero-eyebrow {
  display: inline-flex; align-items: flex-start; gap: 9px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--mint); margin: 0 0 20px;
}
/* margin-top : centre la puce sur la PREMIÈRE ligne (le texte peut wrapper). */
.hero-eyebrow::before {
  content: ""; flex: none; width: 4px; height: 4px; margin-top: 7px;
  border-radius: 999px; background: var(--mint);
}

.hero-title {
  font-size: clamp(32px, 5.5vw, 52px); line-height: 1.08;
  letter-spacing: -.02em; margin: 0 0 16px; font-weight: 700; color: #fff;
}
.hero-sub {
  max-width: 68ch; font-size: 17.5px; line-height: 1.65;
  color: var(--hero-muted); margin: 0;
}
/* Blanc UNIQUEMENT dans le hero sombre — sur les pages claires (.page-head),
   le strong reste encre. */
.hero .hero-sub strong { color: #fff; font-weight: 650; }
.page-head .hero-sub strong { color: var(--ink); }

.hero-actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px 22px; margin-top: 30px;
}
/* CTA du hero : menthe + texte forêt 7,28:1. RÉSERVÉ au hero sombre —
   jamais de texte blanc sur menthe (2,01:1), jamais ce bouton sur clair. */
.btn-hero {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 48px; padding: 0 26px; border-radius: 999px;
  background: var(--mint); color: var(--forest);
  font-size: 15.5px; font-weight: 650;
  box-shadow: 0 6px 18px -6px rgba(46, 204, 182, .45), inset 0 1px 0 rgba(255, 255, 255, .35);
  transition: background-color .18s ease;
}
.btn-hero:hover { background: #3fd6c1; color: var(--forest); text-decoration: none; }
.btn-hero svg { flex: none; }
.hero-link {
  display: inline-flex; align-items: center; min-height: 44px;
  color: #fff; font-size: 15px;
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, .35);
}
.hero-link:hover { color: #fff; text-decoration-color: #fff; }

/* Bloc résumé anglais : les reviewers de plateforme lisent l'anglais, il doit
   se repérer d'un coup d'œil. Objet premium : carte à filet teal + étiquette
   flottante « In English » (vrai markup lang="en", jamais de content: CSS). */
.en-card {
  position: relative; z-index: 2;
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); border-top: 3px solid var(--accent);
  padding: 24px 26px 22px; max-width: 74ch;
  font-size: 16px; line-height: 1.65; color: var(--muted);
}
.en-card strong { color: var(--ink); }
.en-card a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.en-card .en-tag {
  position: absolute; top: -12px; left: 22px;
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-soft); border-radius: 999px; padding: 4px 11px;
}
/* Variante portal : chevauche la couture hero sombre / contenu clair. */
.hero .en-card { margin: 56px 0 calc(var(--seam) * -1); }
.after-hero { padding-top: calc(var(--seam) + 44px); }
/* Variante satellites : même vêtement, filet à gauche, sans marge négative. */
.en-card--doc { margin: 26px 0 0; border-top: none; border-left: 3px solid var(--accent); }

/* ------------------------------------------------------- bandeau & cartes -- */

.internal-banner {
  display: flex; gap: 14px; align-items: stretch;
  background: var(--accent-soft); border: 1px solid rgba(10, 155, 138, .25);
  border-radius: var(--radius); padding: 16px 20px; margin: 22px 0 0;
  font-size: 15.5px; color: var(--banner-ink);
}
.internal-banner::before {
  content: ""; flex: none; width: 4px; align-self: stretch;
  border-radius: 999px; background: var(--accent);
}
.internal-banner > div { min-width: 0; }
.internal-banner strong { display: block; margin-bottom: 4px; color: var(--forest); }

.card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 24px 26px; margin: 22px 0 0;
  box-shadow: var(--shadow-lift); /* la bordure est l'inset 1px de la pile */
}
h2.sec {
  font-size: 21px; letter-spacing: -.3px; margin: 0 0 12px; font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.card h3 { font-size: 15.5px; margin: 18px 0 6px; font-weight: 650; }
.card p { margin: 0 0 12px; max-width: 74ch; }
.card p:last-child { margin-bottom: 0; }

/* En-tête de section systématisé (remplace les margin-top inline). */
.sec-head { margin: 64px 0 18px; }
.sec-head h2.sec { margin: 0; }
.sec-eyebrow {
  display: inline-flex; align-items: flex-start; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--accent-ink); margin: 0 0 6px;
}
.sec-eyebrow::before {
  content: ""; flex: none; width: 4px; height: 4px; margin-top: 7px;
  border-radius: 999px; background: var(--accent);
}
.card .sec-head { margin: 26px 0 12px; }

/* Surlignage « liquide » de la charte V2 — décoratif (bande menthe→teal sous
   l'encre forêt, ~10:1 conservé). Réservé aux titres sur fonds CLAIRS. */
.hl { position: relative; display: inline-block; isolation: isolate; }
.hl::before {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 6%;
  height: 36%; z-index: -1; border-radius: 4px;
  background: linear-gradient(135deg, rgba(46, 204, 182, .55) 0%, rgba(10, 155, 138, .45) 100%);
}

/* ------------------------------------------------------------ faits/repères
   Rangée « système » : un seul bloc scindé par des hairlines. */

.facts {
  display: grid; gap: 1px; grid-template-columns: 1fr;
  background: var(--hairline); border: 1px solid var(--hairline);
  border-radius: var(--radius); overflow: hidden; margin: 0;
}
@media (min-width: 760px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--card); padding: 18px 20px;
}
.fact svg { color: var(--accent-ink); flex: none; margin-top: 2px; }
.fact b { display: block; font-size: 15px; }
.fact span { font-size: 14px; color: var(--muted); }

/* ------------------------------------------------------------------ tuiles */

.grid { display: grid; gap: 14px; grid-template-columns: 1fr; margin: 0; }
@media (min-width: 760px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.tile {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow);
  transition: box-shadow .25s ease-out;
}
.tile:hover { box-shadow: 0 24px 60px -24px rgba(20, 40, 50, .2); }
.tile-head { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; }
.tile-head h3 { font-size: 15.5px; margin: 0; font-weight: 650; }
.tile-ico {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: var(--soft); color: var(--accent-ink);
  display: grid; place-items: center;
}
.tile p { margin: 0; font-size: 15px; color: var(--muted); }

/* Tuile phare Social Hub : pleine largeur, filet dégradé menthe→teal→forêt
   (décoratif : la menthe n'y porte aucun texte). */
.tile--featured {
  position: relative; grid-column: 1 / -1;
  border: none; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); padding: 26px 28px; overflow: hidden;
}
.tile--featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--accent) 55%, var(--forest));
}
.tile--featured .tile-ico { background: var(--accent-soft); }
.tile--featured h3 { font-size: 18px; }
.tile--featured p { font-size: 15.5px; max-width: 74ch; }
.tile-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-soft); border-radius: 999px; padding: 5px 11px;
  margin-bottom: 12px;
}
.tile-badge::before {
  content: ""; flex: none; width: 4px; height: 4px; border-radius: 999px; background: var(--accent);
}
.tile-cta {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 44px; margin-top: 4px; font-weight: 600; color: var(--accent-ink);
}

/* ----------------------------------------------------------- réseaux -------- */

.platforms { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); background: var(--card);
  border-radius: 999px; padding: 8px 14px 8px 11px;
  font-size: 14.5px; font-weight: 550; color: var(--ink);
}
.chip svg { flex: none; }
/* La puce YouTube rend un glyphe recadré (24×17, viewBox borné sur le glyphe),
   donc plus large que haut : on rattrape le padding pour que la puce garde le
   même équilibre que les autres. Ne jamais redimensionner ni recolorer. */
.chip.yt { padding-left: 9px; }

.links-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.note {
  background: var(--note-bg); border: 1px solid var(--note-border);
  color: var(--note-ink); border-radius: var(--radius-sm);
  padding: 13px 16px; font-size: 14.8px; margin: 14px 0 0;
}
.note b { color: inherit; }
/* Soulignés en permanence : accent-ink vs note-ink = 1,40:1, la couleur seule
   ne distingue pas le lien (WCAG 1.4.1). */
.note a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------- pages légales (docs) -- */

.doc-head { padding: 40px 0 0; }
.doc-title {
  font-size: clamp(26px, 4vw, 34px); line-height: 1.2;
  margin: 4px 0 10px; letter-spacing: -.5px;
}
.lead { font-size: 17px; color: var(--muted); max-width: 70ch; }
.updated {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .02em;
  color: var(--muted); margin: 0 0 18px;
}
.updated svg { flex: none; }

.toc {
  background: var(--soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px; margin: 0 0 28px;
}
.toc h2 {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .2em; color: var(--muted); margin: 0 0 10px; font-weight: 600;
}
.toc ol, .toc ul { margin: 0; padding-left: 20px; columns: 2; column-gap: 36px; }
.toc li { break-inside: avoid; }
.toc a { display: inline-block; padding: 9px 0; } /* ≈45px : cible tactile */
@media (max-width: 620px) { .toc ol, .toc ul { columns: 1; } }

.field-list {
  margin: 10px 0 0; padding: 14px 18px 14px 34px;
  background: var(--soft); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.field-list li { margin: 6px 0; }

/* Stepper de la procédure de suppression : pastilles forêt numérotées
   reliées par un filet vertical. */
.steps { list-style: none; counter-reset: step; margin: 18px 0 0; padding: 0; }
.steps > li { position: relative; padding: 0 0 26px 52px; counter-increment: step; }
.steps > li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0; width: 32px; height: 32px;
  border-radius: 999px; background: var(--forest); color: #fff;
  font-size: 14.5px; font-weight: 650; display: grid; place-items: center;
}
.steps > li::after {
  content: ""; position: absolute; left: 15.5px; top: 38px; bottom: 2px;
  width: 1px; background: var(--hairline);
}
.steps > li:last-child { padding-bottom: 0; }
.steps > li:last-child::after { display: none; }
.steps h3 { margin: 2px 0 6px; font-size: 15.5px; }

.contact-box {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; margin: 14px 0; background: var(--soft);
}
.contact-box p { margin: 0; }
.subject-tag {
  display: inline-block; background: var(--accent-soft); color: var(--accent-ink);
  border-radius: 6px; padding: 2px 8px; font-weight: 600; font-size: 14px;
}

main { padding: 0 0 64px; }
main h2 { letter-spacing: -.3px; }
main ul, main ol { padding-left: 22px; }
main li { margin: 5px 0; max-width: 74ch; }
main p { max-width: 74ch; }
/* NB : PAS de scroll-margin-top ici — le scroll-padding-top global sur html
   couvre déjà toutes les ancres ; les deux seraient additifs. */
.see-also { margin-top: 16px; }

/* Page-head clair des pages non documentaires (about). */
.page-head { padding: 48px 0 0; }
.page-head .hero-sub { color: var(--muted); }
.page-head .sec-eyebrow { margin-bottom: 10px; }
.page-title {
  font-size: clamp(28px, 4.5vw, 40px); line-height: 1.12;
  letter-spacing: -.02em; margin: 0 0 14px; font-weight: 700; color: var(--ink);
}

/* ------------------------------------------------------------------- pied --
   Footer de produit : marque / plateforme / légal & contact, puis strate méta. */

.site-footer { border-top: 1px solid var(--hairline); background: var(--card); margin-top: 72px; }
.foot-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
  padding: 44px 0 36px;
}
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.foot-brand { display: flex; flex-direction: column; gap: 2px; }
.foot-brand img { width: 28px; height: 28px; margin-bottom: 10px; } /* PNG canonique, aucun arrondi */
.foot-brand strong { font-size: 15px; }
.foot-brand .foot-sub { color: var(--muted); font-size: 14px; }
.foot-brand .foot-note { color: var(--muted); font-size: 14px; max-width: 38ch; margin-top: 10px; }

.foot-title {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 8px; font-weight: 600;
}
.foot-nav, .foot-links { display: flex; flex-direction: column; }
.foot-nav a, .foot-links a {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--muted); font-size: 14.5px; padding: 2px 0;
}
.foot-nav a:hover, .foot-links a:hover { color: var(--accent-ink); }
/* Liens légaux empilés bilingues : FR lisible, chaîne anglaise littérale en
   sous-ligne mono — scannable par un reviewer qui cherche l'anglais. */
.foot-links a {
  flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 1px; color: var(--ink);
}
.foot-links a span[lang="en"] {
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.foot-links a:hover { color: var(--accent-ink); }
.foot-contact { color: var(--muted); font-size: 14.5px; margin-top: 12px; }
/* Souligné : accent-ink vs muted = 1,20:1, la couleur seule ne suffit pas. */
.foot-contact a { text-decoration: underline; text-underline-offset: 3px; }

.foot-meta {
  border-top: 1px solid var(--hairline);
  padding: 16px 0 26px;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: 13px; color: var(--muted);
}

/* --------------------------------------------------------------- confort --- */

@media (max-width: 560px) {
  .legal-strip .strip-tag { display: none; }
  .legal-strip nav { margin-left: 0; }
  /* Libellés anglais seuls : les 3 chaînes cherchées par les reviewers
     (« Privacy Policy », « Terms of Service », « Data Deletion ») tiennent
     alors sur 375px sans défilement. Les libellés français restent portés
     par la carte Sécurité et le footer. */
  .legal-strip a .fr { display: none; }
  /* Le logo seul identifie la marque : le nom complet vit dans le H1 de la
     page. Libère la place pour nav + CTA sur 375px, sans wrap ni débordement. */
  .brand-text { display: none; }
  .site-header .wrap { gap: 8px; }
  .top-nav a { font-size: 13.5px; padding: 8px 9px; }  /* min-height: 44px conservé */
  .btn-login { padding: 0 14px; }
  .hero .wrap { padding-top: 48px; }
  .hero .en-card { margin-top: 40px; }
  .card, .tile--featured { padding: 20px 18px; }
  .steps > li { padding-left: 46px; }
}

/* Respecte le réglage système « réduire les animations ». */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
