/* Neoo Starter — page canonique cinématique scroll-scrub « Le premier jour ».
   Source de vérité : scripts/generate-neoo-starter-10k.mjs + docs/design-neoo-starter-10k.md.
   Monde : la lumière du jour de l'accueil et de Forge (canvas #f8f9ff, encre navy,
   bleus Neoo), le bureau ensoleillé du film. Moteur éprouvé du repo, préfixe sx-. */

.starter10k-page {
  --sx-canvas: #f8f9ff;
  --sx-panel: #ffffff;
  --sx-ink: #0c1643;
  --sx-ink-soft: #3f4c6e;
  --sx-night: #0c1643;
  --sx-night-panel: #16204f;
  --sx-paper: #e8edff;
  --sx-paper-soft: #9fadd6;
  --sx-accent: #2b53e8;
  --sx-accent-soft: #4d7dff;
  --sx-accent-deep: #1d3db8;
  --sx-glow: #4d7dff;
  --sx-amber: #2b53e8;
  --sx-line: rgba(76, 98, 176, .18);
  --sx-line-strong: rgba(76, 98, 176, .38);
  --sx-ease: cubic-bezier(.23, 1, .32, 1);
  --sx-subnav-h: 59px;
  --sx-stage-top: calc(var(--partner-overview-header-h, 84px) + var(--sx-subnav-h));
  --sx-display: "Cerebri Sans", "Segoe UI", system-ui, sans-serif;
  --sx-mono: ui-monospace, "Cascadia Mono", Consolas, monospace;
  --sx-tshadow-light: 0 1px 0 rgba(248, 249, 255, .92), 0 2px 10px rgba(248, 249, 255, .78), 0 10px 40px rgba(248, 249, 255, .85);
  --sx-shell: min(calc(100% - 96px), 1240px);
  background: var(--sx-canvas);
  color: var(--sx-ink);
}

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

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

.starter10k-page :where(a, button, summary):focus-visible {
  outline: 3px solid var(--sx-accent-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.starter10k-page .sx-price__card :where(a, button, summary):focus-visible { outline-color: var(--sx-accent-deep); }

/* ---------- L'environnement fixe (un seul calque, toute la page) ---------- */
.sx-env {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 34% at 12% 18%, rgba(43, 83, 232, .05), transparent 70%),
    radial-gradient(40% 30% at 88% 76%, rgba(77, 125, 255, .045), transparent 70%);
}

.sx-env i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sx-accent-soft);
  opacity: .3;
}

.sx-env i:nth-child(1) { top: 22%; left: 8%; }
.sx-env i:nth-child(2) { top: 58%; left: 92%; width: 4px; height: 4px; }
.sx-env i:nth-child(3) { top: 84%; left: 16%; width: 3px; height: 3px; }

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

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

body.sx-paused .sx-env i,
body.sx-paused .sx-env i::before,
body.sx-paused .sx-env i::after { animation-play-state: paused !important; }

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

.starter10k-page .sx-stage,
.starter10k-page .sx-static-hero { z-index: 1; }

/* ---------- Le héro scrub épinglé (1300vh : 4 segments, 5 bandes) ---------- */
.sx-hero {
  position: relative;
  height: 760vh;
}

.sx-stage {
  position: sticky;
  top: var(--sx-stage-top);
  height: calc(100svh - var(--sx-stage-top));
  overflow: hidden;
  isolation: isolate;
  background: var(--sx-canvas);
}

.sx-stage__media {
  position: absolute;
  inset: 0;
  margin: 0;
  background: var(--sx-canvas);
}

.sx-stage__media video,
.sx-stage__media .sx-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
  transform: translateZ(0);
}

.sx-stage__media .sx-poster {
  background-position: center top;
  background-size: cover;
}

.sx-stage__media video {
  opacity: 0;
  transition: opacity 420ms var(--sx-ease);
}

.sx-stage.sx-video-ready .sx-stage__media video { opacity: 1; }
.sx-stage.sx-video-failed .sx-stage__media video { display: none; }

/* Voile de base clair : aucune frame brute derrière la page. */
.sx-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 92% at 50% 45%, rgba(248, 249, 255, 0) 40%, rgba(248, 249, 255, .55) 100%);
}

