/* Kanayou — identité v1 (passe designer).
   Observatoire de prix indépendant : sobre, précis, honnête.
   Direction : publication statistique sur papier chaud, accent vert cannabis
   foncé (décision utilisateur 2026-09-06 ; l'interdit initial des codes
   cannabis est levé). Une seule famille typo (system stack : pas de webfont, cohérent
   avec « aucun traceur tiers » de la politique de confidentialité).
   Aucune dépendance, aucun framework, aucun JS. */

:root {
  --largeur-max: 60rem;

  /* Neutres chauds (papier / encre) */
  --fond: #fbf9f5;
  --fond-doux: #f3efe6;
  --encre: #221f1a;
  --encre-douce: #5d574c;
  --trait: #e3ddd1;

  /* Accent unique : vert cannabis foncé (décision utilisateur 2026-09-06,
     remplace le bleu outremer initial) */
  --accent: #1e5c3a;
  --accent-fonce: #143f27;

  --erreur: #a3271e;
  --rayon: 6px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--encre);
  background: var(--fond);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
}

::selection { background: var(--accent); color: var(--fond); }

main, .site-header, .site-footer {
  max-width: var(--largeur-max);
  margin-inline: auto;
  padding-inline: 1rem;
}

main { padding-block: 1rem 3.5rem; }

/* Lien d'évitement (AA) : hors écran, visible au focus clavier. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  background: var(--encre);
  color: var(--fond);
  padding: 0.5rem 1rem;
  border-radius: var(--rayon);
  text-decoration: none;
}

/* Focus visible partout, même dessin. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* En-tête */
.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--trait);
}
.logo { margin: 0; font-size: 1.4rem; font-weight: 800; }
.logo a { color: var(--encre); text-decoration: none; }
/* Signature typographique : le point de donnée. « Kanayou. » */
.logo a::after { content: "."; color: var(--accent); }
.logo a:hover, .logo a:focus-visible { color: var(--accent); }
.site-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.site-nav a {
  color: var(--encre-douce);
  text-decoration: none;
  font-size: 0.95rem;
}
.site-nav a:hover, .site-nav a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Pied de page */
.site-footer {
  border-top: 1px solid var(--trait);
  padding-block: 1.75rem 2.25rem;
  color: var(--encre-douce);
  font-size: 0.9rem;
}
.site-footer nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.site-footer a { color: var(--encre-douce); }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--accent); }
.footer-note { margin-top: 0.9rem; max-width: 42rem; }

/* Titres et prose */
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
h1 {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 1.25rem 0 0.75rem;
}
h2 { font-size: 1.3rem; font-weight: 700; margin: 2.25rem 0 0.6rem; }
h3 { font-size: 1.05rem; margin: 1.25rem 0 0.35rem; }

/* Héros : la promesse, puis un filet accent en signature. */
.hero {
  padding-block: 1.5rem 0.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.hero-texte { flex: 1 1 28rem; min-width: 0; }
.hero-visuel { position: relative; flex: 0 1 24rem; max-width: 26rem; }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-block: 1.1rem 0.9rem; }

/* Tampon « vérifié » : date réelle du dernier relevé. Frappe en one-shot
   (transform/opacity seulement), immobile si mouvement réduit. */
