/* ==========================================================================
   TURBO HOCKEY — Feuille de style principale
   Palette : noir de glace + flamme (orange du logo) + braise (rouge du logo)
   Typo    : Archivo (titres, variable width) + Inter (texte)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Jetons de design
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs — fonds sombres */
  --ink:        #060C15;
  --ink-2:      #0A1320;
  --panel:      #0F1B2B;
  --panel-2:    #14243A;

  /* Couleurs — fonds clairs */
  --ice:        #FFFFFF;
  --ice-2:      #F3F7FA;
  --ice-3:      #E7EEF5;

  /* Texte */
  --text:       #0C1826;
  --text-soft:  #4E6076;
  --text-mute:  #67788D;
  --on-dark:    #EEF4FA;
  --on-dark-soft:#A7BACE;

  /* Accents — repris directement du logo Turbo Hockey */
  --turbo:      #FF6A1A;  /* flamme */
  --turbo-2:    #FFB629;  /* pointe de flamme */
  --turbo-deep: #BC3707;  /* orange profond, lisible sur fond clair */
  --blaze:      #E8161C;  /* braise */
  --blaze-soft: #FF5343;

  /* Traits */
  --line:       #DCE5EE;
  --line-2:     #C9D6E2;
  --line-dark:  rgba(255,255,255,.10);
  --line-dark-2:rgba(255,255,255,.18);

  /* Piliers ADN (rappel du graphique original de Stephan Lebeau) */
  --c-tech:  #FF4D5E;
  --c-tacti: #FF9A3C;
  --c-tactc: #FFC93C;
  --c-phys:  #4FAE55;
  --c-psy:   #56A8F5;
  --c-soc:   #2F6BD8;
  --c-sens:  #B06BE8;

  /* Typo */
  --font-display: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Rythme */
  --maxw: 1240px;
  --gut:  clamp(20px, 5vw, 48px);
  --sec-y: clamp(72px, 9vw, 132px);
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;

  /* Ombres */
  --sh-sm: 0 2px 8px rgba(12,24,38,.06);
  --sh:    0 14px 40px -18px rgba(12,24,38,.30);
  --sh-lg: 0 34px 80px -32px rgba(12,24,38,.45);

  --ease: cubic-bezier(.22,.7,.28,1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ice);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

figure { margin: 0; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

::selection { background: var(--turbo); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--turbo);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--turbo);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Typographie
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1, .h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-stretch: 92%;
  line-height: .98;
  letter-spacing: -.035em;
}

h2, .h2 {
  font-size: clamp(2rem, 4.1vw, 3.15rem);
  font-stretch: 94%;
  letter-spacing: -.03em;
}

h3, .h3 { font-size: clamp(1.3rem, 2.1vw, 1.6rem); letter-spacing: -.02em; }
h4, .h4 { font-size: 1.12rem; letter-spacing: -.01em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  font-stretch: 108%;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--turbo-deep);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: currentColor;
  flex: none;
}

.mark { color: var(--turbo-deep); }
.mark-blaze { color: var(--blaze); }

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-stretch: 96%;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
}

/* --------------------------------------------------------------------------
   4. Mise en page
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--tight { max-width: 900px; }
.wrap--wide  { max-width: 1420px; }

.section { padding-block: var(--sec-y); position: relative; }
.section--sm { padding-block: clamp(48px, 6vw, 80px); }
.section--flush-top { padding-top: 0; }

.section--ice   { background: var(--ice-2); }
.section--ice3  { background: var(--ice-3); }
.section--dark  { background: var(--ink); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ice); }
.section--dark .lead { color: var(--on-dark-soft); }
/* Sur fond sombre, l'orange profond passe sous le seuil AA — on garde la
   flamme vive, qui y est à 6,8:1. Le hero de page et le bandeau d'appel
   n'héritent pas de .section--dark, d'où les deux sélecteurs ajoutés. */
.section--dark .eyebrow,
.pagehero .eyebrow,
.cta-band .eyebrow { color: var(--turbo); }

.sec-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .lead { margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--top { align-items: start; }

/* Sans ceci, un enfant de grille refuse de rétrécir sous son contenu
   (min-width:auto par défaut) et déborde horizontalement. */
.split > *, .grid > *, .roles > *, .kpi > *, .phases > * { min-width: 0; }

.grid { display: grid; gap: clamp(18px, 2.2vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.stack > * + * { margin-top: 18px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-l { margin-top: clamp(28px, 4vw, 48px); }

/* --------------------------------------------------------------------------
   5. Boutons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--turbo);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  font-stretch: 104%;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(255,106,26,.55); }
.btn:active { transform: translateY(0); }

.btn svg { width: 18px; height: 18px; flex: none; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn--blaze { --btn-bg: var(--blaze); --btn-fg: #fff; }
.btn--blaze:hover { box-shadow: 0 12px 28px -10px rgba(232,22,28,.6); }

.btn--dark { --btn-bg: var(--ink); --btn-fg: var(--ice); }
.btn--dark:hover { box-shadow: 0 12px 28px -12px rgba(6,12,21,.7); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--text); box-shadow: none; }

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--ice);
  border-color: var(--line-dark-2);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); box-shadow: none; }

.btn--sm { padding: 11px 20px; font-size: .87rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--turbo-deep);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--turbo); }

/* --------------------------------------------------------------------------
   6. En-tête / navigation
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,12,21,.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color .3s var(--ease), border-color .3s var(--ease),
              box-shadow .3s var(--ease);
}
.header.is-scrolled {
  background: rgba(6,12,21,.97);
  box-shadow: 0 14px 34px -22px rgba(0,0,0,.9);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding-block: 12px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  flex: none;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.logo:hover { transform: scale(1.03); filter: drop-shadow(0 0 14px rgba(255,106,26,.45)); }
.logo__img {
  height: 56px;
  width: auto;
  display: block;
}
.footer .logo__img { height: 74px; }
.mobile-menu .logo__img { height: 58px; }
@media (max-width: 560px) {
  .logo__img { height: 42px; }
}

/* Nav bureau */
.nav { display: flex; align-items: center; gap: 4px; }

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 100px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--on-dark-soft);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { color: var(--ice); background: rgba(255,255,255,.07); }
.nav__link[aria-current="page"] { color: var(--ice); font-weight: 600; }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--turbo);
}
.nav__link svg { width: 12px; height: 12px; opacity: .7; }

/* Sous-menu */
.nav__item { position: relative; }
.nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  padding: 8px;
  background: var(--panel);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--r);
  box-shadow: 0 26px 60px -22px rgba(0,0,0,.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  list-style: none;
  margin: 0;
}
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: .92rem;
  color: var(--on-dark-soft);
  transition: background-color .18s, color .18s;
}
.nav__menu a strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ice);
  font-size: .97rem;
}
.nav__menu a small { font-size: .8rem; color: var(--text-mute); }
.nav__menu a:hover { background: rgba(255,106,26,.12); }
.nav__menu a:hover strong { color: var(--turbo); }

.header__cta { display: flex; align-items: center; gap: 12px; flex: none; }

/* Bouton hamburger */
.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line-dark-2);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  position: relative;
  width: 19px; height: 2px;
  border-radius: 2px;
  background: var(--ice);
  transition: transform .3s var(--ease), background-color .2s;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px; height: 2px;
  border-radius: 2px;
  background: var(--ice);
  transition: transform .3s var(--ease), top .2s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: 96px var(--gut) 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.mobile-menu__list { list-style: none; margin: 0 0 28px; padding: 0; }
.mobile-menu__list > li { border-bottom: 1px solid var(--line-dark); }
.mobile-menu__list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  font-stretch: 94%;
  letter-spacing: -.02em;
  color: var(--ice);
}
.mobile-menu__list > li > a[aria-current="page"] { color: var(--turbo); }
.mobile-menu__sub { list-style: none; margin: -6px 0 16px; padding: 0 0 0 2px; }
.mobile-menu__sub a {
  display: block;
  padding: 8px 0;
  font-size: .97rem;
  color: var(--on-dark-soft);
}
.mobile-menu__sub a::before { content: "— "; color: var(--turbo); }

/* --------------------------------------------------------------------------
   7. Décors : lignes de patinoire, stries de vitesse
   -------------------------------------------------------------------------- */