.sx-stage__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding-top: 0;
  display: grid;
  align-items: center;
  width: min(calc(100% - 96px), 1560px);
  margin-inline: auto;
}

.sx-band {
  grid-area: 1 / 1;
  position: relative;
  max-width: 620px;
  opacity: 0;
  pointer-events: none;
}

.sx-band.sx-is-on { pointer-events: auto; }

/* Voile par bande : blanc doux, meurt à 76 % pour laisser vivre la scène. */
.sx-band::before {
  content: "";
  position: absolute;
  /* La boite du voile deborde largement le texte : le degrade doit mourir AVANT
     le bord, sinon la coupe du bord se voit comme un rectangle clair sur le film. */
  inset: -58% -46%;
  z-index: -1;
  pointer-events: none;
  opacity: calc(.35 + .65 * var(--k, 1));
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(248, 249, 255, var(--sx-scrim, .9)) 0%, rgba(248, 249, 255, calc(var(--sx-scrim, .9) * .92)) 62%, rgba(248, 249, 255, 0) 100%);
}

.sx-band--right { justify-self: end; }

/* Le repos : le panneau de verre occupe la droite du plan, la bande finale
   se cale dans la partie calme de gauche sans mordre dessus. */
.sx-band.e-rise { max-width: 520px; }

/* Force du voile par bande, cale sur la pire frame de chaque plage :
   la 4 passe devant le rideau sombre du plan 3, elle a besoin du voile le plus dense. */
.sx-band[data-band="0"] { --sx-scrim: .82; }
.sx-band[data-band="1"] { --sx-scrim: .88; }
.sx-band[data-band="2"] { --sx-scrim: .86; }
.sx-band[data-band="3"] { --sx-scrim: .94; }
.sx-band[data-band="4"] { --sx-scrim: .9; }



.sx-band--center { justify-self: center; text-align: center; }
.sx-band--center .sx-sub { margin-inline: auto; }

.sx-band .sx-kicker {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--sx-accent);
  font-family: var(--sx-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: var(--sx-tshadow-light);
}

.sx-band--center .sx-kicker { justify-content: center; }

.sx-band .sx-kicker .sx-wordmark {
  font-family: var(--sx-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.02em;
  text-transform: none;
  color: var(--sx-ink);
}

.sx-band .sx-kicker .sx-wordmark span { color: var(--sx-accent); }

.sx-band h2 {
  margin: 0;
  color: var(--sx-ink);
  font-family: var(--sx-display);
  font-weight: 300;
  font-size: clamp(44px, 4.8vw, 78px);
  letter-spacing: -.052em;
  line-height: 1.06;
  text-shadow: var(--sx-tshadow-light);
}

.sx-band .sx-sub {
  margin: 20px 0 0;
  max-width: 38ch;
  color: var(--sx-ink-soft);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
  text-shadow: var(--sx-tshadow-light);
}

.sx-band .sx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  opacity: var(--kb, 0);
  transform: translateY(calc((1 - var(--kb, 0)) * 14px));
}

.sx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  opacity: var(--kb, 0);
}

.sx-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--sx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  color: var(--sx-ink-soft);
  font-size: 12.5px;
  font-weight: 600;
}

.sx-chips li i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sx-accent-soft);
  box-shadow: 0 0 8px rgba(77, 125, 255, .7);
}

/* Boutons du monde clair */
.sx-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(--sx-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: none;
  cursor: pointer;
  transition: transform 160ms var(--sx-ease), box-shadow 180ms var(--sx-ease), border-color 180ms var(--sx-ease), background-color 180ms var(--sx-ease);
}

.sx-btn svg {
  flex: none;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--sx-ease);
}

@media (hover: hover) and (pointer: fine) {
  .sx-btn:hover svg { transform: translateX(3px); }
}

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

.sx-btn--primary {
  color: #fff;
  background: linear-gradient(120deg, var(--sx-accent), var(--sx-accent-soft));
  box-shadow: 0 14px 32px rgba(43, 83, 232, .26);
}

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

