/* ============================================================
   Homepage 10k — « La trajectoire »
   Sections sous la hero cinématique. Hero, header, footer intacts.
   Monde : marine profond, encres cinématiques, accent = dégradé
   canonique réservé au fil signature, aux mots accentués et au CTA.
   Réf. : docs/design-home-10k.md
   ============================================================ */

.story-page--cinematic {
  --h10-ease: cubic-bezier(.22, .75, .25, 1);
  --h10-ease-out: cubic-bezier(.16, 1, .3, 1);
  --h10-panel: rgba(10, 16, 32, .55);
  --h10-line: rgba(165, 216, 255, .14);
  --h10-line-strong: rgba(165, 216, 255, .3);
  --h10-ink: var(--cb-display-ink-dark);
  --h10-muted: rgba(154, 168, 199, .95);
}

/* ---------- Environnement fixe (une seule couche, toute la page) ---------- */
.h10-env {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.h10-env.is-on { opacity: 1; }
.h10-env::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(214, 226, 248, .05) 1px, transparent 1.4px);
  background-size: 5px 5px;
  opacity: .32;
}
.h10-env__glow {
  position: absolute;
  width: 58vmax;
  height: 58vmax;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}
.h10-env__glow--a {
  left: -18vmax;
  top: 4vmax;
  background: radial-gradient(circle, rgba(86, 126, 255, .12), transparent 62%);
  animation: h10-glow-a 96s ease-in-out infinite alternate -20s;
}
.h10-env__glow--b {
  right: -20vmax;
  bottom: -12vmax;
  background: radial-gradient(circle, rgba(103, 224, 185, .09), transparent 62%);
  animation: h10-glow-b 120s ease-in-out infinite alternate -48s;
}
@keyframes h10-glow-a { to { transform: translate3d(9vmax, 7vmax, 0) scale(1.12); } }
@keyframes h10-glow-b { to { transform: translate3d(-8vmax, -9vmax, 0) scale(1.08); } }

/* ---------- Le fil de trajectoire (élément signature) ---------- */
.h10-statement, .h10-caps, .h10-eco, .h10-proof, .h10-pricing,
.h10-partners, .h10-faq, .h10-cta, .h10-link { position: relative; z-index: 1; }

.h10-thread, .h10-link { pointer-events: none; }
.h10-link {
  height: clamp(88px, 11vw, 136px);
  width: min(320px, 64vw);
  margin: -6px auto;
}
.h10-link svg, .h10-thread svg, .h10-caps__thread svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.h10-thread__rail {
  fill: none;
  stroke: var(--h10-line);
  stroke-width: 1.75px;
  vector-effect: non-scaling-stroke;
}
.h10-thread__draw {
  fill: none;
  stroke: url(#h10-grad);
  stroke-width: 2.5px;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 7px rgba(78, 176, 226, .4));
}
.h10-thread__node {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: #42bbdf;
  box-shadow: 0 0 0 5px rgba(66, 187, 223, .13), 0 0 20px rgba(66, 187, 223, .55);
  opacity: .18;
  transform: scale(.6);
  transition: opacity .7s var(--h10-ease), transform .7s var(--h10-ease);
}
.h10-thread__node.lit, .lit .h10-thread__node {
  opacity: 1;
  transform: none;
  animation: h10-breathe 4.6s ease-in-out infinite -1.3s;
}
.h10-link--right .h10-thread__node, .h10-link--final .h10-thread__node { left: 50%; }
@keyframes h10-breathe {
  0%, 100% { box-shadow: 0 0 0 5px rgba(66, 187, 223, .13), 0 0 20px rgba(66, 187, 223, .55); opacity: 1; }
  50% { box-shadow: 0 0 0 8px rgba(66, 187, 223, .07), 0 0 26px rgba(66, 187, 223, .75); opacity: .82; }
}

/* ---------- Système d'entrées (chorégraphie, délais retirés après) ---------- */
.h10-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--h10-ease), transform .9s var(--h10-ease);
}
.h10-reveal.in { opacity: 1; transform: none; }
.h10-reveal [style*="--i"] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--h10-ease), transform .7s var(--h10-ease);
  transition-delay: calc(var(--i) * 95ms + 120ms);
}
.h10-reveal.in [style*="--i"] { opacity: 1; transform: none; }
.h10-reveal.in.settled [style*="--i"] { transition-delay: 0ms; }