.rink-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .5;
}
.rink-lines::before,
.rink-lines::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,106,26,.16);
}
.rink-lines::before {
  width: 620px; height: 620px;
  top: -190px; right: -180px;
}
.rink-lines::after {
  width: 380px; height: 380px;
  bottom: -150px; left: -120px;
  border-color: rgba(232,22,28,.14);
}

.streaks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
}
.streaks i {
  position: absolute;
  top: -20%;
  height: 140%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,106,26,.55), transparent);
  transform: rotate(14deg);
  animation: streak 7s var(--ease) infinite;
}
.streaks i:nth-child(1) { left: 12%; animation-delay: 0s;   opacity: .5; }
.streaks i:nth-child(2) { left: 31%; animation-delay: 1.4s; opacity: .3; }
.streaks i:nth-child(3) { left: 58%; animation-delay: .7s;  opacity: .45; background: linear-gradient(to bottom, transparent, rgba(232,22,28,.5), transparent); }
.streaks i:nth-child(4) { left: 77%; animation-delay: 2.1s; opacity: .35; }
.streaks i:nth-child(5) { left: 91%; animation-delay: 3.2s; opacity: .25; }

@keyframes streak {
  0%, 100% { transform: rotate(14deg) translateY(-6%); opacity: 0; }
  35%, 65% { opacity: 1; }
  50%      { transform: rotate(14deg) translateY(6%); }
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.glow--turbo { background: rgba(255,106,26,.20); }
.glow--blaze { background: rgba(232,22,28,.16); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 520px at 78% 8%,  rgba(255,106,26,.16), transparent 62%),
    radial-gradient(760px 420px at 8% 92%, rgba(232,22,28,.13), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(64px, 8vw, 116px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: rgba(255,106,26,.10);
  border: 1px solid rgba(255,106,26,.28);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--turbo);
  margin-bottom: 26px;
}
.hero__eyebrow b {
  background: var(--turbo);
  color: var(--ink);
  padding: 2px 9px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 { color: var(--ice); margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--turbo), var(--turbo-2) 55%, var(--turbo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead { color: var(--on-dark-soft); font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 56ch; }
.hero .btn-row { margin-top: 32px; }

/* Visuel du hero */
.hero__visual { position: relative; }
.hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-dark-2);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,12,21,.10) 0%, rgba(6,12,21,.72) 100%);
}

.hero__badge {
  position: absolute;
  left: -22px;
  bottom: 42px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 18px;
  background: var(--ice);
  color: var(--text);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  max-width: 280px;
}
.hero__badge b {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-stretch: 88%;
  font-weight: 900;
  line-height: 1;
  color: var(--turbo-deep);
}
.hero__badge span { font-size: .88rem; line-height: 1.35; color: var(--text-soft); }

/* Bande de statistiques */
.stat-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}
.stat-strip__cell {
  padding: 30px 8px 34px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.stat-strip__cell:last-child { border-right: 0; }
.stat-strip__cell b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-stretch: 84%;
  font-weight: 900;
  line-height: 1;
  color: var(--turbo);
  letter-spacing: -.04em;
}
.stat-strip__cell span {
  display: block;
  margin-top: 8px;
  font-size: .84rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-weight: 500;
}

/* Hero secondaire (pages internes) */
.pagehero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.pagehero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(880px 440px at 72% 0%, rgba(255,106,26,.15), transparent 62%);
  z-index: -1;
}
.pagehero__inner {
  position: relative;
  padding-block: clamp(60px, 8vw, 104px);
  max-width: 820px;
}
.pagehero h1 { color: var(--ice); }
.pagehero .lead { color: var(--on-dark-soft); }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: .84rem;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.crumbs a { color: var(--on-dark-soft); }
.crumbs a:hover { color: var(--turbo); }
.crumbs span[aria-current] { color: var(--turbo); }

/* --------------------------------------------------------------------------
   9. Bande méthode 1-2-3-4
   -------------------------------------------------------------------------- */
.method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
}
.method__cell {
  position: relative;
  padding: clamp(28px, 3vw, 42px) clamp(20px, 2.2vw, 30px) clamp(32px, 3.4vw, 44px);
  border-right: 1px solid var(--line-dark);
  transition: background-color .35s var(--ease);
  overflow: hidden;
}
.method__cell:last-child { border-right: 0; }
.method__cell:hover { background: rgba(255,106,26,.06); }

.method__num {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.6vw, 6rem);
  font-stretch: 78%;
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255,106,26,.45);
  margin-bottom: 18px;
  transition: color .35s var(--ease), -webkit-text-stroke-color .35s var(--ease);
}
.method__cell:hover .method__num {
  color: var(--turbo);
  -webkit-text-stroke-color: transparent;
}
.method__cell h3 { color: var(--ice); font-size: 1.18rem; margin-bottom: 10px; }
.method__cell p  { color: var(--on-dark-soft); font-size: .93rem; line-height: 1.55; margin: 0; }
.method__cell ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-size: .88rem;
  color: var(--on-dark-soft);
}
.method__cell ul li { padding-left: 16px; position: relative; margin-bottom: 5px; }
.method__cell ul li::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--turbo);
}

/* --------------------------------------------------------------------------
   10. Cartes
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--line-2); }

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ice-3);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 10px; }
.card__body p { color: var(--text-soft); font-size: .95rem; }
.card__body .link-arrow { margin-top: auto; padding-top: 18px; }

.card--dark {
  background: var(--panel);
  border-color: var(--line-dark);
  color: var(--on-dark);
}
.card--dark h3 { color: var(--ice); }
.card--dark p  { color: var(--on-dark-soft); }
.card--dark:hover { border-color: rgba(255,106,26,.4); }

/* Étiquette */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--ice-3);
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 700;
  font-stretch: 106%;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.tag--turbo { background: rgba(255,106,26,.14); color: var(--turbo-deep); }
.tag--blaze { background: rgba(232,22,28,.13); color: #C93F11; }
.tag--float {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(6,12,21,.78);
  color: var(--ice);
  backdrop-filter: blur(8px);
}

/* Carte zone (accueil) */
.zone-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 400px;
  color: var(--ice);
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.zone-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.zone-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .8s var(--ease);
}
.zone-card:hover img { transform: scale(1.06); }
.zone-card::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6,12,21,.12) 0%, rgba(6,12,21,.55) 45%, rgba(6,12,21,.94) 100%);
}
.zone-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 26px 26px;
}
.zone-card__num {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  font-stretch: 110%;
  letter-spacing: .22em;
  color: var(--turbo);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.zone-card h3 { color: var(--ice); font-size: 1.55rem; margin-bottom: 8px; }
.zone-card p { color: rgba(238,244,250,.82); font-size: .93rem; margin-bottom: 14px; }
.zone-card .link-arrow { color: var(--turbo); }

/* Carte « pourquoi » */
.why {
  padding: 30px 28px 32px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.why:hover { border-color: var(--turbo); transform: translateY(-3px); }
.why__icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,106,26,.12);
  color: var(--turbo-deep);
  margin-bottom: 18px;
}
.why__icon svg { width: 23px; height: 23px; }
.why h3 { font-size: 1.08rem; margin-bottom: 8px; }
.why p { font-size: .93rem; color: var(--text-soft); margin: 0; }

.section--dark .why { background: var(--panel); border-color: var(--line-dark); }
.section--dark .why p { color: var(--on-dark-soft); }
.section--dark .why__icon { background: rgba(255,106,26,.14); color: var(--turbo); }

/* --------------------------------------------------------------------------
   11. ADN — 7 piliers
   -------------------------------------------------------------------------- */
.adn { display: grid; gap: 14px; }
.adn__item { border-radius: 10px; }
.adn__row {
  width: 100%;
  display: grid;
  grid-template-columns: 210px 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 8px;
  margin: -8px;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color .25s var(--ease);
}
.adn__row:hover { background: rgba(255,106,26,.07); }
.section--dark .adn__row:hover { background: rgba(255,255,255,.05); }
.adn__row[aria-expanded="true"] { background: rgba(255,106,26,.1); }
.section--dark .adn__row[aria-expanded="true"] { background: rgba(255,255,255,.07); }
.adn__chev {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--text-mute);
  flex: none;
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.adn__chev svg { width: 13px; height: 13px; }
.section--dark .adn__chev { border-color: var(--line-dark-2); }
.adn__row[aria-expanded="true"] .adn__chev { background: var(--turbo); border-color: var(--turbo); color: var(--ink); transform: rotate(180deg); }
.adn__detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s var(--ease);
}
.adn__detail-in {
  padding: 20px 8px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .adn__detail-in { grid-template-columns: 1fr; } }
