/* =====================================================================
   synIAps — Présentation premium · feuille de style
   Deck navy foncé, cartes blanches 24px, accents teal → green.
   Fonts : Sora (display) · Plus Jakarta Sans (texte) · JetBrains Mono.
   ===================================================================== */

/* ---------- 1. Variables marque ---------- */
:root {
  --navy:       #0E2A47;
  --navy-deep:  #0A2138;
  --ink:        #15304D;
  --slate:      #5C6E7E;
  --teal:       #14B5C6;
  --green:      #5EC23F;
  --mint:       #F2FAFB;
  --card:       #FFFFFF;

  /* tons d'appoint (usage restreint : alertes, dette, barre « risque ») */
  --amber:      #E8A23D;
  --danger:     #E2574C;

  /* texte sur fond foncé */
  --text:       #E7F0F5;
  --text-dim:   rgba(231, 240, 245, .68);
  --hair-light: rgba(255, 255, 255, .12);

  --grad:       linear-gradient(100deg, var(--teal), var(--green));
  --grad-135:   linear-gradient(135deg, var(--teal), var(--green));

  --r-card:     24px;
  --r-pill:     999px;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --shadow-card:  0 1px 0 rgba(255,255,255,.5) inset, 0 20px 44px -26px rgba(6, 16, 30, .6);
  --shadow-lift:  0 1px 0 rgba(255,255,255,.5) inset, 0 30px 56px -28px rgba(6, 16, 30, .72);
  --ease:         cubic-bezier(.2, .7, .2, 1);
  --maxw:         1180px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1200px 820px at 82% -12%, rgba(20, 181, 198, .12), transparent 60%),
    radial-gradient(1050px 760px at -12% 112%, rgba(94, 194, 63, .10), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- 3. Accents typographiques partagés ---------- */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ia {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* icônes — jeu de traits, héritent la couleur du contexte */
.ic {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- 4. UI fixe : progression / marque / dots / hud ---------- */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  background: rgba(255, 255, 255, .07);
  z-index: 60;
}
.progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(20, 181, 198, .6);
  transition: width .12s linear;
}

.brand-fixed {
  position: fixed;
  top: 16px;
  left: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 6px 4px;
  transition: opacity .25s var(--ease);
}
.brand-fixed:hover { opacity: .82; }
.brand-fixed__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -.01em;
  color: var(--text);
  text-shadow: 0 1px 14px rgba(6, 16, 30, .45);
}

.dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.dots__item {
  position: relative;
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .24);
  cursor: pointer;
  transition: background .3s var(--ease), height .3s var(--ease), border-radius .3s var(--ease);
}
.dots__item:hover { background: rgba(255, 255, 255, .55); }
.dots__item.is-active {
  height: 26px;
  border-radius: 6px;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(20, 181, 198, .55);
}
.dots__tip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  margin-right: 12px;
  white-space: nowrap;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 9px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, .5);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.dots__item:hover .dots__tip,
.dots__item:focus-visible .dots__tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hud {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hud__count {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-dim);
  letter-spacing: .02em;
}
.hud__count b { color: #fff; font-weight: 600; }
.hud__btns { display: flex; gap: 8px; }
.hud__btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--hair-light);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s var(--ease), transform .2s var(--ease), opacity .2s;
}
.hud__btn:hover { background: rgba(255, 255, 255, .15); transform: translateY(-2px); }
.hud__btn .ic { width: 20px; height: 20px; }
.hud__btn:disabled { opacity: .3; cursor: default; transform: none; }

/* ---------- 5. Deck & slides ---------- */
.deck { display: block; }

.slide {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
}

.slide__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(18px, 2.6vw, 32px);
  padding: clamp(92px, 12vh, 130px) clamp(20px, 5vw, 56px);
}