@media (hover: hover) and (pointer: fine) {
  .sx-btn:hover { transform: translateY(-2px); }
  .sx-btn--primary:hover { box-shadow: 0 18px 38px rgba(43, 83, 232, .36); }
  .sx-btn--ghost:hover { border-color: var(--sx-accent); }
}

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

/* Spans du split : assemblage piloté par le --k de chaque bande. */
.sx-w { display: inline-block; white-space: pre; }
.sx-c { display: inline-block; }

/* (f) drift-down — bande 1 : l'intention se pose */
.e-drift .sx-w {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 2.8), 1);
  opacity: var(--kc);
  transform: translateY(calc((1 - var(--kc)) * -26px));
}

/* (d) word-punch — bande 2 : l'assemblage frappe */
.e-punch .sx-w {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 3), 1);
  --ks: clamp(0, calc((var(--k, 0) - var(--th, 0) - .12) * 3), 1);
  opacity: var(--kc);
  transform: scale(calc(.6 + .52 * var(--kc) - .12 * var(--ks)));
}

/* (a) scatter-assemble — bande 3 : les pièces se connectent */
.e-scatter .sx-c {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 2.6), 1);
  opacity: var(--kc);
  transform: translate(calc((1 - var(--kc)) * var(--jx, 0px)), calc((1 - var(--kc)) * var(--jy, 0px))) rotate(calc((1 - var(--kc)) * var(--jr, 0deg)));
}

/* (g) approach-from-depth — bande 4 : la porte approche */
.e-depth .sx-w {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 2.8), 1);
  opacity: var(--kc);
  transform: scale(calc(.84 + .16 * var(--kc)));
}

/* (e) rise étagé — le repos */
.e-rise .sx-w {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 3), 1);
  opacity: var(--kc);
  transform: translateY(calc((1 - var(--kc)) * 22px));
}

.e-rise .sx-sub {
  opacity: var(--ks2, 0);
  transform: translateY(calc((1 - var(--ks2, 0)) * 12px));
}

/* L'indice de scroll */
.sx-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--sx-ink-soft);
  font-family: var(--sx-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: var(--cue, 1);
  transition: opacity 300ms var(--sx-ease);
  pointer-events: none;
}

.sx-cue i {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--sx-accent), transparent);
}

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

  @keyframes sx-cue-drop {
    0% { transform: scaleY(0); }
    45%, 100% { transform: scaleY(1); }
  }
}

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

/* ---------- Le chargement du film : visible, honnête, jamais muet ---------- */
.sx-loader {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--sx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(12, 22, 67, .1);
  color: var(--sx-ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  transform: translateX(-50%);
  transition: opacity 420ms var(--sx-ease), transform 420ms var(--sx-ease), right 420ms var(--sx-ease), bottom 420ms var(--sx-ease);
  pointer-events: none;
}

.sx-loader svg { width: 22px; height: 22px; transform: rotate(-90deg); flex: none; }
.sx-loader svg circle { fill: none; stroke-width: 4; }
.sx-loader .sx-loader__track { stroke: rgba(76, 98, 176, .22); }
.sx-loader .sx-loader__fill { stroke: var(--sx-accent); stroke-linecap: round; }
.sx-loader b { color: var(--sx-ink); font-weight: 700; font-variant-numeric: tabular-nums; min-width: 4ch; text-align: right; }

/* Le visiteur scrolle pendant le chargement : la pastille se range en bas à droite et reste visible. */
.sx-loader--docked {
  left: auto;
  right: 20px;
  bottom: 20px;
  transform: translateX(0) scale(.94);
}

.sx-stage.sx-video-ready .sx-loader { opacity: 0; visibility: hidden; transition: opacity 420ms var(--sx-ease), visibility 0s 420ms; }
.sx-stage.sx-video-failed .sx-loader { display: none; }

/* Le repère de scroll n'apparaît que quand le film est prêt (ou en mode image). */
.sx-stage:not(.sx-video-ready):not(.sx-video-failed) .sx-cue { opacity: 0; }

/* ---------- Le héro statique (téléphones, portrait, reduced motion) ---------- */
.sx-static-hero {
  display: none;
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--sx-canvas);
}

.sx-static-hero .sx-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: 68% center;
  background-size: cover;
}