.adn__detail-in h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.adn__detail-in ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.adn__detail-in li {
  position: relative;
  padding-left: 17px;
  font-size: .92rem;
  color: var(--text-soft);
}
.section--dark .adn__detail-in li { color: var(--on-dark-soft); }
.adn__detail-in li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c, var(--turbo));
}
.adn__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
}
.adn__track {
  height: 30px;
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.section--ice .adn__track, .section--ice3 .adn__track { background: rgba(12,24,38,.07); }
.adn__fill {
  height: 100%;
  width: 0;
  border-radius: 6px;
  background: var(--c, var(--turbo));
  transition: width 1.2s var(--ease);
}
.adn.is-in .adn__fill { width: var(--w, 70%); }
.adn__val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  color: var(--text-mute);
  min-width: 42px;
  text-align: right;
}
.adn__sum {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--line-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.adn__sum b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-stretch: 96%;
  color: var(--turbo);
}

/* --------------------------------------------------------------------------
   12. Les 4 rôles (diagramme)
   -------------------------------------------------------------------------- */
.roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}
.role {
  position: relative;
  overflow: hidden;
  padding: 26px 24px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  border-top: 4px solid var(--line);
  background: var(--ice);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.role:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--sh); }
.role--off { border-top-color: var(--blaze); }
.role--def { border-top-color: var(--turbo); }
.role__ghost {
  position: absolute;
  top: -14px; right: 4px;
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-2);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.section--dark .role__ghost { -webkit-text-stroke-color: rgba(255,255,255,.12); }
.role__head, .role > p, .role .role__lead, .role__tools {
  position: relative;
  z-index: 1;
}
.role__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.role__n {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  flex: none;
}
.role--off .role__n { background: var(--blaze); }
.role--def .role__n { background: var(--panel-2); }
.role__kind {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.role h3 { font-size: 1.55rem; font-stretch: 92%; margin: 0; }
.role p { font-size: .93rem; color: var(--text-soft); margin-bottom: 14px; }
.roles__phase {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 2px;
}
.roles__phase:first-child { margin-top: 0; }
.roles__phase-label {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.roles__phase-line { flex: 1; height: 1px; background: var(--line-dark); }
.roles__phase--off .roles__phase-label { color: var(--blaze-soft); }
.roles__phase--def .roles__phase-label { color: var(--turbo); }
.role .role__lead {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.role__tools {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.role__tools li {
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--ice-2);
  border: 1px solid var(--line);
  font-size: .8rem;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   13. Étapes / processus
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 4px; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.section--dark .step { border-color: var(--line-dark); }
.step:last-child { border-bottom: 1px solid var(--line); }
.section--dark .step:last-child { border-color: var(--line-dark); }
.step__n {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-stretch: 80%;
  font-weight: 900;
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-2);
}
.section--dark .step__n { -webkit-text-stroke-color: rgba(255,255,255,.25); }
.step__n::before { content: "0" counter(step); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-soft); margin: 0; font-size: .96rem; }
.section--dark .step p { color: var(--on-dark-soft); }

/* Timeline / phases */
.phases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.phase {
  position: relative;
  padding: 34px 22px 28px;
  border-top: 3px solid var(--line);
  transition: border-color .3s var(--ease);
}
.phase:hover { border-top-color: var(--turbo); }
.phase::before {
  content: "";
  position: absolute;
  top: -8px; left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--ice);
  border: 3px solid var(--line-2);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.phase:hover::before { border-color: var(--turbo); background: var(--turbo); }
.phase b {
  display: block;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--turbo-deep);
  margin-bottom: 8px;
}
.phase h3 { font-size: 1.05rem; margin-bottom: 8px; }
.phase p { font-size: .9rem; color: var(--text-soft); margin: 0; }

/* --------------------------------------------------------------------------
   14. Collaborateurs
   -------------------------------------------------------------------------- */
.person {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.person:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.person__media { position: relative; aspect-ratio: 3 / 3.4; overflow: hidden; background: var(--panel); }
.person__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25); transition: filter .5s var(--ease), transform .7s var(--ease); }
.person:hover .person__media img { filter: grayscale(0); transform: scale(1.04); }
.person__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,12,21,.75));
}
/* Portrait en attente — à remplacer par la vraie photo */
.person__ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(152deg, var(--panel-2), var(--ink) 78%);
}
.person__ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 220px at 50% 22%, rgba(255,106,26,.20), transparent 70%);
}
.person__ph b {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  font-stretch: 82%;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.17);
}
.person__ph small {
  position: absolute;
  z-index: 1;
  bottom: 58px; left: 0; right: 0;
  text-align: center;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
}

.person__role {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--turbo);
}
.person__body { padding: 24px 24px 26px; }
.person__body h3 { margin-bottom: 6px; }
.person__body p { font-size: .93rem; color: var(--text-soft); }
.person__meta {
  margin: 14px 0 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.person__meta li {
  padding: 4px 10px;
  background: var(--ice-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .78rem;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   15. Barre de filtres + grille d'outils
   -------------------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 36px;
  width: fit-content;
  max-width: 100%;
  box-shadow: var(--sh-sm);
}
.filters__btn {
  padding: 11px 20px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-soft);
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.filters__btn:hover { background: var(--ice-2); color: var(--text); }
.filters__btn[aria-pressed="true"] { background: var(--ink); color: var(--ice); }
.filters__btn span {
  display: inline-block;
  margin-left: 7px;
  font-size: .78rem;
  opacity: .6;
}

.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 26px); }
.tool { }
.tool.is-hidden { display: none; }
.tool__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.tool__level {
  font-size: .8rem;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tool__level::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--line-2);
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-mute);
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
}

/* --------------------------------------------------------------------------
   16. Maquette « Le Concepteur »
   -------------------------------------------------------------------------- */
.mock {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark-2);
  background: var(--panel);
  box-shadow: var(--sh-lg);
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-dark);
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mock__title {
  margin-left: 10px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.mock__body { display: grid; grid-template-columns: 190px 1fr; min-height: 380px; }
.mock__side { padding: 18px 14px; border-right: 1px solid var(--line-dark); background: rgba(0,0,0,.16); }
.mock__side b {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 10px 8px;
}
.mock__side ul { list-style: none; margin: 0 0 20px; padding: 0; }
.mock__side li {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: .85rem;
  color: var(--on-dark-soft);
}
.mock__side li.on { background: rgba(255,106,26,.14); color: var(--turbo); font-weight: 600; }
.mock__main { padding: 20px; }
.mock__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.mock__chip {
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--line-dark-2);
  font-size: .78rem;
  color: var(--on-dark-soft);
}
.mock__chip.on { background: var(--turbo); border-color: var(--turbo); color: var(--ink); font-weight: 600; }
.mock__rink {
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark);
  padding: 14px;
}
.mock__rows { display: grid; gap: 8px; margin-top: 16px; }
.mock__row {
  display: grid;
  grid-template-columns: 46px 1fr 62px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  font-size: .84rem;
  color: var(--on-dark-soft);
}
.mock__row b { font-family: var(--font-display); color: var(--turbo); font-size: .82rem; }
.mock__row span:last-child { text-align: right; color: var(--text-mute); font-size: .78rem; }

/* Capture d'écran présentée dans le cadre navigateur */
.mock__shot { display: block; line-height: 0; background: var(--ink-2); }
.mock__shot img { width: 100%; height: auto; display: block; }
.mock__cap {
  padding: 12px 18px 14px;
  font-size: .84rem;
  color: var(--on-dark-soft);
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
}

/* --------------------------------------------------------------------------
   16b. Code promo
   -------------------------------------------------------------------------- */
.promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--r);
  background: linear-gradient(100deg, rgba(255,106,26,.16), rgba(232,22,28,.12));
  border: 1px solid rgba(255,106,26,.42);
}
.promo__code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--turbo);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 104%;
  letter-spacing: .12em;
  font-size: 1rem;
  white-space: nowrap;
}
.promo p { margin: 0; font-size: .94rem; flex: 1 1 300px; }
.promo strong { font-weight: 700; }
.section--dark .promo p, .hero .promo p { color: var(--on-dark); }

