/* Lancement de Neoo : film en premier, puis parcours explicatif en six actes construit en DOM et SVG.
   Source de vérité : scripts/generate-neoo-launch-10k.mjs + docs/design-neoo-launch-10k.md.
   Le film joue en aperçu silencieux et redémarre avec le son au clic. La boucle qui suit utilise uniquement
   opacity, transform et la progression de traits SVG. */

.launch10k-page {
  --lx-night: #070b1a;
  --lx-night-deep: #04060f;
  --lx-night-soft: #111a3c;
  --lx-canvas: #f6f8ff;
  --lx-panel: #ffffff;
  --lx-paper: #e9efff;
  --lx-ink: #0f1430;
  --lx-ink-soft: #4a5273;
  --lx-cream: #f3f6ff;
  --lx-cream-soft: rgba(243, 246, 255, .78);
  --lx-blue: #2f5cf0;
  --lx-blue-bright: #4a7bff;
  --lx-blue-deep: #1d3fb8;
  --lx-mint: #1e8a62;
  --lx-amber: #c2661a;
  --lx-line: rgba(15, 20, 48, .13);
  --lx-line-strong: rgba(15, 20, 48, .3);
  --lx-line-night: rgba(243, 246, 255, .14);
  --lx-ease: cubic-bezier(.23, 1, .32, 1);
  --lx-ease-soft: cubic-bezier(.16, 1, .3, 1);
  --lx-subnav-h: 59px;
  --lx-stage-top: calc(var(--partner-overview-header-h, 84px) + var(--lx-subnav-h));
  --lx-display: "Cerebri Sans", "Segoe UI", system-ui, sans-serif;
  --lx-mono: ui-monospace, "Cascadia Mono", Consolas, monospace;
  --lx-tshadow-dark: 0 1px 2px rgba(3, 5, 16, .95), 0 3px 12px rgba(3, 5, 16, .78), 0 10px 44px rgba(3, 5, 16, .8);
  --lx-shell: min(calc(100% - 96px), 1240px);
  background: var(--lx-canvas);
  color: var(--lx-ink);
}

.launch10k-page [hidden] { display: none !important; }

html:has(body.launch10k-page),
body.launch10k-page {
  overflow-x: hidden;
  overflow-x: clip;
}

.launch10k-page :where(a, button, summary):focus-visible {
  outline: 3px solid var(--lx-blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.launch10k-page .lx-hero :where(a, button):focus-visible,
.launch10k-page .lx-static-hero :where(a, button):focus-visible,
.launch10k-page .lx-section--night :where(a, button, summary):focus-visible { outline-color: var(--lx-blue-bright); }

/* ---------- L'environnement fixe (un seul calque, toute la page) ---------- */
.lx-env {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 34% at 14% 16%, rgba(47, 92, 240, .07), transparent 70%),
    radial-gradient(40% 30% at 88% 82%, rgba(47, 92, 240, .05), transparent 70%);
}

.lx-env i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lx-blue);
  opacity: .22;
}

.lx-env i:nth-child(1) { top: 24%; left: 5%; }
.lx-env i:nth-child(2) { top: 56%; left: 95%; width: 4px; height: 4px; }
.lx-env i:nth-child(3) { top: 86%; left: 14%; width: 3px; height: 3px; }

@media (prefers-reduced-motion: no-preference) {
  .lx-env i { animation: lx-drift 76s var(--lx-ease) infinite alternate; }
  .lx-env i:nth-child(2) { animation-duration: 92s; animation-delay: -31s; }
  .lx-env i:nth-child(3) { animation-duration: 64s; animation-delay: -47s; }

  @keyframes lx-drift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(26px, -56px, 0); }
  }
}

body.lx-paused *,
body.lx-paused *::before,
body.lx-paused *::after { animation-play-state: paused !important; }

.launch10k-page main { position: relative; z-index: 1; background: transparent; }

.launch10k-page .lx-stage,
.launch10k-page .lx-static-hero { z-index: 1; }

/* ---------- Base du parcours épinglé, sans média dérivé du film ---------- */
.lx-hero {
  position: relative;
  background: var(--lx-night);
}

.lx-stage {
  position: sticky;
  top: var(--lx-stage-top);
  height: calc(100svh - var(--lx-stage-top));
  overflow: hidden;
  isolation: isolate;
  background: var(--lx-night);
  color: var(--lx-cream);
}

.lx-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(243, 246, 255, .18);
  border-radius: 999px;
  background: rgba(4, 6, 15, .52);
  backdrop-filter: blur(10px);
  color: var(--lx-cream-soft);
  font-size: 12.5px;
  font-weight: 600;
}

.lx-chips li i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lx-blue-bright);
  box-shadow: 0 0 8px rgba(74, 123, 255, .8);
}

/* Boutons : le bleu Neoo en dose rare (la seule action), le fantôme reste calme. */
.lx-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--lx-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: none;
  cursor: pointer;
  transition: transform 160ms var(--lx-ease), box-shadow 180ms var(--lx-ease), border-color 180ms var(--lx-ease), background-color 180ms var(--lx-ease);
}

.lx-btn svg,
.lx-link svg,
.lx-more a svg,
.lx-piece__link svg,
.lx-product__open svg,
.lx-final__builder a svg {
  flex: none;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--lx-ease);
}

.lx-btn span { white-space: nowrap; }

.lx-btn--primary {
  color: #fff;
  background: linear-gradient(120deg, var(--lx-blue-bright), var(--lx-blue-deep));
  box-shadow: 0 14px 32px rgba(47, 92, 240, .3);
}

.lx-btn--ghost {
  color: var(--lx-ink);
  border-color: var(--lx-line-strong);
  background: rgba(255, 255, 255, .85);
}

.lx-hero .lx-btn--ghost,
.lx-static-hero .lx-btn--ghost,
.lx-section--night .lx-btn--ghost {
  color: var(--lx-cream);
  border-color: rgba(243, 246, 255, .42);
  background: rgba(4, 6, 15, .4);
}

.lx-band--light .lx-btn--ghost {
  color: var(--lx-ink);
  border-color: var(--lx-line-strong);
  background: rgba(255, 255, 255, .85);
}

@media (hover: hover) and (pointer: fine) {
  .lx-btn:hover { transform: translateY(-2px); }
  .lx-btn:hover svg { transform: translateX(3px); }
  .lx-btn--primary:hover { box-shadow: 0 18px 38px rgba(47, 92, 240, .42); }
  .lx-btn--ghost:hover { border-color: var(--lx-blue); }
  .lx-hero .lx-btn--ghost:hover,
  .lx-static-hero .lx-btn--ghost:hover,
  .lx-section--night .lx-btn--ghost:hover { border-color: var(--lx-blue-bright); }
}

@media (pointer: coarse) {
  .lx-btn { min-height: 44px; }
}

/* L'indice de scroll */
.lx-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  opacity: var(--cue, 1);
  transition: opacity 400ms var(--lx-ease);
  color: var(--lx-cream-soft);
  font-family: var(--lx-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: var(--lx-tshadow-dark);
}

.lx-cue i {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--lx-blue-bright), transparent);
  display: block;
}

.lx-stage[data-theme="light"] .lx-cue { color: var(--lx-ink-soft); text-shadow: none; }

@media (prefers-reduced-motion: no-preference) {
  .lx-cue i { animation: lx-cue-drop 2.4s var(--lx-ease) -1.2s infinite; transform-origin: top; }

  @keyframes lx-cue-drop {
    0%, 100% { transform: scaleY(.4); opacity: .4; }
    50% { transform: scaleY(1); opacity: 1; }
  }
}

@media (max-height: 560px) {
  .lx-cue, .lx-chips { display: none; }
}

/* ---------- Le parcours original : une demande traverse la boucle opérationnelle ---------- */
.lx-hero {
  height: 760vh;
  background:
    radial-gradient(70% 55% at 76% 45%, rgba(47, 92, 240, .2), transparent 72%),
    var(--lx-night);
}

.lx-stage {
  top: var(--lx-stage-top);
  height: calc(100svh - var(--lx-stage-top));
  background:
    radial-gradient(82% 70% at 78% 48%, rgba(47, 92, 240, .14), transparent 70%),
    linear-gradient(135deg, var(--lx-night-deep), var(--lx-night) 58%, #0c1430);
}

.lx-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .2;
  background-image:
    linear-gradient(rgba(143, 176, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 176, 255, .09) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}

.lx-stage__layout {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, .84fr) minmax(540px, 1.16fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  width: min(calc(100% - 96px), 1560px);
  margin-inline: auto;
  padding: 24px 0 58px;
}

.lx-stage__copy {
  display: grid;
  min-width: 0;
}

.lx-band {
  grid-area: 1 / 1;
  position: relative;
  max-width: 520px;
  opacity: var(--op, 0);
  pointer-events: none;
  color: var(--lx-cream);
  will-change: transform, opacity;
}

.lx-band::before { content: none; }
.lx-band.lx-is-on { pointer-events: auto; }

.lx-band .lx-kicker {
  display: block;
  margin: 0 0 16px;
  color: #8fb0ff;
  font-family: var(--lx-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: none;
}

.lx-band h2 {
  margin: 0;
  color: var(--lx-cream);
  font-family: var(--lx-display);
  font-weight: 300;
  font-size: clamp(40px, 3.7vw, 62px);
  letter-spacing: -.052em;
  line-height: 1.06;
  text-shadow: none;
}

.lx-band .lx-sub {
  margin: 20px 0 0;
  max-width: 43ch;
  color: var(--lx-cream-soft);
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.55;
  text-shadow: none;
}

/* Chaque acte assemble ses mots selon sa propre logique, puis garde un plateau lisible. */
.lx-title-visual {
  display: block;
  padding-bottom: .13em;
  margin-bottom: -.13em;
}

.lx-title-word {
  --wk: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 2.9), 1);
  display: inline-block;
  opacity: var(--wk);
  will-change: transform, opacity;
}

.lx-band .lx-kicker {
  --copy-k: clamp(0, calc((var(--k, 0) - .04) * 3.6), 1);
  opacity: var(--copy-k);
  transform: translate3d(calc((1 - var(--copy-k)) * -18px), 0, 0);
}

.lx-band .lx-sub {
  --copy-k: clamp(0, calc((var(--k, 0) - .34) * 2.5), 1);
  opacity: var(--copy-k);
  transform: translate3d(0, calc((1 - var(--copy-k)) * 16px), 0);
}