.sx-static-hero .sx-veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 249, 255, .94) 0%, rgba(248, 249, 255, .82) 36%, rgba(248, 249, 255, .4) 64%, rgba(248, 249, 255, .12) 100%),
    linear-gradient(0deg, rgba(248, 249, 255, .9) 0%, rgba(248, 249, 255, 0) 42%);
}

.sx-static-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(calc(100% - 48px), 1560px);
  min-height: 92svh;
  margin-inline: auto;
  padding: calc(var(--partner-overview-header-h, 84px) + 20px) 0 56px;
}

.sx-static-copy .sx-kicker {
  margin: 0 0 16px;
  color: var(--sx-accent);
  font-family: var(--sx-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.sx-static-title {
  margin: 0;
  max-width: 640px;
  font-family: var(--sx-display);
  font-weight: 300;
  font-size: clamp(40px, 8.4vw, 70px);
  letter-spacing: -.052em;
  line-height: 1.06;
}

.sx-static-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--sx-accent), var(--sx-accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sx-static-copy .sx-lede {
  margin: 18px 0 0;
  max-width: 46ch;
  color: var(--sx-ink-soft);
  font-size: clamp(16px, 2.1vw, 21px);
  line-height: 1.55;
}

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

.sx-static-copy .sx-chips { opacity: 1; }

/* Les cinq gates — chaînes identiques dans neoo-starter-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) {
  .sx-hero { display: none; }
  .sx-static-hero { display: block; }
}

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

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

.sx-section--paper { background: linear-gradient(180deg, rgba(208, 216, 240, .5), rgba(248, 249, 255, 0) 52%); }

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

/* La ligne du parcours : le rail signature qui longe chaque section. */
.sx-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(18px, calc((100% - 1240px) / 2 - 52px));
  width: 22px;
  pointer-events: none;
}

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

.sx-rail path {
  fill: none;
  stroke: rgba(43, 83, 232, .34);
  stroke-width: 1.6;
  stroke-dasharray: 1;
}

.sx-rail circle { fill: var(--sx-glow); }

/* Sans JavaScript, la ligne reste tracée ; le dessin au scroll n'existe qu'avec .sx-js. */
.sx-js .sx-rail path { stroke-dashoffset: 1; }
.sx-js .sx-rail circle { opacity: 0; transition: opacity 600ms var(--sx-ease) 900ms; }
.sx-js .sx-section.in .sx-rail path { transition: stroke-dashoffset 1400ms var(--sx-ease); stroke-dashoffset: 0; }
.sx-js .sx-section.in .sx-rail circle { opacity: .9; }

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

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

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

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

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

/* Entrées choreographiées (IntersectionObserver ajoute .in sur la section).
   Masquées uniquement sous .sx-js : sans JavaScript, tout le contenu reste visible. */
.sx-js .sx-reveal {
  opacity: 0;
  transform: translateY(26px);
}

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

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

/* Retraite des délais après l'entrée : même spécificité + .is-settled posé par le JS. */
.sx-js .sx-section.is-settled .sx-reveal.sx-d1,
.sx-js .sx-section.is-settled .sx-reveal.sx-d2,
.sx-js .sx-section.is-settled .sx-reveal.sx-d3 { transition-delay: 0ms; }

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

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

.sx-list svg {
  flex: none;
  width: 16px;
  height: 16px;
  transform: translateY(2px);
  fill: none;
  stroke: var(--sx-accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sx-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.sx-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sx-glow);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.sx-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--sx-ease);
}

.sx-link:hover svg { transform: translateX(4px); }

.sx-section .sx-link { color: var(--sx-accent-deep); }

/* ---------- 11. FAQ ---------- */
.sx-faq { max-width: 860px; }

.sx-faq details {
  border-bottom: 1px solid var(--sx-line);
}

.sx-faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  font-size: clamp(16.5px, 1.4vw, 19px);
  font-weight: 600;
  letter-spacing: -.015em;
  cursor: pointer;
  list-style: none;
}

.sx-faq summary::-webkit-details-marker { display: none; }

.sx-faq summary i {
  flex: none;
  position: relative;
  width: 16px;
  height: 16px;
  transform: translateY(2px);
}