/* --------------------------------------------------------------------------
   16c. Forfaits
   -------------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 30px); }
.plans > * { min-width: 0; }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 34px 38px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.plan--featured { border-color: var(--turbo); border-width: 2px; }
.plan--featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -13px; left: 34px;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--turbo);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plan__name {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--turbo-deep);
  margin-bottom: 14px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.plan__price b {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  font-stretch: 86%;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}
.plan__price span { font-size: .95rem; color: var(--text-soft); }
.plan__note { font-size: .86rem; color: var(--text-mute); margin-bottom: 20px; }
.plan__desc { font-size: .95rem; color: var(--text-soft); padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.plan .checklist { margin-bottom: 26px; }
.plan .checklist li { font-size: .93rem; }
.plan__foot { margin-top: auto; }
.plan__strike { text-decoration: line-through; color: var(--text-mute); font-size: 1.1rem; font-weight: 600; }

/* --------------------------------------------------------------------------
   17. Accordéon (FAQ)
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.section--dark .faq { border-color: var(--line-dark); }
.faq__item { border-bottom: 1px solid var(--line); }
.section--dark .faq__item { border-color: var(--line-dark); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: inherit;
}
.faq__q:hover { color: var(--turbo-deep); }
.section--dark .faq__q:hover { color: var(--turbo); }
.faq__ico {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s;
}
.section--dark .faq__ico { border-color: var(--line-dark-2); }
.faq__ico::before, .faq__ico::after {
  content: "";
  position: absolute;
  width: 11px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.faq__ico::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__ico { background: var(--turbo); border-color: var(--turbo); color: var(--ink); }
.faq__q[aria-expanded="true"] .faq__ico::after { transform: rotate(0deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s var(--ease);
}
.faq__a > div { padding: 0 60px 26px 0; color: var(--text-soft); }
.section--dark .faq__a > div { color: var(--on-dark-soft); }

/* --------------------------------------------------------------------------
   18. Formulaire
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.field label .req { color: var(--blaze); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ice);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: .97rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--turbo);
  box-shadow: 0 0 0 3px rgba(255,106,26,.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237A8CA1' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .88rem;
  color: var(--text-soft);
}
.check input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--turbo-deep); }

.form__note { font-size: .84rem; color: var(--text-mute); }

.form-status {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: .92rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: rgba(255,106,26,.12); color: #06697A; border: 1px solid rgba(255,106,26,.35); }

/* Bloc info de contact */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.info-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.info-list__ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,106,26,.13);
  color: var(--turbo-deep);
}
.info-list__ico svg { width: 21px; height: 21px; }
.info-list b {
  display: block;
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 3px;
}
.info-list a:hover { color: var(--turbo-deep); }

.map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
  background: var(--ice-3);
}
.map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   19. Bandeau d'appel à l'action
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(720px 380px at 15% 10%, rgba(255,106,26,.20), transparent 60%),
    radial-gradient(620px 340px at 88% 90%, rgba(232,22,28,.16), transparent 60%);
  z-index: -1;
}
.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 92px);
}
.cta-band h2 { color: var(--ice); margin-bottom: 14px; }
.cta-band p { color: var(--on-dark-soft); max-width: 54ch; margin: 0; }
.cta-band .btn-row { justify-content: flex-end; }

/* --------------------------------------------------------------------------
   20. Pied de page
   -------------------------------------------------------------------------- */
.footer {
  background: #04080F;
  color: var(--on-dark-soft);
  border-top: 1px solid var(--line-dark);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(52px, 6vw, 78px);
}
.footer h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 18px;
}
.footer p { font-size: .93rem; line-height: 1.6; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: .93rem; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer ul a:hover { color: var(--turbo); padding-left: 5px; }
.footer .logo { margin-bottom: 18px; }

.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-dark-2);
  color: var(--on-dark-soft);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s, transform .25s var(--ease);
}
.socials a svg { width: 19px; height: 19px; }
.socials a:hover { background: var(--turbo); border-color: var(--turbo); color: var(--ink); transform: translateY(-2px); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: .85rem;
  color: var(--text-mute);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__bottom a:hover { color: var(--turbo); }

/* --------------------------------------------------------------------------
   21. Divers
   -------------------------------------------------------------------------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.checklist li {
  position: relative;
  padding-left: 34px;
  font-size: .98rem;
  color: var(--text-soft);
}
.section--dark .checklist li { color: var(--on-dark-soft); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,106,26,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23C93C08' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.checklist li strong { color: var(--text); font-weight: 600; }
.section--dark .checklist li strong { color: var(--ice); }
.checklist--cols { grid-template-columns: 1fr 1fr; column-gap: 30px; }
@media (max-width: 560px) { .checklist--cols { grid-template-columns: 1fr; } }

.pull {
  padding: 28px 32px;
  border-left: 3px solid var(--turbo);
  background: var(--ice-2);
  border-radius: 0 var(--r) var(--r) 0;
}
.section--dark .pull { background: rgba(255,255,255,.045); }
.pull cite { display: block; margin-top: 14px; font-style: normal; font-size: .88rem; color: var(--text-mute); }

.media-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  position: relative;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4 / 5; }
.media-frame--wide { aspect-ratio: 16 / 10; }

.kpi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border-radius: var(--r); overflow: hidden; }
.kpi > div { background: var(--ice); padding: 24px 20px; }
.kpi b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-stretch: 86%;
  font-weight: 900;
  color: var(--turbo-deep);
  line-height: 1;
}
.kpi span { display: block; margin-top: 7px; font-size: .85rem; color: var(--text-soft); }

/* Tableaux */
.tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ice);
  -webkit-overflow-scrolling: touch;
}
/* Le tableau garde son fond clair même dans une section sombre : il doit
   donc fixer sa propre couleur de texte, sinon les <td> héritent du blanc
   de la section et deviennent illisibles. */
.tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: .93rem;
  color: var(--text);
}
.tbl td { color: var(--text-soft); }
.tbl th, .tbl td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.tbl thead th {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--ice-2);
  white-space: nowrap;
}
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody th {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  background: var(--ice-2);
}
.tbl ul { margin: 0; padding-left: 18px; color: var(--text-soft); }
.tbl ul li { margin-bottom: 4px; }

