/* =========================================================
   ViralMap — Landing page
   ========================================================= */
/* Polices de secours calibrées sur Instrument Serif (plus étroite que Times et Georgia) : en attendant la vraie police,
   les mots en italique des titres prennent déjà la même place, donc aucune ligne ne se réorganise au chargement (CLS). */
/* Même principe pour Inter Tight (plus étroite qu'Arial) : sans ce réglage, le titre du hero pouvait passer de 2 à 3 lignes à l'arrivée de la police */
@font-face { font-family: "Inter Tight Fallback"; font-weight: 100 549; src: local("Arial"), local("ArialMT"); size-adjust: 96.3%; ascent-override: 100.7%; descent-override: 24.9%; line-gap-override: 0%; }
@font-face { font-family: "Inter Tight Fallback"; font-weight: 550 900; src: local("Arial Bold"), local("Arial-BoldMT"); size-adjust: 95.2%; ascent-override: 101.9%; descent-override: 25.2%; line-gap-override: 0%; }
@font-face { font-family: "Instrument Serif Fallback"; font-style: italic; font-weight: 400; src: local("Times New Roman Italic"), local("TimesNewRomanPS-ItalicMT"); size-adjust: 89%; ascent-override: 111.2%; descent-override: 34.8%; line-gap-override: 0%; }
@font-face { font-family: "Instrument Serif Fallback 2"; font-style: italic; font-weight: 400; src: local("Georgia Italic"), local("Georgia-Italic"); size-adjust: 79%; ascent-override: 125.3%; descent-override: 39.2%; line-gap-override: 0%; }
:root {
  --bg: #07070a;
  --bg-2: #0c0c11;
  --card: #111117;
  --card-2: #16161e;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f5f5f7;
  --muted: #a1a1ad;
  --dim: #868692;
  --red: #ff2d3d;
  --red-2: #ff5a36;
  --red-deep: #b3001b;
  --red-soft: rgba(255, 45, 61, 0.14);
  --green: #3ddc84;

  --font: "Inter Tight", "Inter Tight Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", "Instrument Serif Fallback", "Instrument Serif Fallback 2", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 20px;
  --radius-sm: 12px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip; /* « hidden » seul fait de body un conteneur de défilement : les en-têtes sticky ne collent plus */
}
html { overflow-x: clip; scroll-padding-top: 92px; } /* lien direct vers une ancre (/#faq) : le titre ne passe pas sous la nav */
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.03em; line-height: 1.05; font-weight: 700; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
li { text-wrap: pretty; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
/* l'italique penche vers la gauche en bas (« p », « q ») : petit espace pour ne pas toucher le mot précédent */
em.serif { margin-left: .07em; }
.red { color: var(--red); }
.green { color: var(--green); }
em.serif.red {
  background: linear-gradient(100deg, #ff6b4a 0%, var(--red) 45%, #ff1f6b 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: 0.1em; margin-right: -0.1em;
}

/* Grain */
.noise {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; }
.scroll-progress span { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--red-2), var(--red)); }

/* ---------- Buttons / pills ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap; overflow: hidden; isolation: isolate;
}
.btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn--lg { height: 58px; padding: 0 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--red {
  background: linear-gradient(180deg, #ff4250, #e0101f);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset, 0 10px 30px -8px rgba(255, 45, 61, .7);
}
.btn--red::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn--red:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset, 0 16px 40px -8px rgba(255, 45, 61, .9); }
.btn--red:hover::after { transform: translateX(120%); }
.btn--red svg { transition: transform .25s var(--ease); }
.btn--red:hover svg { transform: translateX(4px); }
.btn--ghost { background: rgba(255,255,255,.06); box-shadow: 0 0 0 1px var(--line-2) inset; }
.btn--ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 12px; border-radius: 999px;
  font-size: 13.5px; color: var(--muted); background: rgba(255,255,255,.04); box-shadow: 0 0 0 1px var(--line) inset;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: color .2s, box-shadow .2s;
}
.pill:hover { color: var(--text); box-shadow: 0 0 0 1px var(--line-2) inset; }
.pill__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex: none; }
.pill__dot::after, .diag__live::after, .radar i.big::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: rgba(255,45,61,.6); animation: ping 1.8s infinite; pointer-events: none; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 80%, 100% { transform: scale(3); opacity: 0; } }

.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-family: var(--mono); padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--muted); box-shadow: 0 0 0 1px var(--line) inset; }
.chip--red { background: var(--red-soft); color: #ff8a93; box-shadow: 0 0 0 1px rgba(255,45,61,.3) inset; }
.chip .pill__dot { width: 6px; height: 6px; }

.eyebrow { display: inline-block; font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--red); margin-bottom: 18px; }
.section-head { text-align: center; max-width: 860px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(36px, 5.2vw, 64px); }
.section-head--left { text-align: left; margin: 0; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 14px; left: 0; right: 0; z-index: 50; padding: 0 16px; }
.nav__inner {
  max-width: 1160px; margin: 0 auto; height: 64px; padding: 0 10px 0 20px; display: flex; align-items: center; gap: 24px;
  border-radius: 999px; background: rgba(12,12,17,.55); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 0 0 1px var(--line) inset, 0 20px 40px -20px rgba(0,0,0,.6);
  transition: background .3s;
}
.nav.is-scrolled .nav__inner { background: rgba(12,12,17,.85); }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.03em; }
.logo__mark { width: 28px; height: 28px; flex: none; }
/* Sélecteur de langue FR / EN (nav, menu mobile, pied de page, connexion) : la langue affichée est en rouge */
.langsw { display: inline-flex; flex: none; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.05); box-shadow: 0 0 0 1px var(--line) inset; }
.langsw a { display: grid; place-items: center; min-width: 40px; height: 34px; padding: 0 10px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .03em; color: var(--muted); transition: color .2s, background-color .2s; }
.langsw a:hover { color: var(--text); }
.langsw a[aria-current] { color: #fff; background: var(--red); box-shadow: 0 6px 18px -8px rgba(255,45,61,.9); }
.nav__lang { display: none; }
@media (min-width: 1180px) { .nav__lang { display: inline-flex; } }
.nav__links { display: flex; gap: 6px; margin: 0 auto; }
.nav__links a { padding: 8px 16px; border-radius: 999px; font-size: 15.5px; font-weight: 500; color: #cfcfd8; white-space: nowrap; transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav__login { color: #e4e4ea; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; position: relative; }
.nav__burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease); }
.nav__burger span:first-child { top: 18px; } .nav__burger span:last-child { top: 25px; }
.nav.is-open .nav__burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.nav__mobile { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 160px 0 56px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute; left: 50%; top: -20%; width: 1400px; height: 900px; transform: translateX(-50%);
  background:
    radial-gradient(40% 45% at 50% 40%, rgba(255,45,61,.35), transparent 70%),
    radial-gradient(30% 30% at 30% 50%, rgba(255,90,54,.18), transparent 70%),
    radial-gradient(30% 30% at 70% 50%, rgba(255,31,107,.16), transparent 70%);
  animation: breathe 9s ease-in-out infinite; /* dégradés déjà flous : pas de filter blur, coûteux sur une couche animée */
}
@keyframes breathe { 50% { transform: translateX(-50%) scale(1.08); opacity: .8; } }
.hero__grid {
  position: absolute; left: -50%; right: -50%; bottom: -10%; height: 70%;
  transform: perspective(700px) rotateX(62deg); transform-origin: 50% 0;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 60%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 60%, transparent);
  overflow: hidden;
}
/* grille qui défile : translation d'un pseudo-élément (compositeur) au lieu d'animer background-position sur une couche géante */
.hero__grid::before { content: ""; position: absolute; left: 0; right: 0; top: -64px; bottom: 0; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 64px 64px; animation: gridmove 6s linear infinite; }
@keyframes gridmove { to { transform: translateY(64px); } }
.hero__spot { position: absolute; left: 0; top: 0; width: 600px; height: 600px; border-radius: 50%; transform: translate(calc(var(--mx, 50vw) - 50%), calc(var(--my, 300px) - 50%)); background: radial-gradient(circle, rgba(255,45,61,.12), transparent 60%); transition: transform .4s var(--ease); }
@media (hover: hover) and (pointer: fine) { .showcase [data-depth] { will-change: transform; } } /* parallaxe souris : couches déjà prêtes, pas de nouveau rendu */