.sx-faq summary i::before,
.sx-faq summary i::after {
  content: "";
  position: absolute;
  inset: 7px 0;
  background: var(--sx-accent);
  border-radius: 2px;
  transition: transform 240ms var(--sx-ease);
}

.sx-faq summary i::after { transform: rotate(90deg); }

.sx-faq details[open] summary i::after { transform: rotate(0deg); }

.sx-faq details p {
  margin: 0;
  padding: 0 40px 22px 4px;
  color: var(--sx-ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 72ch;
}

/* ---------- 12. CTA final ---------- */
.sx-final { text-align: center; }

.sx-final .sx-shell { max-width: 860px; }

.sx-final h2 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 54px);
  letter-spacing: -.052em;
  line-height: 1.06;
}

.sx-final .sx-eyebrow { justify-content: center; }

.sx-final > .sx-shell > p:not(.sx-eyebrow) {
  margin: 18px auto 0;
  max-width: 58ch;
  color: var(--sx-ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.sx-final {
  background:
    radial-gradient(60% 52% at 50% 0%, rgba(77, 125, 255, .08), transparent 70%),
    var(--sx-canvas);
}

.sx-final .sx-actions {
  justify-content: center;
  margin-top: 32px;
}

.sx-final::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(560px, 80%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(77, 125, 255, .6), transparent);
}


/* ---------- 1. L'essentiel : six cartes, une seule grille vivante ---------- */
.sx-essentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(28px, 3.4vw, 42px);
}

.sx-essential {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 26px 24px 28px;
  background: var(--sx-panel);
  border: 1px solid var(--sx-line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 420ms var(--sx-ease), border-color 420ms var(--sx-ease), box-shadow 420ms var(--sx-ease);
}

.sx-essential::after {
  content: "";
  position: absolute;
  inset: auto -30% -70% auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(77, 125, 255, .16), rgba(77, 125, 255, 0) 68%);
  opacity: 0;
  transition: opacity 460ms var(--sx-ease);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .sx-essential:hover {
    transform: translateY(-4px);
    border-color: var(--sx-line-strong);
    box-shadow: 0 22px 48px rgba(12, 22, 67, .09);
  }
  .sx-essential:hover::after { opacity: 1; }
}

.sx-essential svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--sx-accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sx-essential small {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--sx-mono);
  font-size: 12px;
  color: var(--sx-paper-soft);
  letter-spacing: .06em;
}

.sx-essential h3 {
  margin: 4px 0 0;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.sx-essential p {
  margin: 0;
  color: var(--sx-ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 34ch;
}

/* ---------- 2. La vente : le relais, et le moment que le visiteur joue ---------- */
.sx-relay {
  position: relative;
  margin-top: clamp(30px, 3.6vw, 46px);
  padding: clamp(28px, 3.4vw, 40px) clamp(22px, 3vw, 38px) clamp(30px, 3.6vw, 42px);
  background: var(--sx-panel);
  border: 1px solid var(--sx-line);
  border-radius: 22px;
}

.sx-relay__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.sx-relay__track::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 27px;
  height: 2px;
  background: var(--sx-line);
  border-radius: 2px;
}

.sx-relay__track::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 27px;
  height: 2px;
  width: calc((80%) * var(--hold, 0));
  background: linear-gradient(90deg, var(--sx-accent), var(--sx-accent-soft));
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(77, 125, 255, .5);
}

.sx-station {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.sx-station i {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--sx-canvas);
  border: 2px solid var(--sx-line);
  border-radius: 50%;
  transition: border-color 380ms var(--sx-ease), background 380ms var(--sx-ease), transform 380ms var(--sx-ease);
}

.sx-station i::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--sx-paper-soft);
  border-radius: 50%;
  transition: background 380ms var(--sx-ease), transform 380ms var(--sx-ease);
}

.sx-station.is-lit i {
  border-color: var(--sx-accent);
  background: var(--sx-panel);
  transform: scale(1.06);
}

.sx-station.is-lit i::before {
  background: var(--sx-accent);
  transform: scale(1.15);
}