/* Liste ordonnée « priorités » */
.rank { list-style: none; margin: 0; padding: 0; counter-reset: r; display: grid; gap: 10px; }
.rank li {
  counter-increment: r;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 20px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: .96rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.rank li:hover { border-color: var(--turbo); transform: translateX(3px); }
.rank li::before {
  content: "#" counter(r);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.02rem;
  color: var(--turbo-deep);
}
.section--dark .rank li { background: var(--panel); border-color: var(--line-dark); color: var(--on-dark); }
.section--dark .rank li::before { color: var(--turbo); }

/* Sous-navigation ancrée */
.subnav {
  position: sticky;
  top: 82px;
  z-index: 40;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.subnav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a {
  display: block;
  padding: 9px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .89rem;
  font-weight: 700;
  color: var(--text-soft);
  white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.subnav a:hover { background: var(--ice-2); color: var(--text); }
.subnav a.is-active { background: var(--ink); color: var(--ice); }

/* --------------------------------------------------------------------------
   22. Animations d'apparition
   -------------------------------------------------------------------------- */
/* L'état masqué n'existe que si le JS tourne : sans lui, tout reste visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* --------------------------------------------------------------------------
   23. Adaptatif
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; }
  .hero__badge { left: auto; right: 18px; }
  .method { grid-template-columns: repeat(2, 1fr); }
  .method__cell:nth-child(2n) { border-right: 0; }
  .method__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .phases { grid-template-columns: repeat(2, 1fr); row-gap: 8px; }
  .plans { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band .btn-row { justify-content: flex-start; }
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { border-right: 0; border-bottom: 1px solid var(--line-dark); }
}

@media (max-width: 940px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: inline-flex; }
  .subnav { top: 70px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .split, .grid--2, .grid--3, .form__row { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__cell:nth-child(2n) { border-right: 0; }
  .stat-strip__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .adn__row { grid-template-columns: 1fr; gap: 6px; }
  .adn__val { text-align: left; }
  .roles { grid-template-columns: 1fr; }
  .kpi { grid-template-columns: 1fr; }
  .zone-card { min-height: 340px; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step__n { font-size: 1.9rem; }
  .filters { border-radius: var(--r); }
  .faq__a > div { padding-right: 12px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .grid--4, .tools-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; }
  .method__cell { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .method__cell:last-child { border-bottom: 0; }
  .phases { grid-template-columns: 1fr; }
  .hero__badge { position: static; margin-top: 16px; max-width: none; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .header__cta .btn { display: none; }
}

/* --------------------------------------------------------------------------
   24. Accessibilité : mouvement réduit + impression
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .adn__fill { width: var(--w, 70%); }
}

@media print {
  .header, .mobile-menu, .subnav, .cta-band, .footer, .streaks, .rink-lines { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .section { padding-block: 18pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}

/* --------------------------------------------------------------------------
   25. Structure v2 — bandeau d'accueil, langue, connexion, volets, charte
   -------------------------------------------------------------------------- */

/* Sélecteur de langue (en-tête) --------------------------------------------- */
.langswitch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-dark-2);
  border-radius: 100px;
  overflow: hidden;
  flex: none;
}
.langswitch a,
.langswitch span {
  display: block;
  padding: 7px 13px;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 800;
  font-stretch: 108%;
  letter-spacing: .1em;
  color: var(--on-dark-soft);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.langswitch [aria-current="true"] { background: var(--turbo); color: var(--ink); }
.langswitch a:not([aria-current]):hover { background: rgba(255,255,255,.09); color: var(--ice); }
.langswitch span:not([aria-current]) { opacity: .45; cursor: default; }

/* Bouton « Se connecter » ---------------------------------------------------- */
.btn--login { gap: 8px; }
.btn--login svg { width: 15px; height: 15px; }

/* Bandeau d'accueil (image ou vidéo plein écran) ---------------------------- */
.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(540px, 84vh, 900px);
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.banner__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}
.banner__media img,
.banner__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__media video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s var(--ease);
}
.banner.is-playing .banner__media video { opacity: 1; }
.banner.is-playing .banner__media img   { opacity: 0; transition: opacity .9s var(--ease); }

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(6,12,21,.78) 0%,
      rgba(6,12,21,.30) 30%,
      rgba(6,12,21,.58) 64%,
      rgba(6,12,21,.97) 100%);
}

.banner__inner {
  position: relative;
  text-align: center;
  padding-block: clamp(140px, 20vh, 220px) clamp(36px, 4.5vw, 56px);
}

.banner__kicker {
  font-family: var(--font-display);
  font-size: clamp(.74rem, 1.5vw, .92rem);
  font-weight: 800;
  font-stretch: 114%;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--turbo-2);
  margin: 0 0 20px;
  text-shadow: 0 2px 18px rgba(6,12,21,.95);
}

.banner h1 {
  color: var(--ice);
  font-size: clamp(2.35rem, 6.4vw, 4.5rem);
  margin: 0 0 20px;
  text-shadow: 0 6px 40px rgba(6,12,21,.7);
}
.banner h1 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--turbo), var(--turbo-2) 55%, var(--turbo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.banner__lead {
  color: rgba(238,244,250,.9);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  max-width: 105ch;
  margin: 0 auto;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(6,12,21,.8);
}

.banner__proof {
  margin: 18px auto 0;
  font-size: clamp(.82rem, 1.3vw, .95rem);
  font-weight: 600;
  color: rgba(238,244,250,.72);
  text-shadow: 0 2px 14px rgba(6,12,21,.85);
}
.banner__proof strong { color: var(--ice); }

.banner .btn-row { justify-content: center; margin-top: 34px; }

.banner__cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  color: rgba(238,244,250,.55);
  animation: cue-bob 2.4s var(--ease) infinite;
}
.banner__cue svg { width: 22px; height: 22px; }
@keyframes cue-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 7px); }
}

/* Volets (page Turbo Coach) -------------------------------------------------- */
.volet__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  margin-bottom: clamp(26px, 4vw, 40px);
}
.volet__n {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.4rem);
  font-weight: 900;
  font-stretch: 78%;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 2px var(--turbo);
  letter-spacing: -.02em;
}
.volet__head h2 { margin: 0; }
.volet__head .eyebrow { margin-bottom: 8px; }

/* La phrase d'engagement qui ouvre chaque volet */
.vow {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.95rem);
  font-weight: 800;
  font-stretch: 92%;
  line-height: 1.22;
  color: var(--turbo-deep);
  margin: 0 0 24px;
  max-width: 30ch;
}
.section--dark .vow { color: var(--turbo-2); }

/* Charte : les engagements à la première personne --------------------------- */
.charte {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.charte li {
  position: relative;
  padding: 16px 22px 16px 58px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: .99rem;
  color: var(--text-soft);
  transition: border-color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
}
.charte li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 17px;
  width: 24px; height: 24px;
  border-radius: 7px;
  border: 2px solid var(--line-2);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.charte li:hover {
  border-color: var(--turbo);
  transform: translateX(3px);
  box-shadow: var(--sh-sm);
}
.charte li:hover::before {
  border-color: var(--turbo);
  background-color: var(--turbo);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23060C15' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.charte li strong { color: var(--text); font-weight: 700; }
.charte li em { font-style: normal; color: var(--turbo-deep); font-weight: 600; }

.section--dark .charte li { background: var(--panel); border-color: var(--line-dark); color: var(--on-dark-soft); }
.section--dark .charte li::before { border-color: var(--line-dark-2); }
.section--dark .charte li strong { color: var(--ice); }
.section--dark .charte li em { color: var(--turbo-2); }

/* Bloc « les 4 volets en un coup d'œil » ------------------------------------ */
.volet-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.volet-links a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 22px 22px 24px;
  background: var(--panel);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}
.volet-links a:hover { border-color: var(--turbo); transform: translateY(-4px); }
.volet-links b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  font-stretch: 84%;
  line-height: 1;
  color: var(--turbo);
}
.volet-links strong { color: var(--ice); font-size: 1.02rem; font-weight: 700; }
.volet-links span { color: var(--on-dark-soft); font-size: .9rem; }

/* Deux colonnes « exemplaire / compétent » (page Parents) ------------------- */
.duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.duo__col {
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ice);
}
.duo__col--accent { border-color: var(--turbo); }
.duo__col h3 { margin-bottom: 6px; }
.duo__col > p { color: var(--text-soft); font-size: .95rem; margin-bottom: 22px; }

/* Adaptatif ----------------------------------------------------------------- */
@media (max-width: 1080px) {
  .volet-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .header__cta .langswitch { display: none; }
}

