/* =========================================================
   goref — Contenu vidéo expert
   Direction : monument obsidienne + signal cramoisi.
   5 couleurs, 1 famille, 1 forme arrondie (la pilule), 0 ombre.
   ========================================================= */

:root {
  --void: #000000;
  --ash: #cccccc;
  --frost: #ffffff;
  --graphite: #4c4c4c;
  --signal: #fc1c46;
  /* accents secondaires, repris des reflets de l'objectif : réservés à ce qui doit sauter aux yeux */
  --blue: #5b7cff;
  --amber: #ffb13b;
  --violet: #a58bff;
  --mint: #35d69a;
  --line: rgba(255, 255, 255, .14);

  --font: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --gutter: clamp(16px, 8.75vw, 126px);
  --max: 1400px;
  --section: clamp(86px, 12vw, 180px);

  --display: clamp(52px, 13.75vw, 198px);
  --h-lg: clamp(38px, 6.3vw, 91px);
  --h: clamp(32px, 5vw, 72px);
  --h-sm: clamp(21px, 1.9vw, 27px);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { background: var(--void); color-scheme: dark; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
html.is-loading { overflow: hidden; }

body {
  background: var(--void);
  color: var(--ash);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg, canvas { display: block; max-width: 100%; }
ul, ol { list-style: none; }
strong, b { font-weight: 500; color: var(--frost); }
::selection { background: var(--graphite); color: var(--frost); }

/* Calque 3D fixe derrière le contenu */
.webgl { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; display: none; }
.has-3d .webgl { display: block; }
.has-3d .hero__lens-wrap { display: none; }
main, .footer { position: relative; z-index: 1; }
:focus-visible { outline: 1px solid var(--frost); outline-offset: 4px; }

.container {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section) 0; }

/* ---------- Typographie ---------- */
.display, .h-lg, .hero__title, .step__title, .step__big, .marquee span {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--frost);
}
.display { font-size: var(--display); line-height: .96; letter-spacing: -.035em; }
.h-lg { font-size: var(--h-lg); line-height: .92; letter-spacing: -.02em; max-width: 15em; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 400; text-transform: uppercase;
  color: var(--ash); margin-bottom: 29px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--signal); flex: none; }
/* mot-clé mis en couleur dans les titres */
.hl { font-style: normal; color: var(--signal); }
.hl--mint { color: var(--mint); }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 9999px; font-size: 12px; font-weight: 500; letter-spacing: .02em; color: var(--void); background: var(--mint); white-space: nowrap; }
.badge--amber { background: var(--amber); }

.lead { font-size: 18px; line-height: 1.1; color: var(--ash); max-width: 32em; }

/* Découpage en mots (masques) */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: .16em .03em .1em; margin: -.16em -.03em -.1em; }
.w__i { display: inline-block; will-change: transform; }
.kw { transition: none; }

/* Barré animé (fonctionne sur plusieurs lignes) */
.strike {
  background-image: linear-gradient(var(--frost), var(--frost));
  background-repeat: no-repeat;
  background-position: 0 56%;
  background-size: 0% .07em;
  transition: background-size 1.1s var(--ease-out), color .8s ease;
}
.strike.is-struck { background-size: 100% .07em; color: var(--graphite); }

/* ---------- Logo : le point REC ---------- */
.logo-dot {
  width: 14px; height: 14px; flex: none;
  border-radius: 50%; background: var(--signal);
  display: inline-block;
  animation: rec 2.4s var(--ease-io) infinite;
}
@keyframes rec { 0%, 100% { transform: scale(1); } 50% { transform: scale(.72); } }

.rec { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--ash); }
.rec--blink { animation: blink 1s steps(2, start) infinite; }
@keyframes blink { to { visibility: hidden; } }

/* ---------- Boutons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 30px;
  border-radius: 9999px; border: 1px solid transparent;
  font: 400 15px/1 var(--font); text-transform: uppercase; letter-spacing: -.01em;
  color: var(--frost); white-space: nowrap;
  transition: background-color .45s var(--ease-out), border-color .45s var(--ease-out);
}
.btn--signal { background: var(--signal); }
.btn::before { /* point REC qui s'allume au survol */
  content: ''; width: 0; height: 6px; margin-right: 0;
  border-radius: 50%; background: var(--frost);
  transform: scale(0);
  transition: width .45s var(--ease-out), margin .45s var(--ease-out), transform .45s var(--ease-out);
}
.btn:hover::before { width: 6px; margin-right: 10px; transform: scale(1); animation: blink 1s steps(2, start) .4s infinite; }
.btn__label { display: block; overflow: hidden; height: 1.15em; line-height: 1.15; }
.btn__roll { display: block; transition: transform .7s var(--ease-out); }
.btn__roll::after { content: attr(data-text); display: block; }
.btn:hover .btn__roll { transform: translateY(-50%); }

/* Un seul signal par vue : le CTA du header s'éteint si un autre est visible */
.nav__cta { transition: background-color .5s var(--ease-out), border-color .5s var(--ease-out), opacity .4s; }
.signal-elsewhere .nav__cta { background: transparent; border-color: var(--graphite); }
.signal-elsewhere .nav__cta:hover { border-color: var(--frost); }

.link {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; text-transform: uppercase; color: var(--frost);
  padding: 6px 0;
}
.link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .6s var(--ease-out);
}
.link:hover::after { transform: scaleX(1); transform-origin: left; }
.link .arrow { display: inline-block; transition: transform .6s var(--ease-out); }
.link:hover .arrow { transform: translateX(6px); }
.link--inline { display: inline; padding: 0; text-transform: none; font-size: inherit; }
.link--inline::after { transform: scaleX(1); opacity: .5; }
.link--inline:hover::after { opacity: 1; }

/* ---------- Loader : amorce de film ---------- */
.loader { display: none; }
.js .loader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 29px;
  background: var(--void);
}
.loader__leader { position: relative; width: min(46vw, 220px); aspect-ratio: 1; }
.loader__ring { width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.loader__ring circle { fill: none; }
.loader__track { stroke: var(--graphite); stroke-width: 1; }
.loader__sweep { stroke: var(--frost); stroke-width: 2; stroke-dasharray: 578.05; stroke-dashoffset: 578.05; }
.loader__ring line { stroke: var(--graphite); stroke-width: 1; }
.loader__num {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: min(22vw, 110px); font-weight: 700; color: var(--frost); letter-spacing: -.05em;
}
.loader__meta { display: flex; align-items: center; gap: 9px; font-size: 12px; text-transform: uppercase; color: var(--ash); font-variant-numeric: tabular-nums; }
.loader__meta .logo-dot { width: 8px; height: 8px; }

/* ---------- Curseur autofocus ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .has-cursor .cursor { display: block; position: fixed; inset: 0; z-index: 150; pointer-events: none; mix-blend-mode: difference; }
  .has-cursor, .has-cursor * { cursor: none !important; }
  .has-cursor input[type="text"], .has-cursor input[type="email"], .has-cursor input[type="tel"], .has-cursor textarea { cursor: text !important; }
}
.cursor__dot { position: absolute; left: 0; top: 0; width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; background: var(--frost); transition: opacity .3s, scale .3s; }
.cursor__frame { position: absolute; left: 0; top: 0; width: 36px; height: 36px; }
.cursor__frame i { position: absolute; width: 9px; height: 9px; border: 0 solid var(--frost); transition: width .3s, height .3s; }
.cursor__frame i:nth-child(1) { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.cursor__frame i:nth-child(2) { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.cursor__frame i:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.cursor__frame i:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
.cursor__label {
  position: absolute; left: 0; bottom: calc(100% + 6px);
  font-size: 10px; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase;
  color: var(--frost); white-space: nowrap; opacity: 0; transition: opacity .25s;
}
.cursor.is-locked .cursor__label { opacity: 1; }
.cursor.is-locked .cursor__dot { opacity: 0; scale: .2; }
.cursor.is-locked .cursor__frame i { width: 12px; height: 12px; animation: af .18s steps(1) 3; }
.cursor.is-down .cursor__frame i { width: 5px; height: 5px; }
@keyframes af { 50% { opacity: 0; } }

/* ---------- Header ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: 72px; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px;
  transition: transform .7s var(--ease-out), background-color .4s;
}
.nav.is-scrolled { background: var(--void); }
.nav.is-hidden { transform: translateY(-101%); }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; justify-self: start; }
.nav__word { font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--frost); }
.nav__center { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--ash); }
.nav__tc { display: inline-flex; align-items: center; gap: 8px; color: var(--graphite); font-variant-numeric: tabular-nums; }
.nav__tc .rec { background: var(--graphite); animation: blink 1s steps(2, start) infinite; }
.nav__right { display: flex; align-items: center; gap: 22px; justify-self: end; }
.nav__cta { height: 44px; padding: 0 22px; font-size: 14px; }

.burger { position: relative; width: 30px; height: 14px; }
.burger span { position: absolute; left: 0; right: 0; height: 1px; background: var(--frost); transition: transform .6s var(--ease-out), top .6s var(--ease-out); }
.burger span:first-child { top: 0; }
.burger span:last-child { top: 13px; }
.burger:hover span:last-child { transform: scaleX(.6); transform-origin: right; }
.menu-open .burger span:first-child { top: 6.5px; transform: rotate(45deg); }
.menu-open .burger span:last-child { top: 6.5px; transform: rotate(-45deg); }

/* ---------- Menu plein écran ---------- */
.menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--void);
  display: flex; flex-direction: column; justify-content: center;
  padding: 108px var(--gutter) 43px;
  clip-path: inset(0 0 100% 0);
}
.menu[hidden] { display: none; }
.menu__list li { overflow: hidden; }
.menu__list a {
  display: flex; align-items: baseline; gap: 22px;
  font-size: clamp(36px, 6.3vw, 91px); font-weight: 700; line-height: 1.02; letter-spacing: -.02em;
  text-transform: uppercase; color: var(--frost);
  transition: color .45s, transform .7s var(--ease-out);
}
.menu__list a em { font-style: normal; font-size: 14px; font-weight: 400; color: var(--graphite); letter-spacing: 0; transform: translateY(-1.2em); }
.menu__list a span::after { content: ''; display: inline-block; width: .3em; height: .34em; margin-left: .25em; background: var(--frost); clip-path: polygon(0 0, 100% 50%, 0 100%); transform: scale(0); transition: transform .5s var(--ease-out); }
.menu__list:hover a { color: var(--graphite); }
.menu__list a:hover { color: var(--frost); transform: translateX(22px); }
.menu__list a:hover span::after { transform: scale(1); }
.menu__foot { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; margin-top: 65px; font-size: 14px; color: var(--graphite); }
.menu__foot a:hover { color: var(--frost); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 126px 0 36px; overflow: clip;
}
.hero__lens-wrap {
  position: absolute; top: 46%; right: -7vw;
  width: min(66vw, 940px); aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero__lens { width: 100%; height: 100%; }
.hero__inner { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(44px, 7.8vw, 150px); line-height: .96; letter-spacing: -.035em;
  max-width: 11.2em;
}
.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 36px 65px; flex-wrap: wrap; margin-top: 43px; }
.hero__lead { max-width: 29em; }
.hero__ctas { display: flex; align-items: center; gap: 22px 30px; flex-wrap: wrap; }
.hud {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px 22px;
  margin-top: 65px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite);
  font-variant-numeric: tabular-nums;
}
.hud b { font-weight: 400; color: var(--ash); }
.hud__scroll { margin-left: auto; display: inline-flex; align-items: center; gap: 9px; }
.hud__scroll i { width: 1px; height: 22px; background: var(--graphite); position: relative; overflow: hidden; }
.hud__scroll i::after { content: ''; position: absolute; left: 0; top: -100%; width: 1px; height: 100%; background: var(--frost); animation: drip 1.8s var(--ease-io) infinite; }
@keyframes drip { to { top: 100%; } }

