/* ══════════════════════════════════════════════════════════════
   BRIEF ÉQUIPE · socle commun aux decks Product et Sales
   DA Le Réseau : noir #070707 / jaune #FFC400, Commissioner.
   Scène 1920x1080 mise à l'échelle, empilée en colonne sur mobile.
   ══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Commissioner';
  src: url('assets/commissioner-var.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --noir: #070707;
  --jaune: #FFC400;
  --jaune-soft: #FFE174;
  --txt: #EDEAE2;
  --txt-soft: #B8B3A6;
  --txt-dim: #8A8578;
  --glass: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.022));
  --glass-line: rgba(255,255,255,.09);
  --rouge: #E2685A;
  --vert: #4FD07E;
  --serif: Georgia, 'Times New Roman', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; background: #050503; }
body {
  font-family: 'Commissioner', system-ui, sans-serif;
  color: var(--txt);
  letter-spacing: -0.02em;
  overflow: hidden;
}

.deck { position: fixed; top: 50%; left: 50%; width: 1920px; height: 1080px; transform-origin: center center; }
.slide {
  position: absolute; inset: 0; width: 1920px; height: 1080px; display: none; overflow: hidden;
  background:
    radial-gradient(52% 60% at 84% 4%, rgba(255,196,0,.085), transparent 68%),
    radial-gradient(66% 74% at 4% 102%, rgba(200,150,0,.16), transparent 62%),
    radial-gradient(40% 40% at 60% 50%, rgba(255,196,0,.025), transparent 70%),
    linear-gradient(158deg, #14110a 0%, #0a0906 46%, #0d0b06 100%);
}
.slide.active { display: block; }

/* filigrane glyphe : une trame, jamais un élément qu'on remarque */
.wm { position: absolute; right: -230px; top: -150px; width: 1100px; height: 1100px; opacity: .05; pointer-events: none; }
.wm.low { top: auto; bottom: -330px; right: -190px; transform: rotate(9deg); }
/* la cover et la page de fin portent déjà le glyphe au centre : pas de doublon en fond */
.cover .wm, .end .wm { display: none; }