/* Lien de langue dans le menu mobile (le sélecteur FR/EN de l'en-tête y est masqué) */
.mobile-menu__lang {
  display: block;
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  text-decoration: none;
}
.mobile-menu__lang:hover { color: var(--turbo); }
@media (max-width: 760px) {
  .banner { min-height: clamp(480px, 78vh, 720px); }
  .banner__inner { padding-block: clamp(110px, 16vh, 150px) clamp(28px, 5vw, 40px); }
  .duo { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .volet-links { grid-template-columns: 1fr; }
  .volet__head { grid-template-columns: 1fr; gap: 10px; }
  .banner .btn-row { flex-direction: column; }
}

/* ADN sur fond clair (page Turbo Joueurs) */
.section--ice .adn__sum, .section--ice3 .adn__sum { border-top-color: var(--line); }
.section--ice .adn__sum b, .section--ice3 .adn__sum b { color: var(--turbo-deep); }

/* --------------------------------------------------------------------------
   26. La rondelle cliquable
   Partout où la petite rondelle apparaît, il y a plus à voir : le clic ouvre
   un panneau avec les explications, la vidéo et les exemples.
   Sans JavaScript, le bouton disparaît et le contenu du panneau reste lisible
   directement dans la page.
   -------------------------------------------------------------------------- */
.puck {
  --puck-size: 42px;
  position: relative;
  display: none;
  place-items: center;
  width: var(--puck-size);
  height: var(--puck-size);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
  flex: none;
}
.js .puck { display: inline-grid; }
.js .puck-content { display: none; }

.puck img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.puck:hover img,
.puck:focus-visible img { transform: scale(1.14) rotate(-7deg); filter: drop-shadow(0 0 12px rgba(255,106,26,.7)); }

/* Anneau pulsé : le signal « clique ici » */
.puck::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--turbo);
  animation: puck-pulse 2.6s var(--ease) infinite;
  pointer-events: none;
}
@keyframes puck-pulse {
  0%   { transform: scale(.82); opacity: .8; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* Infobulle */
.puck::after {
  content: attr(data-hint);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(5px);
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--ice);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--sh);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 5;
}
.puck:hover::after,
.puck:focus-visible::after { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Variantes de placement */
.puck--inline { --puck-size: 34px; margin-left: 12px; }
.puck--head   { --puck-size: 46px; }

/* Déclencheur discret en forme de lien : même mécanique que la rondelle,
   sans l'image ni l'anneau pulsé — pour les petites cartes. */
.puck--text {
  width: auto; height: auto;
  margin-top: 12px;
  font-size: .88rem;
  color: var(--turbo-deep);
  text-align: left;
}
.js .puck--text { display: inline-flex; }
.puck--text img,
.puck--text::before,
.puck--text::after { display: none; content: none; }
.puck--text:hover { text-decoration: underline; }
.puck--text:hover svg { transform: translateX(4px); }
.section--dark .puck--text { color: var(--turbo); }

/* Titre suivi d'une rondelle */
.with-puck {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.with-puck .puck--inline { flex: none; }
/* Titre centré : garder la rondelle à droite du texte, l'ensemble centré */
.sec-head--center .with-puck { justify-content: center; }

/* Le rappel affiché une fois par page ---------------------------------------- */
.puck-legend {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px 16px 18px;
  background: rgba(255,106,26,.08);
  border: 1px solid rgba(255,106,26,.28);
  border-radius: var(--r);
}
.puck-legend img { width: 42px; height: 42px; flex: none; }
.puck-legend p { margin: 0; font-size: .95rem; color: var(--text-soft); }
.puck-legend strong { color: var(--text); font-weight: 700; }
.section--dark .puck-legend { background: rgba(255,106,26,.11); }
.section--dark .puck-legend p { color: var(--on-dark-soft); }
.section--dark .puck-legend strong { color: var(--ice); }

/* Le panneau -------------------------------------------------------------- */
.puck-modal {
  width: min(780px, calc(100vw - 28px));
  max-height: min(88vh, 940px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ice);
  color: var(--text);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.puck-modal::backdrop {
  background: rgba(6,12,21,.74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.puck-modal__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--ice-2);
}
.puck-modal__head img { width: 40px; height: 40px; flex: none; }
.puck-modal__head h2 {
  flex: 1;
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.25;
}
.puck-modal__close {
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: var(--ice);
  cursor: pointer;
  color: var(--text-soft);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.puck-modal__close:hover { background: var(--ink); color: var(--ice); border-color: var(--ink); }
.puck-modal__close svg { width: 17px; height: 17px; }

.puck-modal__body {
  padding: 26px 26px 30px;
  overflow-y: auto;
  max-height: calc(88vh - 80px);
}
.puck-modal__body > * + * { margin-top: 18px; }
.puck-modal__body h3 { font-size: 1.05rem; margin: 30px 0 4px; }
.puck-modal__body > :first-child { margin-top: 0; }
.puck-modal__body p { color: var(--text-soft); margin: 0; }
.puck-modal__body .checklist li { font-size: .95rem; }

/* Le panneau déborde : un dégradé en bas signale qu'il reste du contenu. */
.puck-modal.is-scrollable::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 0;
  height: 70px;
  pointer-events: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  background: linear-gradient(to top, var(--ice) 20%, rgba(255,255,255,0));
}

/* Emplacement vidéo */
.puck-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ice-3);
}
.puck-video iframe,
.puck-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.puck-video--soon {
  aspect-ratio: auto;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 6px;
  padding: 30px 24px;
  background: var(--ice-2);
  border: 1px dashed var(--line-2);
  color: var(--text-mute);
  font-size: .92rem;
}
.puck-video--soon b {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-soft);
}

/* Contenu resté visible quand le JS ne tourne pas */
.puck-content {
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--ice-2);
}

@media (max-width: 560px) {
  .puck::after { display: none; }
  .puck-legend { flex-direction: column; align-items: flex-start; gap: 12px; }
  .puck-modal__body { padding: 20px 18px 24px; }
}

/* Le magasin de panneaux ne sert qu'au repli sans JavaScript */
.js .puck-store { display: none; }

/* Proportions de colonnes propres aux pages Concepteur et Contact.
   Sous media query : la bascule en une colonne des sections 23 et 25
   reprend toujours le dessus sur petit écran. */
@media (min-width: 1081px) {
  .hero__inner--split { grid-template-columns: .9fr 1.1fr; }
}
@media (min-width: 761px) {
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
}

/* --------------------------------------------------------------------------
   27. Les avatars de joueur
   Chaque avatar porte la couleur de son pilier dominant (jetons --c-*).
   Le « portrait », c'est la forme de son ADN sur le radar à 7 axes.
   -------------------------------------------------------------------------- */
.avatars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}

.avatar {
  --c: var(--turbo);
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .3s var(--ease), transform .3s var(--ease),
              box-shadow .3s var(--ease);
}
.avatar:hover {
  border-color: var(--c);
  transform: translateY(-4px);
  box-shadow: var(--sh);
}

.avatar__head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.avatar__n {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 900;
  font-stretch: 110%;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ct, var(--text-soft));
}
.avatar__icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
  color: var(--c);
  flex: none;
  margin-left: auto;
}
.avatar__icon svg { width: 21px; height: 21px; }

.avatar h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin: 0 0 8px; }

.avatar__sig {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  font-stretch: 96%;
  line-height: 1.3;
  color: var(--ct, var(--turbo-deep));
  margin: 0 0 18px;
}

.avatar__desc { color: var(--text-soft); font-size: .96rem; margin: 0 0 22px; }

/* Portrait + radar ---------------------------------------------------------- */
.avatar__visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

/* ↓↓↓ À COMPLÉTER — remplacer par une vraie illustration ou photo */
.avatar__ph {
  position: relative;
  display: grid;
  place-items: center;
  gap: 10px;
  aspect-ratio: 3 / 4;
  border-radius: var(--r);
  background:
    radial-gradient(120% 90% at 50% 12%, color-mix(in srgb, var(--c) 26%, transparent), transparent 62%),
    var(--ink);
  border: 1px solid var(--line-dark-2);
  overflow: hidden;
  text-align: center;
  padding: 18px;
}
.avatar__ph svg { width: 54px; height: 54px; color: var(--c); }
.avatar__ph b {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.avatar__ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.radar { width: 100%; height: auto; display: block; }
.radar__grid  { fill: none; stroke: var(--line); stroke-width: 1; }
.radar__axis  { stroke: var(--line); stroke-width: 1; }
.radar__shape { fill: var(--c); fill-opacity: .26; stroke: var(--c); stroke-width: 2.5; stroke-linejoin: round; }
.radar__dot   { fill: var(--c); }
.radar__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  fill: var(--text-mute);
}

/* Lignes de profil ---------------------------------------------------------- */
.avatar__rows { display: grid; gap: 14px; margin: 0 0 22px; }
.avatar__rows > div { display: grid; gap: 3px; }
.avatar__rows dt, .avatar__k {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.avatar__rows p { margin: 0; font-size: .95rem; color: var(--text-soft); }
.avatar__rows p + p, .quiz__rows p + p { margin-top: 11px; }
.avatar__rows strong { color: var(--text); font-weight: 700; }

.avatar__roles { display: flex; flex-wrap: wrap; gap: 8px; }
.avatar__roles span {
  padding: 5px 13px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--c) 14%, transparent);
  color: var(--text);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
}

.avatar__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avatar__refs { flex: 1; }
.avatar__refs p { margin: 3px 0 0; font-size: .93rem; color: var(--text); font-weight: 600; }
.avatar__refs-note { margin-top: 8px !important; font-size: .82rem !important; font-weight: 400 !important; font-style: italic; color: var(--text-soft, var(--text)); opacity: .8; }

/* Le radar de référence, dans l'intro --------------------------------------- */
.axes {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.axes__list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; counter-reset: ax; }
.axes__list li {
  counter-increment: ax;
  display: grid;
  grid-template-columns: 26px 12px 1fr;
  gap: 12px;
  align-items: center;
  font-size: .96rem;
  color: var(--on-dark-soft);
}
.axes__list li::before {
  content: counter(ax);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .85rem;
  color: var(--turbo);
}
.axes__list i { width: 12px; height: 12px; border-radius: 3px; background: var(--c); }
.axes__list strong { color: var(--ice); font-weight: 600; }
.section--dark .radar__grid, .section--dark .radar__axis { stroke: var(--line-dark-2); }
.section--dark .radar__label { fill: var(--on-dark-soft); }