.lx-band__proof {
  --proof-k: clamp(0, calc((var(--k, 0) - .48) * 2.35), 1);
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: fit-content;
  margin: 20px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(143, 176, 255, .24);
  border-radius: 999px;
  background: rgba(9, 17, 42, .66);
  color: #b9c9ee;
  font-family: var(--lx-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.3;
  opacity: var(--proof-k);
  transform: translate3d(calc((1 - var(--proof-k)) * -12px), 0, 0);
}

.lx-band__proof i {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: #72dcae;
  box-shadow: 0 0 12px rgba(114, 220, 174, .68);
}

.lx-band-motion--signal {
  transform: translate3d(calc((1 - var(--in, 0)) * -20px + var(--out, 0) * 16px), 0, 0);
}

.lx-band-motion--signal .lx-title-word {
  --wo: clamp(0, calc((var(--k, 0) - var(--th, 0) - .2) * 4.6), 1);
  transform: scale(calc(.72 + .4 * var(--wk) - .12 * var(--wo)));
}

.lx-band-motion--context {
  transform: translate3d(0, calc((1 - var(--in, 0)) * 18px + var(--out, 0) * -14px), 0);
}

.lx-band-motion--context .lx-title-word {
  transform: translate3d(0, calc((1 - var(--wk)) * var(--jy)), 0);
}

.lx-band-motion--context .lx-title-word:nth-child(even) {
  transform: translate3d(0, calc((1 - var(--wk)) * var(--jy) * -1), 0);
}

.lx-band-motion--plan {
  transform: translate3d(calc((1 - var(--in, 0)) * -16px), calc(var(--out, 0) * -15px), 0);
}

.lx-band-motion--plan .lx-title-word {
  transform: translate3d(calc((1 - var(--wk)) * -34px), calc((1 - var(--wk)) * var(--i) * 1.4px), 0);
}

.lx-band-motion--approval {
  transform: scale(calc(.975 + .025 * var(--in, 0) - .018 * var(--out, 0)));
}

.lx-band-motion--approval .lx-title-word:nth-child(odd) {
  transform: translate3d(calc((1 - var(--wk)) * -38px), 0, 0);
}

.lx-band-motion--approval .lx-title-word:nth-child(even) {
  transform: translate3d(calc((1 - var(--wk)) * 38px), 0, 0);
}

.lx-band-motion--forge {
  transform: translate3d(0, calc(var(--out, 0) * -14px), 0) scale(calc(.97 + .03 * var(--in, 0)));
}

.lx-band-motion--forge .lx-title-word {
  transform: translate3d(calc((1 - var(--wk)) * var(--jx)), calc((1 - var(--wk)) * var(--jy)), 0) rotate(calc((1 - var(--wk)) * var(--jr)));
}

.lx-band-motion--outcome {
  transform: translate3d(0, calc((1 - var(--in, 0)) * 22px), 0) scale(calc(.96 + .04 * var(--in, 0) - .02 * var(--out, 0)));
}

.lx-band-motion--outcome .lx-title-word {
  transform: translate3d(0, calc((1 - var(--wk)) * 26px), 0) scale(calc(.9 + .1 * var(--wk)));
}

.lx-band .lx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  --action-k: clamp(0, calc((var(--k, 0) - .54) * 2.3), 1);
  opacity: var(--action-k);
  transform: translate3d(0, calc((1 - var(--action-k)) * 14px), 0);
}

.lx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  --action-k: clamp(0, calc((var(--k, 0) - .64) * 2.8), 1);
  opacity: var(--action-k);
  transform: translate3d(0, calc((1 - var(--action-k)) * 10px), 0);
}

.lx-visual {
  display: grid;
  min-width: 0;
  align-self: center;
  gap: 16px;
}

.lx-motion {
  position: relative;
  height: clamp(360px, 58vh, 560px);
  overflow: hidden;
  border: 1px solid rgba(143, 176, 255, .28);
  border-radius: 24px;
  background:
    radial-gradient(70% 80% at 50% 100%, rgba(47, 92, 240, .18), transparent 70%),
    rgba(5, 9, 25, .92);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .05);
  isolation: isolate;
}

.lx-motion::before {
  content: "";
  position: absolute;
  inset: 52px 0 0;
  z-index: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(143, 176, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 176, 255, .09) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 78%);
}

.lx-motion__chrome,
.lx-static-visual__chrome {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(143, 176, 255, .16);
  color: rgba(243, 246, 255, .64);
  font-family: var(--lx-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lx-motion__chrome b,
.lx-static-visual__chrome b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9bfef;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.lx-motion__chrome b i,
.lx-static-visual__chrome b i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60d6a2;
  box-shadow: 0 0 12px rgba(96, 214, 162, .8);
}

.lx-motion__canvas {
  position: absolute;
  inset: 52px 0 0;
  z-index: 1;
}

.lx-scene {
  position: absolute;
  inset: 0;
  opacity: var(--op, 0);
  pointer-events: none;
  will-change: transform, opacity;
}

.lx-scene--signal {
  transform: translate3d(calc((1 - var(--in, 0)) * 34px + var(--out, 0) * -22px), 0, 0);
}

.lx-scene--context {
  transform: scale(calc(.96 + .04 * var(--in, 0) - .018 * var(--out, 0)));
}

.lx-scene--plan {
  transform: translate3d(0, calc((1 - var(--in, 0)) * 26px + var(--out, 0) * -20px), 0);
}

.lx-scene--approval {
  transform: scale(calc(.975 + .025 * var(--in, 0)));
}

.lx-scene--forge {
  transform: translate3d(calc((1 - var(--in, 0)) * 20px), calc(var(--out, 0) * -18px), 0) scale(calc(.965 + .035 * var(--in, 0)));
}

.lx-scene--outcome {
  transform: translate3d(0, calc((1 - var(--in, 0)) * -18px), 0) scale(calc(.94 + .06 * var(--in, 0) - .018 * var(--out, 0)));
}

.lx-scene__top,
.lx-ui-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--lx-ink-soft);
  font-family: var(--lx-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lx-scene__top > b {
  color: var(--lx-blue-deep);
  font-weight: 700;
}

.lx-signal-card,
.lx-plan-card,
.lx-approval-card,
.lx-forge-blueprint,
.lx-outcome-card {
  position: absolute;
  color: var(--lx-ink);
  border: 1px solid rgba(143, 176, 255, .3);
  border-radius: 18px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
}

.lx-signal-card {
  top: 9%;
  right: 7%;
  left: 7%;
  padding: clamp(20px, 3vw, 32px);
}

.lx-ui-line { padding-bottom: 18px; border-bottom: 1px solid var(--lx-line); }
.lx-ui-line > span { display: inline-flex; align-items: center; gap: 8px; }
.lx-ui-line > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--lx-blue); box-shadow: 0 0 12px rgba(47, 92, 240, .45); }
.lx-ui-line time { color: #697397; font: inherit; }

.lx-signal-card__sender {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.lx-signal-card__sender > b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--lx-night);
  color: #fff;
  font-family: var(--lx-display);
  font-size: 18px;
}

.lx-signal-card__sender > span { display: grid; gap: 2px; }
.lx-signal-card__sender strong { font-size: 14px; }
.lx-signal-card__sender small { color: var(--lx-ink-soft); font-size: 11px; }

.lx-signal-card__request {
  margin: 22px 0;
  max-width: 18ch;
  font-family: var(--lx-display);
  font-weight: 300;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.lx-signal-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 0;
}

.lx-signal-card__meta div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--lx-line);
  border-radius: 10px;
  background: #f6f8ff;
}