/* ---------- Typo des sections (tokens canoniques) ---------- */
.h10-statement h2, .h10-caps h2, .h10-eco h2, .h10-pricing h2 {
  margin: 12px 0 18px;
  font-family: var(--cb-display-font);
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  line-height: var(--cb-display-leading);
  font-size: var(--cb-title-section);
  color: var(--h10-ink);
}
.h10-partners h2, .h10-faq h2 {
  margin: 12px 0 16px;
  font-family: var(--cb-display-font);
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  line-height: var(--cb-display-leading);
  font-size: var(--cb-title-section-side);
  color: var(--h10-ink);
}
.h10-accent, .h10-statement__title em {
  font-style: normal;
  background: var(--cb-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h10-caps .story-section-lead, .h10-eco .story-section-lead,
.h10-pricing .story-section-lead, .h10-partners .story-section-lead {
  margin: 0;
  font-weight: var(--cb-lead-weight);
  letter-spacing: var(--cb-lead-tracking);
  font-size: var(--cb-lead-section);
  line-height: 1.4;
  color: var(--cb-lead-ink-dark);
  max-width: 56ch;
}

/* ---------- Statement ---------- */
.h10-statement {
  padding: clamp(30px, 5vw, 64px) 0 clamp(64px, 8vw, 110px);
  text-align: center;
}
.h10-thread--intro {
  position: relative;
  width: 8px;
  height: clamp(110px, 15vh, 170px);
  margin: 0 auto clamp(26px, 4vw, 44px);
}
.h10-statement__inner { max-width: 1060px; }
.h10-statement .story-eyebrow { justify-content: center; }
.h10-statement__title { font-size: var(--cb-title-section); }
.h10-statement__title span, .h10-statement__title em { display: block; }
.h10-statement__lead {
  margin: 20px auto 0;
  max-width: 62ch;
  font-weight: var(--cb-lead-weight);
  letter-spacing: var(--cb-lead-tracking);
  font-size: var(--cb-lead-section);
  line-height: 1.42;
  color: var(--cb-lead-ink-dark);
}
/* Entrée statement : drift-down, le fil descend et les mots descendent avec lui */
.h10-statement .h10-reveal [style*="--i"] { transform: translateY(-24px); }
.h10-statement .h10-reveal.in [style*="--i"] { transform: none; }

.h10-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.h10-particles i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(165, 216, 255, .35);
  opacity: 0;
  animation: h10-float 18s ease-in-out infinite;
}
.h10-particles i:nth-child(1) { left: 12%; top: 30%; animation-delay: -2s; }
.h10-particles i:nth-child(2) { left: 26%; top: 68%; animation-delay: -7s; animation-duration: 22s; }
.h10-particles i:nth-child(3) { left: 44%; top: 18%; animation-delay: -11s; }
.h10-particles i:nth-child(4) { left: 66%; top: 74%; animation-delay: -5s; animation-duration: 24s; }
.h10-particles i:nth-child(5) { left: 81%; top: 34%; animation-delay: -14s; }
.h10-particles i:nth-child(6) { left: 92%; top: 58%; animation-delay: -9s; animation-duration: 20s; }
@keyframes h10-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0; }
  12%, 82% { opacity: .5; }
  50% { transform: translate3d(14px, -26px, 0); opacity: .28; }
}

/* ---------- Capacités : quatre stations sur le fil ---------- */
.h10-caps { padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 96px); }
.h10-caps__intro { text-align: center; }
.h10-caps__intro .story-eyebrow { justify-content: center; }
.h10-caps__intro .story-section-lead { margin: 0 auto; }
.h10-caps__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 6vw, 84px);
  padding: clamp(48px, 6vw, 88px) 0 clamp(30px, 4vw, 56px);
  margin-top: clamp(10px, 2vw, 26px);
}
.h10-caps__thread {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 8px;
  transform: translateX(-50%);
}
.h10-station {
  position: relative;
  width: calc(50% - 66px);
  align-self: flex-start;
}
.h10-station--alt { align-self: flex-end; }
.h10-station__num {
  position: absolute;
  z-index: 0;
  top: -0.42em;
  left: -10px;
  font-family: var(--cb-display-font);
  font-weight: 300;
  font-size: clamp(64px, 7vw, 104px);
  letter-spacing: var(--cb-display-tracking);
  line-height: 1;
  color: rgba(203, 215, 234, .07);
  user-select: none;
}
.h10-station--alt .h10-station__num { left: auto; right: -10px; }
.h10-station__node {
  position: absolute;
  top: 26px;
  right: -73px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--h10-line-strong);
  background: #0a1020;
  display: grid;
  place-items: center;
  transition: border-color .6s var(--h10-ease);
}
.h10-station--alt .h10-station__node { right: auto; left: -73px; }
.h10-station__node i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42bbdf;
  opacity: 0;
  transform: scale(.4);
  transition: opacity .6s var(--h10-ease) .25s, transform .6s var(--h10-ease) .25s;
}
.h10-station.in .h10-station__node { border-color: rgba(66, 187, 223, .65); }
.h10-station.in .h10-station__node i {
  opacity: 1;
  transform: none;
  animation: h10-breathe 4.8s ease-in-out infinite -2s;
}
.h10-station__card {
  position: relative;
  z-index: 1;
  background: var(--h10-panel);
  border: 1px solid var(--h10-line);
  border-radius: 18px;
  padding: clamp(22px, 2.4vw, 30px) clamp(22px, 2.6vw, 32px) clamp(18px, 2vw, 24px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .5s var(--h10-ease), transform .5s var(--h10-ease);
}
.h10-station:hover .h10-station__card { border-color: rgba(165, 216, 255, .3); transform: translateY(-3px); }
.h10-station__card h3 {
  margin: 0 0 8px;
  font-family: var(--cb-display-font);
  font-weight: 300;
  letter-spacing: -0.04em;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.1;
  color: var(--h10-ink);
}
.h10-station__card > p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.5; color: var(--h10-muted); }
.h10-station__links { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.h10-station__links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--h10-line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--story-ink-soft);
  text-decoration: none;
  transition: border-color .35s var(--h10-ease), color .35s var(--h10-ease), transform .35s var(--h10-ease);
}
.h10-station__links a:hover { border-color: rgba(103, 224, 185, .5); color: #eaf6ff; transform: translateY(-1px); }
.h10-station__status { display: inline-flex; align-items: baseline; gap: 8px; font-size: 12.5px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(154, 168, 199, .85); }
.h10-station__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67e0b9;
  box-shadow: 0 0 10px rgba(103, 224, 185, .6);
  animation: h10-breathe 5s ease-in-out infinite -1.6s;
  align-self: center;
}
/* Entrées : la station glisse depuis le fil, en écho au trait qui descend */
.h10-station.h10-reveal { transform: translateX(-26px); }
.h10-station--alt.h10-reveal { transform: translateX(26px); }
.h10-station.h10-reveal.in { transform: none; }

