@charset "UTF-8";
/* Ta·da! — landing page, proposition Opus v2 (maquette de revue) */

:root {
  color-scheme: light;
  --cream: #FBF7F0;
  --paper: #FFFFFF;
  --ink: #1C1830;
  --ink-soft: #4B4661;
  --ink-mute: #6E6882;
  --line: #E7DFD2;
  --tada: #FF5B3A;          /* vermillon signature : remplissages, étincelles */
  --tada-text: #C23A18;     /* vermillon lisible sur fond clair */
  --tada-light: #FF8A6E;    /* vermillon lisible sur fond sombre */
  --lilac: #ECE5FF;
  --lilac-deep: #5B3FD0;
  --peach: #FFE3D4;
  --butter: #FFE59A;
  --mint: #D9F2E6;
  --night: #17132A;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --max: 1200px;
  --gutter: clamp(16px, 4vw, 48px);
  --r-xl: 36px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;
  --ease: cubic-bezier(.2, .75, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .5, 1);
  --shadow: 0 1px 2px rgba(28, 24, 48, .06), 0 12px 32px -12px rgba(28, 24, 48, .22);
  --shadow-lg: 0 2px 4px rgba(28, 24, 48, .05), 0 40px 80px -30px rgba(28, 24, 48, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--lilac-deep); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -.025em;
  line-height: 1.04;
  text-wrap: balance;
}
h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h2 em, h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--tada-text);
}
h3 { font-weight: 650; letter-spacing: -.01em; line-height: 1.25; }
p { text-wrap: pretty; }