/* ---------- Dock qui suit le défilement : formules + visio ---------- */
.dock {
  position: fixed; left: 50%; bottom: clamp(14px, 2.4vw, 28px); z-index: 58;
  display: flex; align-items: center; gap: 6px; padding: 6px;
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 9999px; background: rgba(0, 0, 0, .92);
  opacity: 0; transform: translate(-50%, 160%); pointer-events: none;
  transition: transform .8s var(--ease-out), opacity .5s;
}
.dock.is-on { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.dock { width: max-content; }
.dock > *, .dock .btn__label { flex: none; }
.menu-open .dock, .quiz-open .dock { opacity: 0; pointer-events: none; }
.dock__ring { flex: none; width: 40px; height: 40px; margin: 0 2px 0 4px; transform: rotate(-90deg); }
.dock__ring circle { fill: none; stroke-width: 2; }
.dock__ring circle:first-child { stroke: rgba(255, 255, 255, .15); }
.dock__ring .dock__fill { stroke: var(--signal); stroke-dasharray: 94.25; stroke-dashoffset: 94.25; stroke-linecap: round; }
.dock__pct { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 40px; text-align: center; font-size: 10px; color: var(--ash); font-variant-numeric: tabular-nums; pointer-events: none; }
.dock__alt {
  display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .3); border-radius: 9999px;
  font-size: 13px; text-transform: uppercase; white-space: nowrap; color: var(--frost);
  transition: border-color .3s, background-color .3s;
}
.dock__alt:hover { border-color: var(--frost); }
.dock__alt i { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.dock .btn { height: 44px; padding: 0 20px; font-size: 13px; }
.dock__cam { width: 16px; height: 16px; margin-right: 8px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; }

/* ---------- Sommaire latéral : on sait toujours où l'on est ---------- */
.chapters { position: fixed; left: clamp(14px, 1.8vw, 32px); top: 50%; z-index: 40; display: none; flex-direction: column; gap: 12px; transform: translateY(-50%); opacity: 0; pointer-events: none; transition: opacity .5s; }
@media (min-width: 1200px) { .js .chapters { display: flex; } }
.chapters.is-on { opacity: 1; pointer-events: auto; }
.menu-open .chapters, .quiz-open .chapters { opacity: 0; pointer-events: none; }
.chapters a { position: relative; display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .06em; color: var(--graphite); font-variant-numeric: tabular-nums; transition: color .3s; }
.chapters a i { width: 12px; height: 1px; background: currentColor; transition: width .5s var(--ease-out), background-color .3s; }
.chapters a span { position: absolute; left: calc(100% + 10px); padding: 5px 10px; border: 1px solid var(--line); border-radius: 9999px; background: var(--void); text-transform: uppercase; white-space: nowrap; color: var(--frost); opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .4s var(--ease-out); pointer-events: none; }
.chapters a:hover { color: var(--frost); }
.chapters a:hover span { opacity: 1; transform: none; }
.chapters a.is-on { color: var(--frost); }
.chapters a.is-on i { width: 26px; background: var(--signal); }

/* ---------- En 30 secondes : formats ---------- */
.brief__lead { margin-top: 29px; }
.fgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 36px); margin-top: 65px; }
.fcard { --c: var(--frost); perspective: 1000px; }
.fcard--amber { --c: var(--amber); }
.fcard--blue { --c: var(--blue); }
.fcard--red { --c: var(--signal); }
.fcard--violet { --c: var(--violet); }
.fcard__stage { display: grid; place-items: center; padding: 32px 0; border-top: 2px solid var(--c); transform-style: preserve-3d; }
.fcard__body { padding-top: 18px; }
.fcard__num { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--c); }
.fcard__num::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--c); }
.fcard__title { margin: 12px 0 10px; font-size: clamp(22px, 2.1vw, 34px); font-weight: 700; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; color: var(--frost); }
.fcard__body p { font-size: 15px; line-height: 1.25; color: var(--ash); max-width: 24em; }
.fcard__tag { display: inline-block; margin-top: 12px; padding: 4px 10px; border: 1px solid var(--c); border-radius: 9999px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--c); }
.brief__more { margin-top: 36px; font-size: 15px; color: var(--graphite); text-transform: uppercase; }