@media (max-width: 1080px) {
  .avatars { grid-template-columns: 1fr; }
  .axes { grid-template-columns: 1fr; }
  .axes__radar { max-width: 300px; }
}
@media (max-width: 560px) {
  .avatar__visuals { grid-template-columns: 1fr; }
  .avatar__ph { aspect-ratio: 16 / 10; }
  .avatar__visuals .radar { max-width: 320px; margin-inline: auto; }
  .avatar__foot { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   28. Le quiz « Quel joueur es-tu ? »
   -------------------------------------------------------------------------- */
.quiz {
  --c: var(--turbo);
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(24px, 3.4vw, 42px);
  background: var(--panel);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.quiz__nojs { display: block; }
.js .quiz__nojs { display: none; }
.quiz__app { display: none; }
.js .quiz__app { display: block; }

/* Progression --------------------------------------------------------------- */
.quiz__head { margin-bottom: clamp(22px, 3vw, 32px); }
.quiz__count {
  display: block;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--turbo);
  margin-bottom: 12px;
}
.quiz__track {
  height: 5px;
  border-radius: 100px;
  background: rgba(255,255,255,.10);
  overflow: hidden;
}
.quiz__bar {
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--turbo), var(--turbo-2));
  transition: width .45s var(--ease);
}

/* Question ------------------------------------------------------------------ */
.quiz__q {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 800;
  font-stretch: 94%;
  line-height: 1.24;
  color: var(--ice);
  margin: 0 0 clamp(20px, 2.6vw, 28px);
}
.quiz__q em { font-style: normal; color: var(--turbo-2); }

.quiz__opts { display: grid; gap: 11px; }
.quiz__opt {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 15px;
  align-items: start;
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  color: var(--on-dark-soft);
  font-size: .99rem;
  line-height: 1.45;
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease),
              transform .2s var(--ease), color .2s var(--ease);
}
.quiz__opt:hover {
  border-color: var(--turbo);
  background: rgba(255,106,26,.10);
  color: var(--ice);
  transform: translateX(3px);
}
.quiz__opt.is-chosen {
  border-color: var(--turbo);
  background: rgba(255,106,26,.18);
  color: var(--ice);
}
.quiz__opt em { font-style: normal; color: var(--turbo-2); }
.quiz__lettre {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 900;
  color: var(--turbo);
}
.quiz__opt:hover .quiz__lettre,
.quiz__opt.is-chosen .quiz__lettre { background: var(--turbo); color: var(--ink); }

.quiz__back {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 700;
  color: var(--on-dark-soft);
  transition: color .2s var(--ease);
}
.quiz__back:hover { color: var(--turbo); }

/* Résultat ------------------------------------------------------------------ */
.quiz__result:focus { outline: none; }
.quiz__kicker {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--turbo);
  margin: 0 0 8px;
}
.quiz__nom {
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: var(--ice);
  margin: 0 0 10px;
}
.quiz__sig {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  font-stretch: 94%;
  line-height: 1.3;
  color: var(--c);
  margin: 0 0 clamp(22px, 3vw, 30px);
}

.quiz__compare {
  padding: clamp(14px, 2vw, 22px);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  margin-bottom: clamp(22px, 3vw, 30px);
}
.radar--compare { max-width: 420px; margin-inline: auto; }
.radar__shape--ref {
  fill: var(--c); fill-opacity: .14;
  stroke: var(--c); stroke-width: 2;
  stroke-dasharray: 5 4;
}
.radar__shape--moi {
  fill: var(--turbo); fill-opacity: .26;
  stroke: var(--turbo); stroke-width: 2.6;
}
.radar__dot--moi { fill: var(--turbo); }

.quiz__legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}
.quiz__legend span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--on-dark-soft);
}
.quiz__sw { width: 14px; height: 14px; border-radius: 4px; flex: none; }
.quiz__sw--moi { background: var(--turbo); }
.quiz__sw--ref { background: var(--c); opacity: .55; }

.quiz__rows { display: grid; gap: 16px; margin-bottom: 22px; }
.quiz__rows > div { display: grid; gap: 3px; }
.quiz__rows .avatar__k { color: var(--text-mute); }
.quiz__rows p { margin: 0; font-size: .96rem; color: var(--on-dark-soft); }
.quiz__rows strong { color: var(--ice); font-weight: 700; }
.quiz__rows em { font-style: normal; color: var(--turbo-2); }
.quiz__refs { color: var(--ice) !important; font-weight: 600; }

.quiz__second {
  padding: 16px 20px;
  border-left: 3px solid var(--c);
  background: rgba(255,255,255,.04);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: .96rem;
  color: var(--on-dark-soft);
  margin: 0 0 16px;
}
.quiz__second strong { color: var(--ice); }

.quiz__rappel { font-size: .9rem; color: var(--text-mute); margin: 0 0 24px; }
.quiz__rappel em { color: var(--on-dark-soft); font-style: normal; font-weight: 600; }

.quiz__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.quiz__actions .btn--ghost {
  --btn-fg: var(--ice);
  border-color: var(--line-dark-2);
}
.quiz__actions .btn--ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.07); }

@media (max-width: 560px) {
  .quiz__opt { grid-template-columns: 26px 1fr; gap: 12px; padding: 14px 15px; font-size: .95rem; }
  .quiz__lettre { width: 26px; height: 26px; }
  .quiz__actions { flex-direction: column; }
  .quiz__actions .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   29. La citation mise en évidence (colonne d'un .split)
   -------------------------------------------------------------------------- */
.statement {
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.4vw, 44px);
  border-left-width: 5px;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.statement__txt {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-stretch: 88%;
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  margin: 0;
}
.statement__cite {
  margin-top: 18px;
  font-size: .98rem;
  line-height: 1.45;
  color: var(--text-soft);
}
.section--dark .statement { background: rgba(255,255,255,.05); }
.section--dark .statement__txt { color: var(--ice); }
.section--dark .statement__cite { color: var(--on-dark-soft); }

/* --------------------------------------------------------------------------
   Écosystème de l'athlète (parents.html) — cercle interactif
   -------------------------------------------------------------------------- */
.eco { margin-top: 8px; }

.eco__viz {
  position: relative;
  width: min(340px, 100%);
  margin: 10px auto 0;
  aspect-ratio: 1;
}

.eco__wires { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.eco__link {
  fill: none;
  stroke: var(--line-2);
  stroke-width: 1.5;
  stroke-dasharray: 3 5;
}
.eco__spoke {
  stroke: var(--line-2);
  stroke-width: 2;
  transition: stroke .2s var(--ease), stroke-width .2s var(--ease);
}
.eco__spoke.is-on { stroke: var(--turbo); stroke-width: 3.5; }

.eco__hub {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ice);
  text-align: center;
  padding: 6px;
}
.eco__hub b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(.95rem, 2.4vw, 1.15rem);
  line-height: 1.1;
}
.eco__hub small {
  margin-top: 2px;
  font-size: .66rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

.eco__nodes { list-style: none; margin: 0; padding: 0; }
.eco__slot { position: absolute; }
.eco__slot--t { top: 0;    left: 50%; transform: translate(-50%, -46%); }
.eco__slot--b { bottom: 0; left: 50%; transform: translate(-50%,  46%); }
.eco__slot--r { top: 50%;  right: 0;  transform: translate(42%, -50%); }
.eco__slot--l { top: 50%;  left: 0;   transform: translate(-42%, -50%); }

.eco__node {
  border: 1.5px solid var(--line-2);
  background: var(--ice);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .01em;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 18px -12px rgba(6,12,21,.5);
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
}
.eco__node:hover { border-color: var(--turbo); transform: translateY(-1px); }
.eco__node[aria-expanded="true"] {
  background: var(--turbo);
  border-color: var(--turbo);
  color: var(--ink);
}

.eco__detail {
  display: none;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--turbo);
  border-radius: var(--r-sm);
  background: var(--ice-2);
}
.js .eco__detail { display: block; }
.eco__hint { margin: 0; color: var(--text-soft); font-size: .95rem; }
.eco__nom {
  margin: 0 0 4px;
  font-size: 1.15rem;
}
.eco__role {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--turbo-deep);
}
.eco__detail p:last-child { margin: 0; color: var(--text-soft); }