/* ---------- Pilotage : console conservée + maintenir pour activer ---------- */
.h10-platform .story-control__network,
.h10-platform .story-control__metrics { transition: opacity .9s var(--h10-ease), filter .9s var(--h10-ease); }
.h10-platform.is-h10-off .story-control__network,
.h10-platform.is-h10-off .story-control__metrics { opacity: .3; filter: saturate(.45) brightness(.82); }
.h10-platform.is-h10-powered .story-control__network,
.h10-platform.is-h10-powered .story-control__metrics { opacity: 1; filter: none; }
.h10-platform.is-h10-powered .story-control__service { animation: h10-service-pop .7s var(--h10-ease) both; }
.h10-platform.is-h10-powered .story-control__service--deskio { animation-delay: .1s; }
.h10-platform.is-h10-powered .story-control__service--serenia { animation-delay: .26s; }
.h10-platform.is-h10-powered .story-control__service--ovastack { animation-delay: .42s; }
.h10-platform.is-h10-powered .story-control__service--neoo { animation-delay: .58s; }
.h10-platform.is-h10-powered .story-control__metrics article { animation: h10-metric-in .6s var(--h10-ease) both; }
.h10-platform.is-h10-powered .story-control__metrics article:nth-child(2) { animation-delay: .82s; }
.h10-platform.is-h10-powered .story-control__metrics article:nth-child(3) { animation-delay: .94s; }
.h10-platform.is-h10-powered .story-control__metrics article:nth-child(1) { animation-delay: .7s; }
@keyframes h10-service-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.045); }
  100% { transform: scale(1); }
}
@keyframes h10-metric-in {
  from { opacity: .25; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.h10-hold {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 12px;
  border-radius: 999px;
  background: rgba(5, 10, 20, .82);
  border: 1px solid rgba(165, 216, 255, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42);
  transition: opacity .6s var(--h10-ease), transform .6s var(--h10-ease);
}
.h10-platform.is-h10-powered .h10-hold {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.92);
  pointer-events: none;
  transition-delay: 1.5s;
}
.h10-hold__btn {
  position: relative;
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: rgba(66, 187, 223, .12);
  color: #cbe9ff;
  cursor: pointer;
  display: grid;
  place-items: center;
  touch-action: none;
  transition: background .4s var(--h10-ease), transform .3s var(--h10-ease);
}
.h10-hold__btn:hover { background: rgba(66, 187, 223, .2); }
.h10-hold__btn.pressing { transform: scale(.96); }
.h10-hold__btn:focus-visible { outline: 2px solid #42bbdf; outline-offset: 3px; }
.h10-hold__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.h10-hold__track { fill: none; stroke: rgba(165, 216, 255, .18); stroke-width: 3; }
.h10-hold__fill {
  fill: none;
  stroke: url(#h10-grad);
  stroke-width: 3;
  stroke-linecap: round;
}
.h10-hold__bolt { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
.h10-hold__btn.pressing .h10-hold__bolt { animation: h10-bolt 1s ease-in-out infinite; }
@keyframes h10-bolt { 50% { opacity: .55; } }
.h10-hold__text { margin: 0; display: grid; gap: 2px; }
.h10-hold__text b { font-size: 15px; font-weight: 600; color: #eaf3ff; letter-spacing: .01em; }
.h10-hold__text > span { font-size: 12.5px; color: rgba(154, 168, 199, .95); }
.h10-hold__done { display: none; font-size: 12.5px; font-weight: 600; color: #67e0b9; }
.h10-platform.is-h10-powered .h10-hold__hintline { display: none; }
.h10-platform.is-h10-powered .h10-hold__done { display: block; }

/* ---------- Écosystème : double marquee contre-dérivant ---------- */
.h10-eco { padding: clamp(56px, 8vw, 110px) 0; overflow: hidden; }
.h10-eco__intro { text-align: left; }
.h10-eco__belt {
  display: grid;
  gap: 16px;
  margin: clamp(30px, 4vw, 48px) 0 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.h10-eco__row { display: flex; overflow: hidden; }
.h10-eco__track {
  flex: none;
  min-width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 14px;
  padding-right: 14px;
  animation: h10-drift 64s linear infinite;
  animation-play-state: paused;
}
.h10-eco__row--b .h10-eco__track { animation-name: h10-drift-back; animation-duration: 82s; }
.h10-eco__belt.running .h10-eco__track { animation-play-state: running; }
@keyframes h10-drift { to { transform: translate3d(-100%, 0, 0); } }
@keyframes h10-drift-back { from { transform: translate3d(-100%, 0, 0); } to { transform: none; } }
.h10-chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(10, 16, 32, .5);
  border: 1px solid var(--h10-line);
  color: var(--story-ink-soft);
  transition: border-color .4s var(--h10-ease);
}
.h10-chip:hover { border-color: rgba(165, 216, 255, .32); }
.h10-chip svg { width: 19px; height: 19px; fill: none; stroke: #8fb4dd; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.h10-chip b { font-size: 14px; font-weight: 600; letter-spacing: .01em; white-space: nowrap; }
.h10-chip i {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(154, 168, 199, .9);
  border: 1px solid rgba(165, 216, 255, .16);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}
.h10-chip .h10-chip__badge--native, .h10-chip i.h10-chip__badge--native { color: #67e0b9; border-color: rgba(103, 224, 185, .35); }
.h10-eco__cta { display: flex; justify-content: center; margin-top: clamp(26px, 3vw, 40px); }
/* Entrées : les deux rangées glissent depuis les bords opposés */
.h10-eco__row { opacity: 0; transition: opacity 1s var(--h10-ease), transform 1s var(--h10-ease); }
.h10-eco__row--a { transform: translateX(44px); }
.h10-eco__row--b { transform: translateX(-44px); }
.h10-eco__belt.running .h10-eco__row { opacity: 1; transform: none; }

/* ---------- Preuve : citation dessinée ---------- */
.h10-proof { padding: clamp(56px, 8vw, 120px) 0; }
.h10-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.h10-proof__quote { margin: 0; }
.h10-proof__mark { width: clamp(44px, 4vw, 60px); margin-bottom: 18px; overflow: visible; }
.h10-proof__mark path {
  fill: none;
  stroke: url(#h10-grad-x);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 1s var(--h10-ease) .15s;
}
.h10-proof__quote .h10-proof__mark path:last-child { transition-delay: .45s; }
.h10-proof__quote blockquote {
  margin: 0 0 16px;
  font-family: var(--cb-display-font);
  font-weight: 300;
  letter-spacing: -0.036em;
  line-height: 1.24;
  font-size: clamp(26px, 2.8vw, 40px);
  color: var(--h10-ink);
  max-width: 30ch;
}
.h10-proof__quote figcaption { font-size: 14.5px; letter-spacing: .04em; color: var(--h10-muted); }
.h10-proof__facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.h10-proof__facts li { display: grid; gap: 4px; padding-left: 20px; border-left: 1px solid var(--h10-line); transition: border-color .5s var(--h10-ease); }
.h10-proof__facts li:hover { border-color: rgba(103, 224, 185, .45); }
.h10-proof__facts strong {
  font-family: var(--cb-display-font);
  font-weight: 300;
  letter-spacing: -0.03em;
  font-size: clamp(22px, 2vw, 30px);
  color: var(--h10-ink);
}
.h10-proof__facts span { font-size: 14.5px; color: var(--h10-muted); }

/* ---------- Tarifs : quatre tickets sur l'étagère ---------- */
.h10-pricing { padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 8vw, 120px); }
.h10-pricing__intro { text-align: center; }
.h10-pricing__intro .story-eyebrow { justify-content: center; }
.h10-pricing__intro .story-section-lead { margin: 0 auto; }
.h10-pricing__shelf {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(32px, 4vw, 54px);
}
.h10-ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 30px) clamp(20px, 2vw, 26px) clamp(18px, 2vw, 24px);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 21, 40, .88), rgba(8, 13, 26, .92));
  border: 1px solid var(--h10-line);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform .55s var(--h10-ease), border-color .55s var(--h10-ease), box-shadow .55s var(--h10-ease);
}
.h10-ticket::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 42%;
  height: 2px;
  background: var(--cb-accent-gradient);
  opacity: 0;
  transition: opacity .3s ease;
}
.h10-ticket:hover, .h10-ticket:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(103, 224, 185, .35);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .45);
}
.h10-ticket:hover::after { opacity: 1; animation: h10-sweep 1.1s var(--h10-ease) forwards; }
@keyframes h10-sweep { to { transform: translateX(340%); } }
.h10-ticket:focus-visible { outline: 2px solid #42bbdf; outline-offset: 3px; }
.h10-ticket__icon { display: block; width: 46px; margin-bottom: 14px; }
.h10-ticket__icon svg { width: 100%; height: auto; }
.h10-ticket__hex { fill: none; stroke: rgba(165, 216, 255, .4); stroke-width: 2.4; }
.h10-ticket__glyph { fill: rgba(203, 227, 255, .88); }
.h10-ticket__glyph--line { fill: none; stroke: rgba(203, 227, 255, .88); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.h10-ticket h3 { margin: 0 0 12px; font-size: 19px; font-weight: 650; letter-spacing: .01em; color: var(--story-ink); }
.h10-ticket__from { margin: 0; font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(154, 168, 199, .8); }
.h10-ticket__price { margin: 2px 0 12px; display: flex; align-items: baseline; gap: 7px; }
.h10-ticket__price strong {
  font-family: var(--cb-display-font);
  font-weight: 300;
  letter-spacing: -0.04em;
  font-size: clamp(28px, 2.4vw, 36px);
  color: var(--h10-ink);
}
.h10-ticket__price small { font-size: 12.5px; color: var(--h10-muted); }
.h10-ticket__text { margin: 0 0 18px; font-size: 14px; line-height: 1.5; color: var(--h10-muted); flex: 1; }
.h10-ticket__cta { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #a5d8ff; }
.h10-ticket__cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .35s var(--h10-ease); }
.h10-ticket:hover .h10-ticket__cta svg { transform: translateX(4px); }
/* Entrée : levée en cascade avec une pointe de rotation qui se pose */
.h10-ticket.h10-reveal { transform: translateY(34px) rotate(.8deg); }
.h10-ticket.h10-reveal:nth-of-type(even) { transform: translateY(34px) rotate(-.8deg); }
.h10-ticket.h10-reveal:nth-of-type(2) { transition-delay: .09s; }
.h10-ticket.h10-reveal:nth-of-type(3) { transition-delay: .18s; }
.h10-ticket.h10-reveal:nth-of-type(4) { transition-delay: .27s; }
.h10-ticket.h10-reveal.in { transform: none; }
.h10-ticket.h10-reveal.in.settled { transition-delay: 0s; }
.h10-pricing__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: clamp(26px, 3vw, 40px);
  padding: 18px 24px;
  border: 1px solid var(--h10-line);
  border-radius: 16px;
  background: rgba(10, 16, 32, .38);
}
.h10-pricing__trust p { margin: 0; display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--story-ink-soft); flex: 1 1 340px; }
.h10-pricing__trust p svg { flex: none; width: 30px; height: 30px; fill: none; stroke: #67e0b9; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.h10-pricing__trust p strong { font-weight: 650; color: var(--story-ink); }
.h10-pricing__trust > span { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--h10-muted); }
.h10-pricing__trust > span svg { width: 20px; height: 20px; fill: none; stroke: #8fb4dd; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Partenaires : trois volets qui se redressent ---------- */
.h10-partners { padding: clamp(56px, 8vw, 120px) 0; }
.h10-partners__grid {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.h10-partners__intro .story-eyebrow svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.h10-partners__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px; }
.h10-partners__expert { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 550; color: #a5d8ff; text-decoration: none; }
.h10-partners__expert svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .35s var(--h10-ease); }
.h10-partners__expert:hover svg { transform: translateX(4px); }
.h10-partners__panels { display: grid; gap: 14px; perspective: 1100px; }
.h10-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 18px;
  row-gap: 4px;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--h10-panel);
  border: 1px solid var(--h10-line);
  color: inherit;
  text-decoration: none;
  transition: transform .55s var(--h10-ease), border-color .55s var(--h10-ease), opacity .9s var(--h10-ease);
}
.h10-panel:hover { transform: translateX(6px); border-color: rgba(165, 216, 255, .32); }
.h10-panel:focus-visible { outline: 2px solid #42bbdf; outline-offset: 3px; }
.h10-panel__icon { position: relative; grid-row: 1 / 4; width: 54px; height: 58px; display: grid; place-items: center; align-self: center; }
.h10-panel__hex { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(165, 216, 255, .35); stroke-width: 2.2; }
.h10-panel.in .h10-panel__hex { animation: h10-hex 6.5s ease-in-out infinite -2.2s; }
@keyframes h10-hex { 50% { opacity: .55; } }
.h10-panel__glyph { position: relative; width: 22px; height: 22px; fill: none; stroke: #cbe3ff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.h10-panel h3 { margin: 2px 0 0; font-size: 16.5px; font-weight: 650; color: var(--story-ink); }
.h10-panel p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--h10-muted); }
.h10-panel__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; font-size: 13px; font-weight: 600; color: #a5d8ff; }
.h10-panel__link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .35s var(--h10-ease); }
.h10-panel:hover .h10-panel__link svg { transform: translateX(4px); }
/* Entrée : le volet se redresse (perspective) */
.h10-panel.h10-reveal { opacity: 0; transform: rotateX(9deg) translateY(26px); transform-origin: 50% 0; }
.h10-panel.h10-reveal:nth-of-type(2) { transition-delay: .1s; }
.h10-panel.h10-reveal:nth-of-type(3) { transition-delay: .2s; }
.h10-panel.h10-reveal.in { opacity: 1; transform: none; }
.h10-panel.h10-reveal.in.settled { transition-delay: 0s; }