.sx-station b {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.sx-station span {
  min-height: 2.6em;
  color: var(--sx-ink-soft);
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 420ms var(--sx-ease), transform 420ms var(--sx-ease);
}

.sx-station.is-lit span { opacity: 1; transform: none; }

.sx-relay__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: clamp(26px, 3vw, 34px);
  padding-top: clamp(20px, 2.4vw, 26px);
  border-top: 1px solid var(--sx-line);
}

.sx-holdbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 14px;
  background: var(--sx-panel);
  border: 1px solid var(--sx-line-strong);
  border-radius: 999px;
  color: var(--sx-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  touch-action: none;
  transition: border-color 320ms var(--sx-ease), box-shadow 320ms var(--sx-ease);
}

.sx-holdbtn svg {
  width: 34px;
  height: 34px;
  flex: none;
  transform: rotate(-90deg);
}

.sx-hold-track { fill: none; stroke: var(--sx-line); stroke-width: 3; }

.sx-hold-fill {
  fill: none;
  stroke: var(--sx-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 76;
  stroke-dashoffset: calc(76 - 76 * var(--hold, 0));
}

@media (hover: hover) and (pointer: fine) {
  .sx-holdbtn:hover { border-color: var(--sx-accent); box-shadow: 0 12px 30px rgba(43, 83, 232, .14); }
}

.sx-relay.is-done .sx-holdbtn { border-color: var(--sx-accent); }

.sx-hold-status {
  margin: 0;
  color: var(--sx-ink-soft);
  font-size: 13.5px;
}

.sx-relay.is-done .sx-hold-status { color: var(--sx-accent-deep); font-weight: 600; }

/* ---------- 3. Peppol : la porte de la facturation électronique ---------- */
.sx-peppol {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 3.6vw, 56px);
  align-items: start;
  margin-top: clamp(26px, 3vw, 36px);
}

.sx-gate {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(26px, 3vw, 34px);
  background: var(--sx-panel);
  border: 1px solid var(--sx-line);
  border-radius: 22px;
  overflow: hidden;
}

.sx-gate::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(77, 125, 255, .13), rgba(77, 125, 255, 0) 70%);
  pointer-events: none;
}

.sx-gate__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sx-gate__steps li {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  padding: 22px 12px 20px;
  background: var(--sx-canvas);
  border: 1px solid var(--sx-line);
  border-radius: 16px;
  font-size: 14.5px;
  font-weight: 600;
}

.sx-gate__steps li span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--sx-accent);
  border-radius: 50%;
  color: var(--sx-accent);
  font-family: var(--sx-mono);
  font-size: 13px;
}

.sx-js .sx-gate__steps li span::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--sx-accent-soft);
  border-radius: 50%;
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .sx-section.in .sx-gate__steps li span::after {
    animation: sx-pulse 3.6s var(--sx-ease) infinite;
    animation-delay: calc(var(--i, 0) * -1.2s);
  }
}

@keyframes sx-pulse {
  0% { opacity: .5; transform: scale(1); }
  60%, 100% { opacity: 0; transform: scale(1.7); }
}