.hero__content { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__pill { margin-bottom: 28px; white-space: nowrap; }
.hero__title { font-size: clamp(40px, 6.3vw, 82px); font-weight: 700; max-width: 1080px; letter-spacing: -0.045em; line-height: 1; }
.hero__title .serif { font-size: 1.08em; }
.hero__sub { margin-top: 24px; font-size: clamp(18px, 2vw, 22px); color: var(--muted); }

/* CTA form */
.cta-form { margin-top: 38px; width: 100%; max-width: 640px; }
.cta-form__row {
  display: flex; gap: 6px; padding: 6px; border-radius: 999px;
  background: rgba(20,20,27,.75); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px var(--line-2) inset, 0 30px 60px -30px rgba(255,45,61,.5);
  transition: box-shadow .3s;
}
.cta-form__row:focus-within { box-shadow: 0 0 0 1px rgba(255,45,61,.6) inset, 0 0 0 5px rgba(255,45,61,.12), 0 30px 60px -30px rgba(255,45,61,.7); }
.cta-form.is-error .cta-form__row { animation: shake .4s; box-shadow: 0 0 0 1px var(--red) inset; }
@keyframes shake { 20%,60% { transform: translateX(-6px); } 40%,80% { transform: translateX(6px); } }
.cta-form__field { flex: 1; display: flex; align-items: center; padding-left: 20px; min-width: 0; }
.cta-form__at { color: var(--red); font-weight: 700; font-size: 18px; margin-right: 2px; }
.cta-form__field input { flex: 1; min-width: 0; background: none; border: 0; outline: 0; color: var(--text); font: 500 17px var(--font); height: 58px; }
.cta-form__field input::placeholder { color: var(--dim); }
.cta-form__error { margin-top: 10px; color: #ff8a93; font-size: 14px; }
.micro { margin-top: 16px; font-size: 14px; color: var(--muted); display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.micro i { width: 4px; height: 4px; border-radius: 50%; background: var(--dim); }

.diag {
  position: absolute; left: 50%; top: 30px; width: min(520px, 90vw); transform: translateX(-50%);
  border-radius: 22px; background: linear-gradient(180deg, rgba(24,24,32,.92), rgba(14,14,20,.96));
  box-shadow: 0 0 0 1px var(--line-2) inset, 0 50px 120px -30px rgba(255,45,61,.45), 0 30px 60px -20px rgba(0,0,0,.8);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); z-index: 3; overflow: hidden;
}
.diag::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(160deg, rgba(255,45,61,.6), transparent 40%, transparent 70%, rgba(255,45,61,.3)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.diag__bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.diag__bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.14); }
.diag__bar span { margin-left: auto; font: 12px var(--mono); color: var(--dim); }
.diag__body { padding: 22px 24px 26px; text-align: left; }
.diag__user { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.diag__user img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.diag__user b { font-size: 16px; }
.diag__live { position: relative; margin-left: auto; font: 11.5px var(--mono); color: #ff8a93; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.diag__live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.diag__live::after { inset: auto; left: 0; top: 50%; width: 6px; height: 6px; margin-top: -3px; }
.diag__line { font-size: 17px; color: #d9d9e0; margin-bottom: 8px; }
.diag__line b { color: var(--text); }
.diag__line b.red { color: var(--red); }
.diag__line--cta { margin-top: 16px; color: var(--text); font-weight: 600; padding: 12px 14px; border-radius: 12px; background: var(--red-soft); box-shadow: 0 0 0 1px rgba(255,45,61,.25) inset; }
.diag__chart, .dchart { position: relative; display: flex; align-items: flex-end; gap: 8px; height: 120px; margin: 18px 0 6px; padding-bottom: 1px; border-bottom: 1px solid var(--line); }
.diag__chart span, .dchart span { flex: 1; height: var(--h); border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.06)); transform-origin: bottom; position: relative; }
.diag__chart span.hot, .dchart span.hot { background: linear-gradient(180deg, #ff5a4a, var(--red-deep)); box-shadow: 0 0 30px rgba(255,45,61,.6); }
.diag__chart em, .dchart em { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); font: 600 12px var(--mono); font-style: normal; color: var(--red); white-space: nowrap; }
.diag__norm, .dchart__norm { position: absolute; left: 0; right: 0; bottom: 26%; border-top: 1px dashed rgba(255,255,255,.3); }
.diag__norm small { position: absolute; right: 0; top: -18px; font: 10.5px var(--mono); color: var(--dim); }

.reel {
  position: absolute; width: 190px; aspect-ratio: 9/16; border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset, 0 30px 60px -20px rgba(0,0,0,.9);
  background: #1a1a22; z-index: 2;
}
.reel__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), transparent 30%, transparent 55%, rgba(0,0,0,.85)); }
.reel__niche { position: absolute; top: 12px; left: 12px; z-index: 2; font: 11px var(--mono); padding: 4px 8px; border-radius: 999px; background: rgba(0,0,0,.6); }
.reel__hook { position: absolute; left: 12px; right: 12px; top: 42%; z-index: 2; font-weight: 800; font-size: 15px; line-height: 1.15; text-align: center; text-shadow: 0 2px 12px rgba(0,0,0,.6); letter-spacing: -0.02em; }
.reel__foot { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; display: flex; justify-content: space-between; align-items: center; font: 12px var(--mono); }
.reel__foot b { background: var(--red); color: #fff; padding: 3px 8px; border-radius: 999px; font-weight: 600; box-shadow: 0 0 20px rgba(255,45,61,.7); }

/* ---------- Hero : capture de la plateforme ---------- */
.showcase { position: relative; margin-top: 76px; }
.shot { position: relative; perspective: 1800px; }
.shot::after { content: ""; position: absolute; left: 14%; right: 14%; bottom: -70px; height: 180px; z-index: -1; border-radius: 50%; background: radial-gradient(50% 50% at 50% 40%, rgba(255,45,61,.28), transparent 70%); filter: blur(34px); pointer-events: none; }
.shot::before { content: ""; position: absolute; left: 8%; right: 8%; top: -60px; height: 320px; z-index: -1; border-radius: 50%; background: radial-gradient(50% 50% at 50% 60%, rgba(255,45,61,.5), transparent 70%); filter: blur(40px); }
.shot__frame { --dw: 1200; --dh: 760; position: relative; container-type: inline-size; aspect-ratio: var(--dw) / var(--dh); border-radius: 22px; overflow: hidden; transform-origin: 50% 0; background: #f6f6f8; box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 -10px 80px -20px rgba(255,45,61,.5), 0 60px 120px -40px rgba(0,0,0,.9); }
.shot__app { --s: tan(atan2(100cqw, calc(var(--dw) * 1px))); position: absolute; left: 0; top: 0; width: calc(var(--dw) * 1px); height: calc(var(--dh) * 1px); transform: scale(var(--s, 1)); transform-origin: 0 0; }

.app2 { position: relative; display: flex; width: 100%; height: 100%; background: #f6f6f8; color: #17171c; font-family: var(--font); font-size: 14px; line-height: 1.4; text-align: left; }
.app2__side { width: 228px; flex: none; display: flex; flex-direction: column; gap: 2px; padding: 20px 14px; background: #efeff3; border-right: 1px solid #e2e2e8; }
.app2__logo { display: flex; align-items: center; gap: 9px; padding: 0 8px 12px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.app2__logo svg { width: 26px; height: 26px; }
.app2__grp { margin: 16px 8px 6px; font-size: 12px; color: #8a8a96; }
.app2__nav { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 9px; font-size: 14px; color: #2b2b33; }
.app2__nav svg { width: 17px; height: 17px; color: #5b5b66; }
.app2__nav.on { background: #fff; color: #111; font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,.06), inset 0 0 0 1px #e4e4ea; }
.app2__nav.on svg { color: #e11d2e; }
.app2__credits { margin: auto 0 8px; padding: 12px; border-radius: 12px; background: #fff; box-shadow: inset 0 0 0 1px #e4e4ea; }
.app2__credits div { display: flex; justify-content: space-between; font-size: 12.5px; color: #5b5b66; }
.app2__credits b { color: #111; }
.app2__credits i { display: block; height: 6px; margin-top: 8px; border-radius: 6px; background: #ececf1; }
.app2__credits u { display: block; width: 72%; height: 100%; border-radius: 6px; background: linear-gradient(90deg, #ff5a4a, #e11d2e); }
.app2__help { color: #5b5b66; }
.app2__main { flex: 1; min-width: 0; display: flex; flex-direction: column; padding: 26px 28px 0; }
.app2__head h5 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.app2__head p { margin-top: 4px; font-size: 14px; color: #6b6b76; }
.app2__bar { display: flex; justify-content: space-between; align-items: center; margin: 18px 0 16px; }
.seg { display: flex; padding: 4px; border-radius: 10px; background: #ececf1; }
.seg span { padding: 6px 22px; border-radius: 7px; font-size: 13px; color: #6b6b76; }
.seg .on { background: #fff; color: #111; font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.acts { display: flex; gap: 20px; }
.acts span { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #2b2b33; }
.acts svg { width: 15px; height: 15px; }
.app2__body { display: flex; gap: 18px; flex: 1; min-height: 0; }
.fpanel { width: 250px; flex: none; align-self: flex-start; display: flex; flex-direction: column; padding: 14px; border-radius: 14px; background: #fff; box-shadow: inset 0 0 0 1px #e4e4ea; }
.frow { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 11px; }
.frow b { text-transform: uppercase; letter-spacing: .06em; color: #44444d; }
.frow small { color: #9a9aa5; }
.fpanel label { margin: 2px 0 5px; font-size: 12px; color: #6b6b76; }
.fin { height: 32px; display: flex; align-items: center; margin-bottom: 8px; padding: 0 10px; border-radius: 8px; background: #fff; box-shadow: inset 0 0 0 1px #e1e1e7; font-size: 13px; color: #2b2b33; white-space: nowrap; overflow: hidden; }
.fin.on { color: #e11d2e; font-weight: 600; box-shadow: inset 0 0 0 1.5px #ff6b75, 0 0 0 3px rgba(255,45,61,.12); }
.fin.sel { justify-content: space-between; }
.fin.sel::after, .favs em { content: ""; width: 6px; height: 6px; margin-left: auto; border-right: 1.5px solid #8a8a96; border-bottom: 1.5px solid #8a8a96; transform: translateY(-2px) rotate(45deg); flex: none; }
.fin.ph { color: #a0a0aa; }
.fpair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.favs i { width: 20px; height: 20px; margin-right: -3px; border-radius: 50%; display: grid; place-items: center; font: 700 9px var(--font); font-style: normal; color: #fff; background: var(--c); box-shadow: 0 0 0 2px #fff; }
.fbtn { display: grid; place-items: center; height: 36px; margin-top: 6px; border-radius: 9px; background: #17171c; color: #fff; font-size: 13px; font-weight: 600; }
.vgrid { flex: 1; min-width: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-content: start; }
/* Bas de la maquette : seule la colonne des vidéos se fond dans le fond de l'app (le menu et les filtres restent visibles),
   avec un bouton « voir plus » centré sous la grille */
.app2__more { position: absolute; left: 515px; right: 0; bottom: 0; height: 240px; z-index: 3; pointer-events: none; background: linear-gradient(180deg, rgba(246,246,248,0) 0%, rgba(246,246,248,.82) 42%, #f6f6f8 68%); }
.app2__morebtn { position: absolute; left: 9px; right: 28px; bottom: 34px; width: max-content; margin: 0 auto; display: flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; background: #fff; color: #17171c; font-size: 14px; font-weight: 600; box-shadow: 0 0 0 1px #e1e1e7, 0 10px 24px -12px rgba(23,23,28,.35); }
.app2__morebtn svg { width: 16px; height: 16px; color: #e11d2e; }
.v2 { min-width: 0; }
.v2__th { position: relative; aspect-ratio: 9 / 15; border-radius: 12px; overflow: hidden; background: #ddd; }
.v2__th img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.v2__th .pf { position: absolute; top: 8px; right: 8px; width: 22px; height: 22px; }
.v2__th .pf svg { width: 13px; height: 13px; }
.v2 > b { display: block; margin-top: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2__by { display: flex; justify-content: space-between; margin-top: 3px; font-size: 11.5px; color: #8a8a96; }
.v2__stats { display: flex; flex-wrap: nowrap; gap: 4px; margin-top: 7px; overflow: hidden; }
.v2__stats span { flex: none; display: inline-flex; align-items: center; gap: 3px; padding: 3px 5px; border-radius: 6px; font: 600 11px var(--font); white-space: nowrap; }
.v2__stats svg { width: 11px; height: 11px; }
.s-x { background: #ffe8ea; color: #e11d2e; }
.s-v { background: #eef2ff; color: #3b5bdb; }
.s-e { background: #fff1e6; color: #e8590c; }
.v2 { animation: pop .7s var(--ease) both; animation-delay: calc(var(--d) * 90ms + 1.6s); }
.v2:first-child .v2__th { box-shadow: 0 0 0 2px #ff2d3d, 0 0 26px rgba(255,45,61,.45); }

.favs img { width: 20px; height: 20px; margin-right: -3px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px #fff; }
.sc-box__th img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sc-creator img.av { object-fit: cover; }
.vcard__th { background: #111; }

/* Diagnostic posé sur la capture (comme la bulle facecam de Sandcastles) */
.diag.shot__diag { left: -36px; top: auto; bottom: 130px; width: 380px; transform: none; z-index: 4; background: linear-gradient(180deg, #181820, #0e0e14); backdrop-filter: none; }
.shot__diag .diag__body { padding: 18px 20px 20px; }
.shot__diag .diag__line { font-size: 15.5px; }
.shot__diag .diag__chart { height: 84px; }

@media (max-width: 1260px) { .diag.shot__diag { left: 12px; } }
@media (max-width: 1100px) {
  .diag.shot__diag { width: 290px; bottom: 28px; }
  .shot__diag .diag__body { padding: 14px 16px 16px; }
  .shot__diag .diag__line { font-size: 13.5px; }
  .shot__diag .diag__live { font-size: 10.5px; }
  .shot__diag .diag__chart { height: 60px; margin: 30px 0 6px; }
  .shot__diag .diag__line--cta { padding: 9px 11px; margin-top: 10px; }
}
/* Tablette : carte étroite, la ligne « @votrecompte · Analyse en cours » doit tenir sur 258 px */
@media (min-width: 761px) and (max-width: 1100px) {
  .shot__diag .diag__user { gap: 8px; }
  .shot__diag .diag__user img { width: 28px; height: 28px; }
  .shot__diag .diag__user b { font-size: 14px; }
  .shot__diag .diag__live { font-size: 10px; }
}
@media (max-width: 760px) {
  .shot__frame { --dw: 700; border-radius: 16px; }
  .app2__side, .fpanel, .app2__morebtn { display: none; }
  .app2__more { left: 0; }
  .diag.shot__diag { position: relative; left: auto; bottom: auto; width: auto; margin: -90px 8px 0; }
  .showcase { margin-top: 56px; }
}

/* Faux thumbnails */
.t-food { background: radial-gradient(60% 50% at 40% 40%, #ffb36b, transparent 70%), radial-gradient(50% 60% at 70% 70%, #d9412b, transparent 70%), linear-gradient(160deg, #3a1a10, #120806); }
.t-fit { background: radial-gradient(50% 50% at 60% 35%, #ff5b6b, transparent 70%), radial-gradient(70% 50% at 30% 80%, #5a1224, transparent 70%), linear-gradient(170deg, #2a0d14, #0b0507); }
.t-fit2 { background: radial-gradient(60% 60% at 50% 40%, #ff8d6b, transparent 70%), linear-gradient(170deg, #401818, #0d0505); }
.t-money { background: radial-gradient(50% 50% at 60% 40%, #f2f2f2, transparent 60%), radial-gradient(60% 60% at 30% 70%, #ff2d3d, transparent 70%), linear-gradient(170deg, #2b2b33, #0c0c10); }

/* ---------- Ticker ---------- */
.ticker { position: relative; z-index: 4; display: flex; align-items: center; border-block: 1px solid var(--line); background: rgba(12,12,17,.9); overflow: hidden; }
.ticker__label { flex: none; display: flex; align-items: center; gap: 10px; padding: 18px 24px; font: 12.5px var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--text); background: var(--bg-2); border-right: 1px solid var(--line); position: relative; z-index: 2; }
.ticker__track { display: flex; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker__row { display: flex; flex: none; gap: 44px; padding-right: 44px; animation: marquee 40s linear infinite; }
.ticker:hover .ticker__row { animation-play-state: paused; }
.ticker__row span { white-space: nowrap; font-size: 15px; color: var(--muted); display: inline-flex; gap: 10px; align-items: center; }
.ticker__row b { color: var(--red); font-family: var(--mono); font-weight: 500; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ---------- Trust ---------- */
.trust { padding: 64px 24px 32px; display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.trust__who { display: flex; align-items: center; gap: 16px; padding: 10px 12px 10px 10px; border-radius: 999px; background: rgba(255,255,255,.03); box-shadow: 0 0 0 1px var(--line) inset; text-align: left; }
.trust__who img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--red), 0 0 20px rgba(255,45,61,.5); }
.trust__duo { display: flex; flex: none; }
.trust__duo img + img { margin-left: -10px; } /* léger chevauchement */
.trust__duo img { position: relative; box-shadow: 0 0 0 3px #111116, 0 0 0 5px var(--red), 0 0 20px rgba(255,45,61,.45); }
.trust__meta { color: var(--muted); font-size: 14.5px; }
.trust__icons { display: flex; gap: 6px; margin-left: 10px; }
.trust__icons span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.05); color: var(--text); }
.trust__icons svg { width: 19px; height: 19px; }
.trust__stats { font-size: 17px; color: var(--muted); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }
.trust__stats b { color: var(--text); font-weight: 700; }
.trust__stats i { width: 4px; height: 4px; border-radius: 50%; background: var(--dim); }

/* ---------- Problem ---------- */
.problem { padding: 140px 0; position: relative; }
.problem__inner { position: relative; max-width: 1120px; display: grid; grid-template-columns: minmax(0, min(660px, 53vw)) 340px; justify-content: start; column-gap: 36px; align-items: start; }
.problem__title { grid-column: 1 / -1; font-size: clamp(34px, 5vw, 66px); letter-spacing: -0.045em; }
.strike-num { position: relative; color: var(--dim); white-space: nowrap; }
.strike-num::after { content: ""; position: absolute; left: -2%; right: -2%; top: 55%; height: 6px; background: var(--red); border-radius: 4px; transform: scaleX(var(--strike, 0)); transform-origin: left; transition: transform .8s var(--ease) .3s; box-shadow: 0 0 20px rgba(255,45,61,.6); }
.problem__title.is-in .strike-num::after { --strike: 1; }
.problem__body { grid-column: 1; margin-top: 48px; display: grid; gap: 26px; }
.scrub { font-size: clamp(22px, 2.5vw, 31px); line-height: 1.25; font-weight: 600; letter-spacing: -0.025em; }
.scrub .w { opacity: .18; }
.scrub--accent { color: var(--text); }
.scrub--accent .w.hl { color: var(--red); }
.problem__notif { grid-column: 2; margin-top: 56px; display: grid; gap: 12px; }
.notif { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: 16px; background: rgba(22,22,30,.8); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 0 0 1px var(--line-2) inset, 0 20px 40px -20px rgba(0,0,0,.8); font-size: 14.5px; }
.notif b { display: block; font-size: 15.5px; }
.notif span { color: var(--muted); }
.notif__icon { width: 36px; height: 36px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--red-soft); color: var(--red); }
.notif__icon svg { width: 20px; height: 20px; }
.notif--ghost { opacity: .6; transform: translateX(30px) scale(.96); }

/* ---------- How (façon Sandcastles : étapes à gauche, carte animée à droite) ---------- */
.how { padding: 120px 0; position: relative; }
.how__head { max-width: 560px; margin-bottom: 56px; }
.how__head p { margin-top: 18px; color: var(--muted); font-size: 18px; }
.how__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 548px); gap: 56px; align-items: center; }
.how__steps { display: flex; flex-direction: column; gap: 24px; }
.step { position: relative; display: grid; grid-template-rows: auto auto 0fr; width: 100%; text-align: left; padding: 0 0 24px; border-bottom: 1px solid var(--line-2); opacity: .3; transition: opacity .3s, grid-template-rows .5s var(--ease); }
.step.is-active { grid-template-rows: auto auto 1fr; }
.step:hover { opacity: .5; }
.step.is-active { opacity: 1; }
.step__num { display: block; font: 500 13px var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.step.is-active .step__num { color: var(--red); }
.step__t { display: block; font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-top: 16px; }
.step__d { display: block; min-height: 0; overflow: hidden; padding-top: 14px; color: var(--muted); font-size: 16.5px; opacity: 0; transition: opacity .4s; text-wrap: pretty; }
.step.is-active .step__d { opacity: 1; }
.step__progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; }
.step__progress i { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--red); box-shadow: 0 0 10px rgba(255,45,61,.7); }
.step.is-active .step__progress i { animation: stepbar var(--step-dur, 6s) linear forwards; }
@keyframes stepbar { to { transform: scaleX(1); } }

.hiw-card { position: relative; container-type: inline-size; aspect-ratio: 548 / 512; max-height: 614.4px; border-radius: 28px; overflow: hidden; background: radial-gradient(90% 60% at 50% 0%, rgba(255,45,61,.13), transparent 70%), linear-gradient(180deg, #130c10, #0b0809); box-shadow: 0 0 60px rgba(255,45,61,.22), inset 0 4px 24px rgba(90,18,28,.55), inset 0 0 0 1px rgba(255,255,255,.07); }
.hiw-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 110px; z-index: 2; pointer-events: none; background: linear-gradient(180deg, transparent, #0b0809 88%); }
.hiw-stage { --s: min(tan(atan2(100cqw, 548px)), 1.2); position: absolute; left: 0; top: 0; width: 548px; height: 512px; transform-origin: 0 0; transform: scale(var(--s, 1)); }
.panel { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(16px) scale(.98); transition: opacity .5s var(--ease), transform .6s var(--ease), visibility 0s linear .6s; pointer-events: none; }
.panel.is-active { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.96); } }

/* Pastilles plateformes */
.pf { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; flex: none; }
.pf svg { width: 11px; height: 11px; }
.pf-ig { background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7); }
.pf-tt { background: #111; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.pf-yt { background: #ff0033; }
.av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13px; flex: none; }
.av--me { background: linear-gradient(135deg, #3a3a46, #16161d); box-shadow: inset 0 0 0 1px var(--line-2); }

/* Étape 1 : radar */
.sc-radar { padding: 28px 22px 0; }
.sc-filters { display: flex; gap: 8px; margin-bottom: 18px; }
.flt { display: inline-flex; align-items: center; gap: 7px; height: 30px; padding: 0 12px; border-radius: 999px; font-size: 12.5px; color: #b9b9c4; background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); white-space: nowrap; }
.flt i { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.flt--on { color: #ff9aa2; background: rgba(255,45,61,.14); box-shadow: inset 0 0 0 1px rgba(255,45,61,.45), 0 0 20px rgba(255,45,61,.25); }
.sc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.vcard { border-radius: 12px; overflow: hidden; background: #17131a; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.vcard__th { position: relative; aspect-ratio: 5 / 6; overflow: hidden; }
.vcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.vcard__th .pf { position: absolute; top: 6px; right: 6px; }
.vcard__meta { padding: 8px 8px 9px; }
.vcard__meta b { display: block; font-size: 10.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vcard__meta small { display: block; margin-top: 2px; font-size: 9.5px; color: var(--dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vcard__stats { display: flex; gap: 4px; margin-top: 7px; }
.st { display: inline-flex; align-items: center; gap: 3px; padding: 3px 5px; border-radius: 5px; font: 500 9.5px var(--mono); color: #c9c9d3; background: rgba(255,255,255,.06); }
.st svg { width: 10px; height: 10px; }
.st--x { color: #ff8a93; background: rgba(255,45,61,.16); }
.panel.is-active .vcard { animation: pop .6s var(--ease) both; animation-delay: calc(var(--d) * 60ms + 100ms); }
.flt--on { position: relative; }
.flt--on::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,45,61,.7), 0 0 30px rgba(255,45,61,.55); opacity: 0; pointer-events: none; }
.panel.is-active .flt--on::after { animation: glowfade 2.4s ease-in-out infinite 1s; }
@keyframes glowfade { 50% { opacity: 1; } }
@keyframes glow { 50% { box-shadow: inset 0 0 0 1px rgba(255,45,61,.7), 0 0 30px rgba(255,45,61,.55); } }

/* Étape 2 : décryptage */
.sc-decode { padding: 26px 22px 0; }
.sc-creator { display: flex; align-items: center; gap: 10px; width: max-content; margin: 0 auto 16px; padding: 10px 18px 10px 10px; border-radius: 14px; background: #17121a; box-shadow: inset 0 0 0 1px rgba(255,45,61,.45), 0 0 30px rgba(255,45,61,.25); }
.sc-creator b { display: block; font-size: 14px; }
.sc-creator small, .sc-box__sub { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--muted); }
.sc-creator .pf, .sc-box__sub .pf { width: 14px; height: 14px; }
.sc-creator .pf svg, .sc-box__sub .pf svg { width: 9px; height: 9px; }
.sc-box { padding: 18px; border-radius: 16px; background: #141017; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.sc-box h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-box__sub { margin-top: 4px; }
.sc-box__grid { display: grid; grid-template-columns: 138px 1fr; gap: 14px; margin-top: 14px; }
.sc-box__th { position: relative; height: 250px; border-radius: 12px; overflow: hidden; }
.play { position: absolute; left: 50%; top: 64%; transform: translate(-50%, -50%); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(0,0,0,.45); backdrop-filter: blur(4px); }
.play svg { width: 18px; height: 18px; }
.tabs { display: flex; flex-wrap: wrap; gap: 5px; }
.tabs span { font-size: 10.5px; padding: 4px 8px; border-radius: 999px; color: #b9b9c4; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.tabs .on { color: #ff9aa2; background: rgba(255,45,61,.14); box-shadow: inset 0 0 0 1px rgba(255,45,61,.45); }
.metrics, .hookbox { margin-top: 10px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.metrics h5, .hookbox h5 { margin: 0 0 8px; font-size: 11.5px; font-weight: 600; }
.mgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.m { padding: 7px 9px; border-radius: 9px; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.m small { display: block; font-size: 9.5px; color: var(--muted); }
.m b { display: flex; align-items: center; gap: 4px; margin-top: 2px; font: 600 13px var(--font); }
.m b svg { width: 12px; height: 12px; }
.m--red { background: rgba(255,45,61,.12); box-shadow: inset 0 0 0 1px rgba(255,45,61,.4); }
.m--red b { color: #ff8a93; }
.m--orange { background: rgba(255,140,60,.08); box-shadow: inset 0 0 0 1px rgba(255,140,60,.3); }
.m--orange b { color: #ffb37a; }
.hookbox p { font-size: 11px; line-height: 1.4; color: #c9c9d3; }
.panel.is-active .sc-creator { animation: pop .6s var(--ease) both .05s; }
.panel.is-active .sc-box { animation: pop .7s var(--ease) both .15s; }
.panel.is-active .m { animation: pop .5s var(--ease) both; animation-delay: calc(var(--d) * 70ms + .45s); }
.panel.is-active .hookbox { animation: pop .6s var(--ease) both .95s; }

/* Étape 3 : script */
.ghosts { position: absolute; inset: 24px -40px auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; opacity: .5; }
.ghosts i { height: 210px; border-radius: 14px; background: rgba(255,255,255,.035); box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.vault { position: absolute; left: 64px; right: 64px; top: 40px; z-index: 1; padding: 14px; border-radius: 16px; background: #17121a; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 20px 50px -10px rgba(0,0,0,.8); }
.vault__head, .scriptcard__head { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.vault__head svg, .scriptcard__head svg { width: 18px; height: 18px; color: var(--red); }
.vrow { display: flex; align-items: center; gap: 10px; margin-top: 6px; padding: 9px 12px; border-radius: 10px; font-size: 12.5px; color: #dcdce3; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.vrow svg { width: 15px; height: 15px; flex: none; color: var(--muted); }
.vrow span { flex: 1; min-width: 0; }
.vrow em { display: block; width: max-content; margin-top: 4px; padding: 2px 7px; border-radius: 6px; font-style: normal; font-size: 10px; color: #ffb37a; background: rgba(255,140,60,.14); }
.vrow b { font: 500 12px var(--mono); color: var(--muted); }
.vrow--on { color: #ffd0d4; background: rgba(255,45,61,.12); box-shadow: inset 0 0 0 1px rgba(255,45,61,.45); }
.vrow--on svg, .vrow--on b { color: #ff8a93; }
.beam { position: absolute; left: 50%; top: 190px; width: 140px; height: 70px; transform: translateX(-50%); }
.beam::before { content: ""; position: absolute; inset: 0 -30px; background: radial-gradient(50% 100% at 50% 0%, rgba(255,45,61,.35), transparent 75%); }
.beam i { position: absolute; top: 0; bottom: 0; width: 2px; transform-origin: top; background: linear-gradient(180deg, rgba(255,45,61,.9), rgba(255,45,61,.15)); box-shadow: 0 0 12px var(--red); }
.beam i:first-child { left: 34px; }
.beam i:last-child { right: 34px; }
.scriptcard { position: absolute; left: 48px; right: 48px; top: 258px; bottom: -20px; z-index: 1; padding: 16px; border-radius: 16px; background: #17121a; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 -10px 60px -10px rgba(255,45,61,.35); }
.scriptcard__head .chip { margin-left: auto; font-size: 10.5px; }
.sline { margin-top: 6px; padding: 8px 10px; border-radius: 9px; font-size: 12px; line-height: 1.35; color: #dcdce3; background: rgba(255,255,255,.035); }
.sline .tag { font-size: 9px; margin-right: 6px; }
.panel.is-active .vault { animation: pop .6s var(--ease) both .05s; }
.panel.is-active .beam i { animation: beam .6s var(--ease) both .5s; }
.panel.is-active .scriptcard { animation: pop .7s var(--ease) both .7s; }
.panel.is-active .sline { animation: type .8s steps(30) both; animation-delay: calc(var(--d) * .6s + 1.1s); }
@keyframes beam { from { transform: scaleY(0); } }
@keyframes type { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }

/* Étape 4 : diagnostic */
.sc-diag { padding: 26px 22px 0; }
.acc { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 14px; background: #17121a; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.acc b { display: block; font-size: 14px; }
.acc small { display: block; font-size: 11.5px; color: var(--muted); }
.acc .chip { margin-left: auto; font-size: 10.5px; }
.dbox { margin-top: 12px; padding: 14px 16px 16px; border-radius: 16px; background: #141017; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.dbox__head { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; }
.dbox__head small { font-size: 11px; color: var(--muted); }
.sc-diag .dchart { height: 150px; gap: 8px; margin: 30px 0 14px; }
.dchart__norm small { position: absolute; right: 0; top: -16px; font: 10px var(--mono); color: var(--dim); }
.dstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dstats div { padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,.04); }
.dstats small { display: block; font-size: 10px; color: var(--muted); }
.dstats b { font-size: 15px; }
.sc-diag .dnotes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.sc-diag .dnotes p { padding: 10px 12px; border-radius: 12px; font-size: 11.5px; color: var(--muted); background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px var(--line); }
.sc-diag .dnotes b { display: block; margin-bottom: 3px; font: 500 11px var(--mono); }
.panel.is-active .acc { animation: pop .6s var(--ease) both .05s; }
.panel.is-active .dbox { animation: pop .7s var(--ease) both .15s; }
.panel.is-active .dchart span { animation: rise .9s var(--ease) both; animation-delay: calc(var(--d) * 50ms + .35s); }
.panel.is-active .dnotes p { animation: pop .6s var(--ease) both 1.1s; }

/* Utilitaires partagés */
.tag { display: inline-block; font: 600 10.5px var(--mono); letter-spacing: .08em; padding: 3px 7px; border-radius: 6px; background: rgba(255,255,255,.08); color: var(--muted); margin-right: 10px; vertical-align: 2px; }
.tag--red { background: var(--red-soft); color: #ff8a93; }
.caret { display: inline-block; width: 2px; height: 1.1em; background: var(--red); margin-left: 3px; vertical-align: -3px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@keyframes grow { from { transform: scaleX(0); } }
@keyframes rise { from { transform: scaleY(0); } }

/* ---------- Features (bento) ---------- */
.features { padding: 120px 0; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  position: relative; padding: 26px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  box-shadow: 0 0 0 1px var(--line) inset;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .3s; background: radial-gradient(400px circle at var(--cx, 50%) var(--cy, 50%), rgba(255,45,61,.14), transparent 40%); }
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; opacity: 0; transition: opacity .3s; background: radial-gradient(300px circle at var(--cx, 50%) var(--cy, 50%), rgba(255,45,61,.8), transparent 50%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.card:hover::before, .card:hover::after { opacity: 1; }
.card:hover { transform: translateY(-4px); }
.card--wide { grid-column: span 2; }
@media (min-width: 961px) { .card--wide-lg { grid-column: span 2; } } /* large sur ordinateur seulement (tablette : 2 colonnes, elle reste étroite) */
.card h3 { font-size: 21px; letter-spacing: -0.02em; margin-top: 22px; }
.card p { color: var(--muted); font-size: 15.5px; margin-top: 6px; }
.card__viz { position: relative; height: 170px; border-radius: 14px; background: rgba(0,0,0,.25); box-shadow: 0 0 0 1px var(--line) inset; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 16px; }

.viz-radar { background: radial-gradient(circle at 50% 50%, rgba(255,45,61,.12), transparent 60%), rgba(0,0,0,.3); }
.radar { position: relative; width: 150px; height: 150px; border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 24px, rgba(255,255,255,.08) 24px 25px); box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset; }
.radar__sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(255,45,61,.55), transparent 25%); animation: spin 3.5s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.radar i { position: absolute; left: var(--x); top: var(--y); width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.6); transform: translate(-50%,-50%); }
.radar i.big { width: 11px; height: 11px; background: var(--red); box-shadow: 0 0 14px var(--red); }
.viz-radar::before, .viz-radar::after { content: ""; position: absolute; top: 50%; width: 36%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,45,61,.4)); }
.viz-radar::before { left: 0; } .viz-radar::after { right: 0; transform: scaleX(-1); }

.viz-decode { flex-direction: column; gap: 14px; align-items: stretch; container-type: inline-size; }
@container (max-width: 300px) { .tl span { font-size: 10px; padding: 9px 3px; } } /* carte étroite : les 5 étiquettes restent lisibles */
.tl { display: flex; gap: 4px; width: 100%; }
.tl span { flex: var(--g, 1) 1 auto; min-width: 0; padding: 10px 4px; border-radius: 8px; background: rgba(255,255,255,.07); font: 11px var(--mono); color: var(--muted); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl .red-bg { background: var(--red-soft); color: #ff8a93; box-shadow: 0 0 0 1px rgba(255,45,61,.35) inset; }
.tl-head { position: relative; container-type: inline-size; height: 26px; border-radius: 6px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 2px, transparent 2px 9px); }
.tl-head::after { content: ""; position: absolute; top: -40px; bottom: 0; width: 2px; background: var(--red); box-shadow: 0 0 10px var(--red); left: 2%; animation: scan 4s var(--ease) infinite; }
@keyframes scan { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(94cqw); } } /* transform : plus de recalcul de mise en page à chaque image */

.viz-script { flex-direction: column; align-items: stretch; justify-content: center; gap: 10px; font-size: 14px; }
.viz-script p { padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.04); }
.viz-script .dim { color: var(--muted); }
/* Vignette « Diagnostic de compte » : pic vs normale + verdict */
.viz-diag { padding: 14px 16px; container-type: inline-size; }
@container (max-width: 290px) { .md__verdicts span { padding: 6px 5px; font-size: 10px; } }
.md { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.md__head { display: flex; align-items: center; gap: 7px; font-size: 12px; }
.md__head img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1.5px var(--red); }
.md__head span { margin-left: auto; font: 10px var(--mono); color: var(--dim); white-space: nowrap; }
.md__chart { position: relative; display: flex; align-items: flex-end; gap: 6px; height: 58px; margin-top: 14px; }
.md__chart span { flex: 1; height: var(--h); border-radius: 4px 4px 1px 1px; background: rgba(255,255,255,.14); position: relative; }
.md__chart span.hot { background: linear-gradient(180deg, #ff5a4a, var(--red-deep)); box-shadow: 0 0 22px rgba(255,45,61,.6); }
.md__chart em { position: absolute; left: 50%; top: -19px; transform: translateX(-50%); font: 600 11px var(--mono); font-style: normal; color: #ff8a93; white-space: nowrap; }
.md__norm { position: absolute; left: 0; right: 0; bottom: 30%; border-top: 1px dashed rgba(255,255,255,.35); }
.md__norm small { position: absolute; right: 0; top: -15px; font: 9.5px var(--mono); color: var(--dim); }
.md__verdicts { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.md__verdicts span { padding: 6px 8px; border-radius: 8px; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.md__ok { color: #8ff0b8; background: rgba(61,220,132,.1); box-shadow: inset 0 0 0 1px rgba(61,220,132,.3); }
.md__ko { color: #ff9aa2; background: rgba(255,45,61,.1); box-shadow: inset 0 0 0 1px rgba(255,45,61,.3); }
.card:hover .md__chart span.hot { animation: glow 1.6s ease-in-out infinite; }

.viz-spaces { flex-wrap: wrap; gap: 6px; align-content: center; }
.viz-spaces .chip { font-size: 11.5px; padding: 6px 10px; }
.cal { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; width: 100%; font: 11px var(--mono); color: var(--dim); text-align: center; }
.cal b { height: 76px; border-radius: 8px; background: rgba(255,255,255,.04); font: 500 11px var(--font); color: var(--text); display: flex; align-items: flex-end; padding: 6px; text-align: left; line-height: 1.2; }
.cal b.on { background: linear-gradient(180deg, rgba(255,45,61,.3), rgba(255,45,61,.08)); box-shadow: 0 0 0 1px rgba(255,45,61,.4) inset; }

/* ---------- Ta data (la valeur qui s'accumule) ---------- */
.data { padding: 120px 0; position: relative; }
.data::before { content: ""; position: absolute; right: -10%; top: 12%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(255,45,61,.14), transparent 65%); pointer-events: none; }
.data__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 64px; align-items: center; }
.data .section-head { margin-bottom: 36px; }
.data .section-head h2 { font-size: clamp(34px, 4.2vw, 54px); }
.data__sub { margin-top: 20px; color: var(--muted); font-size: 18px; max-width: 520px; }
.data__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.data__list li { display: flex; gap: 16px; align-items: flex-start; }
.data__ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--red); background: var(--red-soft); box-shadow: 0 0 0 1px rgba(255,45,61,.3) inset; }
.data__ico svg { width: 21px; height: 21px; }
.data__list h3 { font-size: 18px; letter-spacing: -0.015em; }
.data__list p { margin-top: 4px; color: var(--muted); font-size: 15.5px; }

.dash { position: relative; padding: 22px; border-radius: 26px; background: radial-gradient(90% 60% at 50% 0%, rgba(255,45,61,.12), transparent 70%), linear-gradient(180deg, #16111a, #0d0a0e); box-shadow: 0 0 60px rgba(255,45,61,.2), inset 0 4px 24px rgba(90,18,28,.45), inset 0 0 0 1px rgba(255,255,255,.08); }
.dash__head { display: flex; align-items: center; gap: 12px; }
.dash__head img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--red); }
.dash__head b { display: block; font-size: 15px; }
.dash__head small { font-size: 12px; color: var(--muted); }
.dash__head .chip { margin-left: auto; font-size: 11px; }
.dash__kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 18px; }
.dash__kpis > div { padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px var(--line); }
.dash__kpis small { display: block; font-size: 11.5px; color: var(--muted); }
.dash__kpis b { display: block; margin-top: 4px; font-size: 24px; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.dash__chart { position: relative; margin-top: 12px; padding: 14px 14px 10px; border-radius: 16px; background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px var(--line); }
.dash__chart-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 13px; }
.dash__legend { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); white-space: nowrap; }
.dash__legend i { width: 14px; height: 3px; border-radius: 2px; margin-left: 6px; }
.lg-v { background: var(--red); }
.lg-n { background: repeating-linear-gradient(90deg, rgba(255,255,255,.55) 0 4px, transparent 4px 7px); }
.dash__chart svg { display: block; width: 100%; height: 150px; margin-top: 10px; overflow: visible; }
.dash__line { stroke: var(--red); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; vector-effect: non-scaling-stroke; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 6px rgba(255,45,61,.6)); }
.dash__norm { stroke: rgba(255,255,255,.45); stroke-width: 1.5; stroke-dasharray: 5 5; vector-effect: non-scaling-stroke; }
.dash__area { opacity: 0; transition: opacity 1s ease .9s; }
.dash__dot { fill: #fff; stroke: var(--red); stroke-width: 3; vector-effect: non-scaling-stroke; opacity: 0; transition: opacity .4s ease 1.6s; }
.dash__peak { position: absolute; left: calc(14px + (100% - 28px) * var(--x)); top: calc(44px + 150px * var(--y)); transform: translate(-50%, calc(-100% - 12px)); font: 600 11.5px var(--mono); color: #fff; padding: 3px 7px; border-radius: 999px; background: rgba(255,45,61,.25); box-shadow: 0 0 0 1px rgba(255,45,61,.5) inset; opacity: 0; transition: opacity .4s ease 1.7s; }
.dash__peak--big { background: var(--red); box-shadow: 0 0 20px rgba(255,45,61,.7); }
.dash__axis { display: flex; justify-content: space-between; margin-top: 6px; font: 10.5px var(--mono); color: var(--dim); }
.data.is-in .dash__line { stroke-dashoffset: 0; transition: stroke-dashoffset 1.8s cubic-bezier(.65,0,.35,1) .2s; }
.data.is-in .dash__area, .data.is-in .dash__dot, .data.is-in .dash__peak { opacity: 1; }
.dash__item { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.dash__item img { width: 30px; height: 40px; border-radius: 6px; object-fit: cover; flex: none; }
.dash__item > span:not(.dash__cta) { flex: 1; min-width: 0; font-size: 12px; color: #d4d4dc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash__item em { display: inline-flex; align-items: center; gap: 3px; font: 600 11.5px var(--mono); font-style: normal; color: #ff8a93; }
.dash__item em svg { width: 11px; height: 11px; }

/* Tableau de bord « compte connecté » */
.dash__conn { display: inline-flex; align-items: center; gap: 4px; }
.dash__conn .pf { width: 14px; height: 14px; }
.dash__conn .pf svg { width: 9px; height: 9px; }
.dash__tabs { display: flex; align-items: center; gap: 4px; margin-top: 16px; border-bottom: 1px solid var(--line); }
.dash__tabs button { position: relative; padding: 10px 12px; font-size: 13.5px; font-weight: 600; color: var(--muted); transition: color .2s; }
.dash__tabs button::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: -1px; height: 2px; border-radius: 2px; background: var(--red); transform: scaleX(0); transition: transform .35s var(--ease); }
.dash__tabs button.is-active { color: var(--text); }
.dash__tabs button.is-active::after { transform: scaleX(1); }
.dash__range { margin-left: auto; white-space: nowrap; font: 11.5px var(--mono); color: var(--muted); padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.05); }
.dash__panes { display: grid; grid-template-columns: minmax(0, 1fr); margin-top: 14px; }
.dash__pane { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .4s ease, transform .5s var(--ease), visibility 0s .4s; }
.dash__pane.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity .4s ease, transform .5s var(--ease); }
.dash__pane .dash__kpis { margin-top: 0; }
.dash__split { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; margin-top: 12px; font-size: 12px; color: var(--muted); }
.dash__split b { color: var(--text); }
.dash__split-bar { height: 6px; border-radius: 6px; background: rgba(255,255,255,.12); overflow: hidden; }
.dash__split-bar i { display: block; height: 100%; width: var(--p); background: var(--red); border-radius: 6px; }
.dash__insight { display: flex; align-items: center; gap: 10px; margin-top: 10px; padding: 10px 12px; border-radius: 12px; font-size: 13px; color: #dcdce3; background: rgba(61,220,132,.08); box-shadow: inset 0 0 0 1px rgba(61,220,132,.25); }
.dash__insight svg { width: 16px; height: 16px; flex: none; color: var(--green); }
.dash__insight b { color: var(--text); }
.dash__sub { display: block; margin: 4px 0 2px; font-size: 13px; }
.dash__sub + .dash__item { margin-top: 8px; }
.dash__pane .dash__sub:not(:first-child) { margin-top: 16px; }
.dash__item small { display: block; margin-top: 2px; font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash__item > span:not(.dash__cta) { flex: 1; min-width: 0; font-size: 12.5px; color: #e4e4ea; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash__type { display: grid; grid-template-columns: 80px 1fr 44px; align-items: center; gap: 10px; margin-top: 10px; font-size: 12.5px; color: #d4d4dc; }
.dash__type b { text-align: right; }
.dash__two { height: 8px; border-radius: 8px; background: rgba(255,255,255,.07); overflow: hidden; }
.dash__two i { display: block; height: 100%; width: var(--b); border-radius: 8px; background: linear-gradient(90deg, var(--red) 0 calc(var(--a) / var(--b) * 100%), #ff8a93 0); }
.dash__legend--two { margin-top: 10px; }
.lg-a { background: var(--red); }
.lg-b { background: #ff8a93; }
.dash__aud { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash__aud > div { padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px var(--line); }
.dash__aud small { display: block; font-size: 11.5px; color: var(--muted); }
.dash__aud b { display: block; margin-top: 4px; font-size: 22px; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.dash__up { font-size: 11.5px; color: var(--green); }
.dash__bars { display: flex; align-items: flex-end; gap: 3px; height: 70px; margin-top: 10px; }
.dash__bars i { flex: 1; height: var(--h); border-radius: 3px 3px 1px 1px; background: linear-gradient(180deg, var(--red), rgba(255,45,61,.35)); transform-origin: bottom; }
.dash__pane.is-active .dash__bars i { animation: rise .7s var(--ease) both; animation-delay: calc(var(--d) * 18ms); }
.dash__geo { display: grid; grid-template-columns: 70px 1fr 40px; align-items: center; gap: 10px; margin-top: 8px; font-size: 12.5px; color: #d4d4dc; }
.dash__geo div { height: 6px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; }
.dash__geo i { display: block; height: 100%; width: var(--p); border-radius: 6px; background: var(--red); }
.dash__geo b { text-align: right; }
.dash__reco { margin-top: 14px; padding: 14px; border-radius: 16px; background: linear-gradient(180deg, rgba(255,45,61,.12), rgba(255,45,61,.03)); box-shadow: inset 0 0 0 1px rgba(255,45,61,.35); }
.dash__reco-head { display: flex; align-items: center; gap: 8px; font-size: 13.5px; }
.dash__reco-head svg { width: 17px; height: 17px; color: var(--red); flex: none; }
.dash__reco-head small { margin-left: auto; font-size: 11px; color: var(--muted); text-align: right; }
.dash__item .dash__cta { flex: none; padding: 5px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600; color: #fff; background: var(--red); box-shadow: 0 6px 16px -6px rgba(255,45,61,.8); }
.dash__plan { display: flex; align-items: center; gap: 10px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,45,61,.25); font-size: 12.5px; color: #dcdce3; }
.dash__plan svg { width: 16px; height: 16px; color: var(--red); flex: none; }
.dash__plan b { color: var(--text); }

.data__timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 88px; padding-top: 34px; }
.data__track { position: absolute; left: 24px; right: 24px; top: 0; height: 2px; border-radius: 2px; background: var(--line-2); }
.data__track i { display: block; height: 100%; border-radius: 2px; background: linear-gradient(90deg, rgba(255,45,61,.4), var(--red)); box-shadow: 0 0 12px rgba(255,45,61,.6); transform: scaleX(var(--p, 1)); transform-origin: left; }
.ms { position: relative; }
.ms::before { content: ""; position: absolute; left: 0; top: -41px; width: 14px; height: 14px; border-radius: 50%; background: var(--bg); box-shadow: 0 0 0 2px var(--red), 0 0 14px rgba(255,45,61,.6); }
.ms__day { font: 500 12.5px var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.ms h4 { margin-top: 10px; font-size: 21px; letter-spacing: -0.02em; }
.ms p { margin-top: 6px; color: var(--muted); font-size: 15.5px; }

/* ---------- Proof ---------- */
.proof { padding: 120px 0; position: relative; overflow-x: clip; }
.proof__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.proof__grid > * { min-width: 0; }
.network { position: relative; padding: 28px; border-radius: 28px; background: linear-gradient(180deg, var(--card-2), var(--card)); box-shadow: 0 0 0 1px var(--line-2) inset, 0 50px 100px -40px rgba(255,45,61,.45); }
.network::before { content: ""; position: absolute; inset: -30px; z-index: -1; border-radius: 40px; background: radial-gradient(50% 50% at 50% 50%, rgba(255,45,61,.25), transparent 70%); filter: blur(30px); }
.network__label { font: 12px var(--mono); text-transform: uppercase; letter-spacing: .12em; color: var(--dim); margin: 0 0 12px; }
.network__label:not(:first-child) { margin-top: 26px; }
.network__row { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.03); box-shadow: 0 0 0 1px var(--line) inset; transition: background .3s, box-shadow .3s; }
.network__row + .network__row { margin-top: 8px; }
.network__row:hover { background: rgba(255,255,255,.05); box-shadow: 0 0 0 1px rgba(255,45,61,.4) inset; }
.network__row--main { background: var(--red-soft); box-shadow: 0 0 0 1px rgba(255,45,61,.35) inset; }
.network__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--red), 0 0 20px rgba(255,45,61,.5); flex: none; }
.network__id { min-width: 0; }
.network__id b { display: block; font-size: 16px; letter-spacing: -0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.network__row--main .network__id b { white-space: normal; }
.network__id span { font-size: 14px; color: var(--muted); }
.network__icons { display: flex; gap: 6px; margin-left: auto; }
.network__icons span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); }
.network__icons svg { width: 17px; height: 17px; }
.network__logo { flex: none; width: 44px; height: 44px; border-radius: 12px; object-fit: cover; box-shadow: 0 0 0 1px var(--line-2); }
.network__total { display: flex; align-items: center; gap: 14px; margin-top: 20px; font-size: 14.5px; line-height: 1.4; color: var(--muted); }
/* pile de visages : pastilles qui se chevauchent, liseré de la couleur de la carte pour les détacher */
.avstack { display: flex; flex: none; }
.avstack img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; background: #1d1d25; box-shadow: 0 0 0 2.5px #121218; }
.avstack img + img { margin-left: -10px; }
.network__total b { color: var(--text); }
/* Mot du second fondateur : note courte centrée, placée à la suite de la citation et des réseaux de Maxime (photo, nom et rôle en tête, puis la citation).
   Texte sans serif bien contrasté pour la lisibilité ; fond et contour très légers : la grande citation reste celle de Maxime, plus bas. */
.founder { position: relative; margin-top: 88px; }
.founder + .container .counters { margin-top: 88px; }
.founder__note { max-width: 780px; margin: 0 auto; padding: 32px 40px 34px; text-align: center; border-radius: 20px; background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px var(--line); }
.founder__who { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px; text-align: left; }
.founder__who img { width: 48px; height: 48px; flex: none; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px #111116, 0 0 0 3px rgba(255,45,61,.55); }
.founder__who b { display: block; font-size: 17px; line-height: 1.3; color: var(--text); }
.founder__who small { display: block; font-size: 14.5px; line-height: 1.3; color: var(--dim); }
.founder__quote { margin: 0; font-size: clamp(19px, 1.55vw, 22px); line-height: 1.55; letter-spacing: -0.01em; color: #d4d4dc; }
.founder__quote p { text-wrap: balance; }
.founder__quote strong { color: var(--text); font-weight: 600; }
@media (max-width: 640px) { .founder, .founder + .container .counters { margin-top: 56px; } .founder__note { padding: 24px 20px 26px; border-radius: 18px; } .founder__quote { font-size: 18px; } }
.proof__quote { margin: 0; }
.proof__q { width: 44px; color: var(--red); margin-bottom: 24px; }
.proof__quote .scrub { font-size: clamp(26px, 3.2vw, 40px); }
.proof__quote footer { margin-top: 28px; font-weight: 600; font-size: 17px; }
.proof__quote footer span { color: var(--muted); font-weight: 400; }

.counters { margin-top: 110px; display: grid; grid-template-columns: repeat(5, 1fr); border-radius: var(--radius); box-shadow: 0 0 0 1px var(--line) inset; background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); }
.counter { padding: 34px 22px; text-align: center; border-left: 1px solid var(--line); }
.counter:first-child { border-left: 0; }
.counter b { display: block; font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -0.04em; font-weight: 700; background: linear-gradient(180deg, #fff, #ff9aa2); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; white-space: nowrap; }
.counter > span { display: block; margin-top: 6px; color: var(--muted); font-size: 14.5px; line-height: 1.35; }

/* ---------- Compare ---------- */
.compare { padding-top: 40px; padding-bottom: 120px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.compare__col { padding: 36px; border-radius: 24px; }
.compare__col h3 { font-size: 22px; display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.compare__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.compare__col li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; }
.compare__col li::before { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-top: 1px; }
.compare__col--without { background: rgba(255,255,255,.02); box-shadow: 0 0 0 1px var(--line) inset; color: var(--muted); }
.compare__col--without h3 { color: var(--muted); }
.compare__col--without li::before { content: "✕"; background: rgba(255,255,255,.06); color: var(--dim); }
.compare__col--without li { text-decoration: line-through; text-decoration-color: rgba(255,255,255,.2); }
.compare__col--with { background: linear-gradient(180deg, rgba(255,45,61,.14), rgba(255,45,61,.03)); box-shadow: 0 0 0 1px rgba(255,45,61,.4) inset, 0 40px 90px -40px rgba(255,45,61,.6); }
.compare__col--with li::before { content: "✓"; background: var(--red); color: #fff; box-shadow: 0 0 14px rgba(255,45,61,.6); }
.compare__col--with .logo__mark { width: 26px; height: 26px; }
.compare__vs { font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--dim); }

/* ---------- Pricing ---------- */
.pricing { padding: 120px 0 72px; position: relative; overflow: hidden; }
.pricing::before { content: ""; position: absolute; left: 50%; top: 200px; width: 900px; height: 600px; transform: translateX(-50%); background: radial-gradient(50% 50% at 50% 50%, rgba(255,45,61,.18), transparent 70%); pointer-events: none; }
.toggle { position: relative; display: flex; width: max-content; margin: -24px auto 48px; padding: 5px; border-radius: 999px; background: rgba(255,255,255,.05); box-shadow: 0 0 0 1px var(--line) inset; }
.toggle button { position: relative; z-index: 1; height: 42px; padding: 0 22px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; transition: color .3s; }
.toggle button.is-active { color: var(--text); }
.toggle__badge { font: 600 11.5px var(--mono); padding: 3px 7px; border-radius: 999px; background: var(--red); color: #fff; }
.toggle__knob { position: absolute; top: 5px; bottom: 5px; left: 5px; border-radius: 999px; background: rgba(255,255,255,.1); box-shadow: 0 0 0 1px var(--line-2) inset; transition: transform .45s var(--ease), width .45s var(--ease); }
.plans { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { position: relative; padding: 32px 28px; border-radius: 24px; background: linear-gradient(180deg, var(--card-2), var(--card)); box-shadow: 0 0 0 1px var(--line) inset; display: flex; flex-direction: column; }
.plan h3 { font-size: 22px; }
.plan__desc { color: var(--muted); font-size: 15px; margin-top: 8px; min-height: 46px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-top: 22px; }
.plan__price b { font-size: 56px; letter-spacing: -0.05em; line-height: 1; font-variant-numeric: tabular-nums; display: inline-block; }
.plan__price span { color: var(--muted); font-size: 16px; }
.plan__price .plan__cur { align-self: flex-start; margin: 6px -2px 0 0; font-size: 26px; font-weight: 600; color: var(--text); } /* version anglaise : €39/mo */
.plan__billed { color: var(--dim); font-size: 13.5px; margin: 8px 0 24px; min-height: 20px; }
.plan__list { list-style: none; margin: 28px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; font-size: 15px; color: #d4d4dc; }
.plan__list li { display: flex; gap: 10px; align-items: flex-start; }
.plan__list li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%23ff5a64' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; }
.plan__list li.plan__plus { color: var(--text); font-weight: 600; }
.plan__list li.plan__plus::before { display: none; }
.plan--pro { background: linear-gradient(180deg, #1c1016, #120b0f); box-shadow: 0 0 0 1px rgba(255,45,61,.5) inset, 0 50px 100px -40px rgba(255,45,61,.6); transform: translateY(-12px); }
.plan__ring { position: absolute; inset: 0; border-radius: inherit; padding: 1px; overflow: hidden; pointer-events: none; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.plan__ring i { position: absolute; left: 50%; top: 50%; width: 250%; aspect-ratio: 1; transform: translate(-50%, -50%); background: conic-gradient(transparent 0 60%, var(--red) 75%, #ffb199 80%, transparent 90%); animation: ringspin 4s linear infinite; }
@keyframes ringspin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.plan__badge { position: absolute; top: -13px; left: 28px; padding: 5px 12px; border-radius: 999px; background: var(--red); font: 600 12px var(--font); box-shadow: 0 8px 20px -6px rgba(255,45,61,.8); }
.pricing__note { text-align: center; color: var(--muted); font-size: 14px; max-width: 560px; margin: 44px auto 0; text-wrap: balance; }
.credits { margin: 18px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 900px; }
.credits span { font-size: 13px; color: var(--muted); padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.03); box-shadow: 0 0 0 1px var(--line) inset; }
.credits b { color: var(--text); font-weight: 600; margin-right: 6px; }

/* ---------- FAQ ---------- */
.faq { padding: 72px 0 120px; }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; }
.faq .section-head h2 { font-size: clamp(36px, 5vw, 60px); }
.faq__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.faq__tabs button { height: 42px; padding: 0 18px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--muted); background: rgba(255,255,255,.04); box-shadow: 0 0 0 1px var(--line) inset; transition: all .25s; }
.faq__tabs button:hover { color: var(--text); }
.faq__tabs button.is-active { color: #fff; background: var(--red); box-shadow: 0 8px 24px -8px rgba(255,45,61,.8); }
.faq__list { display: none; }
.faq__list.is-active { display: grid; gap: 10px; animation: fadeup .5s var(--ease); }
@keyframes fadeup { from { opacity: 0; transform: translateY(10px); } }
.faq details { border-radius: 16px; background: rgba(255,255,255,.025); box-shadow: 0 0 0 1px var(--line) inset; transition: background .3s, box-shadow .3s; }
.faq details[open] { background: rgba(255,255,255,.045); box-shadow: 0 0 0 1px var(--line-2) inset; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 60px 20px 22px; font-weight: 600; font-size: 17px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 20px; top: 50%; width: 28px; height: 28px; margin-top: -14px; border-radius: 50%; background: rgba(255,255,255,.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 6v12M6 12h12' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/14px no-repeat; transition: transform .35s var(--ease), background-color .3s; }
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--red); }
.faq details p { padding: 0 22px 22px; color: var(--muted); font-size: 16px; }
.faq details a { color: #ff8a93; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Final CTA ---------- */
.final { position: relative; padding: 160px 0 170px; overflow: hidden; text-align: center; border-top: 1px solid var(--line); }
.final__glow { position: absolute; left: 50%; bottom: -380px; width: 1300px; height: 700px; transform: translateX(-50%); }
.final__glow::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(50% 50% at 50% 50%, rgba(255,45,61,.55), rgba(255,45,61,.12) 50%, transparent 70%); animation: glowbreathe 7s ease-in-out infinite; }
@keyframes glowbreathe { 50% { transform: scale(1.08); opacity: .8; } }
.final__glow::after { content: ""; position: absolute; left: 10%; right: 10%; top: 48%; height: 2px; background: linear-gradient(90deg, transparent, #ff8a93, transparent); filter: blur(1px); }
.final__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.final__title { font-size: clamp(38px, 6vw, 80px); max-width: 1000px; letter-spacing: -0.045em; }
.cta-form--center { margin-top: 44px; }

/* ---------- Footer ---------- */
.footer { position: relative; padding: 80px 0 0; background: var(--bg-2); border-top: 1px solid var(--line); overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { color: var(--muted); margin-top: 14px; font-size: 15px; max-width: 280px; }
.footer .footer__h { font: 12px var(--mono); text-transform: uppercase; letter-spacing: .12em; color: var(--dim); margin-bottom: 18px; }
.footer__grid > div > a:not(.logo) { display: block; color: var(--muted); font-size: 15px; padding: 5px 0; transition: color .2s; }
.footer__grid > div > a:not(.logo):hover { color: var(--text); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px 20px; flex-wrap: wrap; margin-top: 64px; padding: 24px 24px 32px; color: var(--dim); font-size: 13.5px; border-top: 1px solid var(--line); }

/* ---------- Reveal defaults (overridden by GSAP when available) ---------- */
/* Marge invisible autour de chaque mot : l'italique dépasse de sa boîte et serait coupé par overflow:hidden */
.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .2em .1em .06em; margin: 0 -.2em -.1em -.06em; }
.split-word > span { display: inline-block; }
.hero__title .nowrap { white-space: nowrap; } /* groupe de mots qui ne doit pas être coupé (titre anglais : « to go viral, ») */

/* ---------- Responsive ---------- */
/* Nav : liens visibles jusqu'à la tablette, burger seulement sur téléphone */
@media (max-width: 1080px) {
  .nav__inner { gap: 12px; }
  .nav__links { gap: 0; }
  .nav__links a { padding: 8px 10px; font-size: 14.5px; }
  .nav__actions .btn--sm { padding: 0 14px; }
}
@media (max-width: 960px) {
  .nav { padding: 0 12px; }
  .nav__inner { gap: 8px; padding: 0 8px 0 16px; }
  .nav__links a { padding: 6px 8px; font-size: 14px; }
  .nav .logo { font-size: 18px; }
}
@media (max-width: 480px) {
  .nav__login { display: none; }
}
@media (max-width: 879px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__mobile { display: grid; max-width: 1120px; margin: 8px auto 0; padding: 0 12px; border-radius: 24px; background: rgba(12,12,17,.95); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); box-shadow: 0 0 0 1px var(--line) inset; max-height: 0; overflow: hidden; opacity: 0; visibility: hidden; transition: max-height .4s var(--ease), opacity .3s, padding .4s, visibility 0s linear .4s; }
  .nav.is-open .nav__mobile { max-height: 480px; opacity: 1; padding: 10px 12px; visibility: visible; transition-delay: 0s; }
  .nav__mobile > a { padding: 14px 12px; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav__mobile-lang { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 12px 6px; font-size: 15px; color: var(--muted); }
  .nav__mobile-lang .langsw a { min-width: 48px; height: 40px; font-size: 14px; }
}

@media (max-width: 1080px) {
  .problem__notif { display: none; }
  .problem__inner { grid-template-columns: minmax(0, 1fr); }
 }
@media (max-width: 960px) {
  .how__grid { grid-template-columns: 1fr; gap: 36px; }
  .how__visual { order: -1; width: 100%; max-width: 548px; margin: 0 auto; }
  .bento { grid-template-columns: 1fr 1fr; }
  .card--wide { grid-column: span 2; }
  .proof__grid { grid-template-columns: 1fr; gap: 56px; }
  .data__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .data__grid > * { min-width: 0; }
  .data__visual { max-width: 560px; width: 100%; margin: 0 auto; }
  .network { max-width: 520px; margin: 0 auto; width: 100%; }
  .counters { grid-template-columns: repeat(3, 1fr); }
  .counter:nth-child(4) { border-left: 0; }
  .counter:nth-child(n+4) { border-top: 1px solid var(--line); }
  .compare { grid-template-columns: 1fr; }
  .compare__vs { text-align: center; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan--pro { transform: none; }
  .faq__grid { grid-template-columns: 1fr; gap: 28px; }
  .faq .section-head { margin-bottom: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  /* sections qui sont aussi .container : on rétablit leurs marges verticales */
  .trust { padding: 56px 16px 24px; }
  .compare { padding-top: 24px; padding-bottom: 88px; }
  .nav { top: 10px; padding: 0 10px; }
  .nav__actions .btn--sm { padding: 0 14px; font-size: 13px; }
  .hero { padding-top: 124px; }
  /* sous-titre du hero sur une seule ligne : la taille suit la largeur de l'écran (≈ 23,2 × la taille de police) */
  .hero__sub { font-size: min(16.5px, calc((100vw - 34px) / 23.4)); white-space: nowrap; }
  .hero__sub-extra { display: none; } /* « sans effort » : ordinateur uniquement, pour garder une seule ligne sur mobile */
  /* Version anglaise : « effortlessly » gardé sur mobile, sous-titre sur deux lignes équilibrées à taille normale */
  html[lang="en"] .hero__sub { font-size: 16.5px; white-space: normal; text-wrap: balance; max-width: 360px; margin-inline: auto; }
  html[lang="en"] .hero__sub-extra { display: inline; }
  .micro { font-size: min(13px, calc((100vw - 34px) / 26.8)); gap: .55em; flex-wrap: nowrap; white-space: nowrap; }
  .cta-form__row { flex-direction: column; border-radius: 22px; }
  .cta-form__field { padding: 0 16px; }
  .cta-form__field input { height: 52px; }
  .btn--lg { width: 100%; height: 54px; font-size: 15px; white-space: normal; text-align: center; line-height: 1.2; }
  .diag { top: 70px; }
  .reel__hook { font-size: 12px; }
  /* Ticker mobile : le libellé sur une ligne, le défilement sur la ligne du dessous */
  .ticker { flex-direction: column; align-items: stretch; }
  .ticker__label { justify-content: center; padding: 10px 16px; font-size: 11px; border-right: 0; border-bottom: 1px solid var(--line); }
  .ticker__track { padding: 14px 0; }
  .ticker__row span { font-size: 14px; }
  .trust__stats { flex-direction: column; gap: 6px; }
  .trust__stats i { display: none; }
  .trust__who { flex-wrap: wrap; justify-content: center; border-radius: 24px; padding: 14px; text-align: center; }
  .trust__icons { margin-left: 0; }
  .problem, .how, .features, .proof, .data { padding: 88px 0; }
  .dash { padding: 16px; border-radius: 20px; }
  .dash__kpis b { font-size: 19px; }
  .dash__kpis > div { padding: 10px; }
  .dash__tabs button { padding: 10px 8px; font-size: 13px; }
  .dash__split { grid-template-columns: 1fr 1fr; }
  .dash__split-bar { grid-column: 1 / -1; }
  .dash__reco-head { flex-wrap: wrap; }
  .dash__reco-head small { margin-left: 25px; width: 100%; text-align: left; }
  .dash__head .chip { display: none; }
  .data__timeline { grid-template-columns: 1fr; gap: 26px; margin-top: 56px; padding: 0 16px 0 46px; }
  .data__track { left: 22px; right: auto; top: 6px; bottom: 6px; width: 2px; height: auto; }
  .data__track i { transform: scaleY(var(--p, 1)); transform-origin: top; height: 100%; }
  .ms::before { left: -30px; top: 2px; }
  .pricing { padding: 88px 0 40px; }
  .faq { padding: 40px 0 88px; }
  .faq__tabs { margin-top: 24px; }
  .pricing__note { font-size: 13px; margin-top: 32px; }
  .section-head { margin-bottom: 44px; }
  .bento { grid-template-columns: 1fr; }
  .card--wide { grid-column: auto; }
  .counters { grid-template-columns: 1fr 1fr; }
  .counter { border-left: 0 !important; border-top: 1px solid var(--line); }
  .counter:nth-child(-n+2) { border-top: 0; }
  .counter:nth-child(even) { border-left: 1px solid var(--line) !important; }
  .counter:last-child { grid-column: span 2; border-left: 0 !important; }
  .network { padding: 20px; }
  .network__row--main .network__id b { white-space: normal; }
  .network__icons { gap: 4px; }
  .network__icons span { width: 30px; height: 30px; }
  .compare__col { padding: 26px 22px; }
  .final { padding: 110px 0 130px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* Animations en boucle en pause hors écran */
.is-off *, .is-off *::before, .is-off *::after { animation-play-state: paused !important; }
/* Cibles tactiles ≥ 44 px */
@media (pointer: coarse) {
  .btn--sm, .toggle button, .faq__tabs button { height: 44px; }
}

@media (max-width: 380px) {
  .viz-diag { height: auto; }
  .md__verdicts { grid-template-columns: 1fr; }
}

@media (max-width: 359px) {
  .hero__pill-extra { display: none; } /* « · Reels, TikTok, Shorts » masqué sur les très petits écrans */
  .micro { flex-wrap: wrap; white-space: normal; font-size: 12px; }
  .micro i { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ticker__row { animation: none; }
  .scrub .w { opacity: 1; }
}

/* =========================================================
   Top 1 % : vue d'ensemble de la plateforme (adaptée de Sandcastles)
   La scène est dessinée à --dw × --dh px puis mise à l'échelle de son cadre (voir fitScaled dans main.js).
   ========================================================= */
.ol { padding: 0 0 120px; }
.ol__box { position: relative; overflow: hidden; border-radius: 32px; padding-top: 64px; background: radial-gradient(60% 36% at 50% 0%, rgba(255,45,61,.22), transparent 70%), linear-gradient(180deg, #101016, #09090d); box-shadow: 0 0 0 1px var(--line) inset, 0 40px 120px -60px rgba(255,45,61,.35); }
.ol__box::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(70% 55% at 50% 30%, #000, transparent); mask-image: radial-gradient(70% 55% at 50% 30%, #000, transparent); }
.ol__head { position: relative; margin-bottom: 40px; padding: 0 24px; }
.ol__pill { margin-bottom: 22px; }
.ol__pill:hover { color: var(--muted); box-shadow: 0 0 0 1px var(--line) inset; }
.ol__frame { --dw: 1200; --dh: 660; position: relative; container-type: inline-size; aspect-ratio: var(--dw) / var(--dh); }
.ol__frame::after { content: ""; position: absolute; inset: auto 0 0; height: 22%; z-index: 6; pointer-events: none; background: linear-gradient(180deg, rgba(9,9,13,0), #09090d 90%); }
.ol__stage { --s: tan(atan2(100cqw, calc(var(--dw) * 1px))); position: absolute; left: 0; top: 0; width: calc(var(--dw) * 1px); height: calc(var(--dh) * 1px); transform: scale(var(--s, 1)); transform-origin: 0 0; color: var(--text); text-align: left; line-height: 1.4; }

/* La plateforme */
.ol-app { position: absolute; left: 228px; top: 120px; width: 744px; height: 660px; padding: 22px 24px; border-radius: 20px; background: linear-gradient(180deg, #15151c, #0e0e13); box-shadow: 0 0 0 1px rgba(255,255,255,.09) inset, 0 40px 90px -30px rgba(0,0,0,.9); }
.ol-app__lead { margin-bottom: 14px; font-size: 15px; color: #cfcfd8; }
.ol-search { display: flex; gap: 10px; }
.ol-sel, .ol-input, .ol-btn, .ol-ghost { display: inline-flex; align-items: center; height: 40px; padding: 0 14px; border-radius: 10px; font-size: 14px; white-space: nowrap; }
.ol-sel { gap: 12px; color: #c9c9d3; background: rgba(255,255,255,.05); box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset; }
.ol-sel::after { content: ""; width: 6px; height: 6px; margin-left: auto; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); opacity: .7; }
.ol-sel.on { color: #ff8a93; background: rgba(255,45,61,.12); box-shadow: 0 0 0 1px rgba(255,45,61,.45) inset; }
.ol-input { flex: 1; color: var(--dim); background: rgba(255,255,255,.03); box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset; }
.ol-btn { padding: 0 18px; font-weight: 600; color: #fff; background: var(--red); box-shadow: 0 8px 20px -8px rgba(255,45,61,.8); }
.ol-ghost { color: #c9c9d3; box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset; }
.ol-filters { display: flex; gap: 10px; margin: 12px 0 18px; }
.ol-filters .ol-sel { height: 34px; font-size: 13px; border-radius: 999px; }
.ol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ol-v { min-width: 0; }
.ol-v__th { position: relative; aspect-ratio: 9 / 14; border-radius: 12px; overflow: hidden; background: #1a1a22; }
.ol-v__th img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.ol-v__th .pf { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; }
.ol-v__th .pf svg { width: 13px; height: 13px; }
.ol-v.is-hot .ol-v__th { box-shadow: 0 0 0 2px var(--red), 0 0 26px rgba(255,45,61,.5); }
.ol-v > b { display: block; margin-top: 9px; font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ol-v > small { display: flex; justify-content: space-between; margin-top: 3px; font-size: 11.5px; color: var(--dim); }
.ol-v__st { display: flex; gap: 5px; margin-top: 7px; }
.ol-v__st .st { padding: 3px 6px; font-size: 10.5px; }

/* Cartes flottantes : le conteneur .ol-f est animé par GSAP, la carte .ol-card porte l'inclinaison 3D */
.ol-f { position: absolute; z-index: 4; }
.ol-card { padding: 16px 18px; border-radius: 16px; background: linear-gradient(180deg, #1c1c25, #131319); box-shadow: 0 0 0 1px rgba(255,255,255,.11) inset, 0 30px 70px -20px rgba(0,0,0,.9); }
.ol-card__head b, .ol-card__title, .ol-len > b { display: block; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.ol-card__head small { display: block; margin-top: 3px; font-size: 12.5px; font-style: italic; color: var(--dim); }

.ol-f--stats { left: 40px; top: 30px; width: 360px; }
.ol-f--stats .ol-card { transform: perspective(1400px) rotateX(12deg) rotateY(16deg) rotate(-7deg); }
.ol-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
.ol-m { padding: 10px 12px; border-radius: 11px; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.ol-m small { display: block; font-size: 12px; color: var(--muted); }
.ol-m b { display: flex; align-items: center; gap: 6px; margin-top: 3px; font-size: 18px; font-weight: 600; }
.ol-m b svg { width: 15px; height: 15px; }
.ol-m--red { background: rgba(255,45,61,.13); box-shadow: inset 0 0 0 1px rgba(255,45,61,.45); }
.ol-m--red b { color: #ff8a93; }
.ol-m--orange { background: rgba(255,140,60,.09); box-shadow: inset 0 0 0 1px rgba(255,140,60,.32); }
.ol-m--orange b { color: #ffb37a; }

.ol-f--hook { left: 22px; top: 330px; width: 390px; }
.ol-f--hook .ol-card { transform: perspective(1400px) rotateX(-8deg) rotateY(16deg) rotate(4deg); }
.ol-opt { margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.ol-opt b { display: block; font-size: 14px; font-weight: 700; }
.ol-opt p { margin-top: 4px; font-size: 13.5px; line-height: 1.45; color: #c9c9d3; }
.ol-opt.is-on { background: rgba(255,45,61,.09); box-shadow: inset 0 0 0 1.5px rgba(255,45,61,.6), 0 0 24px -6px rgba(255,45,61,.45); }
.ol-opt.is-on b { color: #ff8a93; }

.ol-f--acc { right: 38px; top: 36px; width: 330px; }
.ol-f--acc .ol-card { transform: perspective(1400px) rotateX(10deg) rotateY(-16deg) rotate(4deg); }
.ol-acc__id { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.ol-acc__av { position: relative; width: 42px; height: 42px; }
.ol-acc__av img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.ol-acc__av .pf { position: absolute; right: -3px; bottom: -3px; width: 18px; height: 18px; box-shadow: 0 0 0 2px #1c1c25; }
.ol-acc__av .pf svg { width: 10px; height: 10px; }
.ol-acc__id b { font-size: 15px; }
.ol-acc__id small { font-size: 12px; color: var(--muted); }
.ol-acc__label { margin: 14px 0 8px; font-size: 13.5px; font-weight: 600; }
.ol-sel--full { display: flex; height: 38px; color: var(--dim); }
.ol-acc__acts { display: flex; justify-content: space-between; gap: 10px; margin-top: 12px; }
.ol-acc__acts span { height: 34px; font-size: 13px; }

.ol-f--len { right: 96px; top: 256px; width: 270px; }
.ol-f--len .ol-card { transform: perspective(1400px) rotateY(-14deg) rotate(-5deg); }
.ol-range { --p: .62; position: relative; height: 6px; margin: 16px 0 12px; border-radius: 6px; background: rgba(255,255,255,.1); }
.ol-range i { position: absolute; left: 0; top: 0; bottom: 0; width: calc(var(--p) * 100%); border-radius: inherit; background: linear-gradient(90deg, #ff5a4a, #e11d2e); }
.ol-range u { position: absolute; left: calc(var(--p) * 100%); top: 50%; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,45,61,.35); }
.ol-len p { text-align: center; }
.ol-len p b { display: block; font-size: 15px; }
.ol-len p small { font-size: 12px; color: var(--dim); }

.ol-f--script { right: 18px; top: 404px; width: 430px; }
.ol-f--script .ol-card { transform: perspective(1400px) rotateX(-6deg) rotateY(-16deg) rotate(-6deg); }
.ol-diff { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.ol-diff > div { padding: 12px; border-radius: 12px; background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.ol-diff small { display: block; margin-bottom: 6px; font-size: 11.5px; color: var(--dim); }
.ol-diff p { font-size: 13px; line-height: 1.6; }
.ol-diff p + p { margin-top: 8px; }
.ol-diff del, .ol-diff ins { padding: 1px 3px; border-radius: 4px; text-decoration: none; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.ol-diff del { color: #ffb3b9; background: rgba(255,45,61,.2); }
.ol-diff ins { color: #b9f6d2; background: rgba(52,211,153,.17); }

/* Tablette : les cartes un peu plus serrées */
@media (max-width: 1100px) {
  .ol__box { border-radius: 26px; padding-top: 52px; }
}
/* Mobile : scène plus étroite, deux cartes flottantes seulement (comme la version mobile de Sandcastles) */
@media (max-width: 760px) {
  .ol { padding-bottom: 88px; }
  .ol__box { border-radius: 22px; padding-top: 40px; }
  .ol__head { margin-bottom: 26px; padding: 0 16px; }
  .ol__pill { font-size: 12px; margin-bottom: 16px; }
  .ol__frame { --dw: 560; --dh: 780; }
  .ol-app { left: 30px; top: 250px; width: 500px; padding: 16px; }
  .ol-app__lead, .ol-search, .ol-filters { display: none; }
  .ol-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .ol-v > b { font-size: 15px; }
  .ol-v > small { font-size: 13px; }
  .ol-f--hook, .ol-f--acc, .ol-f--len { display: none; }
  .ol-f--stats { left: 8px; top: 6px; width: 330px; }
  .ol-f--script { left: auto; right: 6px; top: 575px; width: 400px; }
  .ol-f--script .ol-card { transform: perspective(1400px) rotateX(-6deg) rotateY(-14deg) rotate(-3deg); }
  .ol-diff p { font-size: 15px; }
}

/* =========================================================
   Témoignages : bandeau défilant de cartes de même taille
   ========================================================= */
.tst { padding: 120px 0; position: relative; overflow: hidden; }
.tst .section-head { margin-bottom: 48px; }
/* Deux rangées identiques qui défilent : la boucle est sans couture (même principe que le bandeau « Ça explose ») */
.tst__band { -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.tst__track { display: flex; }
.tst__row { display: flex; flex: none; gap: 16px; padding-right: 16px; animation: marquee 60s linear infinite; }
@media (hover: hover) { .tst__band:hover .tst__row { animation-play-state: paused; } }
.tst__card { flex: none; display: flex; flex-direction: column; gap: 16px; width: 380px; height: 290px; margin: 0; padding: 26px; border-radius: 22px; background: linear-gradient(180deg, var(--card-2), var(--card)); box-shadow: 0 0 0 1px var(--line) inset; }
.tst__res { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; padding: 6px 11px; border-radius: 999px; font: 600 13px var(--font); color: #ff8a93; background: rgba(255,45,61,.12); box-shadow: inset 0 0 0 1px rgba(255,45,61,.35); }
.tst__res svg { width: 14px; height: 14px; }
.tst__card blockquote { margin: 0; font-size: 16px; line-height: 1.55; color: #dcdce4; }
.tst__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst__av { position: relative; flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; font: 700 15px var(--font); color: #fff; background: linear-gradient(135deg, var(--c1, #ff5a4a), var(--c2, #7a1d2a)); }
.tst__av .pf { position: absolute; right: -3px; bottom: -3px; width: 18px; height: 18px; box-shadow: 0 0 0 2px var(--card); }
.tst__av .pf svg { width: 10px; height: 10px; }
.tst__who b { display: block; font-size: 15px; }
.tst__who small { display: block; margin-top: 1px; font-size: 13px; color: var(--muted); }
.tst__note { margin-top: 22px; padding: 0 16px; text-align: center; font-size: 12.5px; color: var(--dim); }
@media (max-width: 640px) {
  .tst { padding: 88px 0; }
  .tst__card { width: 300px; height: 300px; padding: 22px; }
  .tst__card blockquote { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .tst__row { animation: none; }
  .tst__band { overflow-x: auto; }
  .tst__row[aria-hidden] { display: none; }
}

/* =========================================================
   Intro du hero en CSS : visible dès le premier rendu, sans attendre le chargement du JavaScript
   (fill-mode « backwards » : une fois terminée, l'animation rend la main aux transformations GSAP : parallaxe, scroll)
   ========================================================= */
@keyframes vmUp { from { transform: translateY(110%) rotate(4deg); } }
@keyframes vmFade { from { opacity: 0; transform: translateY(var(--from-y, 20px)); } }
@keyframes vmFadeX { from { opacity: 0; transform: translateX(-12px); } }
@keyframes vmBar { from { transform: scaleY(0); } }
.hero__title .split-word > span { animation: vmUp 1.1s cubic-bezier(.16,1,.3,1) calc(.15s + var(--i, 0) * 45ms) backwards; }
.nav__inner { --from-y: -30px; animation: vmFade 1s cubic-bezier(.16,1,.3,1) backwards; }
.hero__pill { animation: vmFade .9s cubic-bezier(.16,1,.3,1) .1s backwards; }
.hero__sub { animation: vmFade 1s cubic-bezier(.16,1,.3,1) .6s backwards; }
.hero .cta-form { --from-y: 24px; animation: vmFade 1s cubic-bezier(.16,1,.3,1) .7s backwards; }
.shot { --from-y: 140px; animation: vmFade 1.6s cubic-bezier(.16,1,.3,1) .6s backwards; }
.shot__diag { --from-y: 60px; animation: vmFade 1.2s cubic-bezier(.16,1,.3,1) 1.2s backwards; }
.shot__diag .diag__user, .shot__diag .diag__body > p, .shot__diag .diag__chart { animation: vmFadeX .6s ease-out 1.7s backwards; }
.shot__diag .diag__body > p:nth-of-type(1) { animation-delay: 2s; }
.shot__diag .diag__body > p:nth-of-type(2) { animation-delay: 2.3s; }
.shot__diag .diag__chart { animation-delay: 2.6s; }
.shot__diag .diag__body > p:nth-of-type(3) { animation-delay: 2.9s; }
.shot__diag .diag__chart span { transform-origin: 50% 100%; animation: vmBar .8s cubic-bezier(.22,1,.36,1) calc(2.3s + var(--i, 0) * 50ms) backwards; }

/* =========================================================
   Correctifs d'affichage (audit du 27/09/2026)
   ========================================================= */
/* Fonctionnalités entre 641 et 960 px : grille 2 colonnes pleine (large / 2 étroites / large / 2 étroites), voir .card--wide-lg */
@media (min-width: 641px) and (max-width: 960px) {
  /* compteurs : 3 puis 2, sans case vide */
  .counters { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .counter { grid-column: span 2; }
  .counter:nth-child(n+4) { grid-column: span 3; }
}
@media (max-width: 640px) {
  .viz-spaces { height: auto; min-height: 170px; }
  .counters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .btn--lg span { text-wrap: balance; } /* « niche » ne reste plus seul à la ligne */
}
@media (max-width: 400px) {
  .network__row--main { flex-wrap: wrap; }
  .network__row--main .network__icons { flex-basis: 100%; margin-left: 66px; }
}
@media (max-width: 380px) {
  .counter { padding: 28px 10px; }
  .counter b { font-size: 26px; }
}
@media (max-width: 359px) {
  .nav__inner { gap: 6px; padding: 0 4px 0 14px; }
  .nav .logo { font-size: 16px; gap: 8px; }
  .nav__actions { gap: 4px; }
  .nav__actions .btn--sm { padding: 0 12px; font-size: 12.5px; }
  .dash__kpis b { font-size: 17px; }
  .dash__tabs button { padding: 10px 6px; }
  .shot__diag .diag__user { gap: 8px; }
  .shot__diag .diag__user img { width: 28px; height: 28px; }
  .shot__diag .diag__user b { font-size: 14px; }
  .shot__diag .diag__live { font-size: 10px; }
}
/* Mouvement réduit : le bandeau de témoignages garde une marge à gauche */
@media (prefers-reduced-motion: reduce) {
  .tst__row { padding-left: 24px; }
}
/* Mesure de la hauteur des étapes (main.js) : états finaux, sans transition */
.how__steps.is-measuring .step { transition: none; }
/* Compléments après vérification visuelle */
.dash__peak { white-space: nowrap; }
@media (min-width: 641px) and (max-width: 960px) { .viz-script { height: auto; min-height: 170px; } }
@media (max-width: 359px) { .dash__range { display: none; } }


/* =========================================================
   Framework (entre la frise de « Vos données » et les réseaux de Maxime) : triangle Quoi / Pourquoi / Comment, « viral » au centre
   Scène : viewBox 440 × 400, sommets A (220, 30) · B (400, 341.8) · C (40, 341.8) · centre de gravité (220, 237.9).
   Les éléments posés sur la scène sont placés en % (même échelle que le SVG), la boucle lumineuse en cqw.
   Ordinateur : les annotations entourent le triangle (01 en haut à gauche et sa preuve à droite, 03 à gauche, 02 à droite).
   Mobile et tablette : triangle puis liste. Sans JS ou en mouvement réduit : état final.
   Mouvement volontairement sobre : le tracé, puis une seule boucle (le point lumineux) une fois le triangle fermé.
   ========================================================= */
.fw { position: relative; }
.fw__pin { padding: 0; }
.fw .fw__head { max-width: 920px; margin: 0 auto 40px; }
.fw__title { font-size: clamp(30px, 3.9vw, 54px); letter-spacing: -0.035em; line-height: 1.06; }
.fw__l { display: block; } /* une phrase par ligne : la coupure tombe toujours entre les deux phrases */
.fw__l:first-child { color: var(--dim); }

.fw__diagram { position: relative; }
.fw__stage { position: relative; z-index: 0; width: min(100%, 420px); margin: 44px auto 22px; aspect-ratio: 440 / 400; container-type: inline-size; }
/* papier quadrillé qui s'efface vers les bords (clin d'œil au tableau blanc) */
.fw__stage::before { content: ""; position: absolute; inset: -8% -14%; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 9.09cqw 9.09cqw; background-position: 50% 50%; -webkit-mask-image: radial-gradient(closest-side, #000 25%, transparent); mask-image: radial-gradient(closest-side, #000 25%, transparent); }
.fw__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.fw__ghost { stroke: rgba(255,255,255,.16); stroke-width: 1.4; stroke-dasharray: 3 7; }
.fw__fill { fill: url(#fw-fill); }
.fw__edge { stroke: rgba(255,255,255,.85); stroke-width: 2; stroke-dasharray: 1 1; }
.fw__halo { stroke: #ff2d3d; stroke-opacity: .16; stroke-width: 12; stroke-linejoin: round; }
.fw__red { stroke: url(#fw-red); stroke-width: 2.4; stroke-linejoin: round; }
.fw__tip { opacity: 0; }
.fw__tip circle:first-child { fill: rgba(255,45,61,.28); }
.fw__tip circle:last-child { fill: #fff; }
.fw__glow { position: absolute; left: 50%; top: 59.47%; z-index: -1; width: 74%; aspect-ratio: 1; translate: -50% -50%; border-radius: 50%; pointer-events: none; background: radial-gradient(closest-side, rgba(255,45,61,.3), rgba(255,45,61,.07) 58%, transparent); }

/* Sommets */
.fw__node { position: absolute; left: var(--x); top: var(--y); z-index: 2; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(255,45,61,.16), 0 0 22px rgba(255,45,61,.75); transition: background-color .45s var(--ease), box-shadow .45s var(--ease); }
.fw__node--a, .fw__q--a { --x: 50%; --y: 7.5%; }
.fw__node--b, .fw__q--b { --x: 90.909%; --y: 85.45%; }
.fw__node--c, .fw__q--c { --x: 9.091%; --y: 85.45%; }
.fw.is-anim .fw__node:not(.is-on) { background-color: var(--bg); box-shadow: inset 0 0 0 2px rgba(255,255,255,.32); }

/* Questions aux sommets (mobile et tablette : la liste est sous le triangle) */
.fw__q { position: absolute; left: var(--x); top: var(--y); z-index: 2; display: grid; justify-items: center; gap: 3px; font-size: clamp(15px, 4.4cqw, 20px); font-weight: 600; line-height: 1.1; letter-spacing: -0.015em; white-space: nowrap; translate: -50% 16px; transition: opacity .45s var(--ease); }
.fw__q small { font: 500 11px var(--mono); letter-spacing: .12em; color: var(--red); }
.fw__q--a { translate: -50% calc(-100% - 16px); }
.fw.is-anim .fw__q:not(.is-on) { opacity: .3; }

/* Centre : le résultat */
.fw__core { position: absolute; left: 50%; top: 59.47%; z-index: 2; margin: 0; translate: -50% -54%; font-size: clamp(40px, 16cqw, 76px); line-height: 1; white-space: nowrap; }

/* Boucle : un point lumineux fait le tour du triangle une fois celui-ci fermé (transform seulement) */
.fw__orbit { position: absolute; inset: 0; z-index: 2; pointer-events: none; transition: opacity .5s; }
.fw.is-anim:not(.is-done) .fw__orbit { opacity: 0; }
.fw__orbit i { position: absolute; left: 0; top: 0; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: #fff; box-shadow: 0 0 12px 3px rgba(255,45,61,.85); transform: translate(50cqw, 6.818cqw); }
.fw__orbit i:nth-child(1) { --d: -.24s; }
.fw__orbit i:nth-child(2) { --d: -.12s; width: 6px; height: 6px; margin: -3px 0 0 -3px; background: #ff7a84; box-shadow: none; opacity: .6; }
.fw__orbit i:nth-child(3) { width: 4px; height: 4px; margin: -2px 0 0 -2px; background: #ff7a84; box-shadow: none; opacity: .3; }
.fw:not(.is-anim) .fw__orbit i, .fw.is-done .fw__orbit i { animation: fw-orbit 7.5s linear var(--d, 0s) infinite; }
@keyframes fw-orbit {
  0%, 100% { transform: translate(50cqw, 6.818cqw); }
  33.333% { transform: translate(90.909cqw, 77.682cqw); }
  66.667% { transform: translate(9.091cqw, 77.682cqw); }
}

/* Annotations : liste sous le triangle (mobile, tablette), autour du triangle (ordinateur) */
.fw__list { list-style: none; margin: 0 auto; padding: 0; max-width: 620px; }
.fw__item { display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: baseline; padding: 18px 0; border-top: 1px solid var(--line-2); transition: opacity .5s var(--ease); }
.fw__item:last-child { border-bottom: 1px solid var(--line-2); }
.fw__n { font: 500 13px var(--mono); letter-spacing: .1em; color: var(--red); transition: color .5s var(--ease); }
.fw__item h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.fw__item p { margin-top: 6px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.fw.is-anim .fw__item:not(.is-on) { opacity: .24; }
.fw.is-anim .fw__item:not(.is-on) .fw__n { color: var(--dim); }

/* Preuves tirées de l'app : apparaissent avec leur annotation */
.fw__pill { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; padding: 7px 12px 7px 7px; border-radius: 13px; font-size: 12.5px; line-height: 1.2; white-space: nowrap; color: #dcdce3; background: linear-gradient(180deg, #1c1c25, #131319); box-shadow: 0 0 0 1px rgba(255,255,255,.11) inset, 0 24px 50px -24px rgba(0,0,0,.9); transition: opacity .5s var(--ease) .1s, transform .6s var(--ease) .1s; }
.fw.is-anim .fw__item:not(.is-on) .fw__pill { opacity: 0; transform: translateY(8px); }
.fw__pill--a img { width: 28px; height: 38px; flex: none; border-radius: 7px; object-fit: cover; }
.fw__pill--a .st { padding: 4px 6px; font-size: 11px; }
.fw__pill--a .st svg { width: 11px; height: 11px; }
.fw__meta { color: var(--dim); }
.fw__meta b { color: var(--text); font-weight: 600; }
.fw__pill--b, .fw__pill--c { padding: 9px 13px; }
.fw__pill--b { gap: 12px; }
.fw__pill--b span { display: inline-flex; align-items: center; gap: 5px; }
.fw__pill--b svg { width: 13px; height: 13px; color: #ff8a93; }
.fw__pill--c { gap: 0; }
.fw__pill--c .tag { margin-right: 8px; vertical-align: 0; }

/* Ordinateur : le triangle au centre, chaque point à côté de son sommet, sa preuve juste sous son texte.
   01 est centré au-dessus du sommet du haut, 03 à gauche et 02 à droite de la base ; le numéro est toujours au-dessus du titre.
   --sw : largeur de la scène (le triangle fait 360/440 de cette largeur) ; C est à 0,409 × --sw à gauche du centre ;
   --top : place réservée au point 01 au-dessus de la scène. */
@media (min-width: 1024px) {
  .fw__diagram { --sw: 460px; --gap: 40px; --top: 150px; padding-top: var(--top); height: calc(var(--top) + var(--sw) * .7768 + 124px); }
  .fw__stage { width: var(--sw); margin: 0 auto; }
  .fw__q { display: none; }
  .fw__list { position: absolute; inset: 0; max-width: none; }
  .fw__item { position: absolute; display: flex; flex-direction: column; gap: 6px; width: min(300px, calc(50% - .409 * var(--sw) - var(--gap))); padding: 0; border: 0; }
  .fw__item:last-child { border: 0; }
  .fw__item--a { left: 50%; top: 0; width: 560px; translate: -50% 0; align-items: center; text-align: center; }
  .fw__item--b, .fw__item--c { top: calc(var(--top) + var(--sw) * .7768 - 36px); }
  .fw__item--b { left: calc(50% + .409 * var(--sw) + var(--gap)); align-items: flex-start; }
  .fw__item--c { right: calc(50% + .409 * var(--sw) + var(--gap)); align-items: flex-end; text-align: right; }
  .fw__n { flex: none; }
}
@media (max-width: 640px) {
  .fw .fw__head { margin-bottom: 8px; }
  .fw__stage { width: min(84%, 420px); margin: 52px auto 26px; } /* place pour « Comment ? » et « Pourquoi ? » sous les sommets */
  .fw__item { grid-template-columns: 38px minmax(0, 1fr); padding: 16px 0; }
  .fw__item h3 { font-size: 19px; }
  .fw__item p { font-size: 15.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .fw__orbit { display: none; }
}

/* =========================================================
   Espacement vertical uniforme entre les sections (27/09)
   Même respiration partout : --section-y au-dessus et au-dessous de chaque section, soit ~192 px entre deux blocs
   sur ordinateur et 128 px sur mobile (multiples de 8). Le haut de page (hero, bandeau, « Créé par… ») garde son rythme
   serré ; le CTA final garde son grand espace avant le pied de page.
   ========================================================= */
:root { --section-y: clamp(64px, 6.7vw, 96px); }
.trust { padding-bottom: var(--section-y); }
.problem, .how, .features, .ol, .data, .fw, .proof, .compare, .tst, .pricing, .faq { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.final { padding-top: var(--section-y); }

/* Onglets du tableau « Vos données » : contrôle segmenté pour qu'on voie tout de suite qu'ils se cliquent,
   et une barre qui se remplit sous l'onglet actif (passage automatique au suivant ; en pause au survol et hors écran). */
.dash__tabs { gap: 12px; border-bottom: 0; }
.dash__seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 13px; background: rgba(255,255,255,.035); box-shadow: inset 0 0 0 1px rgba(255,255,255,.09); }
.dash__tabs button { padding: 8px 14px; border-radius: 9px; overflow: hidden; transition: color .2s, background-color .2s, box-shadow .2s; }
.dash__tabs button:hover { color: var(--text); background: rgba(255,255,255,.06); }
.dash__tabs button.is-active { color: #fff; background: rgba(255,45,61,.17); box-shadow: inset 0 0 0 1px rgba(255,45,61,.55), 0 0 24px -6px rgba(255,45,61,.55); } /* onglet choisi : voile rouge, comme les filtres actifs du radar */
.dash__tabs button::after { left: 12px; right: 12px; bottom: 3px; transform: scaleX(0); transition: none; }
.dash__tabs button.is-active::after { transform: scaleX(0); animation: dashbar 4.5s linear forwards; }
.dash.is-paused .dash__tabs button.is-active::after { animation-play-state: paused; }
.dash__tabs button.is-active::after { background: #ff5a66; box-shadow: 0 0 8px rgba(255,45,61,.8); }
@keyframes dashbar { to { transform: scaleX(1); } }
@media (max-width: 640px) { .dash__tabs button { padding: 8px 11px; } }
@media (max-width: 380px) { .dash__seg { gap: 2px; padding: 3px; } .dash__tabs button { padding: 8px 8px; } }
@media (prefers-reduced-motion: reduce) { .dash__tabs button.is-active::after { animation: none; transform: scaleX(1); } }

/* Citation de Maxime : « pour vous » souligné en rouge, tracé au défilement quand les derniers mots s'allument
   (même trait que le barré de « 800 vues » dans la section problème) */
.scrub__ul { position: relative; white-space: nowrap; }
.scrub__line { position: absolute; left: 0; right: .3em; bottom: -.13em; height: max(4px, .085em); border-radius: 4px; background: var(--red); box-shadow: 0 0 20px rgba(255,45,61,.6); transform-origin: left; pointer-events: none; }

/* Témoignages : photo dans la pastille (visages générés pour la maquette), badge de plateforme conservé */
.tst__av--photo { background: #1d1d25; }
.tst__av--photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