/* ---------- FAQ : titre collant, accordéon calme ---------- */
.h10-faq { padding: clamp(50px, 7vw, 110px) 0; }
.h10-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.h10-faq__intro { position: sticky; top: 130px; }
.h10-faq__list details { border-bottom: 1px solid rgba(165, 216, 255, .12); }
.h10-faq__list details:first-of-type { border-top: 1px solid rgba(165, 216, 255, .12); }
.h10-faq__list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 21px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 550;
  color: var(--story-ink);
  transition: color .3s ease;
}
.h10-faq__list summary::-webkit-details-marker { display: none; }
.h10-faq__list summary:hover { color: #eaf6ff; }
.h10-faq__list summary:focus-visible { outline: 2px solid #42bbdf; outline-offset: 3px; border-radius: 6px; }
.h10-faq__list summary svg { flex: none; width: 18px; height: 18px; fill: none; stroke: #8fb4dd; stroke-width: 2; transition: transform .45s var(--h10-ease); }
.h10-faq__list details[open] summary svg { transform: rotate(45deg); }
.h10-faq__body p { margin: 0; padding: 0 4px 20px; max-width: 68ch; font-size: 15px; line-height: 1.55; color: var(--h10-muted); }
.h10-faq__list details[open] .h10-faq__body p { animation: h10-faq-open .5s var(--h10-ease); }
@keyframes h10-faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
/* Entrée FAQ : fondu décalé par item */
.h10-faq__list details { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--h10-ease), transform .7s var(--h10-ease); transition-delay: calc(var(--i, 0) * 90ms); }
.h10-faq__list.in details { opacity: 1; transform: none; }
.h10-faq__list.in.settled details { transition-delay: 0ms; }
.h10-faq__list.h10-reveal, .h10-faq__list.h10-reveal.in { opacity: 1; transform: none; }

/* ---------- Diagnostic : le terminus du fil ---------- */
.h10-cta { padding-bottom: clamp(84px, 10vw, 150px); }
.h10-link--final { margin-bottom: -14px; }
.h10-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(30px, 4.6vw, 60px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 22, 44, .92), rgba(7, 12, 24, .95));
  border: 1px solid rgba(165, 216, 255, .16);
  overflow: hidden;
}
.h10-cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 42% at 50% 0%, rgba(86, 126, 255, .14), transparent 65%);
  pointer-events: none;
}
.h10-cta__plug {
  position: absolute;
  top: 0;
  left: calc(50% - 32px);
  width: 64px;
  height: 2.5px;
  background: var(--cb-accent-gradient);
  opacity: .35;
  transition: opacity .8s var(--h10-ease);
}
.h10-plugged .h10-cta__plug { opacity: 1; animation: h10-plug 6s ease-in-out infinite .8s; }
@keyframes h10-plug { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
.h10-cta__copy { position: relative; }
.h10-cta__copy h2 {
  margin: 12px 0 14px;
  font-family: var(--cb-display-font);
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  line-height: var(--cb-display-leading);
  font-size: var(--cb-title-section-side);
  color: var(--h10-ink);
}
.h10-cta__dot { width: 8px; height: 8px; border-radius: 50%; background: #67e0b9; box-shadow: 0 0 12px rgba(103, 224, 185, .7); animation: h10-breathe 4.4s ease-in-out infinite -1s; }
.h10-cta__lead { margin: 0 0 18px; font-weight: var(--cb-lead-weight); letter-spacing: var(--cb-lead-tracking); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.45; color: var(--cb-lead-ink-dark); max-width: 52ch; }
.h10-cta__proofs { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; }
.h10-cta__proofs li { display: flex; align-items: baseline; gap: 10px; font-size: 14.5px; color: var(--story-ink-soft); }
.h10-cta__proofs svg { flex: none; align-self: center; width: 16px; height: 16px; fill: none; stroke: #67e0b9; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.h10-cta__btn { position: relative; }
.h10-cta__btn::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  box-shadow: 0 0 0 3px rgba(103, 224, 185, .35), 0 0 34px rgba(103, 224, 185, .4);
  opacity: 0;
  pointer-events: none;
}
.h10-plugged .h10-cta__btn::after { animation: h10-btn-pulse 1.3s var(--h10-ease) .4s 1; }
@keyframes h10-btn-pulse { 0% { opacity: 0; } 30% { opacity: 1; } 100% { opacity: 0; } }
.h10-cta__journey {
  position: relative;
  border: 1px solid rgba(165, 216, 255, .14);
  border-radius: 20px;
  background: rgba(5, 10, 20, .45);
  padding: clamp(20px, 2.4vw, 30px);
}
.h10-cta__journey-head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 12px 16px; margin-bottom: 18px; }
.h10-cta__journey-head > div { flex: 1 1 240px; }
.h10-cta__journey-head p { margin: 0 0 4px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(154, 168, 199, .85); }
.h10-cta__journey-head h3 { margin: 0; font-size: 19px; font-weight: 550; line-height: 1.3; color: var(--story-ink); }
.h10-cta__journey-head > span { flex: none; font-size: 11.5px; font-weight: 650; letter-spacing: .05em; text-transform: uppercase; color: #67e0b9; border: 1px solid rgba(103, 224, 185, .35); border-radius: 999px; padding: 5px 11px; }
.h10-cta__steps { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 14px; }
.h10-cta__step {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 16, 32, .5);
  border: 1px solid rgba(165, 216, 255, .1);
  opacity: .35;
  transform: translateY(8px);
  transition: opacity .7s var(--h10-ease), transform .7s var(--h10-ease), border-color .7s var(--h10-ease);
  transition-delay: calc(var(--i, 0) * 220ms + 350ms);
}
.in .h10-cta__step { opacity: 1; transform: none; }
.in.settled .h10-cta__step { transition-delay: 0ms; }
.h10-cta__step-number { font-size: 12px; font-weight: 650; letter-spacing: .06em; color: #8fb4dd; }
.h10-cta__step-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(66, 187, 223, .1); }
.h10-cta__step-icon svg { width: 18px; height: 18px; fill: none; stroke: #a5d8ff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.h10-cta__step h4 { margin: 0 0 2px; font-size: 14.5px; font-weight: 600; color: var(--story-ink); }
.h10-cta__step p { margin: 0; font-size: 13px; color: var(--h10-muted); }
.h10-cta__outcome { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; background: rgba(103, 224, 185, .07); border: 1px solid rgba(103, 224, 185, .22); }
.h10-cta__outcome-icon { display: grid; place-items: center; flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(103, 224, 185, .15); }
.h10-cta__outcome-icon svg { width: 15px; height: 15px; fill: none; stroke: #67e0b9; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.h10-cta__outcome span { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(154, 168, 199, .85); }
.h10-cta__outcome strong { font-size: 14.5px; font-weight: 600; color: var(--story-ink); }

/* Correction état powered du chip hold (masque libellés, montre confirmation) */
.h10-platform.is-h10-powered .h10-hold__text b,
.h10-platform.is-h10-powered .h10-hold__text > span:not(.h10-hold__done) { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .h10-station { width: calc(50% - 52px); }
  .h10-station__node { right: -59px; }
  .h10-station--alt .h10-station__node { right: auto; left: -59px; }
  .h10-proof__grid { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
  .h10-pricing__shelf { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .h10-partners__grid { grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: 40px; }
}
@media (max-width: 900px) {
  .h10-caps__thread { left: 13px; transform: none; }
  .h10-station, .h10-station--alt { width: auto; align-self: stretch; margin-left: 44px; }
  .h10-station__node, .h10-station--alt .h10-station__node { left: -38px; right: auto; top: 30px; }
  .h10-station__num, .h10-station--alt .h10-station__num { left: auto; right: 6px; font-size: 58px; top: -30px; }
  .h10-station.h10-reveal, .h10-station--alt.h10-reveal { transform: translateX(22px); }
  .h10-station.h10-reveal.in, .h10-station--alt.h10-reveal.in { transform: none; }
  .h10-proof__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .h10-partners__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .h10-faq__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .h10-faq__intro { position: static; }
  .h10-cta__card { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 700px) {
  .h10-pricing__shelf { grid-template-columns: minmax(0, 1fr); }
  .h10-ticket.h10-reveal, .h10-ticket.h10-reveal:nth-of-type(even) { transform: translateY(26px); }
  .h10-ticket.h10-reveal.in { transform: none; }
  .h10-link { height: 72px; width: 46vw; }
  .h10-hold { position: static; transform: none; margin: 14px auto 0; width: fit-content; max-width: calc(100% - 8px); }
  .h10-platform.is-h10-powered .h10-hold { transform: scale(.95); }
  .h10-eco__track { gap: 10px; padding-right: 10px; }
  .h10-chip { padding: 10px 14px; }
  .h10-chip i { display: none; }
  .h10-pricing__trust { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .h10-statement__lead, .h10-cta__lead { font-size: 16.5px; }
  .h10-station__card { padding: 20px 18px 16px; }
  .h10-cta__step { grid-template-columns: auto minmax(0, 1fr); }
  .h10-cta__step-number { display: none; }
}
@media (max-height: 620px) {
  .h10-hold { display: none; }
}
@media (pointer: coarse) {
  .h10-station__links a { min-height: 44px; align-items: center; }
  .h10-faq__list summary { min-height: 48px; }
  .h10-ticket__cta, .h10-panel__link, .h10-partners__expert { min-height: 44px; display: inline-flex; align-items: center; }
  .h10-hold__btn { width: 72px; height: 72px; }
}

/* ---------- Onglet caché : tout se met en pause ---------- */
body.h10-paused [class^="h10-"], body.h10-paused [class*=" h10-"],
body.h10-paused [class^="h10-"]::before, body.h10-paused [class*=" h10-"]::before,
body.h10-paused [class^="h10-"]::after, body.h10-paused [class*=" h10-"]::after {
  animation-play-state: paused !important;
}

/* ---------- Reduced motion : états finaux, rien ne bouge ---------- */
@media (prefers-reduced-motion: reduce) {
  .h10-reveal, .h10-reveal [style*="--i"], .h10-ticket.h10-reveal, .h10-panel.h10-reveal,
  .h10-faq__list details, .h10-cta__step, .h10-eco__row {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .h10-thread__draw { stroke-dashoffset: 0 !important; }
  .h10-thread__node { opacity: 1 !important; transform: none !important; animation: none !important; }
  .h10-env__glow, .h10-particles i, .h10-station__status i, .h10-cta__dot,
  .h10-panel.in .h10-panel__hex, .h10-eco__track { animation: none !important; }
  .h10-particles { display: none; }
  .h10-eco__belt { -webkit-mask-image: none; mask-image: none; }
  .h10-eco__row { flex-wrap: wrap; justify-content: center; }
  .h10-eco__track { min-width: 0; flex-wrap: wrap; justify-content: center; }
  .h10-eco__row .h10-eco__track + .h10-eco__track { display: none; }
  .h10-hold { display: none !important; }
  .h10-platform.is-h10-off .story-control__network,
  .h10-platform.is-h10-off .story-control__metrics { opacity: 1 !important; filter: none !important; }
  .h10-platform.is-h10-powered .story-control__service,
  .h10-platform.is-h10-powered .story-control__metrics article { animation: none !important; }
  .h10-cta__plug { opacity: 1; animation: none !important; }
  .h10-plugged .h10-cta__btn::after { animation: none !important; }
  .h10-faq__list details[open] .h10-faq__body p { animation: none !important; }
  .h10-ticket:hover::after { animation: none !important; opacity: 0; }
}

/* ---------- Bascule reduced motion en direct (classe posée par JS) ---------- */
html.h10-rm .h10-reveal, html.h10-rm .h10-reveal [style*="--i"], html.h10-rm .h10-ticket.h10-reveal,
html.h10-rm .h10-panel.h10-reveal, html.h10-rm .h10-faq__list details, html.h10-rm .h10-cta__step,
html.h10-rm .h10-eco__row {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
html.h10-rm .h10-thread__draw { stroke-dashoffset: 0 !important; }
html.h10-rm .h10-thread__node { opacity: 1 !important; transform: none !important; animation: none !important; }
html.h10-rm .h10-env__glow, html.h10-rm .h10-particles i, html.h10-rm .h10-station__status i,
html.h10-rm .h10-cta__dot, html.h10-rm .h10-panel.in .h10-panel__hex, html.h10-rm .h10-eco__track { animation: none !important; }
html.h10-rm .h10-particles { display: none; }
html.h10-rm .h10-eco__belt { -webkit-mask-image: none; mask-image: none; }
html.h10-rm .h10-eco__row, html.h10-rm .h10-eco__track { flex-wrap: wrap; justify-content: center; min-width: 0; }
html.h10-rm .h10-eco__row .h10-eco__track + .h10-eco__track { display: none; }
html.h10-rm .h10-hold { display: none !important; }
html.h10-rm .h10-platform.is-h10-off .story-control__network,
html.h10-rm .h10-platform.is-h10-off .story-control__metrics { opacity: 1 !important; filter: none !important; }
html.h10-rm .h10-cta__plug { opacity: 1; animation: none !important; }