.sx-gate__note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  padding: 16px 18px;
  background: var(--sx-paper);
  border-radius: 14px;
  color: var(--sx-ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.sx-gate__note svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  fill: none;
  stroke: var(--sx-accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- 4. Fiduciaire : le pont qui se dessine ---------- */
.sx-bridge {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  margin-top: clamp(28px, 3.4vw, 40px);
}

.sx-bridge__end {
  display: grid;
  gap: 8px;
  padding: clamp(24px, 2.8vw, 32px);
  background: var(--sx-panel);
  border: 1px solid var(--sx-line);
  border-radius: 20px;
  text-align: center;
}

.sx-bridge__end svg {
  justify-self: center;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--sx-accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sx-bridge__end strong {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.sx-bridge__end span {
  color: var(--sx-ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.sx-bridge__span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: clamp(150px, 20vw, 260px);
}

.sx-bridge__span svg {
  width: 100%;
  height: 26px;
  overflow: visible;
}

.sx-bridge__span path {
  fill: none;
  stroke: var(--sx-accent-soft);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.sx-js .sx-bridge__span path { stroke-dashoffset: 1; }

.sx-section.in .sx-bridge__span path {
  transition: stroke-dashoffset 1500ms var(--sx-ease) 260ms;
  stroke-dashoffset: 0;
}

.sx-bridge__span b {
  padding: 7px 15px;
  background: var(--sx-panel);
  border: 1px solid var(--sx-line);
  border-radius: 999px;
  color: var(--sx-ink-soft);
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
}

/* ---------- 5. Croissance : Starter aujourd'hui, Business ensuite ---------- */
.sx-path {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(26px, 3vw, 38px);
}

.sx-path article {
  position: relative;
  display: grid;
  gap: 6px;
  flex: 1 1 200px;
  max-width: 300px;
  padding: 24px 24px 26px;
  background: var(--sx-panel);
  border: 1px solid var(--sx-line);
  border-radius: 18px;
}

.sx-path article.is-current {
  border-color: var(--sx-accent);
  box-shadow: 0 18px 44px rgba(43, 83, 232, .12);
}

.sx-path article span {
  font-family: var(--sx-mono);
  font-size: 12px;
  color: var(--sx-paper-soft);
  letter-spacing: .06em;
}

.sx-path article strong { font-size: 18px; font-weight: 600; letter-spacing: -.02em; }

.sx-path article small { color: var(--sx-ink-soft); font-size: 14px; line-height: 1.55; }

.sx-path b {
  align-self: center;
  color: var(--sx-paper-soft);
  font-size: 20px;
  font-weight: 400;
}

.sx-unlocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: clamp(24px, 2.8vw, 32px) 0 0;
  padding: 0;
  list-style: none;
}

.sx-unlocks li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: var(--sx-paper);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
}

.sx-unlocks svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--sx-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- 6. Prix : une carte, aucune surprise ---------- */
.sx-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3.6vw, 56px);
  align-items: center;
  margin-top: clamp(20px, 2.4vw, 30px);
}

.sx-price__card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(30px, 3.4vw, 40px);
  background: var(--sx-panel);
  border: 1px solid var(--sx-line-strong);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(12, 22, 67, .08);
}

.sx-price__card::before {
  content: "";
  position: absolute;
  inset: -50% auto auto -20%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(77, 125, 255, .14), rgba(77, 125, 255, 0) 70%);
  pointer-events: none;
}