.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(72px, 10vw, 136px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.eyebrow--light { color: #CFC8E6; }

.spark {
  width: 14px; height: 14px; flex: none; display: inline-block;
  background: var(--tada);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

/* ---------- Boutons et liens ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 14px 26px;
  border: 0; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-weight: 650; font-size: 1rem; line-height: 1.2; text-decoration: none;
  transition: transform .25s var(--ease), background-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn__arrow { display: inline-block; transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--ink:hover { --bg: #2E2848; }
.btn--tada { --bg: var(--tada); --fg: var(--ink); box-shadow: 0 10px 24px -10px rgba(255, 91, 58, .7); }
.btn--tada:hover { --bg: #FF6E50; box-shadow: 0 16px 30px -12px rgba(255, 91, 58, .8); }
.btn--ghost { --bg: rgba(255, 255, 255, .6); --fg: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(28, 24, 48, .18); }
.btn--ghost:hover { --bg: #fff; }
.btn--sm { min-height: 42px; padding: 10px 18px; font-size: .9rem; }
.btn--lg { min-height: 60px; padding: 18px 32px; font-size: 1.08rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 650; color: var(--ink); text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1.5px no-repeat;
  padding-bottom: 2px;
  transition: background-size .3s var(--ease);
}
.text-link:hover { background-size: 0 1.5px; background-position: 100% 100%; }

.skip-link { position: fixed; left: 16px; top: -80px; opacity: 0; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; opacity: 1; }

/* ---------- Revue ---------- */
.review-bar {
  position: relative; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px var(--gutter);
  background: #2B2540; color: #E9E4F7; font-size: .8rem; line-height: 1.4;
}
.review-bar strong { color: #fff; }
.review-bar__toggle {
  flex: none; border: 1px solid rgba(255, 255, 255, .35); background: transparent; color: #fff;
  border-radius: 999px; padding: 5px 12px; font-size: .78rem; font-weight: 600;
}
.review-bar__toggle[aria-pressed="true"] { background: var(--butter); color: var(--ink); border-color: var(--butter); }
.review-note {
  display: none;
  margin-top: 40px; padding: 16px 20px;
  border: 2px dashed #B79A2B; border-radius: var(--r-md);
  background: #FFF6D1; color: #4A3D05; font-size: .88rem; line-height: 1.55;
}
.show-notes .review-note { display: block; }
.problems .review-note, .keys .review-note { background: #FFF6D1; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.is-scrolled {
  background: rgba(251, 247, 240, .82);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(28, 24, 48, .08);
}
.site-header__inner { display: flex; align-items: center; gap: 28px; min-height: 76px; }
.brand { display: block; flex: none; line-height: 0; border-radius: 8px; }
/* Le PNG fourni (1000 × 200) a de grandes marges transparentes : on recadre à l’affichage, sans retoucher le fichier. */
.logo-crop { display: block; position: relative; width: 104px; aspect-ratio: 572 / 174; overflow: hidden; }
.logo-crop img { position: absolute; width: 174.83%; max-width: none; height: auto; left: -34.09%; top: -5.75%; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.site-nav ul { display: flex; gap: 26px; }
.site-nav a:not(.btn) { text-decoration: none; font-weight: 600; font-size: .94rem; color: var(--ink-soft); transition: color .2s; }
.site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav__cta { display: none; }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 8px var(--gutter) 0; }
.hero__panel {
  position: relative; isolation: isolate; overflow: hidden;
  max-width: 1440px; margin: 0 auto;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 90% at 10% 0%, #F6E9FF 0%, transparent 55%),
    radial-gradient(90% 80% at 100% 10%, #FFE1D2 0%, transparent 60%),
    linear-gradient(180deg, #F1EAFF 0%, #FBEFE6 100%);
  padding: clamp(44px, 5.5vw, 76px) 0 clamp(52px, 6.5vw, 88px);
  text-align: center;
}
.hero__glow {
  position: absolute; inset: auto -10% -40% -10%; height: 70%; z-index: -1;
  background: radial-gradient(50% 60% at 50% 60%, rgba(255, 91, 58, .22), transparent 70%);
  filter: blur(10px);
}
.hero__copy { display: flex; flex-direction: column; align-items: center; }
.hero__eyebrow { margin-bottom: 26px; padding: 8px 16px; background: rgba(255, 255, 255, .7); border-radius: 999px; letter-spacing: .08em; font-size: .74rem; }
.hero__title { font-size: clamp(2.4rem, 4.9vw, 4.2rem); line-height: 1.04; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.hero__title .line > span { display: inline-block; }
.hero__title em { color: var(--tada-text); position: relative; white-space: nowrap; }
.hero__title em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .02em; height: .12em;
  background: var(--tada); border-radius: 99px; opacity: .85;
  transform-origin: left;
}
.hero__lede { max-width: 620px; margin-top: 28px; font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.hero__actions .hero__link { align-self: center; margin-left: 12px; }

/* Animation d’entrée du hero : transitions pilotées par la classe .is-ready (l’état final ne dépend jamais d’une animation qui pourrait redémarrer) */
.js .hero__title .line > span { transform: translateY(105%); transition: transform .9s var(--ease); }
.js .hero__title .line:nth-child(2) > span { transition-delay: .09s; }
.js .hero__title .line:nth-child(3) > span { transition-delay: .18s; }
.js .hero__title em::after { transform: scaleX(0); transition: transform .7s var(--ease) .9s; }
.js .hero__eyebrow, .js .hero__lede, .js .hero__actions { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .hero__lede { transition-delay: .35s; }
.js .hero__actions { transition-delay: .45s; }
.js .hero.is-ready .hero__title .line > span,
.js .hero.is-ready .hero__eyebrow, .js .hero.is-ready .hero__lede, .js .hero.is-ready .hero__actions { opacity: 1; transform: none; }
.js .hero.is-ready .hero__title em::after { transform: scaleX(1); }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Démonstration ---------- */
.demo { position: relative; z-index: 2; }
.demo-section { padding-top: 0; }
.demo__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; margin-bottom: 16px; }
.demo__controls { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 18px; }
.demo__eyebrow { display: flex; align-items: center; gap: 16px; width: 100%; margin-bottom: 6px; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.demo__eyebrow::before, .demo__eyebrow::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(28, 24, 48, .22)); }
.demo__eyebrow::after { background: linear-gradient(90deg, rgba(28, 24, 48, .22), transparent); }
.demo__eyebrow span { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border-radius: 999px; background: rgba(255, 255, 255, .7); }
.demo__eyebrow span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--tada); box-shadow: 0 0 0 4px rgba(255, 91, 58, .2); }
.demo__title { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.demo__hint { color: var(--ink-soft); font-size: .98rem; }
.segmented {
  margin-top: 0;
  display: inline-flex; padding: 4px; gap: 2px;
  background: rgba(255, 255, 255, .8); border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(28, 24, 48, .1);
}
.segmented button {
  border: 0; background: transparent; padding: 9px 16px; border-radius: 999px;
  font-size: .86rem; font-weight: 650; color: var(--ink-soft); white-space: nowrap;
  transition: background-color .25s, color .25s;
}
.segmented button[aria-pressed="true"] { background: var(--ink); color: #fff; }

.stage {
  --pos: 50;
  position: relative; overflow: hidden; isolation: isolate;
  aspect-ratio: 16 / 9.4;
  border-radius: var(--r-lg);
  background: #E9ECF1;
  box-shadow: var(--shadow-lg);
  user-select: none; -webkit-user-select: none;
}
.scene { position: absolute; inset: 0; display: flex; flex-direction: column; }
.scene--new { clip-path: inset(0 0 0 calc(var(--pos) * 1%)); }
.scene--old { clip-path: inset(0 calc((100 - var(--pos)) * 1%) 0 0); }
.stage.is-animating .scene--new, .stage.is-animating .scene--old, .stage.is-animating .curtain { transition: clip-path .7s var(--ease), left .7s var(--ease); }

/* La scène tient dans l'écran avec son en-tête : environ 20 px de marge en haut et en bas */
@media (min-width: 921px) {
  .stage { aspect-ratio: auto; height: clamp(420px, min(calc((100vw - 96px) * .5875), calc(100vh - 274px), calc(100svh - 274px)), 705px); }
}

/* Avant : lecteur « Storyline de base » — correct, mais plat */
.scene--old { background: #fff; font-family: "Open Sans", "Segoe UI", Arial, sans-serif; color: #333; }
.sl__top { display: flex; justify-content: space-between; gap: 12px; padding: 10px 18px; background: #F2F2F2; border-bottom: 1px solid #D9D9D9; font-size: .78rem; color: #555; }
.sl__course { font-weight: 600; color: #333; }
.sl__main { flex: 1; display: grid; grid-template-columns: 190px 1fr; min-height: 0; }
.sl__menu { background: #FAFAFA; border-right: 1px solid #E0E0E0; padding: 12px 0; font-size: .76rem; display: flex; flex-direction: column; }
.sl__menu span { padding: 8px 16px; color: #555; }
.sl__menu .sl__menu-title { font-weight: 700; color: #888; font-size: .68rem; letter-spacing: .08em; padding-bottom: 10px; }
.sl__menu .is-current { background: #E3EEF9; color: #1F5FA8; font-weight: 600; border-left: 3px solid #1F5FA8; padding-left: 13px; }
.sl__slide { position: relative; padding: 28px 34px; font-size: .9rem; line-height: 1.5; display: flex; flex-direction: column; }
.sl__slide h3 { font-family: inherit; font-size: 1.45rem; font-weight: 700; color: #1F4E79; letter-spacing: 0; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid #4472C4; align-self: flex-start; }
.sl__slide p { max-width: 60ch; }
.sl__slide ul { list-style: disc; padding-left: 20px; margin-top: 10px; max-width: 56ch; }
.sl__slide li { margin-bottom: 4px; }
.sl__chart { margin-top: 16px; width: 260px; padding: 10px 14px 8px; border: 1px solid #D9D9D9; background: #fff; font-size: .72rem; color: #595959; }
.sl__chart-title { display: block; text-align: center; font-weight: 600; margin-bottom: 6px; }
.sl__bars { height: 96px; display: flex; align-items: flex-end; justify-content: space-around; border-bottom: 1px solid #BFBFBF; background: repeating-linear-gradient(0deg, transparent 0 23px, #EDEDED 23px 24px); }
.sl__bar { width: 54px; position: relative; }
.sl__bar b { position: absolute; top: -16px; left: 0; right: 0; text-align: center; font-weight: 400; }
.sl__bar--a { height: 90%; background: #4472C4; }
.sl__bar--b { height: 10%; background: #ED7D31; }
.sl__axis { display: flex; justify-content: space-around; padding-top: 4px; }
.sl__hint { margin-top: auto; padding-top: 12px; font-size: .78rem; font-style: italic; color: #777; }
.sl__player { display: flex; align-items: center; gap: 10px; padding: 8px 14px; background: #3A3A3A; color: #EDEDED; font-size: .72rem; }
.sl__ctrl { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 4px; background: #505050; font-size: .7rem; }
.sl__seek { flex: 1; height: 6px; border-radius: 3px; background: #5A5A5A; overflow: hidden; }
.sl__seek i { display: block; width: 16%; height: 100%; background: #9CC3F0; }
.sl__time { font-variant-numeric: tabular-nums; }
.sl__nav { display: flex; gap: 6px; }
.sl__nav button { font-family: inherit; font-size: .72rem; font-weight: 700; border: 0; background: #5A5A5A; color: #fff; border-radius: 4px; padding: 7px 12px; }
.sl__nav button:disabled { opacity: .45; cursor: default; }
.old__toast { position: absolute; left: 50%; bottom: 60px; transform: translateX(-50%); background: #1F4E79; color: #fff; font-size: .8rem; padding: 6px 12px; border-radius: 4px; opacity: 0; transition: opacity .3s; pointer-events: none; white-space: nowrap; }
.old__toast.is-on { opacity: 1; }

/* Avec Ta·da! : « Un bilan, deux lectures » */
.scene--new { background: var(--night); color: #F4F0FA; overflow: hidden; }
.bl__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bl__blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.bl__blob--1 { width: 46%; aspect-ratio: 1; left: 44%; top: 8%; background: #5B3FD0; animation: drift-a 18s ease-in-out infinite alternate; }
.bl__blob--2 { width: 34%; aspect-ratio: 1; left: 62%; top: 46%; background: #FF5B3A; opacity: .28; animation: drift-b 22s ease-in-out infinite alternate; }
.bl__blob--3 { width: 38%; aspect-ratio: 1; left: -8%; top: 52%; background: #2B6CB0; opacity: .3; animation: drift-c 26s ease-in-out infinite alternate; }
.bl__dots { position: absolute; inset: -40px; background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1.5px); background-size: 26px 26px; animation: dots 40s linear infinite; }
@keyframes drift-a { to { transform: translate(-18%, 14%) scale(1.15); } }
@keyframes drift-b { to { transform: translate(-30%, -22%) scale(.9); } }
@keyframes drift-c { to { transform: translate(24%, -18%) scale(1.2); } }
@keyframes dots { to { transform: translate(26px, 26px); } }
.scene--new > *:not(.bl__bg) { position: relative; z-index: 1; }
.new__bar { display: flex; align-items: center; gap: 18px; padding: 16px 28px; font-size: .78rem; letter-spacing: .04em; color: #B7AEDA; }
.new__course { font-weight: 700; color: #F4F0FA; }
.bl__steps { display: flex; gap: 6px; margin-inline: auto; }
.bl__step { width: 36px; height: 20px; border: 0; padding: 0; background: none; position: relative; }
.bl__step::before { content: ""; position: absolute; left: 0; right: 0; top: 8px; height: 4px; border-radius: 4px; background: rgba(244, 240, 250, .2); transition: background-color .4s; }
.bl__step.is-done::before { background: #B9A6F5; }
.bl__step.is-now::before { background: var(--tada); }

.bl { flex: 1; min-height: 0; display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 24px; align-items: center; padding: 0 40px 0 44px; }
.bl__kicker { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tada-light); }
.bl__title { margin-top: 10px; font-family: var(--font-display); font-variation-settings: "SOFT" 100, "opsz" 96; font-weight: 500; font-size: clamp(1.6rem, 3.1vw, 2.75rem); line-height: 1.05; letter-spacing: -.02em; }
.bl__title em { font-style: italic; font-weight: 400; color: #B9A6F5; }
.bl[data-accent="b"] .bl__title { color: var(--tada-light); }
.bl[data-accent="a"] .bl__title { color: #CFC3FA; }
.bl__text { margin-top: 14px; font-size: 1rem; line-height: 1.55; color: #CFC8E6; max-width: 40ch; }
.bl__text strong { color: #fff; }
.bl__copy > * { transition: opacity .35s var(--ease), transform .35s var(--ease); }
.bl__copy.is-swapping > * { opacity: 0; transform: translateY(8px); }
.bl__tools { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.bl__legend { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; color: #E6E0F5; margin-right: 14px; }
.bl__legend::before { content: ""; width: 12px; height: 12px; border-radius: 3px; background: #B9A6F5; }
.bl__legend--b::before { background: var(--tada); }
.bl__pill { border: 1.5px solid rgba(244, 240, 250, .3); background: transparent; color: #F4F0FA; border-radius: 999px; padding: 9px 16px; font-size: .92rem; font-weight: 650; transition: background-color .25s, border-color .25s, color .25s; }
.bl__pill:hover { border-color: #fff; }
.bl__pill[aria-pressed="true"] { background: #B9A6F5; border-color: #B9A6F5; color: var(--ink); }
.bl__pill--b[aria-pressed="true"] { background: var(--tada); border-color: var(--tada); }
.bl__quote { display: block; text-align: left; width: 100%; max-width: 360px; border: 1.5px solid rgba(244, 240, 250, .22); background: rgba(255, 255, 255, .04); color: #F4F0FA; border-radius: 14px; padding: 12px 16px; font-family: var(--font-display); font-style: italic; font-size: 1.12rem; transition: background-color .25s, border-color .25s; }
.bl__quote small { display: block; font-family: var(--font-body); font-style: normal; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #B7AEDA; margin-bottom: 2px; }
.bl__quote:hover, .bl__quote[aria-pressed="true"] { border-color: #B9A6F5; background: rgba(185, 166, 245, .12); }
.bl__quote--b:hover, .bl__quote--b[aria-pressed="true"] { border-color: var(--tada); background: rgba(255, 91, 58, .12); }
.bl__answer { flex-basis: 100%; margin-top: 4px; font-size: .92rem; color: #E6E0F5; }
.bl__answer strong { color: var(--butter); }

.bl__viz { position: relative; height: 100%; min-height: 0; perspective: 1100px; }
.bl__field { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 1s var(--ease); }
.bl[data-station="0"] .bl__field { transform: rotateX(52deg) rotateZ(-32deg) scale(.95); }
.bl__sq { position: absolute; left: 0; top: 0; width: var(--sq, 20px); height: var(--sq, 20px); border-radius: 22%; background: #B9A6F5; box-shadow: 0 0 14px rgba(185, 166, 245, .35); transition: transform .9s var(--ease), opacity .45s, background-color .45s, box-shadow .45s; transition-delay: var(--delay, 0ms); }
.bl__sq--b { background: var(--tada); box-shadow: 0 0 16px rgba(255, 91, 58, .55); }
.bl[data-dim="a"] .bl__sq:not(.bl__sq--b), .bl[data-dim="b"] .bl__sq--b { opacity: .18; box-shadow: none; }
.bl__label { position: absolute; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #CFC3FA; opacity: 0; transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none; white-space: nowrap; }
.bl__label--b { color: var(--tada-light); }
.bl[data-station="2"] .bl__label { opacity: 1; }
.bl__nav { display: flex; justify-content: flex-end; gap: 8px; padding: 12px 28px 20px; }
.bl__back { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(244, 240, 250, .3); background: transparent; color: #F4F0FA; font-size: 1.1rem; }
.bl__back:disabled { opacity: .3; cursor: default; }
.bl__next { display: inline-flex; align-items: center; gap: 10px; height: 46px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--tada); color: var(--ink); font-weight: 750; font-size: .98rem; box-shadow: 0 10px 24px -10px rgba(255, 91, 58, .8); transition: transform .25s var(--ease); }
.bl__next:hover { transform: translateY(-2px); }

@media (min-width: 921px) and (max-height: 820px) {
  .sl__slide { padding: 18px 28px; font-size: .84rem; }
  .sl__slide h3 { font-size: 1.2rem; margin-bottom: 8px; }
  .sl__slide ul { margin-top: 6px; }
  .sl__chart { margin-top: 10px; padding: 8px 12px 6px; width: 230px; }
  .sl__bars { height: 70px; }
  .sl__hint { display: none; }
  .new__bar { padding: 12px 24px; }
  .bl__title { font-size: clamp(1.4rem, 2.4vw, 2.1rem); }
  .bl__text { margin-top: 8px; font-size: .92rem; }
  .bl__tools { margin-top: 12px; gap: 6px; }
  .bl__quote { padding: 8px 14px; font-size: 1rem; flex: 1 1 200px; max-width: none; }
  .sl__slide { overflow: hidden; }
  .bl__nav { padding: 8px 24px 14px; }
}

.stage__tag {
  position: absolute; bottom: 64px; z-index: 3; pointer-events: none;
  font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; transition: opacity .3s;
}
.stage__tag--before { left: 16px; background: #fff; color: #3A4D6E; box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.stage__tag--after { right: 16px; bottom: auto; top: 58px; background: #FFD166; color: #1D2A28; }
.stage[data-edge="after"] .curtain { align-items: end; padding-bottom: 26px; }
.stage[data-edge="before"] .stage__tag, .stage[data-edge="after"] .stage__tag { opacity: 0; }

.curtain {
  position: absolute; top: 0; bottom: 0; z-index: 4;
  left: calc(var(--pos) * 1%);
  width: 56px; margin-left: -28px;
  cursor: ew-resize; touch-action: none;
  display: grid; place-items: center;
  border-radius: 0;
}
.curtain:focus-visible { outline: none; }
.curtain:focus-visible .curtain__knob { outline: 3px solid var(--lilac-deep); outline-offset: 3px; }
.curtain__line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; margin-left: -1.5px; background: #fff; box-shadow: 0 0 0 1px rgba(28, 24, 48, .12), 0 0 24px rgba(255, 91, 58, .5); }
.curtain__knob {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px;
  background: var(--tada); color: var(--ink);
  font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1rem; white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(255, 91, 58, .8), 0 0 0 4px #fff;
  --shift: 0px;
  transform: translateX(var(--shift));
  transition: transform .25s var(--ease-spring);
}
.curtain__knob span { font-family: var(--font-body); font-style: normal; font-weight: 800; opacity: .6; }
.curtain:hover .curtain__knob, .stage.is-dragging .curtain__knob { transform: translateX(var(--shift)) scale(1.08); }
.stage[data-edge="before"] .curtain__line, .stage[data-edge="after"] .curtain__line { opacity: 0; }
.curtain__line { transition: opacity .3s; }

.demo__note { margin-top: 14px; font-size: .82rem; color: var(--ink-mute); text-align: center; }

/* ---------- Apparition au défilement ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Clients ---------- */
.clients { padding-top: clamp(32px, 4vw, 48px); }
.clients__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px 48px; flex-wrap: wrap; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.clients__title { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.clients__list { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 56px; }
.client { display: flex; align-items: center; }
.client img { width: auto; height: 46px; filter: grayscale(1) contrast(1.05); opacity: .72; transition: filter .35s, opacity .35s; }
.client--oiq img { height: 52px; }
.client--carrousel img { height: 70px; }
.client:hover img { filter: none; opacity: 1; }

/* ---------- Notre atelier : rapide, abordable, soigné ---------- */
.trio__layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.trio__lead { margin-top: 22px; font-size: 1.12rem; color: var(--ink-soft); max-width: 52ch; }
.venn { position: relative; width: min(100%, 400px); aspect-ratio: 1; justify-self: center; isolation: isolate; }
.venn__c { position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; mix-blend-mode: multiply; display: flex; transition: transform 1.2s var(--ease-spring); }
.venn__c b { font-family: var(--font-display); font-style: italic; font-weight: 550; font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: var(--ink); }
.venn__c--1 { left: 0; top: 2%; background: #C9B8FF; padding: 22% 0 0 14%; }
.venn__c--2 { right: 0; top: 2%; background: #FFC4AE; justify-content: flex-end; padding: 22% 12% 0 0; }
.venn__c--3 { left: 20%; bottom: 0; background: #FFE08A; justify-content: center; align-items: flex-end; padding-bottom: 14%; }
.venn__core { position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%); z-index: 2; display: grid; place-items: center; width: 27%; aspect-ratio: 1; border-radius: 50%; background: var(--tada); color: var(--ink); font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(.95rem, 1.6vw, 1.2rem); box-shadow: 0 0 0 6px var(--cream), 0 14px 30px -10px rgba(255, 91, 58, .8); transition: transform .6s var(--ease-spring) .9s; }
.js .venn:not(.is-in) .venn__c--1 { transform: translate(-22%, -10%); }
.js .venn:not(.is-in) .venn__c--2 { transform: translate(22%, -10%); }
.js .venn:not(.is-in) .venn__c--3 { transform: translate(0, 22%); }
.js .venn:not(.is-in) .venn__core { transform: translate(-50%, -50%) scale(0); }
.trio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px, 5vw, 64px); }
.trio__item { padding: 24px 26px; border-radius: var(--r-md); background: var(--paper); box-shadow: 0 0 0 1px var(--line); }
.trio__num { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--tada-text); }
.trio__item h3 { margin-top: 6px; font-family: var(--font-display); font-variation-settings: "SOFT" 100; font-weight: 550; font-size: 1.5rem; letter-spacing: -.02em; }
.trio__item p { margin-top: 8px; color: var(--ink-soft); }
.trio__item--price { background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); }
.trio__item--price .trio__num { color: var(--tada-light); }
.trio__item--price p { color: #DCD6EC; }
.trio__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 8px; margin: 10px 0 4px !important; color: #fff !important; font-size: .9rem; font-weight: 600; }
.trio__price strong { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 3.4vw, 2.6rem); line-height: 1; letter-spacing: -.02em; color: var(--tada-light); }
.trio__star { color: var(--tada-light); text-decoration: none; font-weight: 800; padding: 0 2px; }
.currency { display: inline-flex; gap: 2px; padding: 3px; margin: 6px 0 2px; border-radius: 999px; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14); }
.currency button { border: 0; background: transparent; color: #CFC8E6; font-size: .74rem; font-weight: 800; letter-spacing: .06em; padding: 5px 10px; border-radius: 999px; transition: background-color .2s, color .2s; }
.currency button:hover { color: #fff; }
.currency button[aria-pressed="true"] { background: var(--tada-light); color: var(--ink); }
.trio__footnote { margin-top: 14px; font-size: .84rem; color: var(--ink-mute); line-height: 1.6; }
.trio__price--light { color: var(--ink) !important; }
.trio__price--light strong { color: var(--tada-text); }
.service__facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px !important; }
.service__facts span { padding: 7px 12px; border-radius: 999px; background: rgba(255, 255, 255, .1); color: #fff; font-size: .88rem; font-weight: 650; }
.service__facts .trio__star { color: #FFD166; }
.service--featured .service__facts + .btn { margin-top: 18px; }

/* ADA */
.ada { margin-top: 20px; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding: clamp(28px, 4vw, 48px); border-radius: var(--r-lg); background: linear-gradient(135deg, var(--lilac), #F7E9FF 55%, var(--peach)); overflow: hidden; }
.ada h3 { font-family: var(--font-display); font-variation-settings: "SOFT" 100; font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -.02em; line-height: 1.1; }
.ada__copy > p:not(.eyebrow) { margin-top: 14px; color: var(--ink-soft); }
.ada__visual { position: relative; width: min(100%, 360px); aspect-ratio: 1; justify-self: center; }
.ada__visual::before { content: ""; position: absolute; inset: 14%; border-radius: 50%; border: 1.5px dashed rgba(91, 63, 208, .35); animation: spin 60s linear infinite; }
.ada__core { position: absolute; left: 50%; top: 50%; width: 34%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.9rem); box-shadow: 0 0 0 10px rgba(91, 63, 208, .15), 0 0 0 22px rgba(91, 63, 208, .08), 0 20px 40px -14px rgba(28, 24, 48, .6); }
.ada__core span::after { content: ""; display: inline-block; width: .32em; height: .32em; margin-left: .08em; border-radius: 50%; background: var(--tada); vertical-align: .9em; }
.ada__chip { position: absolute; left: 50%; top: 50%; padding: 6px 11px; border-radius: 999px; background: #fff; color: var(--ink); font-size: .74rem; font-weight: 700; white-space: nowrap; box-shadow: var(--shadow); transition: transform 1.1s var(--ease), opacity .6s; }
.ada__chip { transform: translate(-50%, -50%) rotate(var(--a)) translateY(-150px) rotate(calc(-1 * var(--a))); }
.js .ada:not(.is-in) .ada__chip { opacity: 0; transform: translate(-50%, -50%) rotate(var(--a)) translateY(-40px) rotate(calc(-1 * var(--a))); }
@keyframes spin { to { transform: rotate(360deg); } }

.problems__scorm { margin-top: 48px; padding: clamp(24px, 4vw, 40px); border-radius: var(--r-lg); background: rgba(255, 229, 154, .08); box-shadow: inset 0 0 0 1px rgba(255, 229, 154, .2); max-width: none !important; }
.problems__scorm-big { font-family: var(--font-display); font-variation-settings: "SOFT" 100, "opsz" 144; font-weight: 500; font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.04; letter-spacing: -.025em; color: #fff; }
.problems__scorm-big em { font-style: italic; font-weight: 400; color: var(--butter); }
.problems__scorm p:not(.problems__scorm-big) { margin-top: 12px; color: #F1E8C6; max-width: 60ch; }
.review-ui { margin-top: 20px; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding: clamp(28px, 4vw, 48px); border-radius: var(--r-lg); background: var(--ink); color: #fff; overflow: hidden; }
.review-ui .eyebrow { color: #CFC8E6; }
.review-ui h3 { font-family: var(--font-display); font-variation-settings: "SOFT" 100; font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -.02em; line-height: 1.1; }
.review-ui__copy > p:not(.eyebrow) { margin-top: 14px; color: #DCD6EC; }
.rv { border-radius: 14px; background: #2A2440; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7); overflow: hidden; font-size: .78rem; }
.rv__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #221D36; color: #B7AEDA; }
.rv__bar i { width: 9px; height: 9px; border-radius: 50%; background: #4A4264; }
.rv__bar span { margin-left: 10px; font-weight: 600; }
.rv__screen { position: relative; height: 220px; margin: 12px; border-radius: 10px; background: radial-gradient(60% 80% at 80% 30%, rgba(91, 63, 208, .5), transparent 70%), var(--night); overflow: visible; }
.rv__line { position: absolute; left: 20px; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .2); }
.rv__line--k { top: 30px; width: 70px; background: var(--tada-light); opacity: .8; }
.rv__line--t { top: 50px; width: 150px; height: 16px; background: #F4F0FA; }
.rv__line--s { top: 76px; width: 120px; }
.rv__grid { position: absolute; right: 22px; top: 26px; width: 120px; height: 120px; background: radial-gradient(circle, #B9A6F5 58%, transparent 60%) 0 0 / 12px 12px; opacity: .9; -webkit-mask: linear-gradient(#000 90%, transparent 90%); mask: linear-gradient(#000 90%, transparent 90%); }
.rv__grid::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: radial-gradient(circle, var(--tada) 58%, transparent 60%) 0 0 / 12px 12px; }
.rv__pin { position: absolute; z-index: 2; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--tada); color: var(--ink); font-weight: 800; font-size: .72rem; box-shadow: 0 0 0 3px #fff; }
.rv__pin--1 { left: 150px; top: 42px; }
.rv__pin--2 { right: 130px; top: 120px; background: #6FE3B8; }
.rv__bubble { position: absolute; z-index: 3; max-width: 190px; padding: 8px 11px; border-radius: 10px; background: #fff; color: var(--ink); line-height: 1.35; box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .6); }
.rv__bubble b { display: block; font-size: .68rem; color: var(--ink-mute); }
.rv__bubble--1 { left: 176px; top: 64px; border-top-left-radius: 2px; }
.rv__bubble--2 { right: 20px; top: 150px; border-top-right-radius: 2px; }
.review-ui.is-in .rv__bubble--1 { animation: pop-in .5s var(--ease-spring) .6s both; }
.review-ui.is-in .rv__bubble--2 { animation: pop-in .5s var(--ease-spring) 1.3s both; }
@keyframes pop-in { from { opacity: 0; transform: translateY(8px) scale(.9); } }
.rv__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 0 14px 14px; color: #B7AEDA; }
.rv__approve { white-space: nowrap; padding: 7px 12px; border-radius: 999px; background: #6FE3B8; color: #0E2A22; font-weight: 800; }

/* ---------- Propositions de valeur ---------- */
.section-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--split { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.section-head--split > div { max-width: 700px; }
.section-head--split > p { max-width: 380px; color: var(--ink-soft); padding-bottom: 6px; }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { position: relative; padding: 28px 28px 32px; border-radius: var(--r-lg); overflow: hidden; }
.value-card--lilac { background: var(--lilac); }
.value-card--peach { background: var(--peach); }
.value-card--butter { background: var(--butter); }
.value-card h3 { font-family: var(--font-display); font-variation-settings: "SOFT" 100; font-weight: 550; font-size: 1.65rem; letter-spacing: -.02em; line-height: 1.1; }
.value-card p { margin-top: 12px; color: var(--ink-soft); }
.value-card .text-link { margin-top: 18px; }
.value-card__art { height: 150px; position: relative; margin-bottom: 20px; }
.layer { position: absolute; left: 50%; top: 50%; width: 150px; height: 92px; border-radius: 12px; transition: transform .6s var(--ease); }
.layer--1 { background: #fff; box-shadow: var(--shadow); transform: translate(-50%, -50%) translate(-24px, 22px) rotate(-6deg); }
.layer--2 { background: #B9A6F5; transform: translate(-50%, -50%) rotate(0); }
.layer--3 { background: var(--tada); width: 70px; height: 70px; border-radius: 50%; transform: translate(-50%, -50%) translate(56px, -26px); }
.value-card:hover .layer--1 { transform: translate(-50%, -50%) translate(-44px, 30px) rotate(-10deg); }
.value-card:hover .layer--3 { transform: translate(-50%, -50%) translate(70px, -38px) scale(1.08); }
.value-card__art--team { display: flex; align-items: center; justify-content: center; }
.avatar { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; font-size: .78rem; font-weight: 750; border: 4px solid var(--peach); margin-left: -14px; transition: transform .5s var(--ease-spring); }
.avatar--d { background: var(--ink); color: #fff; margin-left: 0; }
.avatar--p { background: #fff; color: var(--ink); }
.avatar--you { background: var(--tada); color: var(--ink); }
.value-card:hover .avatar--d { transform: translateX(-6px) rotate(-6deg); }
.value-card:hover .avatar--you { transform: translateX(6px) rotate(6deg) scale(1.06); }
.value-card__art--keys { display: grid; place-items: center; }
.folder { position: relative; width: 150px; height: 104px; margin-top: 24px; }
.folder::before { content: ""; position: absolute; inset: 0; background: var(--ink); border-radius: 6px 14px 14px 14px; z-index: 2; }
.folder__tab { position: absolute; left: 0; top: -14px; width: 60px; height: 20px; background: var(--ink); border-radius: 6px 10px 0 0; }
.folder__file { position: absolute; left: 18px; right: 18px; height: 80px; background: #fff; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,.15); transition: transform .5s var(--ease-spring); z-index: 1; }
.folder__file.f1 { top: -10px; transform: rotate(-4deg); }
.folder__file.f2 { top: -18px; background: var(--tada); transform: rotate(3deg); }
.folder__file.f3 { top: -24px; background: var(--lilac); transform: rotate(-1deg); }
.value-card:hover .f1 { transform: translateY(-14px) rotate(-8deg); }
.value-card:hover .f2 { transform: translateY(-24px) rotate(6deg); }
.value-card:hover .f3 { transform: translateY(-32px) rotate(-2deg); }

/* ---------- Problèmes ---------- */
.problems { background: var(--night); color: #F4F0FA; position: relative; overflow: hidden; }
.problems::before { content: ""; position: absolute; inset: -20% 40% auto -20%; height: 80%; background: radial-gradient(closest-side, rgba(91, 63, 208, .45), transparent); pointer-events: none; }
.problems .wrap { position: relative; }
.problems__head { max-width: 860px; margin-bottom: 56px; }
.problems h2 { color: #fff; }
.old-button {
  display: inline-block; vertical-align: .12em;
  font-family: Arial, Helvetica, sans-serif; font-size: .42em; font-weight: bold; letter-spacing: 0; line-height: 1;
  padding: .55em .9em; border-radius: 4px; color: #3A4D6E;
  background: linear-gradient(#FDFDFE, #C9D0DA); border: 1px solid #8C97A8;
  box-shadow: inset 0 1px 0 #fff, 0 2px 0 #6D7788;
  transform: rotate(-3deg);
}
.problems__intro { margin-top: 22px; color: #CFC8E6; font-size: 1.08rem; max-width: 60ch; }
.problems__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.problem { padding: 26px; border-radius: var(--r-md); background: rgba(255, 255, 255, .05); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); transition: background-color .3s, transform .4s var(--ease); }
.problem:hover { background: rgba(255, 255, 255, .09); transform: translateY(-3px); }
.problem h3 { font-size: 1.14rem; color: #fff; }
.problem p { margin-top: 14px; color: #CFC8E6; font-size: .95rem; }
.problem__arrow { color: var(--tada-light); font-weight: 800; margin-right: 4px; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service { position: relative; padding: 30px; border-radius: var(--r-lg); background: var(--paper); box-shadow: 0 0 0 1px var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.service h3 { font-family: var(--font-display); font-variation-settings: "SOFT" 100; font-weight: 550; font-size: 1.7rem; letter-spacing: -.02em; line-height: 1.1; margin-top: 8px; }
.service > p:not(.service__for) { margin-top: 12px; color: var(--ink-soft); }
.service .text-link { margin-top: auto; padding-top: 22px; background-position: 0 100%; }
.service__for { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.service--featured { background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); padding: 38px; overflow: hidden; }
.service--modern { background: #0F3B3A; }
.service--modern .service__tag { background: #FFD166; }
.service--update { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 20px 40px; flex-wrap: wrap; }
.service--update > div { flex: 0 1 340px; }
.service--update > p { flex: 1 1 320px; margin-top: 0 !important; }
.service--update .text-link { margin-top: 0; padding-top: 0; }
.service--featured .service__for { color: #CFC8E6; }
.service--featured h3 { font-size: clamp(1.9rem, 2.8vw, 2.4rem); color: #fff; }
.service--featured > p:not(.service__for) { color: #DCD6EC; font-size: 1.05rem; max-width: 46ch; }
.service--featured .btn { margin-top: 28px; }
.service__tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 6px 12px; border-radius: 999px; background: var(--tada); color: var(--ink); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.checks { margin-top: 22px; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 30px; color: #EDE8F8; }
.checks li::before { content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: 50%; background: rgba(255, 91, 58, .18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.3l2.2 2.2 4.8-5' fill='none' stroke='%23FF8A6E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat; }
.service__art { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.mini-slide { width: 120px; height: 76px; border-radius: 8px; position: relative; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.mini-slide--old { background: #E2E6EC; transform: rotate(-4deg); }
.mini-slide--old i { height: 5px; background: #9AA4B4; border-radius: 2px; }
.mini-slide--old i:nth-child(2) { width: 80%; } .mini-slide--old i:nth-child(3) { width: 60%; }
.mini-slide--new { background: #0F3B3A; transform: rotate(3deg); box-shadow: 0 10px 24px -8px rgba(0,0,0,.5); }
.mini-slide--new b { height: 12px; width: 70%; background: #F6F1E7; border-radius: 3px; }
.mini-slide--new i { height: 16px; width: 55%; background: rgba(246,241,231,.15); border-radius: 5px; }
.mini-slide--new em { position: absolute; right: 10px; bottom: 10px; width: 30px; height: 20px; background: var(--tada); border-radius: 4px; transform: rotate(-8deg); }
.mini-doc { width: 70px; height: 90px; border-radius: 6px; background: #fff; padding: 12px 10px; display: flex; flex-direction: column; gap: 7px; transform: rotate(-5deg); box-shadow: 10px 6px 0 -2px rgba(255,255,255,.35); }
.mini-doc i { height: 4px; border-radius: 2px; background: #B9B3CC; }
.mini-doc i:nth-child(2) { width: 70%; } .mini-doc i:nth-child(4) { width: 55%; }
.mini-arrow { font-size: 1.6rem; color: var(--tada-light); font-weight: 800; }
.services__base { margin-top: 20px; padding: 20px 24px; border-radius: var(--r-md); background: var(--lilac); color: var(--ink); display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap; }
.services__base-label { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--lilac-deep); flex: none; }

/* ---------- Déroulement ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; counter-reset: step; }
.steps::before { content: ""; position: absolute; left: 30px; right: 30px; top: 30px; height: 2px; background: var(--line); }
.steps::after { content: ""; position: absolute; left: 30px; right: 30px; top: 30px; height: 2px; background: var(--tada); transform-origin: left; transform: scaleX(0); transition: transform 1.6s var(--ease) .3s; }
.steps.is-in::after { transform: scaleX(1); }
.no-js .steps::after, html:not(.js) .steps::after { transform: scaleX(1); }
.step { position: relative; }
.step__num { position: relative; z-index: 1; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-family: var(--font-display); font-style: italic; font-size: 1.6rem; font-weight: 500; box-shadow: 0 0 0 8px var(--cream); }
.step h3 { margin-top: 26px; font-family: var(--font-display); font-variation-settings: "SOFT" 100; font-weight: 550; font-size: 1.55rem; letter-spacing: -.02em; line-height: 1.12; }
.step p { margin-top: 12px; color: var(--ink-soft); }
.step__out { display: inline-block; margin-top: 18px; padding: 6px 12px; border-radius: 999px; background: var(--peach); font-size: .84rem; font-weight: 700; }
.process__note { margin-top: 48px; display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-radius: var(--r-md); background: var(--paper); box-shadow: 0 0 0 1px var(--line); }

/* ---------- Fichiers remis ---------- */
.keys { background: var(--ink); color: #fff; }
.keys__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.keys .eyebrow { color: #CFC8E6; }
.keys h2 { color: #fff; }
.keys h2 em { color: var(--tada-light); }
.keys__copy > p:not(.eyebrow):not(.keys__fine) { margin-top: 22px; color: #DCD6EC; font-size: 1.08rem; }
.keys__paths { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.keys__paths span { padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); font-weight: 650; font-size: .92rem; }
.keys__paths span:last-child { background: var(--tada); color: var(--ink); box-shadow: none; }
.keys__fine { margin-top: 24px; font-size: .86rem; color: #ABA3C6; }
.kit { display: grid; gap: 12px; }
.kit__item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; border-radius: var(--r-md); background: #fff; color: var(--ink); transition: transform .4s var(--ease); }
.kit__item:nth-child(2) { margin-left: 24px; } .kit__item:nth-child(3) { margin-left: 48px; } .kit__item:nth-child(4) { margin-left: 24px; }
.kit__item:hover { transform: translateX(-6px); }
.kit__item h3 { font-size: 1.05rem; }
.kit__item p { margin-top: 4px; font-size: .93rem; color: var(--ink-soft); }
.kit__icon { width: 44px; height: 44px; flex: none; border-radius: 12px; position: relative; }
.kit__icon--pkg { background: var(--tada); }
.kit__icon--pkg::after { content: ""; position: absolute; inset: 12px; border: 2.5px solid var(--ink); border-radius: 4px; border-top-width: 6px; }
.kit__icon--src { background: var(--lilac); }
.kit__icon--src::after { content: "</>"; position: absolute; inset: 0; display: grid; place-items: center; font-weight: 800; font-size: .8rem; color: var(--lilac-deep); }
.kit__icon--guide { background: var(--butter); }
.kit__icon--guide::after { content: ""; position: absolute; left: 13px; right: 13px; top: 12px; bottom: 12px; background: repeating-linear-gradient(180deg, var(--ink) 0 2.5px, transparent 2.5px 7px); }
.kit__icon--trace { background: var(--mint); }
.kit__icon--trace::after { content: ""; position: absolute; left: 12px; top: 12px; width: 14px; height: 14px; border: 2.5px solid #1F8A67; border-radius: 50%; box-shadow: 8px 8px 0 -4px #1F8A67; }

/* ---------- FAQ ---------- */
.faq__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq__head { position: sticky; top: 110px; }
.faq__head > p:not(.eyebrow) { margin-top: 20px; color: var(--ink-soft); }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list details:first-child { border-top: 1px solid var(--line); }
.faq__list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-weight: 650; font-size: 1.08rem; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: ""; flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 10v12M10 16h12' stroke='%231C1830' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% no-repeat; box-shadow: 0 0 0 1px var(--line); transition: transform .35s var(--ease), background-color .25s; }
.faq__list details[open] summary::after { transform: rotate(45deg); background-color: var(--peach); }
.faq__list summary:hover::after { background-color: var(--peach); }
.faq__answer { padding: 0 48px 24px 0; color: var(--ink-soft); }
.faq__list details[open] .faq__answer { animation: fade-up .4s var(--ease); }

/* ---------- CTA final ---------- */
.final { padding-top: 0; }
.final__panel {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(48px, 8vw, 104px) clamp(24px, 6vw, 88px);
  border-radius: var(--r-xl); text-align: center;
  background: radial-gradient(90% 120% at 50% 110%, #FF8A6E 0%, transparent 60%), linear-gradient(180deg, #FFD9C7, #FFC2A8);
}
.final__panel h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); max-width: 18ch; margin-inline: auto; }
.final__panel h2 em { color: var(--ink); }
.final__panel > p:not(.eyebrow) { margin: 22px auto 0; max-width: 52ch; color: #3B2A33; font-size: 1.08rem; }
.final__panel .btn { margin-top: 34px; }
.final__panel .eyebrow { color: #5A3A3A; }
.final__confetti i { position: absolute; z-index: -1; width: 14px; height: 14px; background: var(--ink); clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%); opacity: 0; }
.final__panel.is-in .final__confetti i { animation: pop 1.2s var(--ease) forwards; }
.final__confetti i:nth-child(1) { left: 3%; top: 6%; width: 22px; height: 22px; animation-delay: .2s !important; }
.final__confetti i:nth-child(2) { right: 3%; top: 5%; background: #fff; width: 28px; height: 28px; animation-delay: .3s !important; }
.final__confetti i:nth-child(3) { left: 2.5%; bottom: 9%; background: #fff; animation-delay: .4s !important; }
.final__confetti i:nth-child(4) { right: 2.5%; bottom: 12%; width: 18px; height: 18px; animation-delay: .5s !important; }
.final__confetti i:nth-child(5) { left: 30%; bottom: 3.5%; background: var(--lilac-deep); animation-delay: .35s !important; }
.final__confetti i:nth-child(6) { right: 30%; bottom: 3%; background: var(--lilac-deep); width: 20px; height: 20px; animation-delay: .45s !important; }
.final__confetti i:nth-child(7) { left: 48%; top: 4%; background: #fff; width: 10px; height: 10px; animation-delay: .55s !important; }
.final__confetti i:nth-child(8) { right: 18%; top: 3%; width: 12px; height: 12px; animation-delay: .6s !important; }
@keyframes pop { 0% { opacity: 0; transform: scale(0) rotate(-45deg); } 60% { opacity: 1; transform: scale(1.3) rotate(10deg); } 100% { opacity: .9; transform: scale(1) rotate(0); } }

/* ---------- Pied de page ---------- */
.site-footer { padding: 56px 0 36px; }
.site-footer__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.brand--footer .logo-crop { width: 140px; }
.signature { margin-top: 16px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-variation-settings: "SOFT" 100; letter-spacing: -.01em; }
.site-footer nav ul { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-footer nav a { text-decoration: none; font-weight: 600; color: var(--ink-soft); font-size: .94rem; }
.site-footer nav a:hover { color: var(--ink); }
.lang-switch { flex: none; display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 10px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px rgba(28, 24, 48, .18); font-size: .82rem; font-weight: 800; letter-spacing: .06em; color: var(--ink); text-decoration: none; transition: background-color .2s, box-shadow .2s; }
.lang-switch:hover { background: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }
.site-footer__credit { margin-top: 36px; font-size: .95rem; color: var(--ink-soft); }
.site-footer__credit a { color: var(--ink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--tada); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.site-footer__credit a:hover { color: var(--tada-text); }
.site-footer__fine { margin-top: 16px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--ink-mute); }

/* ---------- Formulaire de contact ---------- */
.final__panel { text-align: left !important; }
.final__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.final__copy h2 { margin-inline: 0 !important; }
.final__copy > p:not(.eyebrow) { margin: 22px 0 0 !important; }
.final__list { margin-top: 14px; display: grid; gap: 10px; counter-reset: c; }
.final__list li { counter-increment: c; display: flex; gap: 12px; align-items: baseline; color: #3B2A33; }
.final__list li::before { content: counter(c); flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-weight: 800; font-size: .8rem; }
.contact-form { display: flex; flex-direction: column; gap: 14px; padding: clamp(22px, 3vw, 32px); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-lg); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form label > span { font-size: .82rem; font-weight: 700; color: var(--ink); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; font-size: 16px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--ink); transition: border-color .2s, background-color .2s; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--lilac-deep); background: #fff; box-shadow: 0 0 0 3px rgba(91, 63, 208, .15); }
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-submit { align-self: flex-start; margin-top: 4px !important; }
.cf-submit:disabled { opacity: .6; cursor: wait; transform: none; }
.cf-legal { font-size: .82rem; color: var(--ink-mute); }
.cf-legal a, .cf-status a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.cf-status { font-size: .9rem; min-height: 1em; }
.cf-status.is-error { color: #A3261A; }
.cf-done { padding: clamp(24px, 3vw, 36px); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-lg); animation: fade-up .5s var(--ease); }
.cf-done:focus { outline: none; }
.cf-done__title { font-family: var(--font-display); font-weight: 550; font-size: 1.6rem; color: var(--ink); margin-bottom: 8px; }
.cf-done p:not(.cf-done__title) { color: var(--ink-soft); }

/* ---------- Pied de page : liens légaux ---------- */
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-top: 10px; font-size: .88rem; }
.site-footer__legal a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__legal a:hover { color: var(--ink); }

/* ---------- Pages légales ---------- */
.legal-header { display: flex; align-items: center; gap: 20px; min-height: 76px; }
.legal-header .back { margin-left: auto; font-weight: 650; color: var(--ink-soft); text-decoration: none; }
.legal-header .back:hover { color: var(--ink); }
.legal { max-width: 760px; padding-block: clamp(40px, 7vw, 88px); }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal .legal__date { margin-top: 12px; color: var(--ink-mute); font-size: .92rem; }
.legal .legal__intro { margin-top: 24px; font-size: 1.1rem; color: var(--ink-soft); }
.legal h2 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 750; letter-spacing: 0; line-height: 1.3; margin-top: 40px; }
.legal p, .legal li { margin-top: 10px; color: var(--ink-soft); }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--tada); text-underline-offset: 3px; }
.legal strong { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .site-nav ul { gap: 18px; }
  .site-nav a:not(.btn) { font-size: .88rem; }
  .sl__main { grid-template-columns: 150px 1fr; }
}

@media (max-width: 920px) {
  .header-cta { margin-left: auto; }
  .lang-switch { margin-left: auto; }
  .lang-switch + .header-cta { margin-left: 0; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 14px; border: 0; border-radius: 999px; background: rgba(28, 24, 48, .07); font-weight: 650; font-size: .9rem; }
  .menu-toggle__bars { width: 16px; height: 10px; position: relative; border-top: 2px solid currentColor; border-bottom: 2px solid currentColor; transition: transform .3s var(--ease); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bars { border-bottom-color: transparent; transform: translateY(4px); }
  .site-nav { position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + 4px); flex-direction: column; align-items: stretch; gap: 8px; padding: 12px; border-radius: var(--r-md); background: #fff; box-shadow: var(--shadow-lg); visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .25s, transform .25s var(--ease), visibility 0s .25s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .25s, transform .25s var(--ease), visibility 0s; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: 12px 10px; border-radius: 10px; font-size: 1rem !important; }
  .site-nav ul a:hover { background: var(--cream); }
  .site-nav__cta { display: inline-flex; margin-top: 4px; }
  .site-header__inner { position: relative; gap: 12px; }

  .values__grid, .trio__grid { grid-template-columns: 1fr; }
  .trio__layout, .review-ui, .ada { grid-template-columns: 1fr; }
  .venn { width: min(100%, 340px); }
  .values__grid .value-card { display: grid; grid-template-columns: 160px 1fr; column-gap: 24px; align-items: center; }
  .value-card__art { grid-row: 1 / span 3; margin: 0; }
  .problems__grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .keys__layout, .faq__layout, .final__layout { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .section-head--split { flex-direction: column; align-items: flex-start; gap: 16px; }

  .stage { aspect-ratio: auto; height: 560px; }
  .bl { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); gap: 12px; padding: 0 28px; align-items: start; }
  .bl__viz { min-height: 220px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .review-bar { font-size: .72rem; }
  .review-bar__detail { display: none; }
  .header-cta { display: none; }
  .menu-toggle { margin-left: 0; }
  .site-header__inner { min-height: 64px; }
  .logo-crop { width: 92px; }

  .hero { padding-inline: 8px; }
  .hero__panel { border-radius: 28px; padding-top: 40px; }
  .hero__eyebrow { font-size: .68rem; padding: 6px 12px; text-align: center; line-height: 1.4; }
  .hero__title { font-size: clamp(2.15rem, 10.2vw, 3rem); max-width: none; }
  .hero__title .line { display: inline; overflow: visible; }
  .hero__title .line > span { display: inline; }
  .js .hero__title .line > span { transform: none; transition: none; }
  .hero__copy { padding-inline: 8px; }
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
  .hero__actions .hero__link { margin: 10px 0 0; }

  .demo { padding-inline: 0; width: calc(100% - 16px); }
  .demo__eyebrow { font-size: .68rem; gap: 8px; }
  .segmented button { padding: 8px 12px; font-size: .8rem; }
  .stage { height: 668px; border-radius: 20px; }
  .scene { padding-bottom: 64px; }
  .scene--old { background: #fff; }
  .curtain { align-items: end; padding-bottom: 12px; }
  .stage__tag { bottom: 22px !important; top: auto !important; }
  .sl__links { display: none; }
  .sl__main { grid-template-columns: 1fr; }
  .sl__menu { display: none; }
  .sl__slide { padding: 18px 16px; font-size: .84rem; }
  .sl__slide h3 { font-size: 1.15rem; }
  .sl__chart { width: 100%; max-width: 240px; }
  .sl__time, .sl__ctrl + .sl__ctrl { display: none; }
  .new__bar { padding: 14px 16px; gap: 10px; }
  .new__course { display: none; }
  .bl__steps { margin-inline: 0; }
  .bl__step { width: 26px; }
  .new__chapter { margin-left: auto; }
  .bl { padding: 0 16px; }
  .bl__title { font-size: 1.55rem; }
  .bl__text { font-size: .9rem; margin-top: 8px; }
  .bl__tools { margin-top: 12px; }
  .bl__pill { padding: 7px 12px; font-size: .84rem; }
  .bl__quote { font-size: .95rem; padding: 8px 12px; }
  .bl__answer { font-size: .84rem; }
  .bl__legend { font-size: .8rem; }
  .bl__nav { padding: 8px 16px 12px; }
  .stage__tag { bottom: 58px; font-size: .64rem; }
  .curtain__knob { padding: 8px 11px; font-size: .9rem; }

  .values__grid .value-card { display: block; }
  .value-card__art { height: 130px; margin-bottom: 16px; }
  .problems__grid { grid-template-columns: 1fr; }
  .old-button { font-size: .5em; }
  .service, .service--featured { padding: 26px 22px; }
  .service__art { display: none; }
  .clients__list { gap: 10px 28px; }
  .client img { height: 36px; }
  .client--oiq img { height: 42px; }
  .client--carrousel img { height: 56px; }
  .service--update { flex-direction: column; align-items: flex-start; }
  .ada__visual { width: min(100%, 300px); }
  .ada__chip { font-size: .66rem; transform: translate(-50%, -50%) rotate(var(--a)) translateY(-118px) rotate(calc(-1 * var(--a))); }
  .rv__screen { height: 240px; }
  .rv__pin--1 { left: 120px; }
  .rv__bubble--1 { left: 20px; top: 104px; }
  .rv__bubble--2 { right: 12px; top: 176px; }
  .rv__grid { width: 84px; height: 84px; right: 14px; background-size: 8.4px 8.4px; }
  .rv__grid::after { height: 8.4px; background-size: 8.4px 8.4px; }
  .rv__pin--2 { right: 60px; top: 70px; }
  .service--update > div, .service--update > p { flex: none; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before, .steps::after { left: 29px; right: auto; top: 30px; bottom: 30px; width: 2px; height: auto; }
  .steps::after { transform: scaleY(0); transform-origin: top; }
  .steps.is-in::after { transform: scaleY(1); }
  .step { padding-left: 84px; }
  .step__num { position: absolute; left: 0; top: 0; }
  .step h3 { margin-top: 12px; }
  .process__note { align-items: flex-start; }
  .kit__item:nth-child(n) { margin-left: 0; }
  .faq__answer { padding-right: 0; }
  .final__panel { border-radius: 28px; }
  .final__panel .btn { width: 100%; white-space: normal; }
  .cf-row { grid-template-columns: 1fr; }
  .final__confetti i:nth-child(n+3) { display: none; }
  .cf-submit { align-self: stretch; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .stage { height: 700px; }
}

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .hero__title .line > span, .js .hero__eyebrow, .js .hero__lede, .js .hero__actions { opacity: 1; transform: none; }
  .js .hero__title em::after { transform: none; }
  .steps::after { transform: none !important; }
  .final__confetti i { opacity: .9; animation: none !important; }
  .bl__blob, .bl__dots, .ada__visual::before { animation: none !important; }
  .js .ada:not(.is-in) .ada__chip { opacity: 1; }
  .js .venn:not(.is-in) .venn__c, .js .venn:not(.is-in) .venn__core { transform: none; }
  .venn__core { transform: translate(-50%, -50%) !important; }
}