.eco__fallback { margin: 14px 0 0; padding-left: 20px; color: var(--text-soft); }
.eco__fallback b { color: var(--text); }
.js .eco__fallback { display: none; }

@media (max-width: 560px) {
  .eco__viz { display: none; }
  .eco__nodes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
  }
  .eco__slot { position: static; transform: none; }
  .eco__node { width: 100%; }
  .js .eco__detail { margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .eco__node, .eco__spoke { transition: none; }
}

/* --------------------------------------------------------------------------
   Les 4 rôles — version « cœur du jeu » (joueurs.html)
   -------------------------------------------------------------------------- */
.section--roles {
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%,   rgba(255,106,26,.30), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(232,22,28,.24), transparent 60%),
    var(--ink-2);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--turbo), var(--blaze)) 1;
  overflow: hidden;
}
.section--roles .rink-lines { opacity: .9; }
.section--roles .rink-lines::before { border-color: rgba(255,106,26,.28); }
.section--roles .rink-lines::after  { border-color: rgba(232,22,28,.22); }
.section--roles .wrap { position: relative; z-index: 1; }

.roles-hero { max-width: 960px; margin-bottom: clamp(28px, 4vw, 44px); }
.roles-hero__h {
  display: block;                 /* le titre coule sur plusieurs lignes, la rondelle suit le texte */
  font-size: clamp(2.3rem, 6.2vw, 4.8rem);
  font-stretch: 88%;
  line-height: .98;
  letter-spacing: -.01em;
}
.roles-hero__h .mark-turbo { color: var(--turbo); }
.roles-hero__h .puck--inline { display: inline-grid; vertical-align: middle; margin-left: 10px; }
.roles-hero__lead { font-size: clamp(1.08rem, 1.7vw, 1.3rem); max-width: 820px; }
.roles-hero__lead strong { color: var(--ice); }

/* l'interrupteur */
.rswitch {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  padding: clamp(22px, 3vw, 32px) clamp(20px, 3vw, 40px);
  max-width: 720px;
  border: 1px solid var(--line-dark-2);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
  text-align: center;
}
.rswitch__q {
  margin: 0;
  font-family: var(--font-display); font-weight: 800; font-stretch: 92%;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--ice);
}
.rswitch__track {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  width: min(100%, 420px);
  margin-top: 26px;               /* place pour la rondelle qui flotte au-dessus */
  padding: 5px;
  border-radius: 999px;
  background: var(--ink);
  border: 1px solid var(--line-dark-2);
}
.rswitch__btn {
  position: relative; z-index: 1;
  padding: 13px 10px;
  border: 0; border-radius: 999px; background: none;
  font-family: var(--font-display); font-weight: 800; font-size: .9rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-dark-soft); cursor: pointer;
  transition: color .3s var(--ease);
}
.rswitch__btn.is-on { color: var(--ink); }
.rswitch__track::before {
  content: "";
  position: absolute; top: 5px; bottom: 5px;
  left: 5px; width: calc((100% - 10px) / 3);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--turbo), var(--turbo-2));
  box-shadow: 0 6px 18px -6px rgba(255,106,26,.8);
  transition: transform .45s var(--ease), background .3s var(--ease);
}
.rswitch[data-side="free"] .rswitch__track::before { transform: translateX(100%); background: linear-gradient(135deg, #C9D3E0, #F4F7FA); }
.rswitch[data-side="def"]  .rswitch__track::before { transform: translateX(200%); background: linear-gradient(135deg, var(--blaze), var(--blaze-soft)); }
.rswitch__puck {
  position: absolute; top: -30px; left: calc((100% - 10px) / 6 + 5px);
  width: 40px; height: 40px; margin-left: -20px;
  transition: left .45s var(--ease);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.5));
  animation: rswitch-bob 2.4s var(--ease) infinite;
}
.rswitch__puck img { width: 40px; height: 40px; display: block; }
.rswitch[data-side="free"] .rswitch__puck { left: 50%; }
.rswitch[data-side="def"]  .rswitch__puck { left: calc(100% - (100% - 10px) / 6 - 5px); }
@keyframes rswitch-bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-4px) } }
.rswitch__a {
  margin: 4px 0 0; min-height: 1.6em;
  font-size: 1.02rem; color: var(--on-dark-soft); line-height: 1.5;
}
.rswitch__a strong { color: var(--ice); }

/* les cartes réagissent à l'interrupteur */
.roles--switch .role,
.roles--switch .roles__phase {
  transition: opacity .45s var(--ease), transform .45s var(--ease), filter .45s var(--ease), box-shadow .45s var(--ease);
}
.roles--switch[data-side="off"] .role--def,
.roles--switch[data-side="off"] .roles__phase--def,
.roles--switch[data-side="def"] .role--off,
.roles--switch[data-side="def"] .roles__phase--off {
  opacity: .4; filter: grayscale(.6); transform: scale(.985);
}
.roles--switch[data-side="free"] .role,
.roles--switch[data-side="free"] .roles__phase { opacity: .4; filter: grayscale(.6); transform: scale(.985); }
.roles--switch[data-side="off"] .role--off { box-shadow: 0 0 0 1px var(--blaze-soft), 0 18px 40px -20px rgba(232,22,28,.7); }
.roles--switch[data-side="def"] .role--def { box-shadow: 0 0 0 1px var(--turbo), 0 18px 40px -20px rgba(255,106,26,.7); }
.roles--switch .role:hover { opacity: 1; filter: none; transform: translateY(-6px) scale(1.01); }

/* le pont vers les 3 situations */
.roles-bridge {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  list-style: none; margin: clamp(28px, 4vw, 44px) 0 0; padding: 0;
}
.roles-bridge li {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 14px 18px;
  border: 1px solid var(--line-dark); border-radius: var(--r);
  background: rgba(255,255,255,.04);
  font-size: .95rem; color: var(--ice);
}
.roles-bridge__s {
  font-family: var(--font-display); font-weight: 800; font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--turbo);
}
.roles-bridge__arr { color: var(--on-dark-soft); }
@media (max-width: 760px) {
  .roles-bridge { grid-template-columns: 1fr; }
  .rswitch__btn { font-size: .8rem; letter-spacing: .08em; padding: 12px 6px; }
}

/* --------------------------------------------------------------------------
   Pages légales (politique-de-temoins.html) + lien « Gérer les témoins »
   -------------------------------------------------------------------------- */
.legal__date {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-mute);
}
.legal h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: clamp(36px, 5vw, 52px) 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.legal h3 { font-size: 1.08rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--text-soft); line-height: 1.65; }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--turbo-deep); text-decoration: underline; }
.legal a:hover { color: var(--turbo); }
.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em;
  padding: 2px 7px; border-radius: 6px; background: var(--ice-2); border: 1px solid var(--line);
  color: var(--text);
}
.legal__table {
  width: 100%; border-collapse: collapse; margin: 6px 0 18px; font-size: .93rem;
}
.legal__table th, .legal__table td {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line);
  color: var(--text-soft); vertical-align: top;
}
.legal__table th {
  font-family: var(--font-display); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-mute); background: var(--ice-2);
}

.footer__link-btn {
  font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer;
}
.footer__link-btn:hover { color: var(--turbo); }

/* --------------------------------------------------------------------------
   La quête du joueur — bloc pleine largeur (accueil, section méthode)
   -------------------------------------------------------------------------- */
.quest {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 64px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,106,26,.35);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,106,26,.22), transparent 60%),
    linear-gradient(180deg, var(--panel), var(--ink));
}
.quest::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blaze), var(--turbo));
}
.quest .eyebrow {
  justify-content: center;
  color: var(--turbo);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 22px;
}
.quest .eyebrow::before,
.quest .eyebrow::after {
  content: "";
  width: 40px; height: 3px;
  background: currentColor;
  flex: none;
}
.quest__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 92%;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--ice);
  text-wrap: balance;
  margin: 0 auto 20px;
  max-width: 18ch;
}
.quest__title em { font-style: normal; color: var(--turbo); }
.quest__text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 60ch;
  margin: 0 auto 26px;
  text-wrap: balance;
}
.quest__text strong { color: var(--ice); }