/* maquettes vidéo verticales : une mise en scène différente par format */
.mock {
  position: relative; width: min(78%, 230px); aspect-ratio: 9 / 16; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .4); background: #050505;
  transform-style: preserve-3d; transform: rotateX(4deg) rotateY(-10deg);
  transition: transform .9s var(--ease-out), border-color .4s;
}
.fcard:hover .mock { border-color: var(--c); transition: transform .25s ease-out, border-color .4s; }
.mock > * { position: absolute; }
.mock__top { top: 14px; left: 10px; right: 10px; display: flex; justify-content: space-between; align-items: center; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--frost); transform: translateZ(30px); }
.mock__top span:first-child { display: inline-flex; align-items: center; gap: 5px; }
.mock__top .rec { width: 5px; height: 5px; background: var(--c); }
.mock__person { position: absolute; left: 50%; bottom: 0; width: 88%; transform: translateX(-50%) translateZ(10px); overflow: visible; }
.mock__person circle, .mock__person path { fill: rgba(255, 255, 255, .05); stroke: rgba(255, 255, 255, .32); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.mock__person circle { transform-origin: 100px 112px; animation: talk 3.2s var(--ease-io) infinite; }
@keyframes cap { 0% { opacity: 0; transform: translateY(6px); } 4%, 30% { opacity: 1; transform: none; } 34%, 100% { opacity: 0; } }
@keyframes prog { to { width: 100%; } }

/* 01 — Avis client : format « story » en 3 chapitres, citation, étoiles */
.mock__stories { top: 7px; left: 8px; right: 8px; display: flex; gap: 3px; transform: translateZ(20px); }
.mock__stories i { position: relative; flex: 1; height: 2px; overflow: hidden; background: rgba(255, 255, 255, .22); }
.mock__stories i::after { content: ''; position: absolute; inset: 0; background: var(--c); transform-origin: left; animation: st1 9s linear infinite; }
.mock__stories i:nth-child(2)::after { animation-name: st2; }
.mock__stories i:nth-child(3)::after { animation-name: st3; }
@keyframes st1 { 0% { transform: scaleX(0); } 33.3%, 99% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
@keyframes st2 { 0%, 33.3% { transform: scaleX(0); } 66.6%, 99% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
@keyframes st3 { 0%, 66.6% { transform: scaleX(0); } 99% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
.mock__chapter { position: relative; width: 60px; height: 11px; text-align: right; }
.mock__chapter b { position: absolute; right: 0; font-weight: 500; color: var(--c); opacity: 0; animation: cap 9s infinite; }
.mock__chapter b:nth-child(2), .mock__quote span:nth-child(2) { animation-delay: 3s; }
.mock__chapter b:nth-child(3), .mock__quote span:nth-child(3) { animation-delay: 6s; }
.mock__mark { top: 40px; left: 12px; font-size: 64px; font-weight: 700; line-height: 1; color: var(--c); transform: translateZ(40px); animation: mark 3s var(--ease-io) infinite; }
@keyframes mark { 50% { transform: translateZ(40px) scale(1.12) rotate(-6deg); } }
.mock__quote { top: 108px; left: 14px; right: 14px; height: 4em; font-size: 15px; font-weight: 500; line-height: 1.15; color: var(--frost); transform: translateZ(50px); }
.mock__quote span { position: absolute; inset: 0; opacity: 0; animation: cap 9s infinite; }
.mock__client { left: 12px; right: 12px; bottom: 34px; display: flex; align-items: center; gap: 8px; transform: translateZ(30px); }
.mock__avatar { position: relative; flex: none; width: 34px; height: 34px; overflow: hidden; border: 1px solid var(--c); border-radius: 50%; }
.mock__avatar .mock__person { width: 120%; bottom: -14%; }
.mock__client b { display: block; font-size: 10px; font-weight: 500; color: var(--frost); }
.mock__client small { font-size: 9px; color: var(--graphite); text-transform: uppercase; }
.mock__stars { left: 12px; bottom: 16px; display: flex; gap: 3px; transform: translateZ(30px); }
.mock__stars i { width: 11px; height: 11px; background: var(--c); clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); animation: star 9s infinite; }
.mock__stars i:nth-child(2) { animation-delay: .15s; } .mock__stars i:nth-child(3) { animation-delay: .3s; }
.mock__stars i:nth-child(4) { animation-delay: .45s; } .mock__stars i:nth-child(5) { animation-delay: .6s; }
@keyframes star { 0%, 60% { transform: scale(0); } 64% { transform: scale(1.4); } 67%, 97% { transform: scale(1); } 100% { transform: scale(0); } }

/* 02 — Interview : la question se tape, l'expert répond au micro */
.mock--interview .mock__person { width: 92%; bottom: -10%; }
.mock__qcard { top: 34px; left: 10px; right: 10px; padding: 8px 9px; border: 1px solid var(--c); background: #050505; transform: translateZ(45px); }
.mock__qcard small { display: block; margin-bottom: 4px; font-size: 8px; letter-spacing: .06em; text-transform: uppercase; color: var(--c); }
.mock__qcard p { font-size: 11px; line-height: 1.2; color: var(--frost); white-space: nowrap; overflow: hidden; }
.mock__qcard p span { display: inline-block; clip-path: inset(0 100% 0 0); animation: type 6s steps(24) infinite; }
@keyframes type { 0%, 5% { clip-path: inset(0 100% 0 0); } 40%, 88% { clip-path: inset(0 0 0 0); } 100% { clip-path: inset(0 0 0 100%); } }
.mock__mic { right: 12px; top: 44%; display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--c); border-radius: 50%; background: #050505; transform: translateZ(50px); }
.mock__mic::after { content: ''; position: absolute; inset: -1px; border: 1px solid var(--c); border-radius: 50%; animation: ring 1.6s var(--ease-out) infinite; }
.mock__mic svg { width: 14px; height: 14px; fill: none; stroke: var(--c); stroke-width: 1.8; stroke-linecap: round; }
@keyframes ring { from { transform: scale(1); opacity: .9; } to { transform: scale(1.9); opacity: 0; } }
.mock__lower { left: 0; bottom: 48px; display: flex; flex-direction: column; padding: 5px 10px 5px 8px; border-left: 3px solid var(--c); background: #050505; transform: translateZ(40px); }
.mock__lower b { font-size: 10px; font-weight: 500; color: var(--frost); }
.mock__lower small { font-size: 8px; text-transform: uppercase; color: var(--ash); }
.mock__wave { left: 12px; right: 12px; bottom: 14px; height: 24px; display: flex; align-items: center; gap: 3px; transform: translateZ(35px); }
.mock__wave i { flex: 1; height: 25%; background: var(--c); animation: bars .9s ease-in-out infinite alternate; }
.mock__wave i:nth-child(3n) { animation-duration: .6s; }
.mock__wave i:nth-child(3n+1) { animation-duration: 1.1s; animation-delay: -.4s; }
.mock__wave i:nth-child(4n) { animation-delay: -.25s; }

/* 03 — Réaction : vidéo du web + tampons + incrustation */
.mock__screen { top: 32px; left: 8px; right: 8px; height: 44%; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .35); transform: translateZ(20px); }
.mock__play { width: 16px; height: 20px; background: rgba(255, 255, 255, .6); clip-path: polygon(0 0, 100% 50%, 0 100%); }
.mock__screen-label { position: absolute; left: 6px; top: 6px; font-size: 8px; letter-spacing: .04em; text-transform: uppercase; color: var(--ash); }
.mock__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, .2); }
.mock__bar i { display: block; height: 100%; width: 0; background: var(--frost); animation: prog 7.5s linear infinite; }
.mock__stamp { position: absolute; left: 50%; top: 50%; width: 110px; height: 30px; margin: -15px 0 0 -55px; transform: rotate(-9deg) translateZ(30px); }
.mock__stamp b { position: absolute; inset: 0; display: grid; place-items: center; border: 2px solid var(--c); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c); background: #050505; opacity: 0; animation: stamp 7.5s infinite; }
.mock__stamp b:nth-child(2) { animation-delay: 2.5s; border-color: var(--amber); color: var(--amber); }
.mock__stamp b:nth-child(3) { animation-delay: 5s; border-color: var(--mint); color: var(--mint); }
@keyframes stamp { 0% { opacity: 0; transform: scale(1.8); } 4% { opacity: 1; transform: scale(.94); } 7%, 30% { opacity: 1; transform: scale(1); } 34%, 100% { opacity: 0; transform: scale(1); } }
.mock__bubble { left: 10px; bottom: 58px; width: 42%; aspect-ratio: 1; overflow: hidden; border: 2px solid var(--c); border-radius: 50%; background: #050505; transform: translateZ(60px); }
.mock__bubble .mock__person { width: 115%; bottom: -12%; }
.mock__caption { left: 10px; right: 10px; bottom: 16px; height: 2.6em; font-size: 12px; font-weight: 500; line-height: 1.15; color: var(--frost); transform: translateZ(55px); }
.mock__caption span { position: absolute; inset: 0; opacity: 0; animation: cap 7.5s infinite; }
.mock__caption span:nth-child(2) { animation-delay: 2.5s; }
.mock__caption span:nth-child(3) { animation-delay: 5s; }

/* 04 — Format autonome : carrousel photo qui défile + voix off */
.mock__slides { top: 34px; left: 8px; right: 8px; height: 58%; overflow: hidden; border: 1px solid rgba(255, 255, 255, .25); transform: translateZ(25px); }
.mock__track { display: flex; width: 300%; height: 100%; animation: swipe 9s var(--ease-io) infinite; }
@keyframes swipe { 0%, 28% { transform: translateX(0); } 33%, 61% { transform: translateX(-33.333%); } 66%, 94% { transform: translateX(-66.666%); } 100% { transform: translateX(0); } }
.mock__slide { position: relative; flex: 0 0 33.333%; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; padding: 12px; overflow: hidden; }
.mock__slide > span { font-size: 12px; font-weight: 500; line-height: 1.15; color: var(--frost); }
.mock__slide b { font-size: 64px; font-weight: 700; line-height: .8; letter-spacing: -.05em; color: var(--c); animation: kb 3s var(--ease-io) infinite alternate; transform-origin: left bottom; }
@keyframes kb { to { transform: scale(1.08); } }
.mock__slide svg { width: 100%; height: 60px; fill: none; stroke: var(--c); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mock__slide em { font-style: normal; font-size: 44px; font-weight: 700; line-height: .6; color: var(--c); }
.mock__dots { top: calc(34px + 58% + 8px); left: 0; right: 0; display: flex; justify-content: center; gap: 5px; }
.mock__dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, .25); animation: d1 9s infinite; }
.mock__dots i:nth-child(2) { animation-name: d2; }
.mock__dots i:nth-child(3) { animation-name: d3; }
@keyframes d1 { 0%, 30% { background: var(--c); } 31%, 97% { background: rgba(255, 255, 255, .25); } 98%, 100% { background: var(--c); } }
@keyframes d2 { 0%, 31% { background: rgba(255, 255, 255, .25); } 34%, 63% { background: var(--c); } 64%, 100% { background: rgba(255, 255, 255, .25); } }
@keyframes d3 { 0%, 64% { background: rgba(255, 255, 255, .25); } 67%, 96% { background: var(--c); } 97%, 100% { background: rgba(255, 255, 255, .25); } }
.mock__vo { left: 10px; right: 10px; bottom: 14px; display: flex; align-items: center; gap: 8px; padding: 6px 8px; border: 1px solid var(--c); border-radius: 9999px; background: #050505; transform: translateZ(45px); }
.mock__vo svg { flex: none; width: 14px; height: 14px; fill: none; stroke: var(--c); stroke-width: 1.8; stroke-linecap: round; }
.mock__vo span { flex: 1; display: flex; align-items: center; gap: 2px; height: 14px; }
.mock__vo span i { flex: 1; height: 30%; background: var(--c); animation: bars .7s ease-in-out infinite alternate; }
.mock__vo span i:nth-child(2n) { animation-duration: 1s; animation-delay: -.3s; }
.mock__vo span i:nth-child(3n) { animation-duration: .5s; }
.mock__vo small { font-size: 8px; letter-spacing: .04em; text-transform: uppercase; color: var(--frost); }

/* Comment ça marche : 4 étapes, 4 couleurs */
.how { margin-top: 126px; }
.how__line { position: relative; height: 2px; margin-bottom: 36px; background: var(--line); }
.how__line i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--violet), var(--blue), var(--amber), var(--mint)); transform: scaleX(0); transform-origin: left; }
.how__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
.how__steps li { --c: var(--frost); }
.how__steps li:nth-child(1) { --c: var(--violet); }
.how__steps li:nth-child(2) { --c: var(--blue); }
.how__steps li:nth-child(3) { --c: var(--amber); }
.how__steps li:nth-child(4) { --c: var(--mint); }
.how__icon { width: 52px; height: 52px; margin-bottom: 22px; fill: none; stroke: var(--c); stroke-width: 1.3; stroke-linejoin: round; stroke-linecap: round; overflow: visible; }
.how__icon * { stroke-dasharray: 200; stroke-dashoffset: 200; transition: stroke-dashoffset 1.8s var(--ease-out); }
.how__steps li.is-drawn .how__icon * { stroke-dashoffset: 0; }
.how__steps em { display: block; font-style: normal; font-size: 13px; color: var(--c); }
.how__steps h3 { margin: 10px 0; font-size: var(--h-sm); font-weight: 700; line-height: 1; text-transform: uppercase; color: var(--frost); }
.how__steps p { font-size: 15px; line-height: 1.25; max-width: 22em; }
.how__steps strong { color: var(--c); font-weight: 500; }

.callband { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 22px 43px; margin-top: 108px; padding: 36px 0; border-top: 2px solid var(--signal); border-bottom: 1px solid var(--line); }
.callband__title { margin-bottom: 6px; font-size: var(--h-sm); font-weight: 700; text-transform: uppercase; color: var(--frost); }
.callband p:not(.callband__title) { font-size: 16px; color: var(--ash); }
.callband__ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.callband--method { margin-top: 0; }
.ideal__ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 22px 30px; margin-top: 43px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 36px 0; border-block: 1px solid var(--line); }
.marquee__track { display: flex; align-items: center; gap: 43px; width: max-content; padding-right: 43px; will-change: transform; }
.marquee span { font-size: var(--h-lg); line-height: .92; letter-spacing: -.02em; white-space: nowrap; }
.marquee span:nth-of-type(odd) { color: var(--graphite); }
.marquee i { flex: none; width: .5em; height: .5em; font-size: var(--h-lg); border: 1px solid var(--graphite); border-radius: 50%; }
.marquee--big { border: 0; padding: 43px 0 65px; }
.marquee--big span { font-size: clamp(72px, 13vw, 198px); color: var(--frost) !important; line-height: .96; }
.marquee--big i { font-size: clamp(72px, 13vw, 198px); }

/* ---------- Positionnement ---------- */
.stance { padding-bottom: var(--section); }
.stance__pin { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 108px 0 65px; }
.stance__inner { width: 100%; }
.stance__counter {
  position: relative; display: flex; align-items: baseline; gap: .12em; width: max-content; max-width: 100%;
  font-size: clamp(36px, 11vw, 170px); font-weight: 700; line-height: .9; letter-spacing: -.045em;
  color: var(--frost); font-variant-numeric: tabular-nums;
}
.stance__counter.is-dead { color: var(--graphite); }
.stance__unit { font-size: .26em; font-weight: 400; letter-spacing: 0; text-transform: uppercase; color: var(--ash); }
.stance__strike { position: absolute; left: -2%; right: -2%; top: 50%; height: max(3px, .05em); background: var(--frost); transform: scaleX(0); transform-origin: left; }
.stance__title { margin-top: 43px; }
.stance__line { display: block; font-size: var(--h-lg); font-weight: 700; line-height: .95; letter-spacing: -.02em; text-transform: uppercase; }
.stance__line--a { color: var(--graphite); }
.stance__line--b { color: var(--frost); }
.stance__nots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 65px; }
.stance__nots li { font-size: 18px; line-height: 1.1; color: var(--ash); padding-top: 22px; border-top: 1px solid var(--line); }

.karaoke { font-size: clamp(26px, 3.6vw, 52px); font-weight: 500; line-height: 1.04; letter-spacing: -.02em; color: var(--frost); max-width: 22em; }
.karaoke--big { font-size: clamp(28px, 4.2vw, 62px); }