.tampon {
  position: absolute;
  left: -1.1rem;
  bottom: -1.3rem;
  width: 7.5rem;
  height: 7.5rem;
  color: var(--accent);
  opacity: 0.92;
  transform: rotate(-12deg);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .tampon {
    animation: tampon-frappe 0.55s cubic-bezier(0.2, 1.4, 0.4, 1) 0.35s both;
  }
}
@keyframes tampon-frappe {
  from { transform: rotate(-3deg) scale(1.4); opacity: 0; }
  65% { transform: rotate(-13deg) scale(0.97); opacity: 0.92; }
  to { transform: rotate(-12deg) scale(1); opacity: 0.92; }
}
.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: var(--rayon);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.btn:hover { background: var(--accent-fonce); border-color: var(--accent-fonce); color: #fff; }
.btn-secondaire {
  background: transparent;
  color: var(--accent);
}
.btn-secondaire:hover { background: var(--fond-doux); color: var(--accent-fonce); }
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
}
@media (max-width: 48rem) {
  .hero { flex-direction: column; align-items: stretch; }
  .hero-visuel { max-width: 100%; order: 2; }
  .tampon { width: 6rem; height: 6rem; left: -0.5rem; bottom: -0.9rem; }
}
.hero h1 { margin-top: 0.5rem; }
.hero h1::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  background: var(--accent);
  margin-top: 0.9rem;
}
.hero-sub {
  color: var(--encre-douce);
  max-width: 42rem;
  font-size: 1.1rem;
}

/* Liens */
a { color: var(--accent); text-underline-offset: 0.15em; }
a:hover { color: var(--accent-fonce); }

/* Tableaux de prix : les chiffres sont les héros.
   Style « tableau statistique » : filet fort sous l'en-tête, filets fins
   entre les lignes, pas de fond zébré. */
table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 1rem;
  font-size: 0.95rem;
}
caption {
  caption-side: bottom;
  text-align: left;
  color: var(--encre-douce);
  font-size: 0.85rem;
  padding-top: 0.6rem;
}
th, td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--trait);
  vertical-align: top;
}
thead th {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--encre-douce);
  border-bottom: 2px solid var(--encre);
  padding-bottom: 0.45rem;
}
thead th a { color: var(--encre-douce); }
tbody th[scope="row"] { font-weight: 600; }
tbody tr:hover { background: var(--fond-doux); }
.num { text-align: right; }
/* Chiffres alignés : indispensable pour comparer des prix. */
.prix, .num { font-variant-numeric: tabular-nums; }
.prix { font-weight: 600; white-space: nowrap; }
/* Valeur de référence (médiane 30 j) : lisible mais en retrait
   du prix courant. */
.prix.ref { font-weight: 400; color: var(--encre-douce); }

/* Filtres par type : pastilles sobres. */
.type-filter, .pagination {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  margin-block: 1.25rem;
}
.type-filter a {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--trait);
  border-radius: 999px;
  color: var(--encre-douce);
  text-decoration: none;
  font-size: 0.92rem;
}
.type-filter a:hover, .type-filter a:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}
.type-filter a[aria-current="true"] {
  background: var(--encre);
  border-color: var(--encre);
  color: var(--fond);
  font-weight: 600;
}
.pagination { color: var(--encre-douce); font-size: 0.95rem; }

/* Sections de la home */
.comparatif { margin-top: 1.5rem; }

/* Méthodologie en 3 points : compteurs « 01 02 03 »,
   registre relevé de données. */
