/* PolyScore — feuille unique du site vitrine.
   Direction artistique « Le Point » : une seule couleur vive, le rouge, qui ne dit qu'une
   chose (« ça se joue maintenant ») ; noir, blanc, gris pour tout le reste ; teintes de sport
   dans les seuls cartouches ; Chivo pour les mots, Chivo Mono pour ce qui s'aligne ;
   filet 1 px, rayon 5, aucune ombre, aucun dégradé. */

@font-face { font-family: "Chivo"; src: url("/assets/fonts/chivo-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Chivo"; src: url("/assets/fonts/chivo-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Chivo"; src: url("/assets/fonts/chivo-900.woff2") format("woff2"); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Chivo Mono"; src: url("/assets/fonts/chivo-mono-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Chivo Mono"; src: url("/assets/fonts/chivo-mono-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  color-scheme: light dark;
  --page: #F2F2F2;
  --bloc: #FFFFFF;
  --filet: #DCDCDC;
  --texte: #0A0A0A;
  --second: #737373;          /* sur bloc blanc : 4,74:1 */
  --second-page: #6E6E6E;     /* sur la page #F2F2F2 : 4,55:1 (exception web, AA) */
  --inverse-fond: #0A0A0A;
  --inverse-texte: #FFFFFF;
  --inverse-second: #B3B3B3;
  --rouge-marque: #E5232C;    /* point du mot-symbole : élément graphique, jamais du texte */
  --rouge-direct: #BC171E;    /* pastille + libellé « en direct » sur fond clair */
  --neutre-fond: #EFEFEF;
  --neutre-texte: #171717;
  --fige-fond: #3A3A3A;
  --fige-texte: #EDEDED;
  --point-eteint: #3D3D3D;
  --police: "Chivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "Chivo Mono", Menlo, "Courier New", monospace;
  --rayon: 5px;
  --gouttiere: 16px;
  --largeur: 1120px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #0A0A0A;
    --bloc: #101010;
    --filet: #262626;
    --texte: #FAFAFA;
    --second: #8C8C8C;
    --second-page: #8C8C8C;
    --inverse-fond: #FAFAFA;
    --inverse-texte: #0A0A0A;
    --inverse-second: #4D4D4D;
    --rouge-direct: #FF5C5C;
    --neutre-fond: #1A1A1A;
    --neutre-texte: #E4E4E4;
  }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--page);
  color: var(--texte);
  font-family: var(--police);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
p { margin: 0 0 12px; }
ul, ol { margin: 0 0 12px; padding-left: 1.2em; }
li { margin-bottom: 6px; }
h1, h2, h3, h4 { margin: 0; font-weight: 900; letter-spacing: -0.035em; line-height: 1.05; }
strong, b { font-weight: 700; }
a { color: var(--texte); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--texte); outline-offset: 3px; border-radius: 2px; }
.mono, .chiffre { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.second { color: var(--second-page); }
.bloc .second, .carte .second { color: var(--second); }
hr { border: 0; border-top: 1px solid var(--filet); margin: 32px 0; }

.evitement {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--inverse-fond); color: var(--inverse-texte);
  padding: 12px 16px; border-radius: var(--rayon); font-weight: 700; text-decoration: none;
}
.evitement:focus { top: 12px; }

.enveloppe { width: 100%; max-width: var(--largeur); margin: 0 auto; padding-left: var(--gouttiere); padding-right: var(--gouttiere); }
@media (min-width: 720px) { :root { --gouttiere: 32px; } }

/* ---------- Mot-symbole : du texte, jamais une image ---------- */
.mot { font-family: var(--police); font-weight: 900; letter-spacing: -0.035em; line-height: 1; white-space: nowrap; color: var(--texte); }
.mot .point { color: var(--rouge-marque); }
.mot-eteint .point { color: var(--point-eteint); }