/* ---------- Offre ---------- */
.offer__intro { margin-top: 43px; }
.vars { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; margin-top: 86px; }
.var { padding-top: 22px; border-top: 1px solid var(--line); transition: border-color .5s; }
.var:hover { border-color: var(--frost); }
.var__label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite); transition: color .4s; }
.var:hover .var__label { color: var(--frost); }
.var__roller {
  height: 1em; overflow: hidden; margin: 22px 0 14px;
  font-size: clamp(96px, 14vw, 198px); font-weight: 700; line-height: 1; letter-spacing: -.05em; color: var(--frost);
  font-variant-numeric: tabular-nums;
}
.var__reel span { display: block; height: 1em; }
.var__name { display: block; font-size: 18px; color: var(--ash); }
.vars__x { font-size: var(--h-lg); font-weight: 300; color: var(--graphite); line-height: 1; padding-bottom: 1.3em; }
.offer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 43px; margin-top: 65px; max-width: 920px; font-size: 18px; line-height: 1.1; }
.principle { margin-top: 126px; padding-top: 43px; border-top: 1px solid var(--line); }
.principle__not { font-size: var(--h-sm); line-height: 1.2; color: var(--ash); }
.principle__yes { font-size: var(--h-lg); font-weight: 700; line-height: .92; letter-spacing: -.02em; text-transform: uppercase; color: var(--frost); margin: 29px 0; max-width: 14em; }
.principle__foot { font-size: 18px; line-height: 1.1; color: var(--ash); max-width: 30em; }

/* ---------- Méthode ---------- */
.method { padding-top: var(--section); }
.method__head { margin-bottom: 43px; }
.method__pin { position: relative; height: 100vh; height: 100svh; overflow: hidden; display: flex; flex-direction: column; }
.method__track { flex: 1; display: flex; width: max-content; min-height: 0; will-change: transform; }
.step {
  width: 100vw; height: 100%;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 5vw, 86px);
  padding: 96px var(--gutter) 22px;
}
.step__num { display: block; font-size: clamp(80px, 10vw, 150px); font-weight: 700; line-height: .8; letter-spacing: -.06em; color: var(--frost); margin-bottom: 22px; }
.step__title { font-size: clamp(24px, 2.5vw, 38px); line-height: 1; letter-spacing: -.01em; margin-bottom: 22px; max-width: 14em; }
.step__lead { font-size: 18px; line-height: 1.1; color: var(--ash); max-width: 30em; margin-bottom: 22px; }
.step__big { font-size: clamp(30px, 3.8vw, 56px); line-height: .95; letter-spacing: -.02em; margin: 22px 0; max-width: 11em; }
.step__bad { font-size: var(--h-sm); line-height: 1.2; color: var(--frost); }
.step__quote { font-size: 18px; line-height: 1.1; color: var(--frost); padding-left: 22px; border-left: 1px solid var(--frost); margin-top: 29px; max-width: 28em; }
.step__visual { min-width: 0; }
.nots li { font-size: var(--h-sm); line-height: 1.25; color: var(--frost); }

.tags { display: flex; flex-wrap: wrap; gap: 9px; }
.tags li {
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 9999px;
  font-size: 14px; line-height: 1.15; color: var(--ash);
  transition: border-color .35s, color .35s, transform .5s var(--ease-out);
}
.tags li:hover { border-color: var(--frost); color: var(--frost); transform: translateY(-3px); }

/* 01 — Fiche question */
.cue { border: 1px solid var(--line); padding: clamp(22px, 3vw, 43px); min-height: 330px; display: flex; flex-direction: column; }
.cue__script { font-size: 14px; text-transform: uppercase; color: var(--ash); margin-bottom: auto; }
.cue__label { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite); margin: 43px 0 14px; }
.cue__q { font-size: clamp(24px, 2.6vw, 40px); font-weight: 500; line-height: 1.05; letter-spacing: -.02em; color: var(--frost); min-height: 3.2em; }
.cue__q::after { content: ''; display: inline-block; width: 2px; height: .9em; margin-left: 4px; vertical-align: -.1em; background: var(--frost); animation: blink 1s steps(2, start) infinite; }
.cue__bar { height: 1px; background: var(--line); margin-top: 29px; }
.cue__bar i { display: block; height: 100%; width: 0; background: var(--frost); }

/* 02 — Viseur */
.viewfinder { position: relative; width: 100%; max-width: 640px; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); margin-left: auto; }
.vf__grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent calc(33.333% - .5px), var(--line) 0 calc(33.333% + .5px), transparent 0 calc(66.666% - .5px), var(--line) 0 calc(66.666% + .5px), transparent 0),
    linear-gradient(0deg, transparent calc(33.333% - .5px), var(--line) 0 calc(33.333% + .5px), transparent 0 calc(66.666% - .5px), var(--line) 0 calc(66.666% + .5px), transparent 0);
  opacity: .6;
}
.vf__subject { position: absolute; left: 50%; bottom: 0; width: 78%; transform: translateX(-50%); overflow: visible; }
.vf__subject circle, .vf__subject path { fill: rgba(255, 255, 255, .05); stroke: rgba(255, 255, 255, .28); stroke-width: 1; vector-effect: non-scaling-stroke; }
.vf__subject circle { transform-origin: 200px 160px; animation: talk 3.2s var(--ease-io) infinite; }
@keyframes talk { 0%, 100% { transform: translate(0, 0) rotate(0); } 30% { transform: translate(-3px, 2px) rotate(-2deg); } 65% { transform: translate(3px, -1px) rotate(1.5deg); } }
.vf__face { position: absolute; left: 50%; top: 36%; width: 25%; aspect-ratio: 1; margin-left: -12.5%; border: 1px solid var(--frost); }
.vf__face span { position: absolute; left: -1px; bottom: calc(100% + 6px); font-size: 10px; letter-spacing: .06em; color: var(--frost); white-space: nowrap; }
.vf__corners i { position: absolute; width: 22px; height: 22px; border: 0 solid var(--frost); }
.vf__corners i:nth-child(1) { top: 16px; left: 16px; border-top-width: 1px; border-left-width: 1px; }
.vf__corners i:nth-child(2) { top: 16px; right: 16px; border-top-width: 1px; border-right-width: 1px; }
.vf__corners i:nth-child(3) { bottom: 16px; left: 16px; border-bottom-width: 1px; border-left-width: 1px; }
.vf__corners i:nth-child(4) { bottom: 16px; right: 16px; border-bottom-width: 1px; border-right-width: 1px; }
.vf__top, .vf__bottom { position: absolute; left: 50px; right: 50px; display: flex; justify-content: space-between; gap: 12px; font-size: 11px; letter-spacing: .06em; color: var(--frost); font-variant-numeric: tabular-nums; }
.vf__top { top: 24px; }
.vf__top span:first-child { display: inline-flex; align-items: center; gap: 7px; }
.vf__top .rec { background: var(--frost); }
.vf__bottom { bottom: 24px; color: var(--ash); }
.vf__meters { position: absolute; right: 22px; top: 30%; bottom: 30%; display: flex; gap: 4px; }
.vf__meters i { width: 3px; height: 100%; background: var(--line); position: relative; overflow: hidden; }
.vf__meters i::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 60%; background: var(--frost); transform-origin: bottom; animation: meter .9s var(--ease-io) infinite alternate; }
.vf__meters i:last-child::after { animation-duration: .7s; animation-delay: -.3s; }
@keyframes meter { 0% { transform: scaleY(.2); } 40% { transform: scaleY(.9); } 70% { transform: scaleY(.45); } 100% { transform: scaleY(1); } }

/* 03 — Montage */
.edit { position: relative; height: clamp(260px, 34vh, 340px); border: 1px solid var(--line); }
.edit__row { position: absolute; left: 0; right: 0; height: 50%; }
.edit__row:first-child { top: 0; border-bottom: 1px solid var(--line); }
.edit__row--cut { top: 50%; }
.edit__label { position: absolute; left: 14px; top: 12px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--graphite); }
.edit__clips { position: absolute; inset: 0; }
.clip {
  position: absolute; left: 0; top: 0; height: 44px;
  display: flex; align-items: center; padding: 0 12px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55); background: var(--void);
  font-size: 12px; color: var(--frost); white-space: nowrap;
  will-change: transform;
}
.clip--junk { border-style: dashed; border-color: var(--graphite); color: var(--graphite); }
.edit__head { position: absolute; top: 50%; bottom: 0; left: 0; width: 1px; background: var(--frost); opacity: 0; }

/* 04 — Récit */
.story { counter-reset: s; }
.story li {
  display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 12px;
  padding: 12px 0; border-top: 1px solid var(--line);
  font-size: clamp(15px, 1.35vw, 19px); line-height: 1.15; color: var(--ash);
  transition: color .35s, padding .6s var(--ease-out);
}
.story li:last-child { border-bottom: 1px solid var(--line); }
.story li::before { counter-increment: s; content: counter(s, decimal-leading-zero); font-size: 12px; color: var(--graphite); }
.story li::after {
  content: attr(data-arc); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--frost);
  padding: 4px 10px; border: 1px solid var(--frost); border-radius: 9999px;
  opacity: 0; transform: translateX(-10px); transition: opacity .35s, transform .5s var(--ease-out);
}
.story li:hover, .story li.is-on { color: var(--frost); padding-left: 9px; }
.story li:hover::after, .story li.is-on::after { opacity: 1; transform: none; }

/* 05 — Formats */
.formats { position: relative; height: min(52vh, 440px); }
.fmt {
  position: absolute; left: 50%; top: 50%;
  height: 62%; aspect-ratio: var(--ar, 9 / 16);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 2px;
  padding: 12px; border: 1px solid rgba(255, 255, 255, .4); background: var(--void);
  transition: border-color .35s, translate .6s var(--ease-out);
}
.fmt span { font-size: 13px; color: var(--frost); }
.fmt em { font-style: normal; font-size: 11px; color: var(--graphite); }
.fmt:hover { border-color: var(--frost); translate: 0 -14px; z-index: 3; }
.fmt--main { z-index: 2; border-color: var(--frost); }
.fmt:nth-child(n+4) { align-items: flex-end; text-align: right; }
.fmt--main::before { content: ''; position: absolute; left: 50%; top: 42%; width: 22px; height: 26px; margin: -13px 0 0 -9px; background: var(--frost); clip-path: polygon(0 0, 100% 50%, 0 100%); }