/* orbes décoratives */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.orb--a { width: 440px; height: 440px; top: -90px; right: -70px;
  background: radial-gradient(circle, #14B5C6, transparent 70%); }
.orb--b { width: 400px; height: 400px; bottom: -110px; left: -90px;
  background: radial-gradient(circle, #5EC23F, transparent 70%); }
.orb--c { width: 540px; height: 540px; top: 28%; left: 50%; transform: translateX(-50%); opacity: .16;
  background: radial-gradient(circle, #14B5C6, transparent 70%); }

/* ---------- 6. Texte de section ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .55em;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.eyebrow i { font-style: normal; color: var(--teal); font-weight: 600; }

.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 24ch;
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 62ch;
}

.kicker {
  margin: 4px auto 0;
  max-width: 50ch;
  text-align: center;
  font-size: clamp(1.04rem, 1.8vw, 1.32rem);
  line-height: 1.5;
  color: var(--text-dim);
}
.kicker b { color: #fff; font-weight: 600; }
.kicker--big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: #fff;
  letter-spacing: -.01em;
}

.muted { color: var(--slate); opacity: .85; }

/* ---------- 7. Boutons & pills ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  padding: .85em 1.45em;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}
.btn .ic { width: 1.15em; height: 1.15em; }
.btn--primary {
  background: var(--grad);
  color: var(--navy-deep);
  box-shadow: 0 14px 34px -12px rgba(20, 181, 198, .65);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(20, 181, 198, .8); }
.btn--ghost {
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  border-color: rgba(255, 255, 255, .2);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.btn--lg { padding: 1.02em 1.7em; font-size: 1.04rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .85rem;
  font-weight: 500;
  padding: .52em .95em;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--hair-light);
  color: var(--text);
}
.pill .ic { width: 1.05em; height: 1.05em; color: var(--teal); }

/* ---------- 8. Carte de base & briques ---------- */
.card {
  background: var(--card);
  color: var(--ink);
  border: 1px solid rgba(14, 42, 71, .06);
  border-radius: var(--r-card);
  padding: clamp(20px, 2.4vw, 30px);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card p { color: var(--slate); font-size: .96rem; line-height: 1.55; }
.card p + p { margin-top: .6em; }

.card__title {
  display: flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 .35em;
}
.card__title .ic { width: 1.15em; height: 1.15em; color: var(--teal); flex: none; }

.chip-ic {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--teal);
  border: 1px solid rgba(20, 181, 198, .18);
}
.chip-ic .ic { width: 26px; height: 26px; }
.chip-ic--grad {
  background: var(--grad-135);
  color: #fff;
  border: none;
  box-shadow: 0 12px 26px -14px rgba(20, 181, 198, .75);
}

/* listes à coches */
.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.ticks li {
  position: relative;
  padding-left: 28px;
  color: var(--slate);
  font-size: .96rem;
  line-height: 1.45;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad-135);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 5.5px; top: 6px;
  width: 7px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.ticks--ok li::before { background: linear-gradient(135deg, var(--green), #82d164); }

/* ---------- 9. Grilles ---------- */
.grid { display: grid; gap: clamp(14px, 1.7vw, 22px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(244px, 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(186px, 1fr)); }

.grid--quote,
.grid--econ {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
}
.split { display: flex; flex-direction: column; gap: clamp(14px, 1.7vw, 22px); }

/* ---------- 10. Slide 1 · Hero ---------- */
.hero, .cta { align-items: center; text-align: center; }
.hero .lead, .cta .lead { margin-inline: auto; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: #fff;
  max-width: 18ch;
  margin: 0;
}
.hero__lead { color: var(--text-dim); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .hero__cta, .cta .hero__cta { justify-content: center; }

.hero__pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-hint .ic { width: 20px; height: 20px; animation: bob 1.9s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- 11. Slide 2 · Quote / split ---------- */
.quote { position: relative; }
.quote__mark { width: 30px; height: 30px; color: var(--teal); opacity: .55; margin-bottom: 10px; }
.quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.04rem, 1.55vw, 1.28rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--slate);
}
.card--ok   { border-top: 3px solid var(--green); }
.card--warn { border-top: 3px solid var(--danger); }
.card--ok .card__title .ic   { color: var(--green); }
.card--warn .card__title .ic { color: var(--danger); }

/* ---------- 12. Slide 3 · Risques ---------- */
.card--risk { border-top: 3px solid var(--amber); }
.card--risk .chip-ic { background: #fdf3e4; color: var(--amber); border-color: rgba(232, 162, 61, .22); }
.card--risk .card__title .ic { color: var(--amber); }

/* ---------- 13. Slide 4/5/10 · Cartes produit ---------- */
.feature .chip-ic, .module header .chip-ic { margin-bottom: 16px; }
.feature:hover, .module:hover, .vcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.module header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.module header .chip-ic { margin-bottom: 0; }
.num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(21, 48, 77, .22);
}

.vcard { text-align: left; }
.vcard .chip-ic { margin-bottom: 14px; width: 46px; height: 46px; }
.vcard .chip-ic .ic { width: 23px; height: 23px; }
.vcard .card__title { font-size: 1.04rem; }
.vcard p { font-size: .9rem; }

/* ---------- 14. Slide 6 · Flow membre ---------- */
.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.7vw, 22px);
}
.flow::before {
  content: "";
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 2px;
  background: var(--grad);
  opacity: .3;
  z-index: 0;
}
.flow__step { position: relative; padding-top: 30px; }
.flow__step .chip-ic { margin-bottom: 14px; }
.flow__n {
  position: absolute;
  top: -17px;
  left: 26px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  background: var(--grad-135);
  box-shadow: 0 10px 22px -8px rgba(20, 181, 198, .7);
}

/* ---------- 15. Slide 7/8 · Row cards ---------- */
.row-card { display: flex; align-items: flex-start; gap: 16px; }
.row-card .chip-ic { flex: none; }
.row-card > div { flex: 1; }
.row-card .card__title { margin-bottom: .2em; }

/* ---------- 16. Slide 8 · Barres « coût total » ---------- */
.bars { display: block; }
.bars__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.bars__head > span:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--ink);
}
.tag {
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--mint);
  border: 1px solid rgba(14, 42, 71, .08);
  padding: .35em .65em;
  border-radius: 8px;
}
.bargroup__label {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 7px;
}
.bar {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  background: var(--mint);
  border: 1px solid rgba(14, 42, 71, .06);
  border-radius: 12px;
  overflow: hidden;
  margin: 8px 0;
}
.bar__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  border-radius: 12px 0 0 12px;
  transition: width 1.2s var(--ease);
}
.bars.reveal-in .bar__fill { width: var(--w); }
.bar__fill--muted  { background: linear-gradient(90deg, #9db1c0, #c3d0da); }
.bar__fill--danger { background: linear-gradient(90deg, var(--danger), var(--amber)); }
.bar__fill--grad   { background: var(--grad); }
.bar__cap {
  position: relative;
  z-index: 1;
  margin-left: 12px;
  max-width: calc(100% - 24px);
  font-family: var(--font-mono);
  font-size: .71rem;
  line-height: 1.3;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(2px);
  padding: .28em .62em;
  border-radius: 8px;
}
.bargap { height: 16px; }

/* ---------- 17. Slide 9 · Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.phase { display: flex; flex-direction: column; gap: 12px; }
.phase__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: .78rem;
  color: var(--teal);
  background: var(--mint);
  border: 1px solid rgba(20, 181, 198, .22);
  padding: .42em .85em;
  border-radius: var(--r-pill);
}
.phase__badge .ic { width: 1.1em; height: 1.1em; }
.phase .card__title { margin: 0; }

/* ---------- 18. Slide 11 · Comparatif ---------- */
.slide--vs .title { max-width: 28ch; }
.cmp {
  width: 100%;
  border: 1px solid var(--hair-light);
  border-radius: var(--r-card);
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(6px);
}
.cmp__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.28fr;
  align-items: center;
}
.cmp__row + .cmp__row { border-top: 1px solid rgba(255, 255, 255, .08); }
.cmp__crit {
  padding: 15px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .96rem;
  color: #fff;
}
.cmp__cell {
  padding: 15px 20px;
  font-size: .94rem;
  line-height: 1.4;
  color: var(--text-dim);
}
.cmp__cell--a { color: rgba(231, 240, 245, .56); }
.cmp__cell--b {
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 181, 198, .12), rgba(94, 194, 63, .09));
  border-left: 1px solid rgba(255, 255, 255, .08);
}
.cmp__head { background: rgba(255, 255, 255, .05); }
.cmp__head .cmp__crit,
.cmp__head .cmp__cell {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .76rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #fff;
}
.cmp__head .cmp__cell--b {
  background: linear-gradient(180deg, rgba(20, 181, 198, .24), rgba(94, 194, 63, .16));
}

/* ---------- 19. Slide 12 · Contact / CTA ---------- */
.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}
.contact__who { display: flex; align-items: center; gap: 16px; }
.contact__avatar {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  background: var(--grad-135);
  box-shadow: 0 12px 26px -12px rgba(20, 181, 198, .7);
}
.contact__name { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.contact__role { margin: 2px 0 0; font-size: .9rem; color: var(--slate); }
.contact__links { display: flex; flex-direction: column; gap: 9px; }
.contact__link {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  text-decoration: none;
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.contact__link .ic { width: 1.1em; height: 1.1em; color: var(--teal); }
.contact__link:hover { color: var(--teal); }

.cta__foot {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- 20. Révélation au défilement ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].reveal-in { opacity: 1; transform: none; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 960px) {
  .dots { display: none; }
}
@media (max-width: 880px) {
  .grid--quote,
  .grid--econ { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .flow::before { display: none; }
  .timeline { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .cmp__row { grid-template-columns: 1fr; }
  .cmp__head { display: none; }
  .cmp__crit {
    background: rgba(255, 255, 255, .05);
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--teal);
  }
  .cmp__cell {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
  }
  .cmp__cell--b { border-left: none; border-top: 1px solid rgba(255, 255, 255, .08); }
  .cmp__cell::before {
    content: attr(data-label);
    flex: none;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--teal);
  }
}
@media (max-width: 560px) {
  .hud { right: 16px; bottom: 16px; gap: 10px; }
  .hud__btn { width: 40px; height: 40px; }
  .contact { flex-direction: column; align-items: flex-start; }
}

/* ---------- 22. Préférence : mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .bars .bar__fill { width: var(--w); }
}