/* ---------- En-tête ---------- */
.entete { position: sticky; top: 0; z-index: 20; background: var(--page); border-bottom: 1px solid var(--filet); }
.entete .enveloppe { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 16px; }
.entete .marque { font-size: 24px; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.nav-bouton {
  display: none; align-items: center; gap: 8px; min-height: 44px; min-width: 44px; padding: 0 14px;
  background: var(--bloc); color: var(--texte); border: 1px solid var(--filet); border-radius: var(--rayon);
  font: 700 15px/1 var(--police); cursor: pointer;
}
.nav-bouton .barres { display: inline-grid; gap: 3px; }
.nav-bouton .barres span { display: block; width: 16px; height: 2px; background: currentColor; }
.nav-principale ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav-principale li { margin: 0; }
.nav-principale a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 10px;
  font-weight: 700; font-size: 15px; text-decoration: none; border-radius: var(--rayon);
}
.nav-principale a:hover { text-decoration: underline; }
.nav-principale a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; }
.nav-principale .nav-appstore { margin-left: 8px; }
.nav-principale .nav-appstore a { border: 1px solid var(--filet); background: var(--bloc); padding: 0 14px; }

@media (max-width: 959px) {
  .js .nav-bouton { display: inline-flex; }
  .js .nav-principale { display: none; }
  .js .nav-principale.ouverte { display: block; }
  .nav-principale { position: absolute; left: 0; right: 0; top: 100%; background: var(--page); border-bottom: 1px solid var(--filet); }
  .no-js .nav-principale { position: static; border: 0; }
  .no-js .entete .enveloppe { flex-wrap: wrap; }
  .nav-principale ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gouttiere) 16px; max-width: var(--largeur); margin: 0 auto; }
  .nav-principale a { width: 100%; padding: 0 4px; border-bottom: 1px solid var(--filet); border-radius: 0; font-size: 17px; }
  .nav-principale .nav-appstore { margin: 12px 0 0; }
  .nav-principale .nav-appstore a { justify-content: center; border-radius: var(--rayon); }
}

/* ---------- Boutons : un aplat = une action ; jamais de rouge ---------- */
.boutons { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 20px; border-radius: var(--rayon);
  font: 700 16px/1.1 var(--police); text-decoration: none; text-align: center;
  border: 1px solid transparent; cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-principal { background: var(--inverse-fond); color: var(--inverse-texte); border-color: var(--inverse-fond); }
.btn-principal:hover { background: var(--texte); opacity: .88; }
.btn-secondaire { background: var(--bloc); color: var(--texte); border-color: var(--filet); }
.btn-secondaire:hover { border-color: var(--texte); }
.btn svg { width: 18px; height: 18px; flex: none; }
.note-bouton { font-size: 14px; color: var(--second-page); margin: 12px 0 0; }

/* ---------- Titres ---------- */
.etiquette { /* niveau 3 : capitales grises, sans fond */
  font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--second-page); margin: 0 0 12px; line-height: 1.3;
}
.bloc .etiquette, .carte .etiquette { color: var(--second); }
.titre-section { /* niveau 1 : le seul inversé, regroupe une liste — 1 à 2 par page */
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--inverse-fond); color: var(--inverse-texte); border-radius: var(--rayon);
  padding: 7px 12px; margin: 0 0 8px;
  font: 700 12px/1.3 var(--police); letter-spacing: .1em; text-transform: uppercase;
}
.titre-section .compteur { font-family: var(--mono); letter-spacing: .12em; opacity: .78; }
.h-page { font-size: clamp(38px, 7vw, 72px); margin: 0 0 16px; }
.h2 { font-size: clamp(28px, 4.6vw, 44px); margin: 0 0 14px; letter-spacing: -0.03em; }
.h3 { font-size: 20px; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 8px; line-height: 1.15; }
.h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 6px; line-height: 1.25; }
.chapo { font-size: clamp(18px, 2.3vw, 22px); line-height: 1.45; max-width: 44ch; margin: 0 0 24px; }
.texte-large { max-width: 68ch; }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section + .section { border-top: 1px solid var(--filet); }
@media (min-width: 720px) { .section { padding: 80px 0; } }
.intro-section { max-width: 720px; margin-bottom: 32px; }
.intro-section p { font-size: 18px; }

/* ---------- Blocs ---------- */
.bloc { background: var(--bloc); border: 1px solid var(--filet); border-radius: var(--rayon); overflow: hidden; }
.bloc-corps { padding: 16px; }
@media (min-width: 720px) { .bloc-corps { padding: 20px; } }
.bloc-corps > :last-child { margin-bottom: 0; }
.grille { display: grid; gap: 8px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grille-2, .grille-3, .grille-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grille-3 { grid-template-columns: repeat(3, 1fr); } .grille-4 { grid-template-columns: repeat(4, 1fr); } }
.grille > .bloc { display: flex; flex-direction: column; }
.grille > .bloc .bloc-corps { flex: 1; }