/* ── navigation ── */
.hud { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 14px; z-index: 50; }
.dots { display: flex; gap: 6px; max-width: 46vw; flex-wrap: wrap; justify-content: center; }
.dot { width: 8px; height: 8px; border-radius: 999px; background: #453f30; cursor: pointer; transition: all .2s; }
.dot.on { background: var(--jaune); width: 24px; }
.counter { color: #776f5c; font-size: 13px; font-weight: 600; letter-spacing: 0; min-width: 54px; text-align: center; }
.arrow { width: 34px; height: 34px; border-radius: 999px; border: 1px solid #453f30; background: rgba(255,255,255,.04); color: #d8d4ca; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-family: inherit; }
.arrow:hover { background: var(--jaune); color: var(--noir); border-color: var(--jaune); }

/* ── ossature de slide ── */
.pad { position: relative; z-index: 2; height: 100%; padding: 148px 96px 88px; display: flex; flex-direction: column; }
.brandbar { position: absolute; top: 44px; left: 96px; display: flex; align-items: center; gap: 12px; z-index: 5; }
.brandbar img { width: 34px; height: 34px; }
.wordmark { font-weight: 800; letter-spacing: -0.025em; color: #fff; font-size: 25px; }
.wordmark .pt { color: var(--jaune); }
.pagenum { position: absolute; top: 48px; right: 96px; font-size: 17px; font-weight: 700; color: #5d5748; letter-spacing: 0; z-index: 5; }

.kicker { font-size: 17px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--jaune); margin-bottom: 20px; }
h1.t { font-size: 66px; font-weight: 800; color: #fff; line-height: 1.04; letter-spacing: -0.03em; max-width: 1500px; }
h2.t { font-size: 52px; font-weight: 700; color: #fff; line-height: 1.08; letter-spacing: -0.028em; max-width: 1500px; }
.t .y { color: var(--jaune); }
em { font-family: var(--serif); font-style: italic; color: var(--jaune); font-weight: 500; letter-spacing: 0; }
.lead { font-size: 25px; color: var(--txt-soft); line-height: 1.5; max-width: 1350px; margin-top: 22px; font-weight: 400; }
.lead b { color: #fff; font-weight: 700; }
/* le contenu se pose sous le titre, l'air restant va en bas : composition plus dense en haut */
.body { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; padding-top: 34px; min-height: 0; }
.foot { font-size: 19px; color: var(--txt-dim); font-weight: 500; line-height: 1.45; margin-top: auto; padding-top: 30px; max-width: 1620px; }
.body .foot { margin-top: 26px; padding-top: 0; }
.foot b { color: var(--jaune); font-weight: 700; }

/* ── grilles ── */
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.g5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.split { display: flex; gap: 52px; align-items: center; }
.split > .lft { flex: 1 1 46%; min-width: 0; }
.split > .rgt { flex: 1 1 54%; min-width: 0; }
.split.wide-r > .lft { flex: 0 0 38%; }
.split.wide-l > .rgt { flex: 0 0 38%; }

/* ── cartes ── */
.card { background: var(--glass); border: 1px solid var(--glass-line); border-radius: 18px; padding: 30px 30px 28px; }
.card h3 { font-size: 25px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.22; }
.card p { font-size: 18.5px; color: var(--txt-soft); line-height: 1.5; margin-top: 12px; font-weight: 400; }
.card .n { font-size: 15px; font-weight: 800; color: var(--jaune); letter-spacing: .1em; margin-bottom: 13px; }
.card.hot { border-color: rgba(255,196,0,.42); background: linear-gradient(180deg, rgba(255,196,0,.12), rgba(255,196,0,.035)); }

/* ── chiffres ── */
.kpi { text-align: left; }
.kpi .num { font-size: 76px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.04em; }
.kpi .num.y { color: var(--jaune); }
.kpi .lbl { font-size: 19px; color: var(--txt-soft); margin-top: 12px; line-height: 1.35; font-weight: 500; }

/* ── avant / après ── */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.ba .col { border-radius: 20px; padding: 30px 32px 32px; border: 1px solid var(--glass-line); background: rgba(255,255,255,.035); display: flex; flex-direction: column; }
.ba .col.after { border-color: rgba(255,196,0,.45); background: linear-gradient(180deg, rgba(255,196,0,.11), rgba(255,196,0,.03)); }
.ba .tag { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--txt-dim); margin-bottom: 20px; }
.ba .col.after .tag { color: var(--jaune); }
.ba .tag i { width: 9px; height: 9px; border-radius: 999px; background: #5d5748; display: block; }
.ba .col.after .tag i { background: var(--jaune); }
.ba ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.ba li { font-size: 19.5px; line-height: 1.42; color: var(--txt-soft); padding-left: 26px; position: relative; font-weight: 400; }
.ba li::before { content: '·'; position: absolute; left: 8px; top: -3px; font-size: 26px; color: #5d5748; }
.ba .col.after li { color: var(--txt); }
.ba .col.after li::before { content: '›'; font-size: 20px; color: var(--jaune); top: 0; left: 6px; }
.ba li b { color: #fff; font-weight: 700; }

/* ── listes ── */
.list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.list li { font-size: 21px; line-height: 1.4; color: var(--txt-soft); padding-left: 34px; position: relative; font-weight: 400; }
.list li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 12px; height: 2px; border-radius: 2px; background: var(--jaune); }
.list li b { color: #fff; font-weight: 700; }
.list.tight li { font-size: 19px; }
.list.two { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 40px; }

/* ── captures ── */
.shot { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); background: #0d0b06; box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.shot img { width: 100%; display: block; }
/* recadrage : on garde toujours le haut GAUCHE, sinon on coupe le début des titres */
.shot.crop { height: 470px; }
.shot.crop img { height: 100%; object-fit: cover; object-position: top left; }
.shot.tall { height: 640px; }
.shot.tall img { height: 100%; object-fit: cover; object-position: top left; }
/* capture déjà sur fond noir : pas de cadre, elle se fond dans la slide */
.shot.plain { border: none; box-shadow: none; background: transparent; }
.cap { font-size: 15.5px; color: var(--txt-dim); margin-top: 12px; font-weight: 500; letter-spacing: -0.005em; }
.cap b { color: var(--txt-soft); font-weight: 700; }

/* ── tags ── */
.pill { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 9px 20px; font-size: 15px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.pill.y { background: var(--jaune); color: var(--noir); }
.pill.o { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); color: var(--txt-soft); }
.pill.r { background: rgba(226,104,90,.16); border: 1px solid rgba(226,104,90,.5); color: #F0A197; }

/* ── frise horizontale ── */
.rail { position: relative; margin-top: 46px; }
.rail .line { position: absolute; left: 30px; right: 30px; top: 96px; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,196,0,.12), rgba(255,196,0,.75) 8%, rgba(255,196,0,.75) 92%, rgba(255,196,0,.12)); }
.rail .nodes { display: grid; grid-template-columns: repeat(10, 1fr); gap: 0; position: relative; }
.rail .nd { position: relative; padding-top: 42px; text-align: center; }
.rail .th { width: 108px; height: 108px; border-radius: 999px; overflow: hidden; border: 2px solid rgba(255,196,0,.5); margin: 0 auto; background: #17140b; position: relative; }
.rail .th img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.rail .num { position: absolute; left: 50%; transform: translateX(-50%); bottom: -6px; min-width: 30px; height: 30px; padding: 0 9px; border-radius: 999px; background: var(--jaune); color: var(--noir); font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.rail .lb { font-size: 17.5px; font-weight: 700; color: #fff; line-height: 1.24; padding: 0 6px; letter-spacing: -0.015em; }
.rail .slot { height: 26px; margin-top: 22px; }  /* même hauteur partout : les libellés restent alignés */
.rail .mk { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .05em; border-radius: 999px; padding: 3px 9px; }
.rail .mk.key { background: var(--jaune); color: var(--noir); }
.rail .mk.opt { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); color: var(--txt-soft); }
.rail .ends { display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; color: #6d6650; margin-top: 14px; padding: 0 24px; }

/* ── caches posés sur une capture : numéro de téléphone, QR de liaison ── */
.masked { position: relative; }
.masked .mask { position: absolute; background: #14120c; border: 1px solid rgba(255,255,255,.12); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #6d6650; letter-spacing: .04em; }

/* ── les raisons, en lignes numérotées ── */
.why { display: flex; flex-direction: column; gap: 26px; max-width: 1560px; }
.why .w { display: flex; align-items: baseline; gap: 26px; }
.why .i { flex: 0 0 auto; font-size: 19px; font-weight: 800; color: #5d5748; letter-spacing: .06em; width: 42px; }
.why h3 { font-size: 38px; font-weight: 800; color: #fff; line-height: 1.14; letter-spacing: -0.03em; }
.why h3 .y { color: var(--jaune); }
.why p { font-size: 21px; color: var(--txt-soft); line-height: 1.4; margin-top: 8px; font-weight: 400; }
.why .w > div, .why .w > h3 { min-width: 0; }

/* ── avant / après en images : l'ancien écran à gauche, le nouveau à droite ── */
.ap { display: grid; grid-template-columns: 1fr 1.25fr; gap: 44px; align-items: center; }
.ap .side { position: relative; }
.ap .badge { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--txt-dim); margin-bottom: 16px; }
.ap .badge i { width: 9px; height: 9px; border-radius: 999px; background: #5d5748; display: block; }
.ap .side.now .badge { color: var(--jaune); }
.ap .side.now .badge i { background: var(--jaune); }
.ap .side.old .shot { opacity: .46; filter: grayscale(.55); }
.ap .side.now .shot { border-color: rgba(255,196,0,.4); box-shadow: 0 34px 80px rgba(0,0,0,.6); }
.ap .arrow-mid { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 38px; color: #6d6650; z-index: 4; }

/* ── le socle commun aux trois offres ── */
.socle { border-radius: 20px; border: 1px solid rgba(255,196,0,.3); background: linear-gradient(180deg, rgba(255,196,0,.07), rgba(255,196,0,.02)); padding: 26px 32px 30px; }
.socle .hd { font-size: 15px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--jaune); margin-bottom: 18px; }
.list.sockcols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px 36px; }
.list.sockcols li { font-size: 18px; padding-left: 26px; }
.list.sockcols li::before { top: 10px; width: 10px; }

/* ── entonnoir en barres proportionnelles ── */
.fnl { display: flex; flex-direction: column; gap: 20px; }
.fnl .row { display: flex; align-items: center; gap: 26px; }
.fnl .lbl { flex: 0 0 300px; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.015em; text-align: right; }
.fnl .bar { height: 62px; border-radius: 12px; background: linear-gradient(90deg, rgba(255,196,0,.85), rgba(255,196,0,.45)); display: flex; align-items: center; padding: 0 22px; min-width: 190px; }
.fnl .bar.dim { background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.06)); }
.fnl .bar .v { font-size: 26px; font-weight: 800; color: var(--noir); letter-spacing: -0.02em; }
.fnl .bar.dim .v { color: #fff; }
.fnl .side { font-size: 19px; color: var(--txt-dim); font-weight: 600; }

/* ── étapes numérotées ── */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 22px; align-items: flex-start; }
.step .idx { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 999px; background: var(--jaune); color: var(--noir); font-size: 23px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step .idx.o { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); color: #fff; }
.step h3 { font-size: 27px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.2; }
.step p { font-size: 19.5px; color: var(--txt-soft); line-height: 1.45; margin-top: 8px; }
.step p b { color: #fff; font-weight: 700; }

/* ── flux horizontal ── */
.flow { display: flex; align-items: stretch; gap: 14px; }
.flow .fx { flex: 1 1 0; background: var(--glass); border: 1px solid var(--glass-line); border-radius: 16px; padding: 24px 22px; min-width: 0; }
.flow .fx h4 { font-size: 21px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.flow .fx .who { font-size: 14px; font-weight: 800; color: var(--jaune); letter-spacing: .09em; text-transform: uppercase; margin-bottom: 11px; }
.flow .fx p { font-size: 17px; color: var(--txt-soft); line-height: 1.42; margin-top: 10px; }
.flow .ar { flex: 0 0 auto; align-self: center; color: #5d5748; font-size: 24px; }

/* ── cover / fin ── */
.slide.cover.active, .slide.end.active { display: flex; }
.cover, .end { flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 8vw; }
.cover .glyph { width: 132px; height: 132px; margin-bottom: 30px; }
.cover .wordmark { font-size: 96px; line-height: 1; }
.cover h1 { font-size: 60px; font-weight: 800; color: #fff; line-height: 1.06; letter-spacing: -0.03em; margin-top: 42px; max-width: 1400px; }
.cover h1 .y { color: var(--jaune); }
.cover .sub { font-size: 26px; color: var(--txt-soft); margin-top: 26px; max-width: 1150px; line-height: 1.45; }
.cover .meta { position: absolute; bottom: 96px; font-size: 17px; color: var(--txt-dim); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.end h1 { font-size: 78px; font-weight: 800; color: #fff; line-height: 1.06; letter-spacing: -0.03em; max-width: 1500px; }
.end h1 .y { color: var(--jaune); }
.end .sub { font-size: 27px; color: var(--txt-soft); margin-top: 30px; max-width: 1200px; line-height: 1.5; }
.end .glyph { width: 104px; height: 104px; margin-bottom: 30px; }

/* ── liens ── */
a.lk { color: var(--jaune); text-decoration: none; border-bottom: 1px solid rgba(255,196,0,.35); }
a.lk:hover { border-color: var(--jaune); }
a.btn { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; background: var(--jaune); color: var(--noir);
  font-size: 22px; font-weight: 800; letter-spacing: 0; border-radius: 999px; padding: 18px 38px; transition: transform .18s; }
a.btn:hover { transform: translateY(-2px); }
a.btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,.28); color: #fff; }

/* ══ MODE CINÉMATIQUE ══
   Un titre court à gauche, une image qui va jusqu'au bord à droite.
   C'est la mise en page par défaut des slides « Refonte de … » :
   Reda commente, la slide ne fait que montrer. */
.bleed { position: absolute; inset: 0; z-index: 2; }
.bleed .img { position: absolute; right: 0; top: 0; bottom: 0; width: 62%; overflow: hidden; }
.bleed .img img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.bleed .img.mid img { object-position: center; }   /* photos verticales : on garde le sujet, pas le coin */
.bleed .img.contain { display: flex; align-items: center; justify-content: center; padding: 70px 70px 70px 0; }
.bleed .img.contain img { height: auto; max-height: 100%; object-fit: contain; }
.bleed .img::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, #0a0906 0%, rgba(10,9,6,.92) 16%, rgba(10,9,6,.15) 52%, transparent 72%); }
.bleed .txt { position: absolute; left: 96px; top: 0; bottom: 0; width: 46%; display: flex; flex-direction: column; justify-content: center; z-index: 3; }
.bleed.rev .img { right: auto; left: 0; }
.bleed.rev .img::after { background: linear-gradient(270deg, #0a0906 0%, rgba(10,9,6,.92) 16%, rgba(10,9,6,.15) 52%, transparent 72%); }
.bleed.rev .txt { left: auto; right: 96px; text-align: right; align-items: flex-end; }

.mega { font-size: 82px; font-weight: 800; color: #fff; line-height: 1.02; letter-spacing: -0.035em; }
.mega .y { color: var(--jaune); }
.mega.sm { font-size: 66px; }
.note { font-size: 23px; color: var(--txt-soft); line-height: 1.45; margin-top: 24px; max-width: 640px; font-weight: 400; }
.note b { color: #fff; font-weight: 700; }
.bleed .txt .btn { margin-top: 38px; align-self: flex-start; }
.bleed.rev .txt .btn { align-self: flex-end; }

/* deux logos côte à côte : l'ancien s'efface, le nouveau prend la place */
.swap { display: flex; align-items: center; justify-content: center; gap: 70px; }
/* le JPEG de l'ancien logo est blanc sur noir : en « screen » son fond disparaît dans la slide */
.swap .old { opacity: .42; filter: grayscale(1); max-width: 480px; mix-blend-mode: screen; }
.swap .old img { width: 100%; display: block; }
.swap .ar { font-size: 46px; color: #4d4739; }
.swap .new { display: flex; flex-direction: column; align-items: center; }
.swap .new img { width: 104px; height: 104px; }
.swap .new .wordmark { font-size: 74px; margin-top: 18px; }

/* bandeau de chiffres nus, sans phrase */
.figs { display: flex; justify-content: space-between; gap: 40px; }
.figs .f { text-align: center; }
.figs .f .n { font-size: 128px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.05em; }
.figs .f .n.y { color: var(--jaune); }
.figs .f .l { font-size: 21px; color: var(--txt-soft); margin-top: 14px; font-weight: 600; letter-spacing: 0; }

/* deux constats face à face, une phrase chacun */
.faces { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.faces .fc { border-radius: 22px; overflow: hidden; position: relative; height: 560px; }
.faces .fc img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.faces .fc .ov { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 44px;
  background: linear-gradient(180deg, rgba(7,7,7,.15) 0%, rgba(7,7,7,.88) 62%, rgba(7,7,7,.96) 100%); }
.faces .fc .num { font-size: 17px; font-weight: 800; letter-spacing: .14em; color: var(--jaune); margin-bottom: 16px; }
.faces .fc h3 { font-size: 40px; font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -0.03em; }

/* ══════════════════════════════════════════════════════════════
   MOBILE : la scène disparaît, tout s'empile
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  html, body { height: auto; overflow: visible; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
  .deck { position: static; transform: none !important; width: 100%; height: auto; }
  .slide { position: relative; inset: auto; width: 100%; height: auto; min-height: 100svh; padding-bottom: 92px; }
  .wm { display: none !important; }

  .pad { height: auto; padding: 62px 18px 30px; display: block; }
  .brandbar { top: 20px; left: 18px; }
  .brandbar img { width: 26px; height: 26px; }
  .wordmark { font-size: 19px; }
  .pagenum { top: 22px; right: 18px; font-size: 14px; }

  .kicker { font-size: 12.5px; margin-bottom: 12px; letter-spacing: .1em; }
  h1.t { font-size: 30px; }
  h2.t { font-size: 26px; }
  .lead { font-size: 16.5px; margin-top: 14px; }
  .body { display: block; }
  .foot { font-size: 14.5px; margin-top: 18px; }

  .g2, .g3, .g4, .g5 { grid-template-columns: 1fr; gap: 12px; }
  .split { display: block; }
  .split > .lft, .split > .rgt { flex: none; }
  .split > .rgt { margin-top: 18px; }

  .card { padding: 18px; border-radius: 14px; }
  .card h3 { font-size: 18px; }
  .card p { font-size: 15px; margin-top: 8px; }
  .card .n { font-size: 12.5px; margin-bottom: 8px; }

  .kpi .num { font-size: 40px; }
  .kpi .lbl { font-size: 14px; margin-top: 6px; }

  .ba { grid-template-columns: 1fr; gap: 12px; }
  .ba .col { padding: 18px; border-radius: 14px; }
  .ba .tag { font-size: 11.5px; margin-bottom: 12px; }
  .ba li { font-size: 15.5px; }

  .list li { font-size: 15.5px; padding-left: 24px; }
  .list li::before { top: 9px; width: 10px; }
  .list.two { grid-template-columns: 1fr; gap: 11px; }

  .shot { border-radius: 11px; }
  .shot.crop, .shot.tall { height: auto; }
  .shot.crop img, .shot.tall img { height: auto; object-fit: contain; }
  .cap { font-size: 12.5px; margin-top: 8px; }

  /* frise : en colonnes de 2 */
  .rail { margin-top: 20px; }
  .rail .line { display: none; }
  .rail .nodes { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .rail .nd { padding-top: 0; }
  .rail .th { width: 64px; height: 64px; }
  .rail .num { height: 24px; min-width: 24px; font-size: 13px; bottom: -4px; }
  .rail .lb { font-size: 13.5px; }
  .rail .slot { height: auto; margin-top: 12px; }
  .rail .mk { font-size: 9px; padding: 2px 7px; }
  .rail .ends { display: none; }

  .why { gap: 16px; }
  .why .w { gap: 12px; }
  .why .i { font-size: 13px; width: 26px; }
  .why h3 { font-size: 19px; }
  .why p { font-size: 14.5px; margin-top: 5px; }

  .ap { grid-template-columns: 1fr; gap: 16px; }
  .ap .badge { font-size: 11.5px; margin-bottom: 9px; }
  .ap .arrow-mid { display: none; }

  .socle { padding: 16px 18px 18px; border-radius: 14px; }
  .socle .hd { font-size: 12px; margin-bottom: 12px; }
  .list.sockcols { grid-template-columns: 1fr; gap: 9px; }
  .list.sockcols li { font-size: 14.5px; }

  .fnl { gap: 12px; }
  .fnl .row { gap: 10px; }
  .fnl .lbl { flex: 0 0 108px; font-size: 14px; }
  .fnl .bar { height: 40px; padding: 0 12px; min-width: 96px; }
  .fnl .bar .v { font-size: 16px; }
  .fnl .side { font-size: 13px; }

  .steps { gap: 14px; }
  .step { gap: 13px; }
  .step .idx { width: 36px; height: 36px; font-size: 16px; }
  .step h3 { font-size: 18px; }
  .step p { font-size: 15px; margin-top: 5px; }

  .flow { display: block; }
  .flow .fx { margin-bottom: 10px; padding: 15px 16px; }
  .flow .fx h4 { font-size: 16.5px; }
  .flow .fx p { font-size: 14.5px; }
  .flow .ar { display: none; }

  .cover, .end { padding: 56px 20px 92px !important; min-height: 100svh; justify-content: center; }
  .cover .glyph { width: 76px; height: 76px; margin-bottom: 18px; }
  .cover .wordmark { font-size: 40px; }
  .cover h1 { font-size: 27px; margin-top: 24px; }
  .cover .sub { font-size: 16px; margin-top: 16px; }
  .cover .meta { position: static; margin-top: 30px; font-size: 12.5px; }
  .end .glyph { width: 62px; height: 62px; margin-bottom: 18px; }
  .end h1 { font-size: 30px; }
  .end .sub { font-size: 16px; margin-top: 18px; }

  .hud { bottom: 12px; gap: 8px; background: rgba(5,5,3,.86); border-radius: 999px; padding: 7px 12px; }
  .dots { display: none; }
  .pill { font-size: 12px; padding: 7px 14px; }

  /* mode cinématique : l'image repasse au-dessus du texte, en flux */
  .bleed { position: relative; inset: auto; display: flex; flex-direction: column-reverse; }
  .bleed .img { position: relative; right: auto; left: auto; width: 100%; height: auto; }
  .bleed .img img { height: auto; }
  .bleed .img.contain { padding: 0; }
  .bleed .img::after { display: none; }
  .bleed .txt { position: relative; left: auto; right: auto; width: 100%; padding: 62px 18px 22px; display: block; text-align: left; }
  .bleed.rev .txt { text-align: left; align-items: flex-start; }
  .mega, .mega.sm { font-size: 30px; }
  .note { font-size: 15.5px; margin-top: 12px; }
  .bleed .txt .btn, .bleed.rev .txt .btn { margin-top: 18px; }
  a.btn { font-size: 15px; padding: 12px 22px; }

  .swap { flex-direction: column; gap: 20px; }
  .swap .old { max-width: 240px; }
  .swap .ar { font-size: 26px; transform: rotate(90deg); }
  .swap .new img { width: 62px; height: 62px; }
  .swap .new .wordmark { font-size: 34px; margin-top: 10px; }

  .figs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .figs .f .n { font-size: 46px; }
  .figs .f .l { font-size: 13.5px; margin-top: 6px; }

  .faces { grid-template-columns: 1fr; gap: 12px; }
  .faces .fc { height: 240px; border-radius: 14px; }
  .faces .fc .ov { padding: 20px; }
  .faces .fc .num { font-size: 12px; margin-bottom: 8px; }
  .faces .fc h3 { font-size: 21px; }
}