/* Timeline */
.timeline { flex: none; display: flex; align-items: center; gap: 22px; height: 96px; padding: 0 var(--gutter) 22px; }
.timeline__tc { flex: none; min-width: 96px; font-size: 13px; color: var(--frost); font-variant-numeric: tabular-nums; }
.timeline__rail { position: relative; flex: 1; }
.timeline__clips { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; height: 26px; }
.timeline__clips span {
  display: flex; align-items: center; padding: 0 9px; overflow: hidden; white-space: nowrap;
  border: 1px solid var(--line); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite);
  transition: border-color .4s, color .4s;
}
.timeline__clips span.is-on { border-color: var(--frost); color: var(--frost); }
.timeline__wave { position: relative; height: 22px; margin-top: 5px; }
.wave { position: absolute; inset: 0; display: flex; align-items: center; gap: 2px; }
.wave i { flex: 1; height: var(--h); background: var(--graphite); }
.wave--done i { background: var(--frost); }
.timeline__head { position: absolute; top: -8px; bottom: -4px; left: 0; width: 1px; background: var(--frost); }
.timeline__head::before { content: ''; position: absolute; top: 0; left: -5px; width: 11px; height: 8px; background: var(--frost); clip-path: polygon(0 0, 100% 0, 50% 100%); }

/* ---------- Configurateur ---------- */
.config__lead { margin-top: 29px; }
.config__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(43px, 6vw, 108px); margin-top: 86px; align-items: start; }
.q { padding-top: 22px; border-top: 1px solid var(--line); }
.q + .q { margin-top: 65px; }
.q__num { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite); margin-bottom: 9px; }
.q__title { font-size: var(--h-sm); font-weight: 400; line-height: 1.2; color: var(--frost); max-width: 18em; }
.q__note { margin-top: 22px; font-size: 13px; color: var(--graphite); }

.gauge { margin-top: 36px; --thumb: 18px; }
/* volume = prix, côte à côte */
.gauge__value { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 14px 20px; }
.gauge__count { display: flex; align-items: flex-end; gap: 10px; }
.gauge__big { display: inline-block; font-size: clamp(76px, 8vw, 128px); font-weight: 700; line-height: .82; letter-spacing: -.05em; color: var(--frost); font-variant-numeric: tabular-nums; }
.gauge__unit { font-size: 15px; line-height: 1.1; color: var(--ash); padding-bottom: .2em; }
.gauge__eq { font-size: clamp(36px, 3.6vw, 56px); font-weight: 300; line-height: .9; color: var(--graphite); }
.gauge__price { display: flex; flex-direction: column; gap: 8px; }
.gauge__amount { font-size: clamp(46px, 5vw, 80px); font-weight: 700; line-height: .82; letter-spacing: -.04em; color: var(--frost); font-variant-numeric: tabular-nums; white-space: nowrap; }
.gauge__amount small { font-size: .42em; font-weight: 400; letter-spacing: 0; color: var(--ash); }
.gauge__per { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite); }
.gauge__hint { font-size: 15px; color: var(--ash); margin: 14px 0 58px; min-height: 1.25em; }
.gauge__track { position: relative; height: 44px; }
.gauge__track::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--graphite); }
.gauge__fill { position: absolute; left: 0; top: 50%; height: 2px; margin-top: -1px; background: var(--frost); width: calc(var(--p, .333) * (100% - var(--thumb)) + var(--thumb) / 2); transition: width .5s var(--ease-out); }
.gauge__reco { position: absolute; bottom: 100%; left: calc((100% - var(--thumb)) / 6 + var(--thumb) / 2); width: 1px; height: 18px; background: var(--graphite); }
.gauge__reco span { position: absolute; bottom: calc(100% + 6px); left: 0; transform: translateX(-12px); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--ash); white-space: nowrap; }
.gauge input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; background: transparent; -webkit-appearance: none; appearance: none; cursor: grab; }
.gauge input[type="range"]:active { cursor: grabbing; }
.gauge input[type="range"]::-webkit-slider-runnable-track { height: 44px; background: transparent; }
.gauge input[type="range"]::-moz-range-track { height: 44px; background: transparent; }
.gauge input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: var(--thumb); height: 40px; margin-top: 2px; border-radius: 9999px; background: var(--frost); border: 0; transition: transform .3s var(--ease-out); }
.gauge input[type="range"]::-moz-range-thumb { width: var(--thumb); height: 40px; border-radius: 9999px; background: var(--frost); border: 0; }
.gauge input[type="range"]:hover::-webkit-slider-thumb { transform: scaleY(1.12); }
.gauge input[type="range"]:focus-visible { outline: none; }
.gauge input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 1px solid var(--frost); outline-offset: 4px; }
.gauge__ticks { position: relative; height: 32px; margin-top: 9px; }
.gauge__ticks li { position: absolute; top: 0; left: calc(var(--i) / 6 * (100% - var(--thumb)) + var(--thumb) / 2); transform: translateX(-50%); }
.gauge__ticks li:nth-child(1) { --i: 0; } .gauge__ticks li:nth-child(2) { --i: 1; } .gauge__ticks li:nth-child(3) { --i: 2; }
.gauge__ticks li:nth-child(4) { --i: 3; } .gauge__ticks li:nth-child(5) { --i: 4; } .gauge__ticks li:nth-child(6) { --i: 5; } .gauge__ticks li:nth-child(7) { --i: 6; }
.gauge__ticks { height: 52px; }
.gauge__ticks button { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 4px; color: var(--graphite); font-variant-numeric: tabular-nums; transition: color .3s; }
.gauge__ticks b { font-size: 15px; font-weight: 400; color: inherit; }
.gauge__ticks small { font-size: 11px; white-space: nowrap; color: var(--graphite); transition: color .3s; }
.gauge__ticks button:hover, .gauge__ticks button.is-on { color: var(--frost); }
.gauge__ticks button:hover small, .gauge__ticks button.is-on small { color: var(--ash); }

.nets { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 29px; }
.net, .chip { position: relative; }
.net input, .chip input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.net span, .chip span {
  display: inline-flex; align-items: center; gap: 10px; height: 46px; padding: 0 22px;
  border: 1px solid var(--graphite); border-radius: 9999px;
  font-size: 14px; text-transform: uppercase; color: var(--ash); cursor: pointer; user-select: none;
  transition: background-color .35s, color .35s, border-color .35s, transform .5s var(--ease-out);
}
.net span::before, .chip span::before { content: ''; width: 8px; height: 8px; border-radius: 50%; border: 1px solid currentColor; transition: background-color .35s, transform .5s var(--ease-out); }
.net:hover span, .chip:hover span { border-color: var(--frost); color: var(--frost); }
/* sélection : contour et pastille pleine, sans aplat blanc */
.net input:checked + span, .chip input:checked + span { border-color: var(--frost); color: var(--frost); }
.net input:checked + span::before, .chip input:checked + span::before { background: var(--frost); transform: scale(1.25); }
.net input:focus-visible + span, .chip input:focus-visible + span { outline: 1px solid var(--frost); outline-offset: 3px; }
.net span.is-shake { animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

.config__viz { position: sticky; top: 108px; }
.matrix { display: flex; flex-direction: column; min-height: 120px; }
.m-row { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 14px; overflow: hidden; }
.m-row__name { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--ash); padding: 6px 0; }
.m-row__cells { display: grid; grid-template-columns: repeat(30, 1fr); gap: 3px; padding: 6px 0; }
.m-row__cells i { aspect-ratio: 9 / 16; border: 1px solid var(--line); transition: background-color .3s, border-color .3s; }
.m-row__cells i.is-on { background: var(--frost); border-color: var(--frost); }
.m-row:hover .m-row__name { color: var(--frost); }
.matrix__sum { margin-top: 29px; font-size: 18px; line-height: 1.2; color: var(--ash); }
.matrix__sum span { color: var(--graphite); }
.ladder { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 43px; padding-top: 22px; border-top: 1px solid var(--line); }
.ladder span { display: inline-grid; place-items: center; min-width: 52px; height: 36px; padding: 0 14px; border: 1px solid var(--graphite); border-radius: 9999px; font-size: 15px; color: var(--ash); transition: all .4s var(--ease-out); }
.ladder span.is-on { color: var(--frost); border-color: var(--frost); }
.matrix__legend { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite); margin-bottom: 12px; }
.ladder i { font-style: normal; color: var(--graphite); }
.ladder p { width: 100%; margin-top: 9px; font-size: 13px; color: var(--graphite); }

.result { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(43px, 6vw, 108px); margin-top: 108px; padding-top: 43px; border-top: 1px solid var(--frost); }
.result__line { font-size: clamp(28px, 3.2vw, 46px); font-weight: 700; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; color: var(--frost); }
.result__line--nets { color: var(--ash); margin-top: 6px; }
.result__price { margin-top: 36px; font-size: clamp(64px, 8.4vw, 124px); font-weight: 700; line-height: .9; letter-spacing: -.045em; color: var(--frost); font-variant-numeric: tabular-nums; }
.result__approx { font-weight: 300; color: var(--graphite); }
.result__per { font-size: .22em; font-weight: 400; letter-spacing: 0; color: var(--ash); }
.result__small { margin-top: 14px; font-size: 12px; color: var(--graphite); }
.result__quote { font-size: var(--h-sm); line-height: 1.2; color: var(--frost); margin-bottom: 14px; }
.result__advice > p:not(.result__quote) { font-size: 18px; line-height: 1.1; margin-bottom: 36px; max-width: 30em; }
.result__ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 22px 30px; }

/* ---------- Test teaser ---------- */
.test__title { font-size: clamp(52px, 12vw, 180px); max-width: 8em; }
.test__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 36px 65px; flex-wrap: wrap; margin-top: 43px; }
.test__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 65px; }
.test__chips li { padding: 9px 16px; border: 1px solid var(--line); border-radius: 9999px; font-size: 13px; text-transform: uppercase; color: var(--graphite); transition: color .35s, border-color .35s; }
.test__chips li:hover { color: var(--frost); border-color: var(--frost); }