/* ---------- Cartouche : niveau 2, teinte du sport ---------- */
.cartouche {
  display: flex; align-items: center; gap: 8px; min-height: 28px;
  padding: 5px 12px; background: var(--t-fond, var(--neutre-fond)); color: var(--t-texte, var(--neutre-texte));
  font: 700 11px/1.2 var(--police); letter-spacing: .09em; text-transform: uppercase;
}
.cartouche .picto { width: 14px; height: 14px; flex: none; }
.cartouche .epreuve { opacity: .78; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.cartouche .etat { margin-left: auto; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.cartouche .etat.valeur { font-family: var(--mono); letter-spacing: .12em; }
.cartouche-seul { border-radius: var(--rayon); display: inline-flex; }
.direct { color: var(--rouge-direct); }
.point-direct { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--rouge-direct); animation: pulse 1.2s ease-in-out infinite alternate; }
.point-eteint { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--point-eteint); }
@keyframes pulse { from { opacity: 1; } to { opacity: .35; } }
.cartouche.fige { background: var(--fige-fond); color: var(--fige-texte); }

/* ---------- Pictogrammes ---------- */
.picto { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.picto .aplat { fill: currentColor; stroke: none; }
.pastille { /* pastille de sport : dans les seules listes qui énumèrent les sports */
  width: 36px; height: 36px; border-radius: var(--rayon); flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--t-fond); color: var(--t-texte);
}
.pastille .picto { width: 22px; height: 22px; stroke-width: 1.7; }

/* ---------- Captures : posées telles quelles, filet 1 px, rayon 5 ---------- */
.capture { margin: 0; }
.capture img { width: 100%; border: 1px solid var(--filet); border-radius: var(--rayon); background: var(--bloc); }
.capture figcaption { font-size: 14px; line-height: 1.4; margin-top: 10px; color: var(--second-page); }
.capture figcaption strong { color: var(--texte); display: block; font-size: 15px; }
.galerie {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 260px); gap: 16px;
  overflow-x: auto; padding: 4px 2px 16px; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
}
.galerie .capture { scroll-snap-align: start; }
.galerie:focus-visible { outline-offset: 4px; }

/* ---------- Héros ---------- */
.heros { padding: 40px 0 56px; }
@media (min-width: 720px) { .heros { padding: 72px 0 88px; } }
.heros-grille { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .heros-grille { grid-template-columns: 1.05fr .95fr; gap: 48px; } }
.heros .mot-grand { font-size: clamp(56px, 12vw, 120px); margin: 0 0 18px; }
.heros .accroche { font-size: clamp(28px, 4.4vw, 44px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.08; margin: 0 0 18px; max-width: 16ch; }
.heros-visuel { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 520px; margin: 0 auto; width: 100%; }
.heros-visuel .capture:nth-child(2) { margin-top: 48px; }

/* ---------- Chiffres ---------- */
.chiffres { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 720px) { .chiffres { grid-template-columns: repeat(4, 1fr); } }
.chiffres .bloc-corps { padding: 16px; }
.chiffre-grand { font-family: var(--mono); font-weight: 700; font-size: clamp(34px, 5vw, 48px); line-height: 1; letter-spacing: -0.02em; display: block; margin-bottom: 8px; }
.chiffres p { margin: 0; font-size: 15px; }

/* ---------- Démonstration des cartouches ---------- */
.demo-cartouches { display: grid; gap: 8px; }
@media (min-width: 720px) { .demo-cartouches { grid-template-columns: repeat(2, 1fr); } }
.demo-cartouches .bloc-corps { font-size: 15px; }

/* ---------- Pilier ---------- */
.pilier .bloc-corps p { font-size: 16px; }
.lien-fleche { font-weight: 700; }

/* ---------- Alternance texte / capture ---------- */
.duo { display: grid; gap: 32px; align-items: start; }
@media (min-width: 880px) { .duo { grid-template-columns: 1fr 300px; gap: 56px; } .duo.inverse { grid-template-columns: 300px 1fr; } .duo.inverse .duo-visuel { order: -1; } }
.duo-visuel { max-width: 300px; width: 100%; }
.duo-texte .liste-points { margin-top: 12px; }
.liste-points { list-style: none; padding: 0; }
.liste-points li { padding: 10px 0; border-top: 1px solid var(--filet); margin: 0; }
.liste-points li:last-child { border-bottom: 1px solid var(--filet); }
.liste-points strong { display: block; }

/* ---------- Sommaire local ---------- */
.sommaire { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 24px 0 0; }
.sommaire li { margin: 0; }
.sommaire a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px; border: 1px solid var(--filet); background: var(--bloc); border-radius: var(--rayon); text-decoration: none; font-weight: 700; font-size: 15px; }
.sommaire a:hover { border-color: var(--texte); }