.lx-signal-card__meta dt { font-size: 13px; font-weight: 700; }
.lx-signal-card__meta dd { margin: 3px 0 0; color: var(--lx-ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.lx-signal-card__route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #697397;
  font-family: var(--lx-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
}

.lx-signal-card__route i {
  height: 2px;
  background: linear-gradient(90deg, var(--lx-blue), #80a2ff);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.lx-signal-card__route strong { color: var(--lx-blue-deep); }

.lx-context-map {
  position: absolute;
  inset: 14% 5% 6%;
}

.lx-scene--context > .lx-scene__top {
  position: absolute;
  top: 6%;
  right: 7%;
  left: 7%;
  color: #9cb1dc;
}

.lx-scene--context > .lx-scene__top b { color: #8fb0ff; }
.lx-context-map svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.lx-context-map path { fill: none; stroke: #6f93f7; stroke-width: 1.4; stroke-dasharray: 1; stroke-dashoffset: 1; vector-effect: non-scaling-stroke; }

.lx-context-map__core,
.lx-context-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
}

.lx-context-map__core {
  top: 54%;
  left: 50%;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(111, 147, 247, .56);
  border-radius: 50%;
  background: radial-gradient(circle, #203e9b, #0c1738 72%);
  box-shadow: 0 0 50px rgba(47, 92, 240, .32);
  color: #fff;
  transform: translate(-50%, -50%);
}

.lx-context-map__core span { display: grid; width: 31px; height: 31px; place-items: center; margin-bottom: -7px; border-radius: 9px; background: var(--lx-blue); font-weight: 700; }
.lx-context-map__core strong { font-size: 13px; }
.lx-context-map__core small { color: #8fa6da; font-family: var(--lx-mono); font-size: 8px; letter-spacing: .12em; }

.lx-context-node {
  min-width: 116px;
  padding: 11px 13px;
  border: 1px solid rgba(143, 176, 255, .25);
  border-radius: 11px;
  background: rgba(13, 24, 57, .94);
  box-shadow: 0 15px 34px rgba(0, 0, 0, .22);
}

.lx-context-node small { color: #8fa6da; font-family: var(--lx-mono); font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; }
.lx-context-node strong { margin-top: 4px; color: #fff; font-size: 12.5px; }
.lx-context-node--1 { top: 3%; left: 2%; }
.lx-context-node--2 { top: -2%; left: 50%; transform: translateX(-50%); }
.lx-context-node--3 { top: 3%; right: 1%; }
.lx-context-node--4 { bottom: 0; left: 3%; }
.lx-context-node--5 { right: 2%; bottom: 0; }

.lx-plan-card,
.lx-approval-card,
.lx-forge-blueprint,
.lx-outcome-card {
  top: 7%;
  right: 7%;
  bottom: 7%;
  left: 7%;
  padding: clamp(20px, 2.6vw, 30px);
}

.lx-plan-card h3,
.lx-approval-card h3 {
  margin: 22px 0 20px;
  font-family: var(--lx-display);
  font-weight: 300;
  font-size: clamp(25px, 2.7vw, 36px);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.lx-plan-card ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lx-plan-card li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 12px;
  border: 1px solid var(--lx-line);
  border-radius: 11px;
  background: #f7f9ff;
}

.lx-plan-card li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: #e7edff;
  color: var(--lx-blue-deep);
  font-family: var(--lx-mono);
  font-size: 9px;
  font-weight: 700;
}

.lx-plan-card li svg,
.lx-approval-card__action svg,
.lx-forge-blueprint footer svg,
.lx-outcome-card li svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.lx-plan-card li p { margin: 0; font-size: 13px; font-weight: 600; }
.lx-plan-card li > i { width: 36px; height: 5px; border-radius: 999px; background: #dbe3f9; }
.lx-plan-card li[data-state="done"] > i { background: #76d7ae; }
.lx-plan-card li[data-state="wait"] { border-color: rgba(194, 102, 26, .28); background: #fff9f2; }
.lx-plan-card li[data-state="wait"] > span { color: var(--lx-amber); background: #ffead8; }

.lx-plan-card footer,
.lx-forge-blueprint footer,
.lx-outcome-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: var(--lx-ink-soft);
  font-family: var(--lx-mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lx-plan-card footer strong { color: var(--lx-amber); }

.lx-approval-card {
  border-color: rgba(111, 147, 247, .5);
  background: linear-gradient(145deg, rgba(255, 255, 255, .99), #edf2ff);
}

.lx-approval-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.lx-approval-card dl div { padding: 16px 12px; border: 1px solid var(--lx-line); border-radius: 12px; background: #fff; }
.lx-approval-card dt { color: var(--lx-ink-soft); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.lx-approval-card dd { margin: 7px 0 0; font-size: clamp(14px, 1.5vw, 19px); font-weight: 700; }

.lx-approval-card__action {
  position: absolute;
  right: clamp(20px, 2.6vw, 30px);
  bottom: clamp(20px, 2.6vw, 30px);
  left: clamp(20px, 2.6vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--lx-night);
  color: #fff;
  font-size: 12px;
}

.lx-approval-card__action span { display: inline-flex; align-items: center; gap: 9px; }
.lx-approval-card__action strong { color: #72dcae; font-family: var(--lx-mono); font-size: 9px; letter-spacing: .1em; }

.lx-forge-blueprint {
  overflow: hidden;
  border-color: rgba(111, 147, 247, .55);
  background: linear-gradient(145deg, rgba(8, 16, 40, .98), rgba(14, 30, 78, .98));
  color: #fff;
}

.lx-forge-blueprint .lx-scene__top { color: #8fa6da; }
.lx-forge-blueprint .lx-scene__top b { color: #82a4ff; }
.lx-forge-blueprint__prompt { display: flex; gap: 10px; margin: 24px 0; color: #fff; font-family: var(--lx-mono); font-size: clamp(13px, 1.35vw, 17px); line-height: 1.45; }
.lx-forge-blueprint__prompt span { color: #72dcae; }

.lx-forge-blueprint__parts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.lx-forge-blueprint__parts div { position: relative; overflow: hidden; padding: 16px; border: 1px solid rgba(143, 176, 255, .18); border-radius: 11px; background: rgba(255, 255, 255, .05); }
.lx-forge-blueprint__parts small { color: #7188ba; font-family: var(--lx-mono); font-size: 9px; }
.lx-forge-blueprint__parts strong { display: block; margin-top: 8px; font-size: 13px; }
.lx-forge-blueprint__parts i { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, #72dcae, #7399ff); transform: scaleX(0); transform-origin: left center; will-change: transform; }
.lx-forge-blueprint footer { color: #8fa6da; }
.lx-forge-blueprint footer span { display: inline-flex; align-items: center; gap: 7px; color: #72dcae; }
.lx-forge-blueprint footer strong { color: #fff; }

.lx-outcome-card__hero {
  display: grid;
  margin: 20px 0;
}

.lx-outcome-card__hero strong { font-family: var(--lx-display); font-weight: 300; font-size: clamp(38px, 5vw, 68px); letter-spacing: -.055em; line-height: 1; }
.lx-outcome-card__hero span { margin-top: 7px; color: var(--lx-ink-soft); font-size: 13px; }
.lx-outcome-card ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 0; padding: 0; list-style: none; }
.lx-outcome-card li { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border: 1px solid var(--lx-line); border-radius: 10px; background: #f6f8ff; }
.lx-outcome-card li > i { display: grid; width: 28px; height: 28px; flex: none; place-items: center; border-radius: 8px; background: #daf5e8; color: var(--lx-mint); }
.lx-outcome-card li span { display: grid; gap: 2px; }
.lx-outcome-card li small { color: var(--lx-ink-soft); font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.lx-outcome-card li strong { font-size: 12px; }
.lx-outcome-card footer { padding-top: 14px; border-top: 1px solid var(--lx-line); }
.lx-outcome-card footer strong { color: var(--lx-blue-deep); }

/* Signal: la demande frappe le cadre, puis ses preuves se verrouillent. */
.lx-scene--signal .lx-signal-card {
  --part: clamp(0, calc((var(--k, 0) - .02) * 4.2), 1);
  opacity: var(--part);
  transform: translate3d(calc((1 - var(--part)) * 58px), 0, 0) scale(calc(.965 + .035 * var(--part)));
}

.lx-scene--signal .lx-ui-line {
  --part: clamp(0, calc((var(--k, 0) - .1) * 4.4), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * -12px), 0);
}

.lx-scene--signal .lx-signal-card__sender {
  --part: clamp(0, calc((var(--k, 0) - .18) * 4.2), 1);
  opacity: var(--part);
  transform: translate3d(calc((1 - var(--part)) * -18px), 0, 0);
}

.lx-scene--signal .lx-signal-card__request {
  --part: clamp(0, calc((var(--k, 0) - .25) * 3.8), 1);
  opacity: var(--part);
  transform: scale(calc(.88 + .12 * var(--part)));
  transform-origin: left center;
}

.lx-scene--signal .lx-signal-card__meta div {
  opacity: clamp(0, calc((var(--k, 0) - .34 - var(--i, 0) * .06) * 4.2), 1);
  transform: translate3d(0, calc((1 - clamp(0, calc((var(--k, 0) - .34 - var(--i, 0) * .06) * 4.2), 1)) * 14px), 0);
}

.lx-scene--signal .lx-signal-card__meta div:nth-child(1) { --i: 0; }
.lx-scene--signal .lx-signal-card__meta div:nth-child(2) { --i: 1; }
.lx-scene--signal .lx-signal-card__meta div:nth-child(3) { --i: 2; }

.lx-scene--signal .lx-signal-card__route {
  --part: clamp(0, calc((var(--k, 0) - .5) * 3.4), 1);
  opacity: var(--part);
}

.lx-scene--signal .lx-signal-card__route i {
  transform: scaleX(clamp(0, calc((var(--k, 0) - .54) * 2.8), 1));
}

/* Contexte: le noyau se pose, les objets arrivent dans l'ordre, les liens se tracent. */
.lx-scene--context > .lx-scene__top {
  --part: clamp(0, calc((var(--k, 0) - .03) * 4.6), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * -12px), 0);
}

.lx-scene--context .lx-context-map__core {
  --part: clamp(0, calc((var(--k, 0) - .08) * 4.1), 1);
  opacity: var(--part);
  transform: translate(-50%, -50%) scale(calc(.68 + .32 * var(--part)));
}

.lx-context-map__core::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  box-shadow: 0 0 54px rgba(74, 123, 255, .7);
  opacity: 0;
}

.lx-scene--context .lx-context-node {
  --part: clamp(0, calc((var(--k, 0) - .2 - var(--i, 0) * .065) * 4.4), 1);
  opacity: var(--part);
  transform: translate3d(calc((1 - var(--part)) * var(--node-x, 0px)), calc((1 - var(--part)) * var(--node-y, 18px)), 0) scale(calc(.9 + .1 * var(--part)));
}

.lx-scene--context .lx-context-node--1 { --node-x: 24px; --node-y: 18px; }
.lx-scene--context .lx-context-node--2 {
  --node-y: 22px;
  transform: translateX(-50%) translate3d(0, calc((1 - var(--part)) * var(--node-y)), 0) scale(calc(.9 + .1 * var(--part)));
}
.lx-scene--context .lx-context-node--3 { --node-x: -24px; --node-y: 18px; }
.lx-scene--context .lx-context-node--4 { --node-x: 24px; --node-y: -18px; }
.lx-scene--context .lx-context-node--5 { --node-x: -24px; --node-y: -18px; }

.lx-scene--context .lx-context-map path {
  --draw-k: clamp(0, calc((var(--k, 0) - .16 - var(--i, 0) * .045) * 2.7), 1);
  opacity: calc(.12 + .88 * var(--draw-k));
  stroke-dashoffset: calc(1 - var(--draw-k));
}

/* Plan: la liste Murphy se construit comme un ordre d'execution. */
.lx-scene--plan .lx-plan-card {
  --part: clamp(0, calc((var(--k, 0) - .02) * 4.2), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * 34px), 0) scale(calc(.97 + .03 * var(--part)));
}

.lx-scene--plan .lx-scene__top,
.lx-scene--plan .lx-plan-card h3 {
  --part: clamp(0, calc((var(--k, 0) - .12) * 4), 1);
  opacity: var(--part);
  transform: translate3d(calc((1 - var(--part)) * -20px), 0, 0);
}

.lx-scene--plan .lx-plan-card li {
  --part: clamp(0, calc((var(--k, 0) - .26 - var(--i, 0) * .105) * 4), 1);
  opacity: var(--part);
  transform: translate3d(calc((1 - var(--part)) * -42px), 0, 0);
}

.lx-scene--plan .lx-plan-card li > span {
  transform: scale(calc(.76 + .24 * var(--part)));
}

.lx-scene--plan .lx-plan-card footer {
  --part: clamp(0, calc((var(--k, 0) - .58) * 3.6), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * 10px), 0);
}

/* Approbation: deux volets s'ouvrent et rendent visible la seule decision humaine. */
.lx-approval-gate {
  --gate-k: clamp(0, calc((var(--k, 0) - .12) * 2.45), 1);
  position: absolute;
  inset: 7%;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(143, 176, 255, .35);
  border-radius: 18px;
  pointer-events: none;
}

.lx-approval-gate i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 51%;
  background: linear-gradient(145deg, #0b1534, #162c6c);
  opacity: calc(1 - .42 * var(--gate-k));
}

.lx-approval-gate i:first-child {
  left: 0;
  transform: translate3d(calc(var(--gate-k) * -102%), 0, 0);
}

.lx-approval-gate i:nth-child(2) {
  right: 0;
  transform: translate3d(calc(var(--gate-k) * 102%), 0, 0);
}

.lx-approval-gate span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  color: #a8bdec;
  font-family: var(--lx-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  white-space: nowrap;
  opacity: calc(1 - var(--gate-k));
  transform: translate(-50%, -50%) scale(calc(1 - .08 * var(--gate-k)));
}

.lx-scene--approval .lx-approval-card {
  --part: clamp(0, calc((var(--k, 0) - .14) * 3), 1);
  z-index: 1;
  opacity: var(--part);
  transform: scale(calc(.94 + .06 * var(--part)));
}

.lx-scene--approval .lx-scene__top,
.lx-scene--approval .lx-approval-card h3 {
  --part: clamp(0, calc((var(--k, 0) - .32) * 3.7), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * -14px), 0);
}

.lx-scene--approval .lx-approval-card dl div {
  --part: clamp(0, calc((var(--k, 0) - .43 - var(--i, 0) * .075) * 4.2), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * 16px), 0);
}

.lx-approval-card__rule {
  --part: clamp(0, calc((var(--k, 0) - .57) * 3.5), 1);
  margin: 17px 0 0;
  color: var(--lx-ink-soft);
  font-size: 12px;
  line-height: 1.45;
  opacity: var(--part);
  transform: translate3d(calc((1 - var(--part)) * -14px), 0, 0);
}

.lx-scene--approval .lx-approval-card__action {
  --part: clamp(0, calc((var(--k, 0) - .66) * 3.2), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * 18px), 0);
}

/* Forge: quatre blocs arrivent des coins, leurs barres valident la construction. */
.lx-scene--forge .lx-forge-blueprint {
  --part: clamp(0, calc((var(--k, 0) - .02) * 4.1), 1);
  opacity: var(--part);
  transform: scale(calc(.92 + .08 * var(--part)));
}

.lx-scene--forge .lx-scene__top,
.lx-scene--forge .lx-forge-blueprint__prompt {
  --part: clamp(0, calc((var(--k, 0) - .12) * 4), 1);
  opacity: var(--part);
  transform: translate3d(calc((1 - var(--part)) * -26px), 0, 0);
}

.lx-scene--forge .lx-forge-blueprint__parts div {
  --part: clamp(0, calc((var(--k, 0) - .27 - var(--i, 0) * .075) * 4.1), 1);
  opacity: var(--part);
  transform: translate3d(calc((1 - var(--part)) * var(--forge-x, -24px)), calc((1 - var(--part)) * var(--forge-y, -18px)), 0) scale(calc(.88 + .12 * var(--part)));
}

.lx-scene--forge .lx-forge-blueprint__parts div:nth-child(even) { --forge-x: 24px; }
.lx-scene--forge .lx-forge-blueprint__parts div:nth-child(n+3) { --forge-y: 18px; }

.lx-scene--forge [data-lx-grow] {
  transform: scaleX(clamp(0, calc((var(--k, 0) - .48 - var(--i, 0) * .055) * 3.3), 1));
}

.lx-scene--forge .lx-forge-blueprint footer {
  --part: clamp(0, calc((var(--k, 0) - .63) * 3.5), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * 12px), 0);
}

/* Resultat: la mesure monte d'abord, puis les quatre preuves et la trace. */
.lx-scene--outcome .lx-outcome-card {
  --part: clamp(0, calc((var(--k, 0) - .02) * 4.1), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * -22px), 0) scale(calc(.9 + .1 * var(--part)));
}

.lx-scene--outcome .lx-scene__top {
  --part: clamp(0, calc((var(--k, 0) - .1) * 4.3), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * -12px), 0);
}

.lx-scene--outcome .lx-outcome-card__hero {
  --part: clamp(0, calc((var(--k, 0) - .18) * 3.8), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * 24px), 0) scale(calc(.82 + .18 * var(--part)));
  transform-origin: left center;
}

.lx-scene--outcome .lx-outcome-card li {
  --part: clamp(0, calc((var(--k, 0) - .36 - var(--i, 0) * .075) * 4.1), 1);
  opacity: var(--part);
  transform: translate3d(0, calc((1 - var(--part)) * 18px), 0);
}

.lx-scene--outcome .lx-outcome-card li > i {
  transform: scale(calc(.72 + .28 * var(--part)));
}

.lx-scene--outcome .lx-outcome-card footer {
  --part: clamp(0, calc((var(--k, 0) - .64) * 3.4), 1);
  opacity: var(--part);
  transform: translate3d(calc((1 - var(--part)) * -18px), 0, 0);
}

@media (prefers-reduced-motion: no-preference) {
  .lx-band.lx-is-on .lx-band__proof i {
    animation: lx-proof-breathe 5.2s var(--lx-ease-soft) -1.4s infinite;
  }

  .lx-scene--context.lx-is-on .lx-context-map__core::after {
    animation: lx-core-breathe 5.8s var(--lx-ease-soft) -2.1s infinite;
  }

  @keyframes lx-proof-breathe {
    0%, 100% { opacity: .48; transform: scale(.82); }
    50% { opacity: 1; transform: scale(1.08); }
  }

  @keyframes lx-core-breathe {
    0%, 100% { opacity: .16; transform: scale(.88); }
    50% { opacity: .48; transform: scale(1.04); }
  }
}

.lx-chapters { position: relative; color: rgba(243, 246, 255, .46); }
.lx-chapters__track { position: absolute; top: 10px; right: 0; left: 0; height: 1px; overflow: hidden; background: rgba(143, 176, 255, .2); }
.lx-chapters__track i { display: block; width: 100%; height: 100%; background: #8fb0ff; transform: scaleX(0); transform-origin: left center; will-change: transform; }
.lx-chapters ol { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.lx-chapters li { display: grid; justify-items: start; gap: 7px; font-family: var(--lx-mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; transition: color 180ms var(--lx-ease), opacity 180ms var(--lx-ease); }
.lx-chapters li span { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid rgba(143, 176, 255, .32); border-radius: 50%; background: var(--lx-night); font-size: 8px; transition: border-color 180ms var(--lx-ease), background-color 180ms var(--lx-ease); }
.lx-chapters li b { padding-right: 5px; font-weight: 600; }
.lx-chapters li.is-past { color: rgba(169, 191, 239, .72); }
.lx-chapters li.is-active { color: #fff; }
.lx-chapters li.is-active span { border-color: #8fb0ff; background: var(--lx-blue); }

.lx-cue {
  bottom: 18px;
  color: rgba(243, 246, 255, .58);
  text-shadow: none;
}

.lx-stage[data-scene="6"] .lx-cue { color: rgba(243, 246, 255, .48); }

/* ---------- Lecture complète sans scrub sur petits écrans et reduced motion ---------- */
.lx-static-hero {
  display: none;
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(90% 32% at 92% 8%, rgba(47, 92, 240, .24), transparent 74%),
    linear-gradient(160deg, var(--lx-night-deep), var(--lx-night) 58%, #0c1430);
  color: var(--lx-cream);
}

.lx-static-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(143, 176, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 176, 255, .09) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(#000, transparent 76%);
}

.lx-static-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 760px);
  margin-inline: auto;
  padding: 48px 0 72px;
}

.lx-static-copy {
  display: block;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.lx-static-copy .lx-kicker {
  margin: 0 0 15px;
  color: var(--lx-blue-bright);
  font-family: var(--lx-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-shadow: none;
}

.lx-static-title {
  max-width: 620px;
  margin: 0;
  font-family: var(--lx-display);
  font-size: clamp(40px, 10vw, 68px);
  font-weight: 300;
  letter-spacing: -.052em;
  line-height: 1.06;
  text-shadow: none;
}

.lx-static-title em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(120deg, #8fb0ff, var(--lx-blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
}

.lx-static-copy .lx-lede {
  max-width: 54ch;
  margin: 18px 0 0;
  color: var(--lx-cream-soft);
  font-size: clamp(16px, 2.1vw, 21px);
  line-height: 1.55;
  text-shadow: none;
}

.lx-static-copy .lx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.lx-static-copy .lx-chips {
  --action-k: 1;
  display: flex;
  margin-top: 20px;
  opacity: 1;
  transform: none;
}

.lx-static-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(143, 176, 255, .28);
  border-radius: 18px;
  background: rgba(5, 9, 25, .9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

.lx-static-visual__chrome { grid-column: 1 / -1; min-height: 46px; padding-inline: 15px; font-size: 8.5px; }
.lx-static-visual__request,
.lx-static-visual__result { position: relative; z-index: 1; display: grid; align-content: center; min-height: 140px; padding: 18px; }
.lx-static-visual__request > span { display: flex; align-items: center; gap: 8px; color: #9db2df; font-family: var(--lx-mono); font-size: 10px; }
.lx-static-visual__request > span b { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 8px; background: var(--lx-blue); color: #fff; }
.lx-static-visual__request > strong { max-width: 21ch; margin-top: 13px; color: #fff; font-family: var(--lx-display); font-size: clamp(18px, 5vw, 25px); font-weight: 300; letter-spacing: -.035em; line-height: 1.1; }
.lx-static-visual__result { min-width: 145px; border-left: 1px solid rgba(143, 176, 255, .16); background: rgba(47, 92, 240, .12); }
.lx-static-visual__result span { color: #72dcae; font-family: var(--lx-mono); font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.lx-static-visual__result strong { margin-top: 9px; color: #fff; font-family: var(--lx-display); font-size: 24px; font-weight: 300; letter-spacing: -.04em; }
.lx-static-visual__result small { margin-top: 4px; color: #9db2df; font-size: 10px; }
.lx-static-visual > svg { position: absolute; right: 0; bottom: 0; left: 0; width: 100%; height: 20px; }
.lx-static-visual > svg path { fill: none; stroke: rgba(143, 176, 255, .48); stroke-width: 1; }
.lx-static-visual > svg circle { fill: #72dcae; }

.lx-static-flow {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.lx-static-flow > li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(143, 176, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
}

.lx-static-flow > li > span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(143, 176, 255, .32); border-radius: 50%; color: #8fb0ff; font-family: var(--lx-mono); font-size: 9px; }
.lx-static-flow small { color: #8fb0ff; font-family: var(--lx-mono); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.lx-static-flow h3 { margin: 7px 0 0; color: #fff; font-family: var(--lx-display); font-size: clamp(22px, 6vw, 30px); font-weight: 300; letter-spacing: -.045em; line-height: 1.08; }
.lx-static-flow p { margin: 10px 0 0; color: var(--lx-cream-soft); font-size: 14px; line-height: 1.55; }
.lx-static-flow__proof { display: block; margin-top: 12px; color: #9fb8ef; font-family: var(--lx-mono); font-size: 9.5px; letter-spacing: .04em; line-height: 1.4; }

@media (max-width: 1120px) and (min-width: 721px) {
  .lx-stage__layout { grid-template-columns: minmax(285px, .78fr) minmax(410px, 1.22fr); gap: 24px; width: min(calc(100% - 48px), 1560px); }
  .lx-band h2 { font-size: clamp(34px, 4.2vw, 47px); }
  .lx-band .lx-sub { font-size: 15px; }
  .lx-motion { border-radius: 18px; }
  .lx-chapters li b { display: none; }
}

@media (max-height: 760px) and (min-width: 721px) {
  .lx-stage__layout { padding-block: 14px 42px; }
  .lx-motion { height: clamp(320px, 57vh, 430px); }
  .lx-band h2 { font-size: clamp(32px, 3.5vw, 48px); }
  .lx-band .lx-sub { margin-top: 13px; font-size: 14.5px; line-height: 1.42; }
  .lx-band .lx-cta-row { margin-top: 18px; }
  .lx-chips { display: none; }
  .lx-cue { display: none; }
  .lx-signal-card { top: 5%; padding: 18px; }
  .lx-signal-card__sender { margin-top: 13px; }
  .lx-signal-card__request { margin-block: 13px; font-size: 25px; }
  .lx-signal-card__meta div { padding: 8px; }
  .lx-signal-card__route { margin-top: 11px; }
  .lx-plan-card h3, .lx-approval-card h3 { margin-block: 13px; font-size: 26px; }
  .lx-plan-card li { min-height: 46px; }
  .lx-plan-card footer, .lx-forge-blueprint footer, .lx-outcome-card footer { margin-top: 10px; }
  .lx-outcome-card__hero { margin-block: 12px; }
}

/* Les cinq gates : chaînes identiques dans neoo-launch-scrub.js. */
@media (max-width: 720px),
       (orientation: portrait) and (max-width: 1024px),
       (orientation: portrait) and (pointer: coarse),
       (orientation: landscape) and (pointer: coarse) and (max-height: 560px),
       (prefers-reduced-motion: reduce) {
  .lx-hero { display: none; }
  .lx-static-hero { display: block; }
}

/* ---------- Le site sous le settle ---------- */
.lx-section {
  position: relative;
  background: transparent;
}

.lx-shell {
  position: relative;
  width: var(--lx-shell);
  margin-inline: auto;
  padding: clamp(76px, 9vw, 132px) 0;
}

.lx-section--paper { background: linear-gradient(180deg, rgba(233, 239, 255, .8), rgba(246, 248, 255, 0) 56%); }

/* Les chapitres de nuit : le film et la grille des produits vivent dans le monde du carton final. */
.lx-section--night {
  background: radial-gradient(120% 80% at 50% 0%, var(--lx-night-soft), var(--lx-night) 62%);
  color: var(--lx-cream);
}

/* ---------- Ouverture film-first ---------- */
.lx-launch-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(55% 34% at 18% 14%, rgba(71, 91, 255, .34), transparent 72%),
    radial-gradient(46% 28% at 88% 27%, rgba(19, 190, 226, .16), transparent 74%),
    linear-gradient(165deg, #07102e 0%, var(--lx-night) 48%, #080718 100%);
}

.lx-launch-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image:
    linear-gradient(rgba(150, 174, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 174, 255, .12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(#000 0%, rgba(0, 0, 0, .72) 55%, transparent 94%);
}

.lx-launch-hero .lx-shell {
  width: min(calc(100% - 64px), 1280px);
  padding: clamp(76px, 8vw, 118px) 0 clamp(84px, 9vw, 132px);
}

.lx-launch-hero__copy {
  width: min(100%, 1080px);
  margin-inline: auto;
  text-align: center;
}

.lx-launch-hero__copy .lx-eyebrow {
  margin-bottom: 20px;
  color: #79dff1;
}

.lx-launch-hero__copy h1 {
  display: grid;
  margin: 0;
  font-family: var(--lx-display);
  font-size: clamp(50px, 7.1vw, 112px);
  font-weight: 300;
  letter-spacing: -.052em;
  line-height: .94;
  text-wrap: balance;
}

.lx-launch-hero__copy h1 span { display: block; }

.lx-launch-hero__accent {
  color: transparent;
  background: linear-gradient(105deg, #8ba6ff 8%, #58d8ed 50%, #f3f6ff 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lx-launch-hero__lead {
  max-width: 760px;
  margin: clamp(24px, 3vw, 36px) auto 0;
  color: rgba(243, 246, 255, .8);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.58;
  text-wrap: balance;
}

.lx-entry-actions { margin-top: 28px; }

.lx-launch-hero__copy .lx-entry-note {
  margin: 16px auto 12px;
  color: #d2dbef;
  font-size: 14px;
  line-height: 1.6;
}

.lx-entry-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: #d2eaff;
  text-underline-offset: 5px;
}

.lx-entry-shortcut svg,
.lx-demo-agenda svg {
  flex: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.lx-example-note {
  margin: 18px 0;
  font-size: 14px;
  line-height: 1.6;
}

.lx-launch-hero .lx-example-note { color: #d2dbef; }

.lx-priorities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.lx-priorities article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 2px solid var(--lx-blue-deep);
  padding-top: 24px;
}

.lx-priorities h3 {
  margin: 0;
  font-family: var(--lx-display);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.lx-priorities p { line-height: 1.65; }
.lx-priorities a { margin-top: auto; min-height: 44px; }

.lx-demo-agenda {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.lx-demo-agenda li { display: flex; align-items: center; gap: 8px; }

@media (max-width: 760px) {
  .lx-priorities { grid-template-columns: 1fr; gap: 28px; }
  .lx-entry-actions { flex-direction: column; align-items: stretch; }
  .lx-entry-actions .lx-btn span { white-space: normal; }
  .lx-entry-shortcut { font-size: 14px; }
  .lx-demo-agenda { flex-direction: column; align-items: flex-start; text-align: left; }
}

.lx-film-intro {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  align-items: end;
  gap: clamp(30px, 7vw, 96px);
  margin: clamp(74px, 8vw, 112px) 0 28px;
}

.lx-film-intro .lx-eyebrow { margin-bottom: 10px; color: #79dff1; }

.lx-film-intro h2 {
  margin: 0;
  font-family: var(--lx-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.lx-film-intro > p {
  max-width: 56ch;
  margin: 0;
  color: rgba(243, 246, 255, .72);
  font-size: 16px;
  line-height: 1.6;
}

/* La phrase de transition place la boucle détaillée après le film et les trois piliers. */
.lx-journey-intro {
  overflow: hidden;
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(72, 112, 255, .18), transparent 68%),
    linear-gradient(180deg, #eef2ff, #f8f9ff);
}

.lx-journey-intro .lx-shell { padding-block: clamp(80px, 10vw, 150px); }

.lx-journey-intro__copy {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
}

.lx-journey-intro__copy h2 {
  margin: 0;
  font-family: var(--lx-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -.052em;
  line-height: .98;
}

.lx-journey-intro__copy h2 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(105deg, var(--lx-blue-deep), var(--lx-blue-bright), #1b9fb8);
  -webkit-background-clip: text;
  background-clip: text;
}

.lx-journey-intro__copy > p:not(.lx-eyebrow) {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--lx-ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
}

.lx-journey-intro .lx-chips {
  --action-k: 1;
  justify-content: center;
  margin-top: 30px;
  opacity: 1;
  transform: none;
}

.lx-journey-intro .lx-chips li {
  border-color: rgba(47, 92, 240, .16);
  background: rgba(255, 255, 255, .72);
  color: var(--lx-ink-soft);
}

.lx-compat-anchor {
  display: block;
  height: 0;
  scroll-margin-top: calc(var(--partner-overview-header-h, 84px) + 24px);
}

/* Le rail signature : la ligne d'horizon de la Terre continue le long des chapitres. */
.lx-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(18px, calc((100% - 1240px) / 2 - 52px));
  width: 22px;
  pointer-events: none;
}

.lx-rail svg { width: 100%; height: 100%; overflow: visible; }

.lx-rail path {
  fill: none;
  stroke: rgba(47, 92, 240, .38);
  stroke-width: 1.6;
  stroke-dasharray: 1;
}

.lx-rail circle { fill: var(--lx-blue); }

.lx-js .lx-rail path { stroke-dashoffset: 1; }
.lx-js .lx-rail circle { opacity: 0; transition: opacity 600ms var(--lx-ease) 900ms; }
.lx-js .lx-section.in .lx-rail path { transition: stroke-dashoffset 1400ms var(--lx-ease); stroke-dashoffset: 0; }
.lx-js .lx-section.in .lx-rail circle { opacity: .9; }

@media (max-width: 1100px) {
  .lx-rail { display: none; }
}

/* Têtes de section */
.lx-head {
  max-width: 800px;
  margin: 0 0 clamp(34px, 4.5vw, 56px);
}

.lx-head .lx-eyebrow,
.lx-eyebrow {
  margin: 0 0 14px;
  color: var(--lx-blue-deep);
  font-family: var(--lx-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lx-head h2 {
  margin: 0;
  font-family: var(--lx-display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -.052em;
  line-height: 1.06;
}

.lx-head > p:not(.lx-eyebrow) {
  margin: 18px 0 0;
  max-width: 66ch;
  color: var(--lx-ink-soft);
  font-size: clamp(16px, 1.25vw, 18.5px);
  line-height: 1.6;
}

.lx-head--night .lx-eyebrow,
.lx-section--night .lx-eyebrow { color: var(--lx-blue-bright); }
.lx-head--night h2 { color: var(--lx-cream); }
.lx-head--night > p:not(.lx-eyebrow) { color: var(--lx-cream-soft); }

/* Entrées chorégraphiées (IntersectionObserver ajoute .in sur la section). */
.lx-js .lx-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.lx-js .lx-section.in .lx-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms var(--lx-ease), transform 700ms var(--lx-ease);
}

.lx-js .lx-section.in .lx-reveal.lx-d1 { transition-delay: 120ms; }
.lx-js .lx-section.in .lx-reveal.lx-d2 { transition-delay: 240ms; }
.lx-js .lx-section.in .lx-reveal.lx-d3 { transition-delay: 360ms; }

.lx-js .lx-section.is-settled .lx-reveal.lx-d1,
.lx-js .lx-section.is-settled .lx-reveal.lx-d2,
.lx-js .lx-section.is-settled .lx-reveal.lx-d3 { transition-delay: 0ms; }

.lx-panel-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-family: var(--lx-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-ink-soft);
}

.lx-panel-title i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lx-blue);
  box-shadow: 0 0 0 4px rgba(47, 92, 240, .16);
}

@media (prefers-reduced-motion: no-preference) {
  .lx-panel-title i { animation: lx-beacon 3.6s var(--lx-ease) infinite; }

  @keyframes lx-beacon {
    0%, 100% { box-shadow: 0 0 0 4px rgba(47, 92, 240, .16); }
    50% { box-shadow: 0 0 0 7px rgba(47, 92, 240, .07); }
  }
}

.lx-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.lx-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--lx-ink-soft);
}

.lx-list svg,
.lx-outcomes svg,
.lx-principles svg,
.lx-console__checks svg {
  flex: none;
  width: 16px;
  height: 16px;
  transform: translateY(2px);
  fill: none;
  stroke: var(--lx-mint);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lx-list--block svg { stroke: var(--lx-amber); }

.lx-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.lx-actions--start { justify-content: flex-start; margin-top: clamp(28px, 3vw, 40px); }

.lx-link,
.lx-more a,
.lx-final__builder a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lx-blue-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms var(--lx-ease);
}

.lx-more { margin: clamp(28px, 3vw, 40px) 0 0; }

@media (hover: hover) and (pointer: fine) {
  .lx-link:hover, .lx-more a:hover, .lx-final__builder a:hover { border-bottom-color: currentColor; }
  .lx-link:hover svg, .lx-more a:hover svg, .lx-final__builder a:hover svg { transform: translateX(3px); }
}

/* ---------- Le film de lancement : aperçu muet, vraie lecture au clic ---------- */
.lx-film {
  margin: 0;
  scroll-margin-top: calc(var(--lx-stage-top) + 20px);
}

.lx-film__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(173, 194, 255, .2);
  border-radius: 24px;
  background: var(--lx-night-deep);
  box-shadow: 0 42px 110px rgba(0, 0, 0, .56), 0 0 80px rgba(60, 91, 255, .13);
}

.lx-film__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--lx-night-deep);
}

.lx-film__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: clamp(20px, 3vw, 38px);
  border: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, transparent 46%, rgba(4, 6, 15, .74));
  color: var(--lx-cream);
  cursor: pointer;
  transition: opacity 360ms var(--lx-ease), visibility 0s 360ms;
}

.lx-film__play {
  display: grid;
  place-items: center;
  width: clamp(66px, 6vw, 88px);
  height: clamp(66px, 6vw, 88px);
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--lx-blue-bright), var(--lx-blue-deep));
  box-shadow: 0 18px 44px rgba(47, 92, 240, .45), 0 0 0 12px rgba(47, 92, 240, .16);
  transition: transform 220ms var(--lx-ease), box-shadow 220ms var(--lx-ease);
}

.lx-film__play svg { width: 36px; height: 36px; fill: #fff; transform: translateX(3px); }

.lx-film__cover-copy {
  display: grid;
  min-width: min(100%, 300px);
  gap: 7px;
  text-align: left;
  text-shadow: var(--lx-tshadow-dark);
}

.lx-film__cover-copy b { font-family: var(--lx-display); font-size: clamp(18px, 1.8vw, 25px); font-weight: 600; letter-spacing: -.02em; }
.lx-film__cover-copy small { font-family: var(--lx-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #8de7f4; }

@media (hover: hover) and (pointer: fine) {
  .lx-film__cover:hover .lx-film__play { transform: scale(1.06); box-shadow: 0 22px 52px rgba(47, 92, 240, .55), 0 0 0 16px rgba(47, 92, 240, .14); }
}

@media (prefers-reduced-motion: no-preference) {
  .lx-film__play::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(74, 123, 255, .5);
    animation: lx-ring 4.2s var(--lx-ease) -1.4s infinite;
  }

  @keyframes lx-ring {
    0% { transform: scale(.8); opacity: 0; }
    30% { opacity: .8; }
    100% { transform: scale(1.35); opacity: 0; }
  }
}

.lx-film__play { position: relative; }

.lx-js .lx-film[data-state="sound"] .lx-film__cover,
.lx-js .lx-film[data-state="sound-paused"] .lx-film__cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lx-js .lx-film[data-state="unavailable"] .lx-film__cover {
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(4, 6, 15, .08) 30%, rgba(4, 6, 15, .86));
}

.lx-js .lx-film[data-state="unavailable"] .lx-film__play,
.lx-js .lx-film[data-state="unavailable"] .lx-film__cover-copy small {
  display: none;
}

.lx-film__preview-badge {
  position: absolute;
  top: clamp(16px, 2vw, 26px);
  left: clamp(16px, 2vw, 26px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(4, 6, 15, .55);
  backdrop-filter: blur(12px);
  color: rgba(243, 246, 255, .84);
  font-family: var(--lx-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .13em;
}

.lx-film__preview-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #63dfef;
  box-shadow: 0 0 12px rgba(99, 223, 239, .8);
}

.lx-js .lx-film[data-state="sound"] .lx-film__preview-badge,
.lx-js .lx-film[data-state="sound-paused"] .lx-film__preview-badge,
.lx-js .lx-film[data-state="ended"] .lx-film__preview-badge,
.lx-js .lx-film[data-state="unavailable"] .lx-film__preview-badge { display: none; }

.lx-film__caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 4px 0;
  color: var(--lx-cream-soft);
  font-family: var(--lx-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lx-moments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(28px, 3.2vw, 44px) 0 0;
  padding: 0;
  list-style: none;
}

.lx-moment {
  display: grid;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 20px 20px 22px;
  border: 1px solid var(--lx-line-night);
  border-radius: 16px;
  background: rgba(243, 246, 255, .04);
  color: var(--lx-cream);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 200ms var(--lx-ease), background-color 200ms var(--lx-ease), transform 200ms var(--lx-ease);
}

.lx-moment time {
  font-family: var(--lx-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--lx-blue-bright);
}

.lx-moment strong { font-family: var(--lx-display); font-size: 19px; font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.lx-moment span { color: var(--lx-cream-soft); font-size: 14.5px; line-height: 1.5; }

@media (hover: hover) and (pointer: fine) {
  .lx-moment:hover { border-color: rgba(74, 123, 255, .6); background: rgba(74, 123, 255, .09); transform: translateY(-2px); }
}

/* ---------- Trois pièces, un seul système ---------- */
.lx-pieces {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lx-piece {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px 26px 30px;
  border: 1px solid var(--lx-line);
  border-radius: 20px;
  background: var(--lx-panel);
  color: var(--lx-ink);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(15, 20, 48, .06);
  transition: transform 220ms var(--lx-ease), box-shadow 220ms var(--lx-ease), border-color 220ms var(--lx-ease);
}

.lx-piece__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: var(--lx-paper);
  color: var(--lx-blue-deep);
}

.lx-piece__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.lx-piece small { font-family: var(--lx-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--lx-ink-soft); }
.lx-piece h3 { margin: 0; font-family: var(--lx-display); font-size: 26px; font-weight: 600; letter-spacing: -.03em; }
.lx-piece p { margin: 0; color: var(--lx-ink-soft); font-size: 15.5px; line-height: 1.55; }
.lx-piece__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--lx-blue-deep); font-weight: 600; }

@media (hover: hover) and (pointer: fine) {
  .lx-piece:hover { transform: translateY(-4px); border-color: rgba(47, 92, 240, .4); box-shadow: 0 26px 56px rgba(15, 20, 48, .1); }
  .lx-piece:hover .lx-piece__link svg { transform: translateX(3px); }
}

/* Entrée en cascade des enfants d'une grille (les cartes, les tuiles, les produits) */
.lx-js .lx-pieces > *,
.lx-js .lx-roles > *,
.lx-js .lx-products__group li,
.lx-js .lx-loop__steps li,
.lx-js .lx-steps ol li,
.lx-js .lx-map__node {
  opacity: 0;
  transform: translateY(18px);
}

.lx-js .lx-section.in .lx-pieces > *,
.lx-js .lx-section.in .lx-roles > *,
.lx-js .lx-section.in .lx-products__group li,
.lx-js .lx-section.in .lx-loop__steps li,
.lx-js .lx-section.in .lx-steps ol li,
.lx-js .lx-section.in .lx-map__node {
  opacity: 1;
  transform: none;
  transition: opacity 620ms var(--lx-ease), transform 620ms var(--lx-ease);
  transition-delay: calc(220ms + var(--i, 0) * 90ms);
}

.lx-js .lx-section.is-settled .lx-pieces > *,
.lx-js .lx-section.is-settled .lx-roles > *,
.lx-js .lx-section.is-settled .lx-products__group li,
.lx-js .lx-section.is-settled .lx-loop__steps li,
.lx-js .lx-section.is-settled .lx-steps ol li,
.lx-js .lx-section.is-settled .lx-map__node { transition-delay: 0ms; }

/* ---------- Le système : la carte métier, la boucle, les résultats ---------- */
.lx-system {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .95fr);
  gap: 22px;
  align-items: stretch;
}

.lx-map {
  padding: 22px 22px 26px;
  border: 1px solid var(--lx-line);
  border-radius: 22px;
  background: var(--lx-panel);
  box-shadow: 0 18px 44px rgba(15, 20, 48, .06);
}

.lx-map__label {
  margin: 0 0 12px;
  font-family: var(--lx-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-ink-soft);
}

.lx-map__canvas {
  position: relative;
  aspect-ratio: 900 / 520;
  border-radius: 16px;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(47, 92, 240, .08), transparent 70%),
    var(--lx-paper);
}

.lx-map__canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lx-map__canvas path {
  fill: none;
  stroke: rgba(47, 92, 240, .45);
  stroke-width: 1.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.lx-js .lx-map__canvas path { stroke-dashoffset: 1; opacity: 0; }
.lx-js .lx-section.in .lx-map__canvas path { stroke-dashoffset: 0; opacity: 1; transition: stroke-dashoffset 1300ms var(--lx-ease) 500ms, opacity 300ms var(--lx-ease) 500ms; }

.lx-map__center,
.lx-map__node {
  position: absolute;
  transform: translate(-50%, -50%);
}

.lx-map__center {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--lx-blue-bright), var(--lx-blue-deep));
  color: #fff;
  font-family: var(--lx-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: 0 14px 30px rgba(47, 92, 240, .35);
  white-space: nowrap;
}

.lx-map__node {
  display: grid;
  gap: 2px;
  min-width: 128px;
  padding: 10px 14px;
  border: 1px solid var(--lx-line);
  border-radius: 12px;
  background: var(--lx-panel);
  box-shadow: 0 10px 24px rgba(15, 20, 48, .08);
}

.lx-js .lx-section.in .lx-map__node { transform: translate(-50%, -50%); }
.lx-js .lx-map__node { transform: translate(-50%, calc(-50% + 14px)); }

.lx-map__node span { font-weight: 600; font-size: 14px; color: var(--lx-ink); }
.lx-map__node small { font-size: 12px; color: var(--lx-ink-soft); }

.lx-map__node--1 { left: 17.8%; top: 21.2%; }
.lx-map__node--2 { left: 50%; top: 15.4%; }
.lx-map__node--3 { left: 82.2%; top: 21.2%; }
.lx-map__node--4 { left: 20%; top: 78.8%; }
.lx-map__node--5 { left: 50%; top: 85.6%; }
.lx-map__node--6 { left: 80%; top: 78.8%; }

.lx-loop {
  display: grid;
  align-content: start;
  padding: 26px 26px 28px;
  border-radius: 22px;
  background: var(--lx-night);
  color: var(--lx-cream);
}

.lx-loop .lx-panel-title { color: var(--lx-cream-soft); }
.lx-loop .lx-panel-title i { background: var(--lx-blue-bright); box-shadow: 0 0 0 4px rgba(74, 123, 255, .2); }
.lx-loop h3 { margin: 0 0 20px; font-family: var(--lx-display); font-size: 26px; font-weight: 300; letter-spacing: -.04em; line-height: 1.1; }

.lx-loop__steps,
.lx-steps ol,
.lx-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.lx-loop__steps li,
.lx-steps ol li,
.lx-flow li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.lx-loop__steps li span,
.lx-steps ol li span,
.lx-flow li span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-family: var(--lx-mono);
  font-size: 12.5px;
  font-weight: 700;
}

.lx-loop__steps li span { background: rgba(74, 123, 255, .16); color: var(--lx-blue-bright); }
.lx-loop__steps li strong,
.lx-steps ol li strong,
.lx-flow li strong { display: block; font-family: var(--lx-display); font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.lx-loop__steps li p,
.lx-steps ol li p,
.lx-flow li p { margin: 4px 0 0; font-size: 14.5px; line-height: 1.5; }
.lx-loop__steps li p { color: var(--lx-cream-soft); }

.lx-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.lx-outcomes article {
  display: flex;
  gap: 12px;
  padding: 20px 22px;
  border: 1px solid var(--lx-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .7);
}

.lx-outcomes h3 { margin: 0 0 6px; font-family: var(--lx-display); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.lx-outcomes p { margin: 0; color: var(--lx-ink-soft); font-size: 14.5px; line-height: 1.5; }

/* ---------- Neoo Forge : la console du film, les étapes, les garde-fous ---------- */
.lx-forge {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.lx-console {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #0b1230;
  color: var(--lx-cream);
  box-shadow: 0 30px 70px rgba(15, 20, 48, .35);
}

.lx-console__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(243, 246, 255, .1);
  background: rgba(4, 6, 15, .4);
  font-family: var(--lx-mono);
  font-size: 12px;
  color: var(--lx-cream-soft);
}

.lx-console__bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(243, 246, 255, .2); }
.lx-console__bar span { margin-left: 10px; font-family: var(--lx-display); font-size: 15px; font-weight: 600; letter-spacing: -.02em; color: var(--lx-cream); }
.lx-console__bar span b { color: var(--lx-cream); font-weight: 700; }
.lx-console__bar small { margin-left: auto; font-size: 11.5px; letter-spacing: .06em; }

.lx-console__body {
  display: grid;
  gap: 14px;
  padding: 26px 24px 28px;
  font-family: var(--lx-mono);
  font-size: 14.5px;
  line-height: 1.55;
}

.lx-console__prompt { margin: 0; color: var(--lx-cream); font-size: 16px; }
.lx-console__prompt > span { color: var(--lx-blue-bright); }
.lx-console__caret { display: inline-block; width: 8px; height: 1.1em; margin-left: 4px; vertical-align: -.2em; background: var(--lx-blue-bright); }
.lx-console__line { margin: 0; color: var(--lx-cream-soft); }
.lx-console__line b { color: #8fb0ff; font-weight: 600; }
.lx-console__checks { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 6px 0 0; color: var(--lx-cream); }
.lx-console__checks span { display: inline-flex; align-items: baseline; gap: 6px; }
.lx-console__checks svg { stroke: #5ad19f; }

.lx-js .lx-console__body > * { opacity: 0; transform: translateY(8px); }
.lx-js .lx-section.in .lx-console__body > * { opacity: 1; transform: none; transition: opacity 520ms var(--lx-ease), transform 520ms var(--lx-ease); transition-delay: calc(400ms + var(--i, 0) * 420ms); }
.lx-js .lx-section.is-settled .lx-console__body > * { transition-delay: 0ms; }

@media (prefers-reduced-motion: no-preference) {
  .lx-console__caret { animation: lx-caret 1.1s steps(2, end) infinite; }

  @keyframes lx-caret {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
}

.lx-steps {
  padding: 26px 26px 28px;
  border: 1px solid var(--lx-line);
  border-radius: 22px;
  background: var(--lx-panel);
}

.lx-steps ol li span { background: var(--lx-paper); color: var(--lx-blue-deep); }
.lx-steps ol li p { color: var(--lx-ink-soft); }

.lx-guardrails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.lx-guardrails article {
  position: relative;
  padding: 26px 26px 28px 30px;
  border: 1px solid var(--lx-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .7);
}

.lx-guardrails article > span {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--lx-mono);
  font-size: 22px;
  line-height: 1;
}

.lx-guardrails__allow > span { color: var(--lx-mint); }
.lx-guardrails__block > span { color: var(--lx-amber); }
.lx-guardrails h3 { margin: 0 0 16px; font-family: var(--lx-display); font-size: 21px; font-weight: 600; letter-spacing: -.02em; }

/* ---------- Par rôle : cinq tuiles ---------- */
.lx-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.lx-roles article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 22px 26px;
  border: 1px solid var(--lx-line);
  border-radius: 18px;
  background: var(--lx-panel);
}

.lx-roles article > span { font-family: var(--lx-mono); font-size: 12px; color: var(--lx-blue-deep); }
.lx-roles small { font-family: var(--lx-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--lx-ink-soft); }
.lx-roles h3 { margin: 0; font-family: var(--lx-display); font-size: 20px; font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.lx-roles p { margin: 0; color: var(--lx-ink-soft); font-size: 14.5px; line-height: 1.5; }

/* ---------- Contrôle : la décision à valider (maintenir), puis la boucle gouvernée s'allume ---------- */
.lx-control {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.lx-decision {
  padding: 26px 26px 28px;
  border-radius: 22px;
  background: var(--lx-night);
  color: var(--lx-cream);
  box-shadow: 0 30px 70px rgba(15, 20, 48, .3);
}

.lx-decision .lx-panel-title { color: var(--lx-cream-soft); }
.lx-decision .lx-panel-title i { background: var(--lx-blue-bright); box-shadow: 0 0 0 4px rgba(74, 123, 255, .2); }
.lx-decision h3 { margin: 0 0 18px; font-family: var(--lx-display); font-size: 24px; font-weight: 300; letter-spacing: -.04em; line-height: 1.12; }
.lx-decision .lx-list li { color: var(--lx-cream-soft); }
.lx-decision .lx-list svg { stroke: #5ad19f; }

.lx-hold {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(243, 246, 255, .12);
}

.lx-holdbtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 50px;
  padding: 10px 20px 10px 12px;
  border: 1px solid rgba(74, 123, 255, .5);
  border-radius: 999px;
  background: rgba(74, 123, 255, .12);
  color: var(--lx-cream);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  transition: background-color 200ms var(--lx-ease), border-color 200ms var(--lx-ease);
}

.lx-holdbtn svg { width: 34px; height: 34px; transform: rotate(-90deg); }
.lx-holdbtn circle { fill: none; stroke-width: 3; }
.lx-holdbtn .lx-hold-track { stroke: rgba(243, 246, 255, .18); }
.lx-holdbtn .lx-hold-fill { stroke: var(--lx-blue-bright); stroke-linecap: round; stroke-dasharray: 76; stroke-dashoffset: calc(76 * (1 - var(--hold, 0))); }
.lx-control.is-done .lx-holdbtn { border-color: rgba(90, 209, 159, .7); background: rgba(90, 209, 159, .14); }
.lx-control.is-done .lx-holdbtn .lx-hold-fill { stroke: #5ad19f; }
.lx-hold-status { margin: 0; color: var(--lx-cream-soft); font-size: 14px; line-height: 1.5; }

@media (hover: hover) and (pointer: fine) {
  .lx-holdbtn:hover { background: rgba(74, 123, 255, .2); border-color: var(--lx-blue-bright); }
}

.lx-flow { align-content: start; padding: 6px 0 0; }
.lx-flow li { padding: 16px 18px; border: 1px solid var(--lx-line); border-radius: 16px; background: var(--lx-panel); transition: border-color 500ms var(--lx-ease), box-shadow 500ms var(--lx-ease), transform 500ms var(--lx-ease); }
.lx-flow li span { background: var(--lx-paper); color: var(--lx-blue-deep); transition: background-color 500ms var(--lx-ease), color 500ms var(--lx-ease); }
.lx-flow li p { color: var(--lx-ink-soft); }
.lx-control.is-done .lx-flow li { border-color: rgba(30, 138, 98, .45); box-shadow: 0 12px 28px rgba(30, 138, 98, .1); transform: translateX(6px); transition-delay: calc(var(--i, 0) * 160ms); }
.lx-control.is-done .lx-flow li span { background: var(--lx-mint); color: #fff; transition-delay: calc(var(--i, 0) * 160ms); }

.lx-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.lx-principles li { display: inline-flex; align-items: baseline; gap: 8px; color: var(--lx-ink-soft); font-size: 15px; font-weight: 600; }

/* ---------- Tous les produits : la grille de lancement (nuit) ---------- */
.lx-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
}

.lx-products__title {
  margin: 0 0 12px;
  font-family: var(--lx-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-cream-soft);
}

.lx-products__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.lx-product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "name open" "text open";
  gap: 4px 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--lx-line-night);
  border-radius: 16px;
  background: rgba(243, 246, 255, .04);
  color: var(--lx-cream);
  text-decoration: none;
  transition: border-color 200ms var(--lx-ease), background-color 200ms var(--lx-ease), transform 200ms var(--lx-ease);
}

.lx-product strong { grid-area: name; font-family: var(--lx-display); font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.lx-product span { grid-area: text; color: var(--lx-cream-soft); font-size: 14px; line-height: 1.45; }
.lx-product__open { grid-area: open; display: inline-flex; align-items: center; gap: 6px; color: var(--lx-blue-bright); font-size: 13px; font-weight: 600; white-space: nowrap; }
.lx-product--featured { border-color: rgba(74, 123, 255, .5); background: rgba(74, 123, 255, .1); }
.lx-product__badge { position: absolute; top: -9px; right: 16px; padding: 3px 9px; border-radius: 999px; background: var(--lx-blue-bright); color: #fff; font-family: var(--lx-mono); font-size: 10.5px; font-style: normal; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

@media (hover: hover) and (pointer: fine) {
  .lx-product:hover { border-color: rgba(74, 123, 255, .6); background: rgba(74, 123, 255, .12); transform: translateX(4px); }
  .lx-product:hover .lx-product__open svg { transform: translateX(3px); }
}

/* ---------- FAQ ---------- */
.lx-faq {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.lx-faq .lx-head { margin-bottom: 0; }

.lx-faq__items details {
  border-top: 1px solid var(--lx-line);
}

.lx-faq__items details:last-child { border-bottom: 1px solid var(--lx-line); }

.lx-faq__items summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  list-style: none;
  cursor: pointer;
  font-family: var(--lx-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.lx-faq__items summary::-webkit-details-marker { display: none; }

.lx-faq__items summary i {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--lx-line-strong);
  transition: transform 300ms var(--lx-ease), background-color 300ms var(--lx-ease);
}

.lx-faq__items summary i::before,
.lx-faq__items summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--lx-ink);
  transform: translate(-50%, -50%);
}

.lx-faq__items summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 300ms var(--lx-ease); }
.lx-faq__items details[open] summary i { background: var(--lx-paper); transform: rotate(45deg); }
.lx-faq__items details p { margin: 0 0 22px; padding-right: 40px; color: var(--lx-ink-soft); font-size: 15.5px; line-height: 1.6; }

/* ---------- L'appel final ---------- */
.lx-final .lx-shell { text-align: center; }
.lx-final .lx-shell > * { margin-inline: auto; }
.lx-final h2 { margin: 0; max-width: 20ch; font-family: var(--lx-display); font-weight: 300; font-size: clamp(34px, 4.2vw, 60px); letter-spacing: -.052em; line-height: 1.06; }
.lx-final .lx-shell > p:not(.lx-eyebrow):not(.lx-final__builder) { max-width: 60ch; margin-top: 18px; color: var(--lx-ink-soft); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; }
.lx-final .lx-actions { margin-top: 30px; }
.lx-final__builder { margin: 24px 0 0; color: var(--lx-ink-soft); font-size: 15px; }
.lx-final__builder a { margin-left: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .lx-band { max-width: 520px; }
  .lx-band h2 { font-size: clamp(34px, 3.6vw, 54px); }
}

@media (max-width: 1100px) {
  .lx-system,
  .lx-forge,
  .lx-control,
  .lx-faq { grid-template-columns: 1fr; }
  .lx-outcomes { grid-template-columns: 1fr; }
  .lx-map__node { min-width: 110px; padding: 8px 10px; }
  .lx-map__node span { font-size: 13px; }
  .lx-map__node small { font-size: 11.5px; }
}

@media (max-width: 860px) {
  .launch10k-page { --lx-shell: min(calc(100% - 48px), 1240px); }
  .lx-launch-hero .lx-shell { width: min(calc(100% - 40px), 1280px); padding-top: 64px; }
  .lx-launch-hero__copy h1 { font-size: clamp(44px, 12vw, 76px); line-height: .98; }
  .lx-launch-hero__lead { font-size: 17px; }
  .lx-film-intro { grid-template-columns: 1fr; gap: 18px; margin-top: 64px; }
  .lx-film-intro > p { max-width: 62ch; }
  .lx-pieces,
  .lx-moments,
  .lx-guardrails,
  .lx-products { grid-template-columns: 1fr; }
  .lx-map__canvas { aspect-ratio: auto; padding: 18px 16px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .lx-map__canvas svg { display: none; }
  .lx-map__center,
  .lx-map__node { position: static; transform: none !important; }
  .lx-map__center { grid-column: 1 / -1; justify-self: center; }
  .lx-film__frame { border-radius: 14px; }
  .lx-film__cover { flex-direction: column; align-items: center; justify-content: center; border-radius: 14px; }
  .lx-film__cover-copy { min-width: 0; text-align: center; }
  .lx-film__play { width: 72px; height: 72px; }
  .lx-film__play svg { width: 28px; height: 28px; }
}

@media (max-width: 560px) {
  .launch10k-page { --lx-shell: min(calc(100% - 32px), 1240px); }
  .lx-launch-hero .lx-shell { width: min(calc(100% - 24px), 1280px); padding: 54px 0 72px; }
  .lx-launch-hero__copy .lx-eyebrow { margin-bottom: 15px; }
  .lx-launch-hero__copy h1 { font-size: clamp(42px, 13vw, 58px); }
  .lx-launch-hero__lead { margin-top: 20px; font-size: 16px; line-height: 1.52; }
  .lx-film-intro { margin: 52px 4px 20px; }
  .lx-film-intro h2 { font-size: 29px; }
  .lx-film-intro > p { font-size: 14.5px; line-height: 1.5; }
  .lx-film__cover { gap: 12px; padding: 14px; }
  .lx-film__play { width: 58px; height: 58px; }
  .lx-film__play svg { width: 23px; height: 23px; }
  .lx-film__cover-copy b { font-size: 16px; }
  .lx-film__preview-badge { top: 10px; left: 10px; padding: 6px 8px; font-size: 8px; }
  .lx-journey-intro__copy h2 { font-size: clamp(44px, 13vw, 62px); }
  .lx-static-copy { padding-top: calc(var(--partner-overview-header-h, 84px) + 12px); }
  .lx-static-title { font-size: clamp(34px, 10vw, 46px); }
  .lx-film__cover-copy small { display: none; }
  .lx-film__caption { flex-direction: column; gap: 6px; }
  .lx-loop__steps li,
  .lx-steps ol li,
  .lx-flow li { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .lx-loop__steps li span,
  .lx-steps ol li span,
  .lx-flow li span { width: 34px; height: 34px; }
  .lx-product { grid-template-columns: 1fr; grid-template-areas: "name" "text" "open"; }
  .lx-faq__items summary { font-size: 17px; }
  .lx-faq__items details p { padding-right: 0; }
}

.launch10k-page:not(.lx-journey-cinematic) .lx-hero { display: none; }
.launch10k-page:not(.lx-journey-cinematic) .lx-static-hero { display: block; }

.launch10k-page .lx-shell { padding-block: clamp(56px, 6vw, 88px); }
.launch10k-page .lx-launch-hero .lx-shell { padding-top: 64px; }
.launch10k-page .lx-journey-intro .lx-shell { padding-bottom: 40px; }
.launch10k-page .lx-film-intro { margin-top: 48px; }
.launch10k-page .lx-head h2 { text-wrap: balance; }
.launch10k-page .lx-btn--primary { background: linear-gradient(120deg, #2850ce, #1d3fb8); }
.launch10k-page .lx-env i,
.launch10k-page .lx-panel-title i,
.launch10k-page .lx-console__caret { animation: none; }

.lx-reading-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 24px; }
.lx-reading-actions .lx-btn { white-space: normal; }
.lx-reading-note { font-size: 14px; }
.lx-preview-toggle,
.lx-simulate {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  touch-action: manipulation;
}
.lx-preview-toggle { margin-top: 16px; background: #111a3c; color: #f3f6ff; }
.lx-preview-toggle:hover { background: #1d3fb8; }
.lx-film-description { max-width: 80ch; margin-top: 18px; color: #d2dbef; line-height: 1.6; }
.lx-simulate { display: block; margin-top: 12px; background: #fff; color: #1d3fb8; }
.lx-simulate:hover { background: #e9efff; }
.lx-simulate:disabled { cursor: default; opacity: .65; }
.lx-simulation-note { color: var(--lx-ink-soft); font-size: 14px; line-height: 1.6; }
.lx-explainer { border-block: 1px solid var(--lx-line-strong); }
.lx-explainer > summary { padding: 20px 8px; min-height: 56px; font-size: 17px; font-weight: 600; cursor: pointer; }
.lx-explainer > summary:hover { color: var(--lx-blue-deep); }
.lx-explainer[open] > summary { margin-bottom: 20px; }
.lx-explainer .lx-outcomes { padding-bottom: 28px; }
.lx-forge-details { margin-top: 32px; }
.lx-forge-details .lx-guardrails { margin-top: 0; margin-bottom: 28px; }
.lx-faq-resources { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 24px; }
.lx-faq-resources a { min-height: 44px; }
.launch10k-page :where(a, button, summary) { scroll-margin-block: calc(var(--lx-stage-top) + 20px); }
.launch10k-page .lx-section--night :where(a, button, summary):focus-visible { outline-color: #b8dcff; }
.launch10k-page .lx-section:focus-within .lx-reveal { opacity: 1; transform: none; }
.launch10k-page .lx-section:focus-within .lx-piece,
.launch10k-page .lx-section:focus-within .lx-products__group li { opacity: 1; transform: none; }

@media (min-width: 900px) {
  .launch10k-page .lx-static-shell { width: var(--lx-shell); padding-top: 40px; }
  .lx-static-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .lx-static-flow > li { padding: 28px; }
}

@media (max-width: 760px) {
  .launch10k-page .lx-launch-hero .lx-shell { padding-top: 40px; }
  .lx-reading-actions { align-items: stretch; flex-direction: column; }
  .lx-reading-actions .lx-link { align-self: center; }
  .lx-faq-resources { flex-direction: column; align-items: flex-start; }
}

@media (scripting: none) {
  .lx-hold { display: none; }
}

/* ---------- Reduced motion : états finaux, drives arrêtés ---------- */
@media (prefers-reduced-motion: reduce) {
  .launch10k-page *,
  .launch10k-page *::before,
  .launch10k-page *::after {
    animation: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .lx-reveal,
  .lx-js .lx-reveal { opacity: 1; transform: none; }
  .lx-js .lx-pieces > *,
  .lx-js .lx-roles > *,
  .lx-js .lx-products__group li,
  .lx-js .lx-loop__steps li,
  .lx-js .lx-steps ol li,
  .lx-js .lx-console__body > * { opacity: 1; transform: none; }
  .lx-js .lx-map__node { opacity: 1; transform: translate(-50%, -50%); }
  .lx-rail path,
  .lx-js .lx-rail path,
  .lx-js .lx-map__canvas path { stroke-dashoffset: 0; opacity: 1; }
  .lx-rail circle,
  .lx-js .lx-rail circle { opacity: .9; }
  .lx-band .lx-cta-row, .lx-chips { opacity: 1; transform: none; }
  .lx-holdbtn .lx-hold-fill { stroke-dashoffset: calc(76 * (1 - var(--hold, 0))); }
}

@media (prefers-reduced-motion: reduce) and (max-width: 860px) {
  .lx-js .lx-map__node { transform: none; }
}