/* ---------- Approche ---------- */
.approach__intro { margin-top: 43px; }
.prompter { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(43px, 6vw, 108px); margin-top: 126px; align-items: start; }
.prompter__kicker { font-size: 15px; text-transform: uppercase; color: var(--graphite); margin-bottom: 22px; }
.prompter__words ol { counter-reset: p; }
.prompter__words li {
  position: relative; display: flex; align-items: baseline; gap: 22px;
  padding: 18px 0; font-size: clamp(40px, 5.6vw, 88px); font-weight: 700; line-height: .95; letter-spacing: -.035em;
  text-transform: uppercase; color: var(--graphite);
  transition: color .6s var(--ease-out), transform .8s var(--ease-out);
}
.prompter__words li::before { counter-increment: p; content: counter(p, decimal-leading-zero); font-size: 14px; font-weight: 400; letter-spacing: 0; color: var(--graphite); transform: translateY(-1.6em); }
.prompter__words li::after { content: '→'; font-weight: 300; font-size: .5em; color: var(--graphite); opacity: 0; transition: opacity .5s; }
.prompter__words li.is-on { color: var(--frost); transform: translateX(14px); }
.prompter__words li.is-on::before { color: var(--frost); }
.prompter__words li.is-on::after { opacity: 1; }
.prompter__chart { position: sticky; top: 22vh; }
.chart { position: relative; }
.chart svg { width: 100%; height: auto; aspect-ratio: 600 / 420; overflow: visible; }
.chart__bars rect { fill: var(--line); transition: fill .4s; }
.chart__bars rect.is-on { fill: rgba(255, 255, 255, .5); }
.chart__curve { fill: none; stroke: var(--frost); stroke-width: 2.4; stroke-linecap: round; }
.chart__labels { position: absolute; inset: 0; pointer-events: none; }
.chart__labels span { position: absolute; transform: translate(-50%, -140%); padding: 5px 11px; border: 1px solid var(--frost); border-radius: 9999px; font-size: 12px; color: var(--frost); white-space: nowrap; background: var(--void); opacity: 0; }
.chart__cap { display: flex; justify-content: space-between; margin-top: 14px; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--ash); }
.chart__cap span:first-child::before { content: ''; display: inline-block; width: 9px; height: 9px; margin-right: 8px; background: rgba(255, 255, 255, .5); }
.chart__cap span:last-child::before { content: ''; display: inline-block; width: 18px; height: 2px; margin-right: 8px; vertical-align: middle; background: var(--frost); }
.chart__note { margin-top: 9px; font-size: 12px; color: var(--graphite); }

.asset { margin-top: 180px; }
.asset__a { font-size: var(--h-sm); line-height: 1.2; color: var(--ash); max-width: 24em; }
.asset__b { margin-top: 22px; font-size: clamp(44px, 8.4vw, 130px); font-weight: 700; line-height: .92; letter-spacing: -.035em; text-transform: uppercase; color: var(--frost); max-width: 10em; }
.list-title { margin-top: 126px; }
.rows { border-bottom: 1px solid var(--line); }
.rows li {
  display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 14px;
  padding: 26px 0; border-top: 1px solid var(--line);
  font-size: clamp(21px, 2.6vw, 40px); font-weight: 500; line-height: 1.05; letter-spacing: -.02em; color: var(--ash);
  transition: color .4s, padding .7s var(--ease-out);
}
.rows em { font-style: normal; font-size: 13px; font-weight: 400; letter-spacing: 0; color: var(--graphite); }
.rows li::after { content: '→'; font-weight: 300; color: var(--frost); opacity: 0; transform: translateX(-22px); transition: opacity .4s, transform .7s var(--ease-out); }
.rows:hover li { color: var(--graphite); }
.rows li:hover { color: var(--frost); padding-left: 22px; }
.rows li:hover::after { opacity: 1; transform: none; }

/* ---------- Pour qui ---------- */
.who__lead { margin-top: 43px; }
.who__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 86px); margin-top: 86px; }
.who__head { font-size: var(--h-sm); line-height: 1.2; color: var(--frost); padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.who__col--no .who__head { color: var(--graphite); }
.who__col li { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 18px; line-height: 1.15; transition: color .35s, padding .6s var(--ease-out); }
.who__col--no li { color: var(--graphite); }
.who__col--no li::before { content: '✕'; }
.who__col--yes li { color: var(--frost); }
.who__col--yes li::before { content: '→'; }
.who__col li:hover { padding-left: 12px; }
.who__role { margin-top: 29px; font-size: 18px; line-height: 1.1; max-width: 30em; }
.ideal { margin-top: 180px; }
.ideal__punch { margin-top: 43px; font-size: var(--h-lg); font-weight: 700; line-height: .92; letter-spacing: -.02em; text-transform: uppercase; color: var(--frost); }

/* ---------- Commencer ---------- */
.start__title { font-size: clamp(46px, 9vw, 150px); max-width: 10em; }
.start__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(43px, 6vw, 108px); align-items: center; margin-top: 86px; }
.start__label { font-size: 13px; text-transform: uppercase; color: var(--graphite); margin-bottom: 14px; }
.agenda { margin-bottom: 36px; }
.agenda li { display: grid; grid-template-columns: 40px 1fr; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); font-size: 18px; line-height: 1.15; color: var(--frost); }
.agenda li:last-child { border-bottom: 1px solid var(--line); }
.agenda em { font-style: normal; font-size: 12px; color: var(--graphite); padding-top: 4px; }
.start__alt { margin-top: 22px; font-size: 14px; color: var(--ash); }

/* Maquette d'appel visio */
.call { border: 1px solid var(--line); padding: 14px; background: var(--void); }
.call__head { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ash); font-variant-numeric: tabular-nums; }
.call__head span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.call__head .rec { background: var(--frost); }
.call__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.call__tile { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--line); overflow: hidden; transition: border-color .4s; }
.call__tile.is-talking { border-color: var(--frost); }
.call__tile .mock__person { width: 78%; }
.call__name { position: absolute; left: 10px; bottom: 10px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--frost); }
.call__talk { position: absolute; right: 10px; bottom: 10px; display: flex; align-items: flex-end; gap: 3px; height: 14px; }
.call__talk i { width: 3px; height: 30%; background: var(--frost); opacity: 0; transition: opacity .3s; }
.call__tile.is-talking .call__talk i { opacity: 1; animation: bars .55s ease-in-out infinite alternate; }
.call__talk i:nth-child(2) { animation-delay: -.2s; } .call__talk i:nth-child(3) { animation-delay: -.4s; }
@keyframes bars { to { height: 100%; } }
.call__ctrls { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
.call__ctrls i { width: 34px; height: 34px; border: 1px solid var(--graphite); border-radius: 50%; }
.call__ctrls .call__end { border-color: var(--frost); }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
fieldset.field { border: 0; min-width: 0; }
.choice legend { padding: 0; margin-bottom: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite); }
.btn--ghost { border-color: var(--graphite); }
.btn--ghost:hover { border-color: var(--frost); }

.form { margin-top: 126px; }
.form__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 22px 43px; flex-wrap: wrap; }
.form__title { font-size: var(--h); font-weight: 700; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; color: var(--frost); }
.form__cfg { font-size: 14px; color: var(--ash); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 43px; margin-top: 65px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field > span { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite); transition: color .3s; }
.field:focus-within > span { color: var(--frost); }
.field input, .field textarea {
  width: 100%; padding: 7px 0 12px; border: 0; border-bottom: 1px solid var(--graphite); border-radius: 0;
  background: transparent; color: var(--frost); font: 400 18px/1.25 var(--font);
  outline: none; resize: vertical; transition: border-color .3s;
}
.field input:focus, .field textarea:focus { border-color: var(--frost); }
.field input::placeholder, .field textarea::placeholder { color: var(--graphite); }
.field.is-invalid input { border-bottom-color: var(--frost); border-bottom-style: dashed; }
.field--wide { grid-column: 1 / -1; }
.form__foot { display: flex; align-items: center; gap: 22px 30px; flex-wrap: wrap; margin-top: 43px; }
.form__status { font-size: 14px; color: var(--ash); }

/* ---------- Footer ---------- */
.footer { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 9px 22px; padding: 29px var(--gutter); font-size: 12px; color: var(--graphite); }
.footer a:hover { color: var(--ash); }

/* ---------- Test : overlay ---------- */
.quiz { position: fixed; inset: 0; z-index: 90; background: var(--void); display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain; clip-path: inset(100% 0 0 0); }
.quiz[hidden] { display: none; }
.quiz__top { position: sticky; top: 0; z-index: 2; flex: none; display: flex; align-items: center; justify-content: space-between; gap: 22px; height: 72px; padding: 0 var(--gutter); background: var(--void); }
.quiz__count { font-size: 13px; text-transform: uppercase; color: var(--ash); font-variant-numeric: tabular-nums; }
.quiz__stage { flex: 1; display: flex; align-items: center; padding: 43px var(--gutter) 65px; }
.quiz__bottom { position: sticky; bottom: 0; flex: none; display: flex; align-items: center; gap: 22px; padding: 22px var(--gutter); background: var(--void); }
.quiz__progress { position: relative; flex: 1; height: 2px; background: var(--graphite); }
.quiz__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--frost); transition: width .7s var(--ease-out); }
.quiz__bar::after { content: ''; position: absolute; right: -6px; top: 50%; width: 12px; height: 12px; margin-top: -6px; border-radius: 50%; background: var(--frost); }
.quiz__time { font-size: 13px; color: var(--ash); font-variant-numeric: tabular-nums; }

.qz { width: 100%; max-width: var(--max); margin: 0 auto; }
.qz__num { font-size: 13px; text-transform: uppercase; color: var(--graphite); margin-bottom: 22px; }
.qz__title { font-size: clamp(32px, 5vw, 72px); font-weight: 700; line-height: .98; letter-spacing: -.02em; text-transform: uppercase; color: var(--frost); max-width: 15em; }
.qz__title:focus, .qv__title:focus { outline: none; }
.qz__hint { margin-top: 22px; font-size: 18px; line-height: 1.1; color: var(--ash); max-width: 32em; }
/* Réponses : lignes éditoriales avec touche clavier, soulignement qui se dessine */
.qz__opts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 43px; margin-top: 43px; max-width: 1100px; }
.qz__opt {
  position: relative; display: flex; align-items: center; gap: 18px; width: 100%;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  font-size: clamp(17px, 1.45vw, 21px); line-height: 1.15; color: var(--ash); text-align: left;
  transition: color .35s, padding .6s var(--ease-out);
}
.qz__opt::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--frost);
  transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease-out);
}
.qz__key {
  position: relative; flex: none; display: grid; place-items: center; width: 30px; height: 30px;
  border: 1px solid var(--graphite); border-radius: 50%;
  font-size: 12px; text-transform: uppercase; color: var(--graphite);
  transition: border-color .35s, color .35s, transform .5s var(--ease-out);
}
.qz__key::after { /* coche qui remplace la lettre une fois choisi */
  content: ''; position: absolute; left: 50%; top: 46%; width: 11px; height: 6px;
  border: solid var(--frost); border-width: 0 0 1.5px 1.5px;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0); transition: transform .45s var(--ease-out);
}
.qz__go { margin-left: auto; font-weight: 300; opacity: 0; transform: translateX(-12px); transition: opacity .35s, transform .6s var(--ease-out); }
.qz__opt:hover, .qz__opt:focus-visible { color: var(--frost); padding-left: 10px; outline: none; }
.qz__opt:hover::after, .qz__opt:focus-visible::after, .qz__opt.is-picked::after { transform: scaleX(1); }
.qz__opt:hover .qz__key, .qz__opt:focus-visible .qz__key { border-color: var(--frost); color: var(--frost); }
.qz__opt:hover .qz__go, .qz__opt:focus-visible .qz__go { opacity: 1; transform: none; }
.qz__opt.is-picked { color: var(--frost); padding-left: 10px; }
.qz__opt.is-picked .qz__key { border-color: var(--frost); color: transparent; transform: rotate(360deg); }
.qz__opt.is-picked .qz__key::after { transform: translate(-50%, -50%) rotate(-45deg) scale(1); }
.qz__keys { margin-top: 22px; font-size: 12px; color: var(--graphite); }