.sx-price__amount {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.sx-price__amount strong {
  font-size: clamp(46px, 5.6vw, 68px);
  font-weight: 300;
  letter-spacing: -.04em;
  word-spacing: -.16em;
  line-height: 1;
}

.sx-price__amount span { color: var(--sx-ink-soft); font-size: 15.5px; }

.sx-price__included {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sx-price__included li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
}

.sx-price__included svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: none;
  stroke: var(--sx-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sx-price__extra {
  position: relative;
  margin: 0;
  padding: 16px 18px;
  background: var(--sx-paper);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
}

.sx-price__note {
  position: relative;
  margin: 0;
  color: var(--sx-ink-soft);
  font-size: 13.5px;
  line-height: 1.6;
}

.sx-price__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .starter10k-page { --sx-shell: min(calc(100% - 56px), 1240px); }

  .sx-peppol,
  .sx-price { grid-template-columns: 1fr; }
  .sx-essentials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .sx-essentials { grid-template-columns: 1fr; }

  .sx-relay__track { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .sx-relay__track::before,
  .sx-relay__track::after { display: none; }
  .sx-station span { min-height: 0; }

  .sx-bridge { grid-template-columns: 1fr; }
  .sx-bridge__span { min-width: 0; justify-self: center; }
  .sx-bridge__span svg { height: 44px; transform: rotate(90deg); }

  .sx-path b { display: none; }
  .sx-path article { max-width: none; }

  .sx-gate__steps { grid-template-columns: 1fr; }
  .sx-gate__steps li { grid-auto-flow: column; grid-template-columns: auto 1fr; justify-items: start; text-align: left; align-items: center; padding: 16px 18px; }
}

@media (max-width: 560px) {
  .starter10k-page { --sx-shell: min(calc(100% - 40px), 1240px); }

  .sx-static-copy { width: min(calc(100% - 40px), 1240px); }
  .sx-relay__track { grid-template-columns: 1fr; }
  .sx-price__amount strong { font-size: 44px; }
}
.starter10k-page:not(.sx-cinematic) .sx-hero { display: none; }
.starter10k-page .sx-static-hero { display: block; min-height: 0; }
.starter10k-page .sx-static-copy {
  width: min(calc(100% - 80px), 1280px);
  min-height: 700px;
  padding: 60px 0 48px;
}
.starter10k-page .sx-static-title {
  max-width: 650px;
  color: var(--sx-ink);
  font-family: var(--sx-display);
  font-weight: 300;
  font-size: clamp(40px, 4.8vw, 68px);
  letter-spacing: -.052em;
  line-height: 1.06;
  text-wrap: balance;
}
.starter10k-page .sx-static-hero .sx-veil {
  background: linear-gradient(90deg, rgba(248,249,255,.98) 0%, rgba(248,249,255,.94) 44%, rgba(248,249,255,.25) 76%, rgba(248,249,255,.12));
}
.starter10k-page .sx-static-copy .sx-lede { max-width: 49ch; font-size: 19px; }
.sx-trial-note { margin: 20px 0 6px; font-weight: 600; color: var(--sx-ink); }
.sx-trial-terms { max-width: 60ch; margin: 0; font-size: 15px; line-height: 1.6; color: var(--sx-ink-soft); }
.sx-reading { display: flex; align-items: start; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-block: 24px; }
.sx-reading__link { display: inline-flex; gap: 10px; align-items: center; min-height: 44px; color: var(--sx-accent-deep); text-underline-offset: 5px; }
.sx-reading__link svg { width: 18px; height: 18px; }
.sx-reading p { max-width: 56ch; margin: 10px 0 0; font-size: 14px; line-height: 1.5; color: var(--sx-ink-soft); }
.sx-reading__toggle { min-height: 44px; padding: 12px 18px; border: 1px solid var(--sx-line-strong); border-radius: 12px; background: var(--sx-panel); color: var(--sx-ink); font: inherit; font-weight: 600; cursor: pointer; }
.sx-reading__toggle:disabled { cursor: default; opacity: .65; }
.starter10k-page .sx-section { padding-block: clamp(56px, 6vw, 88px); }
.starter10k-page .sx-head h2 { text-wrap: balance; }
.starter10k-page .sx-btn--primary { background: linear-gradient(120deg, #2850ce, #1d3db8); color: #fff; }
.starter10k-page .sx-env i { animation: none; }
.starter10k-page :where(a, button, summary) { scroll-margin-block: calc(var(--sx-stage-top) + 20px) 28px; }
.starter10k-page .sx-final :where(a, button):focus-visible { outline-color: #c5d6ff; }
.starter10k-page .sx-section:focus-within .sx-reveal { opacity: 1; transform: none; filter: none; }
.starter10k-page:not(.sx-js) .sx-holdbtn { display: none; }
@media (max-width: 720px) {
  .starter10k-page .sx-static-copy { width: calc(100% - 40px); min-height: 0; padding: 48px 0 40px; }
  .starter10k-page .sx-static-copy .sx-lede { font-size: 17px; }
  .starter10k-page .sx-static-hero .sx-veil { background: rgba(248,249,255,.94); }
  .sx-reading { flex-direction: column; }
  .sx-reading__toggle { max-width: 100%; }
}

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

  .sx-reveal,
  .sx-js .sx-reveal { opacity: 1; transform: none; }
  .sx-rail path,
  .sx-js .sx-rail path { stroke-dashoffset: 0; }
  .sx-rail circle,
  .sx-js .sx-rail circle { opacity: .9; }
  .sx-band .sx-cta-row, .sx-chips { opacity: 1; transform: none; }
  .sx-holdbtn .sx-hold-fill { stroke-dashoffset: calc(76 * (1 - var(--hold, 0))); }
}

/* Reduced motion, suite : les chapitres Starter dans leur état final. */
@media (prefers-reduced-motion: reduce) {
  .sx-station span { opacity: 1; transform: none; }
  .sx-bridge__span path,
  .sx-js .sx-bridge__span path { stroke-dashoffset: 0; }
  .sx-gate__steps li span::after { display: none; }
  .sx-essential::after { opacity: 0; }
}