.methode ol {
  list-style: none;
  counter-reset: etape;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.methode li {
  counter-increment: etape;
  padding-top: 0.5rem;
  border-top: 2px solid var(--encre);
}
.methode li::before {
  content: counter(etape, decimal-leading-zero);
  display: block;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

/* Capture email : panneau chaleureux, sans dark pattern. */
.inscription {
  background: var(--fond-doux);
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
  padding: 1.5rem 1.5rem 1.25rem;
  margin-block: 2.75rem 2.25rem;
}
.inscription h2 { margin-top: 0; }

/* Ancrage outre-mer : discret et sincère. */
.outremer {
  border-top: 1px solid var(--trait);
  padding-top: 0.5rem;
}
.outremer p { color: var(--encre-douce); max-width: 42rem; }

/* Formulaire d'inscription */
.subscribe-form { margin-block: 1rem; }
.subscribe-form p:not(.form-note):not(.hp-field) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.subscribe-form label {
  flex-basis: 100%;
  margin-bottom: 0.1rem;
  font-weight: 600;
}
.subscribe-form input[type="email"] {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
  background: var(--fond);
  color: var(--encre);
  min-width: min(18rem, 100%);
  font-size: 1rem;
  font-family: inherit;
}
.subscribe-form input[type="email"]:focus-visible {
  border-color: var(--accent);
  outline-offset: 0;
}
.subscribe-form button {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: var(--rayon);
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 150ms ease-out;
}
.subscribe-form button:hover { background: var(--accent-fonce); border-color: var(--accent-fonce); }
.subscribe-form button:focus-visible { outline-color: var(--encre); }
.form-note {
  display: block;
  color: var(--encre-douce);
  font-size: 0.85rem;
  max-width: 38rem;
}
.errorlist { color: var(--erreur); margin: 0.25rem 0 0; padding-left: 1rem; }

/* Honeypot : masqué visuellement, présent dans le DOM pour les bots.
   Pas de display:none (certains bots l'ignorent) : hors écran. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Encarts */
.notice {
  background: var(--fond-doux);
  border: 1px solid var(--trait);
  border-left: 3px solid var(--accent);
  border-radius: var(--rayon);
  padding: 0.85rem 1.1rem;
  margin-block: 1.25rem;
}
.notice p { text-wrap: pretty; }
.notice p:first-child { margin-top: 0; }
.notice p:last-child { margin-bottom: 0; }
.table-note { color: var(--encre-douce); font-size: 0.85rem; }

/* Masquage visuel accessible (labels de formulaires) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Recherche (header) */
.search-form { display: flex; gap: 0.3rem; align-items: center; }
.search-form input[type="search"] {
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
  padding: 0.35rem 0.6rem;
  font-size: 0.9rem;
  background: var(--fond);
  max-width: 11rem;
}
.search-form button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--fond);
  border-radius: var(--rayon);
  padding: 0.35rem 0.7rem;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Mention légale des liens d'affiliation (loi influence commerciale) */
.mention-sponso {
  display: inline-block;
  color: var(--encre-douce);
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Bandeau de fraîcheur : chiffres réels du dernier relevé (jamais décoratif) */
.bandeau-stats {
  color: var(--encre-douce);
  font-size: 0.9rem;
  border-top: 1px solid var(--trait);
  padding-top: 0.6rem;
}
.bandeau-stats strong { color: var(--accent-fonce); }

/* Économie vérifiée : écart prouvé à la médiane 30 j (voir méthodologie) */
.badge-promo {
  display: inline-block;
  background: var(--accent);
  color: var(--fond);
  border-radius: var(--rayon);
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

code {
  background: var(--fond-doux);
  border: 1px solid var(--trait);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

/* Blocs à copier (extraits robots.txt de la page /bot) */
pre {
  background: var(--fond-doux);
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
  padding: 0.85rem 1.1rem;
  overflow-x: auto;
}
pre code { background: none; border: none; padding: 0; font-size: 0.9rem; }

/* Responsive.
   Mobile (~< 640 px) : les tableaux d'offres deviennent des cartes empilées.
   Les libellés de colonnes sont portés par data-label sur chaque cellule ;
   l'en-tête reste dans le DOM (masqué visuellement) pour les lecteurs d'écran. */
@media (max-width: 40rem) {
  .site-header { flex-direction: column; gap: 0.4rem; align-items: flex-start; }

  table, tbody, tr, caption { display: block; }
  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  tbody tr {
    border: 1px solid var(--trait);
    border-radius: var(--rayon);
    background: var(--fond);
    padding: 0.85rem 1rem;
    margin-block: 0.75rem;
  }
  tbody tr:hover { background: var(--fond); }
  tbody th[scope="row"] {
    display: block;
    border: 0;
    padding: 0 0 0.5rem;
    font-size: 1.02rem;
  }
  td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    border: 0;
    padding: 0.2rem 0;
  }
  td[data-label]::before {
    content: attr(data-label);
    color: var(--encre-douce);
    font-size: 0.85rem;
    font-weight: 400;
    text-align: left;
    white-space: normal;
  }
}

/* Trois points de méthode côte à côte sur écran large. */
@media (min-width: 40rem) {
  .methode ol { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

/* ------------------------------------------------------------------------
   Installation PWA — /app/ (itération UX post-pwa-light).
   Trois cartes details/summary neutres (pictos SVG maison, aucun logo de
   marque), mobile-first, sans framework. La carte de l'appareil détecté
   reçoit .carte-install-detectee via JS ; les deux autres restent
   dépliables (détection UA fragile : jamais de carte masquée). */
.cartes-install { display: grid; gap: 0.6rem; margin-block: 1rem; }
.carte-install {
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
  background: var(--fond);
}
.carte-install summary { padding: 0.8rem 1rem; font-weight: 600; cursor: pointer; }
.carte-install summary h3 { display: inline; margin: 0; font-size: 1.02rem; }
.carte-install summary svg {
  vertical-align: -0.3em;
  margin-right: 0.5rem;
  color: var(--accent);
}
.carte-install-corps { padding: 0 1rem 0.85rem; }
.carte-install-corps > :first-child { margin-top: 0; }
.carte-install-corps > :last-child { margin-bottom: 0; }
/* Mise en avant discrète, même vocabulaire que .notice (filet accent). */
.carte-install-detectee {
  border-color: var(--accent);
  border-left: 3px solid var(--accent);
}

/* ------------------------------------------------------------------------
   App shell /appli/* (phase 2026-09-app-shell).
   Mobile-first strict : écrans conçus pour ~360-430 px ; le desktop affiche
   la même colonne centrée (max-width), pas de layout dédié. Pictos SVG
   inline sobres (jamais d'emojis), variables et classes existantes
   réutilisées (badge-promo, btn, type-filter). */

/* hidden doit toujours gagner, même sur les display posés par les classes
   (.app-cta, .btn…) — l'UA ne met pas de !important sur [hidden]. Corrige
   au passage le conflit .btn/hidden préexistant des boutons de /app/. */
[hidden] { display: none !important; }

.app-main {
  max-width: 30rem;
  margin-inline: auto;
  padding: 0.75rem 1rem calc(5rem + env(safe-area-inset-bottom, 0px));
}
.app-titre { font-size: 1.55rem; margin: 0.5rem 0 0.75rem; }

/* Barre basse : 4 onglets, fixe, safe-area iOS, état actif net. */
.app-tabbar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: space-around;
  background: var(--fond);
  border-top: 1px solid var(--trait);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.app-tabbar a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 0.9rem 0.4rem;
  color: var(--encre-douce);
  text-decoration: none;
  font-size: 0.72rem;
}
.app-tabbar a[aria-current="page"] { color: var(--accent); font-weight: 700; }
.app-tabbar svg { display: block; }

/* Pastille de rappel d'opt-in sur l'onglet Alertes. */
.app-badge {
  position: absolute;
  top: 0.3rem;
  right: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--erreur);
}

/* Recherche en tête d'écran. */
.app-search { display: flex; gap: 0.4rem; margin-block: 0.5rem 1rem; }
.app-search input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
  padding: 0.55rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--fond);
}

/* Cartes compactes (Radar, Produits, Plus). */
.app-liste { list-style: none; margin: 0.75rem 0; padding: 0; display: grid; gap: 0.6rem; }
.app-card {
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
  background: var(--fond);
  padding: 0.85rem 1rem;
}
.app-liste .app-card { padding: 0; }
.app-liste .app-card > a {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  color: var(--encre);
  text-decoration: none;
}
.app-liste .app-card > a:hover, .app-liste .app-card > a:focus-visible { background: var(--fond-doux); }
.app-card-nom { font-weight: 600; }
.app-card-prix {
  color: var(--encre-douce);
  font-size: 0.9rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.app-card-alertes { background: var(--fond-doux); margin-block: 1rem; }
.app-card-alertes p:first-child { margin-top: 0; }
.app-card-alertes p:last-child { margin-bottom: 0; }

/* CTA pleine largeur (opt-in, sortie marchande, états vides). */
.app-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 1.05rem;
}
button.app-cta { font-family: inherit; cursor: pointer; }
button.app-cta + button.app-cta { margin-top: 0.5rem; }

/* Fiche : bloc décision en tête, CTA collé au-dessus de la barre basse. */
.app-decision { margin-block: 1rem; }
.app-decision p { margin-block: 0.35rem; }
.app-decision-prix { font-size: 1.15rem; font-variant-numeric: tabular-nums; }
.app-cta-zone {
  position: sticky;
  bottom: calc(3.6rem + env(safe-area-inset-bottom, 0px));
  background: var(--fond);
  padding-block: 0.5rem;
  margin-block: 1rem 0;
  text-align: center;
}
.app-cta-zone .mention-sponso { display: block; margin-top: 0.3rem; }

/* Onboarding : overlay plein écran, 2 étapes, jamais bloquant. */
.app-onboarding {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: var(--fond);
  overflow-y: auto;
  padding: 2.5rem 1.25rem calc(2rem + env(safe-area-inset-bottom, 0px));
}
.app-onboarding-etape { max-width: 26rem; margin-inline: auto; }
.app-onboarding h2 { margin-top: 0.5rem; font-size: 1.5rem; }
.app-onboarding-plus-tard {
  background: none;
  border: none;
  padding: 0.4rem 0;
  color: var(--encre-douce);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
}
.app-reperes { list-style: none; margin: 1.25rem 0 1.75rem; padding: 0; display: grid; gap: 1rem; }
.app-reperes li { border-top: 2px solid var(--encre); padding-top: 0.5rem; }

/* ── Ergonomie affiliation (lot 1) — sommaire + sticky CTA ──────────────────
   Ajout minimal, pages pivots. Aucune dépendance JS. */

/* Offset d'ancre : le jump-link ne colle pas le haut de la fenêtre. */
:target { scroll-margin-top: 1rem; }
#en-bref, #offres, #historique, #faq-produit-titre { scroll-margin-top: 1rem; }

/* Historique du prix : sparkline SVG serveur (décorative, aria-hidden). Tracé
   sobre en accent vert, sans remplissage ni couleur criarde ; le résumé texte
   porte l'information. La largeur suit le conteneur, la hauteur reste fixe. */
#historique .sparkline {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0.5rem 0 0.25rem;
}
#historique .sparkline polyline {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
#historique .sparkline-resume { margin: 0.25rem 0; }

/* Verdict « en bref » : réponse autoportante sous le H1, sobre, sans couleur
   criarde. Léger liseré accent à gauche pour le distinguer de la prose. */
#en-bref .verdict {
  margin: 0.75rem 0 1.25rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--accent);
}

/* Sommaire (jump links) sous le H1. Sobre, inline, wrap sur mobile. */
.sommaire { margin: 0.75rem 0 1.25rem; }
.sommaire ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.sommaire a {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--trait);
  padding: 0.2rem 0;
}
.sommaire a:hover,
.sommaire a:focus { border-bottom-color: var(--accent); }

/* Sticky CTA sobre : barre basse fine (< 50 px), non couvrante, cible >= 48 px.
   z-index sous l'app shell PWA (tabbar 5 / onboarding 20) mais le public ne
   les rend pas ; marge basse du main réservée pour ne pas masquer le footer. */
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding: 0.4rem 1rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--fond) 92%, transparent);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--trait);
}
.sticky-cta__lien {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  background: var(--accent);
  color: var(--fond);
  text-decoration: none;
  border-radius: var(--rayon);
  font-weight: 600;
}
.sticky-cta__lien:hover,
.sticky-cta__lien:focus { background: var(--accent-fonce); }