/* Verdict d'éligibilité */
.qv { display: flex; align-items: center; gap: clamp(22px, 3vw, 43px); }
.qv__badge { position: relative; flex: none; width: clamp(76px, 8vw, 116px); aspect-ratio: 1; }
.qv__badge svg { width: 100%; height: 100%; overflow: visible; }
.qv__badge circle { fill: none; stroke: var(--frost); stroke-width: 1.5; stroke-dasharray: 302; stroke-dashoffset: 302; transform: rotate(-90deg); transform-box: fill-box; transform-origin: center; }
.qv__badge path { fill: none; stroke: var(--frost); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 80; stroke-dashoffset: 80; }
.qv--no .qv__badge circle, .qv--no .qv__badge path { stroke: var(--ash); }
.qv__label { font-size: 13px; text-transform: uppercase; color: var(--graphite); margin-bottom: 10px; }
.qv__title { font-size: clamp(32px, 4.6vw, 68px); font-weight: 700; line-height: .95; letter-spacing: -.02em; text-transform: uppercase; color: var(--frost); }
.qv__text { margin-top: 29px; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.15; color: var(--ash); max-width: 38em; }
.qcrit { margin-top: 36px; max-width: 900px; border-top: 1px solid var(--line); }
.qcrit li { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 1.2; color: var(--frost); }
.qcrit li em { font-style: normal; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--graphite); text-align: right; }
.qcrit__i { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid var(--frost); border-radius: 50%; font-size: 12px; color: var(--frost); }
.qcrit li.is-warn { color: var(--ash); }
.qcrit li.is-warn .qcrit__i { border-color: var(--ash); color: var(--ash); }
.qcrit li.is-no { color: var(--graphite); }
.qcrit li.is-no .qcrit__i { border-color: var(--graphite); color: var(--graphite); }
.qr__section { margin-top: 65px; padding-top: 36px; border-top: 1px solid var(--frost); }
.qr__h { font-size: clamp(26px, 3vw, 44px); font-weight: 700; line-height: 1; text-transform: uppercase; color: var(--frost); max-width: 18em; }
.qr__tips { margin-top: 22px; }
.qr__tips li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 16px; color: var(--ash); }
.qr__tips li::before { content: '→ '; color: var(--frost); }
.qz__intro .btn { margin-top: 43px; }
.qz__meta { display: flex; gap: 22px; margin-top: 29px; font-size: 13px; text-transform: uppercase; color: var(--graphite); }

.qr__why { margin-top: 29px; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.15; color: var(--ash); max-width: 36em; }
.qr__why p + p { margin-top: 14px; }
.qr__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(43px, 6vw, 108px); margin-top: 65px; padding-top: 36px; border-top: 1px solid var(--frost); }
.qr__label { font-size: 13px; text-transform: uppercase; color: var(--graphite); margin-bottom: 14px; }
.qr__reco { font-size: clamp(40px, 5vw, 72px); font-weight: 700; line-height: .95; letter-spacing: -.03em; text-transform: uppercase; color: var(--frost); }
.qr__reco span { display: block; color: var(--ash); }
.qr__sub { margin-top: 22px; font-size: 18px; line-height: 1.1; max-width: 30em; }
.qr__list { margin-top: 22px; }
.qr__list li { padding: 11px 0; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.2; color: var(--ash); }
.qr__list li::before { content: '→ '; color: var(--frost); }
.qr__punch { margin-top: 29px; font-size: var(--h-sm); font-weight: 700; line-height: 1.1; text-transform: uppercase; color: var(--frost); }
.qr__bars li { display: grid; grid-template-columns: 96px 1fr; align-items: center; gap: 14px; padding: 9px 0; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--ash); }
.qr__bars li.is-top { color: var(--frost); }
.qr__bars .bar { position: relative; height: 2px; background: var(--line); }
.qr__bars .bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--graphite); }
.qr__bars li.is-top .bar i { background: var(--frost); }
.qr__later { margin-top: 22px; font-size: 14px; line-height: 1.3; color: var(--ash); }
.qr__ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 22px 30px; margin-top: 43px; }

/* ---------- Pour qui : profils ---------- */
.profiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 30px; margin-top: 65px; }
.pcard { position: relative; padding: 22px 0 36px; border-top: 1px solid var(--line); }
.pcard::before { content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 1px; background: var(--frost); transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease-out); }
.pcard:hover::before { transform: scaleX(1); }
.pcard em { display: flex; align-items: center; gap: 8px; font-style: normal; font-size: 13px; color: var(--graphite); }
.pcard em::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--frost); opacity: 0; transform: scale(0); transition: opacity .3s, transform .4s var(--ease-out); }
.pcard:hover em::after { opacity: 1; transform: scale(1); animation: blink 1s steps(2, start) .3s infinite; }
.pcard h3 { margin: 14px 0 10px; font-size: clamp(20px, 1.7vw, 26px); font-weight: 700; line-height: 1.02; text-transform: uppercase; color: var(--frost); transition: transform .7s var(--ease-out); }
.pcard:hover h3 { transform: translateX(8px); }
.pcard p { font-size: 15px; line-height: 1.25; color: var(--ash); max-width: 24em; }

.aside { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(30px, 5vw, 86px); margin-top: 65px; padding-top: 36px; border-top: 1px solid var(--line); }
.aside__title { margin-bottom: 12px; font-size: var(--h-sm); font-weight: 700; line-height: 1.1; text-transform: uppercase; color: var(--ash); }
.aside__head p:not(.aside__title) { font-size: 16px; line-height: 1.25; color: var(--graphite); max-width: 26em; }
.aside__list { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 10px 28px; }
.aside__list li { font-size: clamp(20px, 2vw, 30px); font-weight: 500; letter-spacing: -.01em; color: var(--ash); }

/* ---------- Calculateur de rentabilité ---------- */
.roi__lead { margin-top: 29px; }
.roi__calc { margin-top: 65px; }
.calc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(36px, 6vw, 108px); padding-top: 36px; border-top: 1px solid var(--frost); }
.calc__q + .calc__q { margin-top: 43px; }
.calc__label { font-size: 18px; line-height: 1.2; color: var(--frost); }
.calc__label span { display: block; margin-top: 4px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--graphite); }
.calc__value { margin: 22px 0 14px; font-size: clamp(56px, 6.4vw, 96px); font-weight: 700; line-height: .85; letter-spacing: -.045em; color: var(--frost); font-variant-numeric: tabular-nums; }
.calc__value small { font-size: .4em; font-weight: 400; letter-spacing: 0; color: var(--ash); }
.calc__range { width: 100%; height: 40px; margin: 0; background: transparent; -webkit-appearance: none; appearance: none; cursor: grab; }
.calc__range::-webkit-slider-runnable-track { height: 1px; background: var(--graphite); }
.calc__range::-moz-range-track { height: 1px; background: var(--graphite); }
.calc__range::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 34px; margin-top: -17px; border: 0; border-radius: 9999px; background: var(--frost); transition: transform .3s var(--ease-out); }
.calc__range::-moz-range-thumb { width: 18px; height: 34px; border: 0; border-radius: 9999px; background: var(--frost); }
.calc__range:hover::-webkit-slider-thumb { transform: scaleY(1.12); }
.calc__range:focus-visible { outline: none; }
.calc__range:focus-visible::-webkit-slider-thumb { outline: 1px solid var(--frost); outline-offset: 4px; }
.calc__scale { display: flex; justify-content: space-between; margin-top: 4px; font-size: 12px; color: var(--graphite); }
.calc__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.calc__pill { display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 18px; border: 1px solid var(--graphite); border-radius: 9999px; font-size: 14px; color: var(--ash); transition: border-color .3s, color .3s; }
.calc__pill::before { content: ''; width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; transition: background-color .3s, transform .4s var(--ease-out); }
.calc__pill b { font-weight: 700; }
.calc__pill small { font-size: 12px; color: var(--graphite); transition: color .3s; }
.calc__pill:hover, .calc__pill.is-on { border-color: var(--frost); color: var(--frost); }
.calc__pill.is-on::before { background: var(--frost); transform: scale(1.25); }
.calc__pill.is-on small { color: var(--ash); }

.calc__cost { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ash); }
.calc__cost b { font-weight: 500; color: var(--frost); }
.calc__big { display: flex; align-items: flex-end; gap: 18px; margin-top: 22px; }
.calc__n { font-size: clamp(96px, 11vw, 170px); font-weight: 700; line-height: .78; letter-spacing: -.06em; color: var(--frost); font-variant-numeric: tabular-nums; }
.calc__big p { max-width: 17em; padding-bottom: .2em; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.2; color: var(--frost); }
.calc__big p span { font-size: .8em; color: var(--graphite); }
.calc__bar { display: flex; gap: 3px; height: 38px; margin-top: 36px; padding: 3px; overflow: hidden; border: 1px solid var(--line); }
.calc__bar i { flex: none; height: 100%; border: 1px solid rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .16); }
.calc__bar i.is-full { flex: 1; display: flex; align-items: center; padding: 0 12px; border-color: var(--frost); }
.calc__bar i.is-full span { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--frost); }
.calc__legend { margin-top: 10px; font-size: 12px; color: var(--graphite); }
.calc__gauge { margin-top: 36px; }
.calc__track { position: relative; height: 2px; background: var(--graphite); }
.calc__track em { position: absolute; top: -5px; width: 1px; height: 12px; background: var(--graphite); }
.calc__track i { position: absolute; top: 50%; left: 0; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: var(--frost); }
.calc__zones { display: grid; margin-top: 12px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--graphite); }
.calc__zones span { padding-right: 6px; transition: color .3s; }
.calc__zones span.is-on { color: var(--frost); }
.calc__verdict { margin-top: 22px; max-width: 34em; font-size: 16px; line-height: 1.3; color: var(--ash); }
.calc__verdict b { font-weight: 700; text-transform: uppercase; color: var(--frost); }
.calc__note { margin-top: 14px; max-width: 40em; font-size: 12px; color: var(--graphite); }