/* ---------- Sports ---------- */
.sports-grille { display: grid; gap: 8px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .sports-grille { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .sports-grille { grid-template-columns: repeat(3, 1fr); } }
.sport .bloc-corps { padding: 14px 16px 16px; }
.sport h3 { font-size: 20px; margin: 0 0 6px; }
.sport .competitions { font-size: 15px; margin: 0 0 10px; }
.sport .montre { font-size: 15px; margin: 0 0 8px; }
.sport .limite { font-size: 14px; color: var(--second); margin: 0; border-top: 1px solid var(--filet); padding-top: 8px; }
.sport .limite b { color: var(--texte); }
.index-sports { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0; }
.index-sports li { margin: 0; }
.index-sports a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 4px 12px 4px 4px; background: var(--bloc); border: 1px solid var(--filet); border-radius: var(--rayon); text-decoration: none; font-weight: 700; font-size: 14px; }
.index-sports a:hover { border-color: var(--texte); }
.index-sports .pastille { width: 34px; height: 34px; }
.index-sports .pastille .picto { width: 20px; height: 20px; }
.famille { margin-top: 48px; }
.famille:first-of-type { margin-top: 0; }

/* ---------- Tarifs ---------- */
.paliers { display: grid; gap: 8px; }
@media (min-width: 880px) { .paliers { grid-template-columns: repeat(3, 1fr); } }
.palier .bloc-corps { display: flex; flex-direction: column; gap: 8px; }
.palier h3 { font-size: 28px; margin: 0; }
.palier .prix { font-family: var(--mono); font-weight: 700; font-size: 30px; line-height: 1.1; letter-spacing: -0.02em; margin: 4px 0 0; }
.palier .prix small { font-size: 15px; font-weight: 400; letter-spacing: 0; }
.palier .prix-annuel { font-size: 15px; margin: 0; }
.palier .prix-annuel .mono { font-weight: 700; }
.palier ul { list-style: none; padding: 0; margin: 8px 0 0; }
.palier li { padding: 8px 0; border-top: 1px solid var(--filet); margin: 0; font-size: 15px; }
.palier .pour { font-size: 15px; margin: 0; }
.palier.mis-en-avant { border-color: var(--texte); }
.tableau-conteneur { overflow-x: auto; border: 1px solid var(--filet); border-radius: var(--rayon); background: var(--bloc); }
.tableau { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 15px; }
.tableau caption { text-align: left; padding: 14px 16px; font-weight: 700; }
.tableau th, .tableau td { text-align: left; padding: 12px 16px; border-top: 1px solid var(--filet); vertical-align: top; }
.tableau thead th { background: var(--inverse-fond); color: var(--inverse-texte); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; border-top: 0; }
.tableau tbody th { font-weight: 700; width: 34%; }
.tableau .non { color: var(--second); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 8px; }
.faq details { background: var(--bloc); border: 1px solid var(--filet); border-radius: var(--rayon); }
.faq summary {
  list-style: none; cursor: pointer; padding: 14px 48px 14px 16px; min-height: 52px; position: relative;
  font-weight: 700; font-size: 17px; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 16px; top: 12px; font-family: var(--mono); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq .reponse { padding: 0 16px 16px; font-size: 16px; }
.faq .reponse > :last-child { margin-bottom: 0; }
.faq-groupe { margin-top: 40px; }
.faq-groupe:first-child { margin-top: 0; }

/* ---------- Avertissement légal (jeux d'argent) ---------- */
.avertissement { font-size: 14px; line-height: 1.45; border-left: 2px solid var(--texte); padding: 2px 0 2px 12px; margin: 16px 0 0; }
.avertissement a { font-weight: 700; }

/* ---------- Appel final : aplat inversé ---------- */
.appel { background: var(--inverse-fond); color: var(--inverse-texte); border-radius: var(--rayon); padding: 32px 20px; }
@media (min-width: 720px) { .appel { padding: 48px 48px; } }
.appel .mot { color: var(--inverse-texte); font-size: clamp(40px, 7vw, 64px); display: block; margin-bottom: 12px; }
.appel p { font-size: 18px; max-width: 48ch; }
.appel .btn-principal { background: var(--inverse-texte); color: var(--inverse-fond); border-color: var(--inverse-texte); }
.appel .note-bouton { color: var(--inverse-second); }
@media (prefers-color-scheme: dark) { .appel .note-bouton { color: #4D4D4D; } }

/* ---------- Kit presse ---------- */
.telechargements { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
@media (min-width: 720px) { .telechargements { grid-template-columns: repeat(2, 1fr); } }
.telechargements li { margin: 0; }
.telechargements a { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; padding: 12px 16px; background: var(--bloc); border: 1px solid var(--filet); border-radius: var(--rayon); text-decoration: none; }
.telechargements a:hover { border-color: var(--texte); }
.telechargements .nom { font-weight: 700; display: block; }
.telechargements .detail { font-size: 14px; color: var(--second); }
.telechargements .poids { font-family: var(--mono); font-size: 14px; white-space: nowrap; }
.icones-presse { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 720px) { .icones-presse { grid-template-columns: repeat(4, 1fr); } }
.icones-presse figure { margin: 0; }
.icones-presse img { border: 1px solid var(--filet); border-radius: var(--rayon); width: 100%; }
.icones-presse figcaption { font-size: 14px; margin-top: 6px; }
.panneaux-mot { display: grid; gap: 8px; }
@media (min-width: 720px) { .panneaux-mot { grid-template-columns: 1fr 1fr; } }
.panneau-mot { border-radius: var(--rayon); border: 1px solid var(--filet); min-height: 160px; display: flex; align-items: center; justify-content: center; padding: 24px; }
.panneau-mot .mot { font-size: clamp(40px, 7vw, 64px); }
.panneau-clair { background: #F2F2F2; }
.panneau-clair .mot { color: #0A0A0A; }
.panneau-sombre { background: #0A0A0A; border-color: #0A0A0A; }
.panneau-sombre .mot { color: #FAFAFA; }
.regles { list-style: none; padding: 0; margin: 0; }
.regles li { padding: 12px 0; border-top: 1px solid var(--filet); margin: 0; display: grid; grid-template-columns: 90px 1fr; gap: 12px; }
.regles .statut { font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.texte-copiable { background: var(--bloc); border: 1px solid var(--filet); border-radius: var(--rayon); padding: 16px; }
.texte-copiable p:last-child { margin: 0; }

/* ---------- Définitions (mentions) ---------- */
.fiche-identite { display: grid; grid-template-columns: 1fr; gap: 0; margin: 0; }
.fiche-identite div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 12px 0; border-top: 1px solid var(--filet); }
@media (min-width: 720px) { .fiche-identite div { grid-template-columns: 220px 1fr; gap: 16px; } }
.fiche-identite dt { font-weight: 700; }
.fiche-identite dd { margin: 0; }

/* ---------- Pages de texte (légal) ---------- */
.page-texte { padding: 40px 0 72px; }
.page-texte .corps { max-width: 760px; }
.page-texte h2 { font-size: 26px; letter-spacing: -0.025em; margin: 40px 0 12px; }
.page-texte h3 { font-size: 19px; letter-spacing: -0.015em; margin: 28px 0 8px; }
.page-texte p, .page-texte li { font-size: 17px; }
.date-maj { font-size: 15px; color: var(--second-page); }
.equipe { display: grid; gap: 8px; }
@media (min-width: 720px) { .equipe { grid-template-columns: 1fr 1fr; } }
.equipe .initiale { width: 48px; height: 48px; border-radius: 50%; background: var(--inverse-fond); color: var(--inverse-texte); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; margin-bottom: 12px; }
.chrono { list-style: none; padding: 0; margin: 0; }
.chrono li { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 14px 0; border-top: 1px solid var(--filet); margin: 0; }
@media (min-width: 720px) { .chrono li { grid-template-columns: 140px 1fr; gap: 20px; } }
.chrono .date { font-family: var(--mono); font-weight: 700; font-size: 15px; }
.chrono p { margin: 0; }
.contacts { display: grid; gap: 8px; }
@media (min-width: 720px) { .contacts { grid-template-columns: repeat(2, 1fr); } }
.adresse-mail { font-size: clamp(22px, 4vw, 34px); font-weight: 900; letter-spacing: -0.02em; word-break: break-word; }

/* ---------- Pied de page ---------- */
.pied { border-top: 1px solid var(--filet); padding: 48px 0 32px; margin-top: 0; }
.pied-grille { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .pied-grille { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.pied .mot { font-size: 28px; display: inline-block; margin-bottom: 12px; }
.pied p { font-size: 15px; }
.pied h2 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--second-page); margin: 0 0 8px; }
.pied ul { list-style: none; padding: 0; margin: 0; }
.pied li { margin: 0; }
.pied li a { display: inline-flex; align-items: center; min-height: 40px; font-size: 15px; text-decoration: none; }
.pied li a:hover { text-decoration: underline; }
.pied-bas { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--filet); font-size: 13px; color: var(--second-page); display: grid; gap: 8px; }
.pied-bas p { font-size: 13px; margin: 0; }
.pied-bas a { color: var(--second-page); }

/* ---------- 404 ---------- */
.erreur { padding: 80px 0; }
.erreur .mot { font-size: clamp(56px, 12vw, 120px); display: block; margin-bottom: 20px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  .entete, .pied, .nav-bouton { display: none; }
  body { background: #fff; color: #000; }
}

/* ---------- Compléments ---------- */
.marque-pied { text-decoration: none; display: inline-block; }
.famille { margin-top: 56px; }
.titre-section + .famille { margin-top: 24px; }
.famille-titre { font-size: clamp(26px, 3.6vw, 34px); margin: 0 0 6px; }
.famille-compte { font-size: .6em; font-weight: 700; letter-spacing: 0; color: var(--second-page); vertical-align: middle; }
.famille > .second { margin: 0 0 16px; }
.sport .etiquette { margin: 8px 0 4px; font-size: 11px; }
.sport .h3 { margin-bottom: 0; }
.appel h2 { margin: 0; }
/* Mono : l'espace insécable fait une chasse entière ; on la resserre devant l'unité. */
.mono, .chiffre-grand, .palier .prix { word-spacing: -0.3em; }
.palier .prix small { word-spacing: normal; margin-left: .15em; }
.enveloppe.texte-large { max-width: var(--largeur); }
.enveloppe.texte-large > * { max-width: 68ch; }
.enveloppe.texte-large > .faq-groupe, .enveloppe.texte-large > .chrono { max-width: 820px; }
.appel h2 .mot, .appel > .mot { color: var(--inverse-texte); }

/* ---------- Les 30 teintes de sport (Sport.bandeau, les hex font foi) ---------- */
.s-formula1{--t-fond:#FCD9D9;--t-texte:#290A0A}
.s-athletics{--t-fond:#FAE2DB;--t-texte:#27120C}
.s-basketball{--t-fond:#FCE9D9;--t-texte:#29180A}
.s-australianFootball{--t-fond:#F9F0DC;--t-texte:#271E0C}
.s-tennis{--t-fond:#FCF6D9;--t-texte:#29240A}
.s-endurance{--t-fond:#F8F9DC;--t-texte:#26270C}
.s-horseRacing{--t-fond:#F0F8DD;--t-texte:#1E260D}
.s-cycling{--t-fond:#EAFBDA;--t-texte:#19280B}
.s-golf{--t-fond:#E1F9DC;--t-texte:#11270C}
.s-triathlon{--t-fond:#DEF8DE;--t-texte:#0E250E}
.s-cricket{--t-fond:#DDF8E2;--t-texte:#0D2612}
.s-football{--t-fond:#DAFBE8;--t-texte:#0B2817}
.s-snooker{--t-fond:#DCF9EC;--t-texte:#0C271B}
.s-rugbyLeague{--t-fond:#DDF8F1;--t-texte:#0D261F}
.s-rugby{--t-fond:#DBFAF8;--t-texte:#0C2725}
.s-tableTennis{--t-fond:#DBF7FA;--t-texte:#0C2527}
.s-hockey{--t-fond:#DAF2FB;--t-texte:#0B2028}
.s-biathlon{--t-fond:#DDECF8;--t-texte:#0D1B26}
.s-motogp{--t-fond:#D9E8FC;--t-texte:#0A1729}
.s-skiing{--t-fond:#DCE4F9;--t-texte:#0C1327}
.s-sailing{--t-fond:#DCDDF9;--t-texte:#0C0D27}
.s-baseball{--t-fond:#E2DCF9;--t-texte:#120C27}
.s-americanFootball{--t-fond:#E6DBFA;--t-texte:#160C27}
.s-darts{--t-fond:#ECDDF8;--t-texte:#1A0D26}
.s-esports{--t-fond:#F2D9FC;--t-texte:#200A29}
.s-badminton{--t-fond:#F6DCF9;--t-texte:#240C27}
.s-volleyball{--t-fond:#FADBF7;--t-texte:#270C25}
.s-handball{--t-fond:#FBDAED;--t-texte:#280B1C}
.s-mma{--t-fond:#F8DDE8;--t-texte:#260D17}
.s-boxing{--t-fond:#F9DCE2;--t-texte:#270C12}
@media (prefers-color-scheme: dark) {
.s-formula1{--t-fond:#310C0C;--t-texte:#F5D1D1}
.s-athletics{--t-fond:#2F160E;--t-texte:#F3DAD3}
.s-basketball{--t-fond:#311D0C;--t-texte:#F5E1D1}
.s-australianFootball{--t-fond:#2E240F;--t-texte:#F2E8D3}
.s-tennis{--t-fond:#312B0C;--t-texte:#F5EFD1}
.s-endurance{--t-fond:#2D2E0F;--t-texte:#F1F2D3}
.s-horseRacing{--t-fond:#242D10;--t-texte:#E9F2D4}
.s-cycling{--t-fond:#1D300D;--t-texte:#E2F4D2}
.s-golf{--t-fond:#142E0F;--t-texte:#D9F2D3}
.s-triathlon{--t-fond:#112C11;--t-texte:#D5F1D5}
.s-cricket{--t-fond:#102D15;--t-texte:#D4F2DA}
.s-football{--t-fond:#0D301C;--t-texte:#D2F4E0}
.s-snooker{--t-fond:#0F2E20;--t-texte:#D3F2E4}
.s-rugbyLeague{--t-fond:#102D25;--t-texte:#D4F2EA}
.s-rugby{--t-fond:#0E2F2C;--t-texte:#D3F3F1}
.s-tableTennis{--t-fond:#0E2C2F;--t-texte:#D3F0F3}
.s-hockey{--t-fond:#0D2630;--t-texte:#D2EAF4}
.s-biathlon{--t-fond:#10212D;--t-texte:#D4E5F2}
.s-motogp{--t-fond:#0C1C31;--t-texte:#D1E1F5}
.s-skiing{--t-fond:#0F172E;--t-texte:#D3DCF2}
.s-sailing{--t-fond:#0F102E;--t-texte:#D3D4F2}
.s-baseball{--t-fond:#150F2E;--t-texte:#DAD3F2}
.s-americanFootball{--t-fond:#1A0E2F;--t-texte:#DFD3F3}
.s-darts{--t-fond:#20102D;--t-texte:#E4D4F2}
.s-esports{--t-fond:#270C31;--t-texte:#EBD1F5}
.s-badminton{--t-fond:#2B0F2E;--t-texte:#EFD3F2}
.s-volleyball{--t-fond:#2F0E2C;--t-texte:#F3D3F0}
.s-handball{--t-fond:#300D22;--t-texte:#F4D2E6}
.s-mma{--t-fond:#2D101C;--t-texte:#F2D4E0}
.s-boxing{--t-fond:#2E0F15;--t-texte:#F2D3DA}
}

.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