/* ---------- Diagnostic (résultat du test) ---------- */
.qd-score { display: flex; align-items: flex-end; gap: clamp(22px, 3vw, 43px); }
.qd-score__n { font-size: clamp(90px, 11vw, 170px); font-weight: 700; line-height: .78; letter-spacing: -.06em; color: var(--frost); font-variant-numeric: tabular-nums; }
.qd-score__n small { font-size: .32em; font-weight: 400; letter-spacing: 0; color: var(--graphite); }
.qd-score__label { margin-bottom: 10px; font-size: 13px; text-transform: uppercase; color: var(--graphite); }
.qd-dots { display: flex; gap: 8px; margin-top: 26px; }
.qd-dots i { width: 48px; height: 6px; border: 1px solid var(--graphite); }
.qd-dots i.is-ok { border-color: var(--frost); background: var(--frost); }
.qd-dots i.is-warn { border-color: var(--ash); background: repeating-linear-gradient(90deg, var(--ash) 0 3px, transparent 3px 6px); }
.qd { margin-top: 43px; border-top: 1px solid var(--frost); }
.qd__item { padding: 29px 0 36px; border-bottom: 1px solid var(--line); }
.qd__head { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 12px; margin-bottom: 18px; }
.qd__head em { font-style: normal; font-size: 13px; color: var(--graphite); }
.qd__head h3 { font-size: var(--h-sm); font-weight: 700; line-height: 1; text-transform: uppercase; color: var(--frost); }
.qd__state { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--frost); }
.qd__state i, .qd__pre i { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid currentColor; border-radius: 50%; font-style: normal; font-size: 12px; }
.qd__item.is-warn .qd__state { color: var(--ash); }
.qd__item.is-no .qd__state { color: var(--graphite); }
.qd__big { margin-bottom: 10px; font-size: clamp(22px, 2.2vw, 32px); font-weight: 500; line-height: 1.1; color: var(--frost); }
.qd__p { max-width: 44em; font-size: 16px; line-height: 1.3; color: var(--ash); }
.qd__calc { margin-top: 29px; }
.qd__calc .calc { border-top-color: var(--line); }
.bscale { margin: 30px 0 52px; }
.bscale__track { position: relative; height: 12px; border-bottom: 1px solid var(--graphite); }
.bscale__band { position: absolute; bottom: -5px; height: 9px; border: 1px solid var(--frost); background: rgba(255, 255, 255, .16); }
.bscale__tick { position: absolute; top: 20px; display: flex; flex-direction: column; align-items: center; transform: translateX(-50%); font-size: 11px; white-space: nowrap; color: var(--graphite); }
.bscale__tick::before { content: ''; position: absolute; top: -14px; left: 50%; width: 1px; height: 8px; background: var(--graphite); }
.bscale__tick b { font-size: 13px; font-weight: 500; }
.bscale__tick.is-in { color: var(--frost); }
.bscale__tick.is-in::before { background: var(--frost); }
.qd__pre { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-bottom: 12px; }
.qd__pre li { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; color: var(--frost); }
.qd__pre li.is-warn { color: var(--ash); }
.qd__pre li.is-no { color: var(--graphite); }
.qd__conclude { margin-top: 65px; padding-top: 36px; border-top: 1px solid var(--frost); }
.qd__conclude-t { max-width: 26em; font-size: clamp(24px, 2.6vw, 38px); font-weight: 500; line-height: 1.1; color: var(--frost); }

/* ---------- Couleurs sémantiques : vert = rempli, ambre = à vérifier, rouge = non ---------- */
.qd__item.is-ok .qd__state, .qd__pre li.is-ok, .qcrit li.is-ok .qcrit__i { color: var(--mint); }
.qd__item.is-warn .qd__state, .qd__pre li.is-warn { color: var(--amber); }
.qd__item.is-no .qd__state, .qd__pre li.is-no { color: var(--signal); }
.qd__item.is-ok { border-left: 3px solid var(--mint); padding-left: 18px; }
.qd__item.is-warn { border-left: 3px solid var(--amber); padding-left: 18px; }
.qd__item.is-no { border-left: 3px solid var(--signal); padding-left: 18px; }
.qd-dots i.is-ok { border-color: var(--mint); background: var(--mint); }
.qd-dots i.is-warn { border-color: var(--amber); background: var(--amber); }
.qd-dots i.is-no { border-color: var(--signal); }
.qd-score__n { color: var(--mint); }
.qr--low .qd-score__n { color: var(--signal); }
.qr--mid .qd-score__n { color: var(--amber); }
.bscale__band { border-color: var(--mint); background: rgba(53, 214, 154, .22); }
.bscale__tick.is-in { color: var(--mint); }
.bscale__tick.is-in::before { background: var(--mint); }

.calc { --zc: var(--mint); }
.calc[data-zone="1"] { --zc: var(--blue); }
.calc[data-zone="2"] { --zc: var(--amber); }
.calc[data-zone="3"] { --zc: var(--signal); }
.calc__n, .calc__verdict b { color: var(--zc); transition: color .4s; }
.calc__bar i { border-color: var(--zc); background: color-mix(in srgb, var(--zc) 28%, transparent); }
.calc__bar i.is-full { background: transparent; }
.calc__track i { background: var(--zc); }
.calc__zones span.is-on { color: var(--zc); }
.calc__track { background: linear-gradient(90deg, var(--mint) 0 21.8%, var(--blue) 21.8% 56.4%, var(--amber) 56.4% 78.2%, var(--signal) 78.2%); opacity: .9; }
.calc__value { color: var(--frost); }

/* prix : ce qui doit sauter aux yeux */
.gauge__unitprice { align-self: flex-start; }
.gauge__reco { background: var(--amber); }
.gauge__reco span { color: var(--amber); }
.ladder span.is-on { color: var(--amber); border-color: var(--amber); }
.result__unit { margin-top: 14px; }
.result__price { color: var(--frost); }

/* Inclus dans chaque formule */
.included { margin-top: 86px; padding-top: 29px; border-top: 1px solid var(--line); }
.included__title { font-size: var(--h-sm); font-weight: 700; text-transform: uppercase; color: var(--frost); }
.included__sub { margin-top: 6px; font-size: 15px; color: var(--ash); }
.included ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 30px; margin-top: 29px; }
.included li { display: grid; grid-template-columns: 28px 1fr; gap: 4px 12px; padding: 16px 0; border-top: 1px solid var(--line); }
.included li i { grid-row: span 2; display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid var(--mint); border-radius: 50%; font-style: normal; font-size: 12px; color: var(--mint); }
.included li b { font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--frost); }
.included li span { font-size: 14px; line-height: 1.25; color: var(--ash); }
.included li.is-key { border-top-color: var(--violet); }
.included li.is-key i { border-color: var(--violet); background: var(--violet); color: var(--void); }
.included li.is-key b { color: var(--violet); }

/* méthode : chaque étape sa couleur */
.step { --c: var(--frost); }
.step:nth-child(1) { --c: var(--violet); }
.step:nth-child(2) { --c: var(--blue); }
.step:nth-child(3) { --c: var(--amber); }
.step:nth-child(4) { --c: var(--mint); }
.step:nth-child(5) { --c: var(--signal); }
.step__num { color: var(--c); }
.step__quote { border-left-color: var(--c); }
.timeline__clips span.is-on { border-color: var(--signal); color: var(--frost); }
.timeline__head { background: var(--signal); }
.timeline__head::before { background: var(--signal); }

.pcard em { color: var(--signal); }
.pcard::before { background: var(--signal); }
.aside .strike, .principle .strike { background-image: linear-gradient(var(--signal), var(--signal)); }
.stance__strike { background: var(--signal); }
.stance__line--b .hl, .stance__line--b { color: var(--frost); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav__center > span:first-child { display: none; }
  .profiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 43px 30px; }
  .how__steps, .included ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__center { display: none; }
  .hero { align-items: flex-end; padding-top: 108px; }
  .hero__lens-wrap { top: 44%; right: 50%; width: 125vw; transform: translate(50%, -50%); opacity: .6; }
  .hud__scroll { display: none; }
  .stance__nots, .offer__cols, .config__grid, .result, .prompter, .who__cols, .start__steps, .form__grid, .qr__grid { grid-template-columns: 1fr; }
  .vars { grid-template-columns: 1fr; gap: 43px; }
  .vars__x { display: none; }
  .config__viz { position: static; }
  .prompter__chart { position: relative; top: 0; order: -1; }
  .method__pin { height: auto; overflow: visible; }
  .method__track { flex-direction: column; width: 100%; }
  .step { width: 100%; height: auto; grid-template-columns: 1fr; padding: 65px var(--gutter); border-top: 1px solid var(--line); }
  .timeline { display: none; }
  .viewfinder { margin: 0; }
  .formats { height: 340px; }
  .fgrid { grid-template-columns: 1fr; gap: 43px; }
  .fcard { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: 22px; align-items: center; }
  .fcard__stage { padding: 22px 0; }
  .mock { width: 100%; max-width: 220px; }
  .how__steps, .start__grid { grid-template-columns: 1fr; }
  .how__steps { gap: 43px; }
  .qz__opts { grid-template-columns: 1fr; }
  .aside, .calc { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__cta { display: none; }
  .btn { height: 48px; padding: 0 22px; font-size: 13px; }
  .hud { gap: 6px 14px; margin-top: 43px; }
  .m-row { grid-template-columns: 70px 1fr; gap: 9px; }
  .m-row__cells { gap: 2px; }
  .rows li { grid-template-columns: 40px 1fr; }
  .rows li::after { display: none; }
  .story li { grid-template-columns: 28px 1fr; }
  .story li::after { display: none; }
  .gauge__reco span { font-size: 10px; }
  .vf__top, .vf__bottom { left: 40px; right: 40px; font-size: 10px; }
  .vf__bottom span:nth-child(n+3) { display: none; }
  .marquee { padding: 22px 0; }
  .clip { padding: 0 6px; font-size: 10px; }
  .fcard { grid-template-columns: 1fr; }
  .mock { max-width: 200px; }
  .gauge__ticks small { font-size: 9px; }
  .gauge__ticks b { font-size: 13px; }
  .fab { height: 48px; padding-right: 16px; font-size: 12px; }
  .fab__cam { width: 32px; height: 32px; }
  .qv { flex-direction: column; align-items: flex-start; }
  .qcrit li { grid-template-columns: 30px 1fr; }
  .qcrit li em { grid-column: 2; text-align: left; }
  .profiles { grid-template-columns: 1fr; }
  .calc__pill { gap: 6px; padding: 0 12px; font-size: 13px; }
  .calc__pill small { font-size: 11px; }
  .qd__head { grid-template-columns: 30px 1fr; }
  .qd__state { grid-column: 2; }
  .bscale__tick small { display: none; }
  .qd-score { flex-direction: column; align-items: flex-start; }
  .dock { left: 8px; right: 8px; width: auto; justify-content: space-between; transform: translateY(160%); }
  .dock > .dock__alt, .dock > .btn { flex: 1 1 0; }
  .dock.is-on { transform: none; }
  .dock__ring, .dock__pct { display: none; }
  .dock__alt, .dock .btn { flex: 1; justify-content: center; padding: 0 10px; font-size: 11px; }
  .dock__cam { display: none; }
  .included ul { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
