/* =========================================================
   Léo — styles des slides 1, 2, 4 à 9, 11, 12
   (3 et 10 sont dans style.css). Préfixe .sN- par slide.
   ========================================================= */

/* ---------- éléments partagés ---------- */
.chapters {
  position: absolute;
  top: calc(var(--pad-y) + 4px);
  right: var(--pad-x);
  display: flex;
  gap: 22px;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--ink-3);
}
.chapters span { position: relative; padding-bottom: 6px; }
.chapters .is-current { color: var(--accent); }
.chapters .is-current::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
}

.end-line {
  flex: 0 0 auto;
  margin-top: 26px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.015em;
  line-height: 1.15;
}
.foot-note {
  flex: 0 0 auto;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-3);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  color: var(--ink);
}
.chip small { color: var(--ink-3); margin-right: 6px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }

.avatar-lg { width: 220px; height: 220px; }
.avatar-md { width: 150px; height: 150px; }
.avatar-xs { width: 64px; height: 64px; }
.avatar-xs.avatar-ring { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent); }
.corner-leo { position: absolute; right: var(--pad-x); bottom: 56px; }

/* bulles de conversation (slides 8 et 11) */
.msg {
  position: relative;
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 17px;
  line-height: 1.4;
  border: 1px solid var(--line);
}
.msg.from { align-self: flex-start; background: var(--surface); border-bottom-left-radius: 4px; }
.msg.me   { align-self: flex-end;   border-color: var(--accent); border-bottom-right-radius: 4px; }
.msg .who { display: block; font-size: 12px; color: var(--ink-3); letter-spacing: .03em; margin-bottom: 4px; }

/* =========================================================
   SLIDE 1 — Bonjour
   ========================================================= */
.slide-1 { justify-content: center; }
.s1-wrap { max-width: 1100px; }
.s1-hello {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 128px;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 56px;
}
.s1-hello .letter {
  display: inline-block;
  opacity: 0;
  translate: 0 .3em;
}
.slide-1.is-active .s1-hello .letter {
  animation: letter-in var(--dur) var(--ease) forwards;
  animation-delay: calc(300ms + var(--i) * 90ms);
}
@keyframes letter-in { to { opacity: 1; translate: 0 0; } }

.s1-q { margin-top: 30px; }
.s1-q label {
  display: block;
  font-size: 24px;
  line-height: 1.35;
  max-width: 30ch;
  margin-bottom: 14px;
}
.s1-field { display: flex; align-items: baseline; gap: 14px; }
.s1-field input {
  width: 150px;
  font: inherit;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 44px;
  color: var(--accent);
  background: none;
  border: 0;
  border-bottom: 2px solid var(--line);
  padding: 2px 0 6px;
  outline: none;
  -moz-appearance: textfield;
}
.s1-field input::-webkit-outer-spin-button,
.s1-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.s1-field input::placeholder { color: var(--ink-3); opacity: .35; }
.s1-field input:focus { border-bottom-color: var(--accent); }
.s1-field .unit { font-size: 20px; color: var(--ink-2); }

.s1-range { display: flex; align-items: center; gap: 24px; max-width: 560px; }
.s1-range input[type="range"] {
  flex: 1 1 auto;
  accent-color: var(--accent);
  height: 32px;
  cursor: pointer;
}
.s1-range output {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  min-width: 3.2ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.s1-hint {
  margin-top: 48px;
  font-size: 14px;
  color: var(--ink-3);
  opacity: 0;
}
.slide-1.is-active .s1-hint { animation: fade-in 600ms var(--ease) 1500ms forwards; }
@keyframes fade-in { to { opacity: 1; } }

/* =========================================================
   SLIDE 2 — Le coût caché
   ========================================================= */
.s2-scene { flex: 1 1 auto; position: relative; margin-top: 30px; }
.chain {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.chain::before {
  content: '';
  position: absolute;
  left: 86px; right: 86px; top: 32px;
  height: 2px;
  background: var(--line);
}
.node {
  position: relative;
  flex: 1 1 0;
  text-align: center;
  padding: 0 6px;
}
.node::before {
  content: '';
  position: absolute;
  top: 32px; left: -50%; width: 100%;
  height: 2px;
  background: var(--accent);
  z-index: 0;
}
.node:first-child::before { display: none; }
.node .dot {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  font-family: var(--font-title);
  font-weight: 800;
  font-style: normal;
  font-size: 22px;
  color: var(--accent);
}
.node-wait .dot { border-style: dashed; border-color: var(--ink-3); }
.node b { display: block; font-weight: 500; font-size: 16px; line-height: 1.25; min-height: 40px; }
.node em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.node-wait em { color: var(--ink-2); font-size: 18px; }
.node small { display: block; font-size: 12px; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }

.s2-counters {
  display: flex;
  gap: 80px;
  margin-top: 64px;
}
.counter .label { display: block; font-size: 15px; color: var(--ink-2); margin-bottom: 6px; }
.counter strong {
  display: block;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.counter-you strong { color: var(--ink); }
.counter-you { padding-left: 80px; border-left: 1px solid var(--line); }

.s2-punch {
  margin-top: 40px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -.015em;
  line-height: 1.15;
}
.variant-a .lbl-b, .variant-a .punch-b { display: none; }
.variant-b .lbl-a, .variant-b .punch-a { display: none; }

/* =========================================================
   SLIDE 4 — Sommaire
   ========================================================= */
.s4-scene { position: relative; flex: 0 0 auto; height: 560px; margin-top: 10px; }
.s4-leo {
  position: absolute;
  left: 40px; top: 170px;
  display: flex; flex-direction: column; align-items: center;
}
.s4-leo figcaption {
  margin-top: 24px;
  font-family: var(--font-title); font-weight: 800; font-size: 26px;
}
.s4-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.s4-lines path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 900ms var(--ease);
}
.slide-4.is-1 .l1, .slide-4.is-2 .l2, .slide-4.is-3 .l3, .slide-4.is-4 .l4 { stroke-dashoffset: 0; }

.s4-blocks {
  position: absolute;
  left: 600px; right: 0; top: 0;
  display: flex; flex-direction: column; gap: 30px;
}
.s4-blocks li {
  display: flex; align-items: center; gap: 24px;
  height: 110px;
  padding: 0 32px;
  transition-delay: 350ms;
}
.s4-blocks .n {
  font-family: var(--font-title); font-weight: 800; font-size: 30px;
  color: var(--accent); width: 34px; flex: 0 0 auto;
}
.s4-blocks b { display: block; font-family: var(--font-title); font-weight: 800; font-size: 26px; letter-spacing: -.01em; }
.s4-blocks p { font-size: 17px; color: var(--ink-2); margin-top: 2px; }

/* =========================================================
   SLIDE 5 — Cibler
   ========================================================= */
.s5-scene { flex: 1 1 auto; margin-top: 26px; display: flex; flex-direction: column; }
.s5-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  transition: opacity 400ms var(--ease);
}
.s5-fields label { display: block; }
.s5-fields span { display: block; font-size: 13px; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.s5-fields input {
  width: 100%;
  font: inherit; font-size: 20px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
}
.s5-fields input::placeholder { color: var(--ink-2); }
.s5-fields input:focus { border-color: var(--accent); }
.slide-5.is-1 .s5-fields { opacity: 0; height: 0; overflow: hidden; margin: 0; pointer-events: none; }

.s5-chips { margin-bottom: 26px; }
.s5-count { font-size: 20px; color: var(--ink-2); margin-bottom: 18px; }
.s5-count strong {
  font-family: var(--font-title); font-weight: 800; font-size: 40px;
  color: var(--accent); margin-right: 10px; font-variant-numeric: tabular-nums;
}
.profiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.profiles li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0; translate: 0 10px;
  transition: opacity 400ms var(--ease), translate 400ms var(--ease);
}
.slide-5.is-1 .profiles li { opacity: 1; translate: 0 0; }
.profiles li:nth-child(1)  { transition-delay: 100ms; }
.profiles li:nth-child(2)  { transition-delay: 130ms; }
.profiles li:nth-child(3)  { transition-delay: 160ms; }
.profiles li:nth-child(4)  { transition-delay: 190ms; }
.profiles li:nth-child(5)  { transition-delay: 220ms; }
.profiles li:nth-child(6)  { transition-delay: 250ms; }
.profiles li:nth-child(7)  { transition-delay: 280ms; }
.profiles li:nth-child(8)  { transition-delay: 310ms; }
.profiles li:nth-child(9)  { transition-delay: 340ms; }
.profiles li:nth-child(10) { transition-delay: 370ms; }
.profiles li:nth-child(11) { transition-delay: 400ms; }
.profiles li:nth-child(12) { transition-delay: 430ms; }
.profiles i { width: 34px; height: 34px; border-radius: 50%; background: var(--line); flex: 0 0 auto; }
.profiles span { flex: 1 1 auto; display: flex; flex-direction: column; gap: 7px; }
.profiles b { display: block; height: 8px; border-radius: 4px; background: var(--line); }
.profiles b:last-child { width: 60%; opacity: .6; }

.s5-result { margin-top: 30px; font-size: 22px; line-height: 1.4; max-width: 44ch; }
.s5-result strong { font-family: var(--font-title); font-weight: 800; font-size: 32px; color: var(--accent); }

/* =========================================================
   SLIDE 6 — Écrire comme vous
   ========================================================= */
.s6-scene { flex: 1 1 auto; position: relative; margin-top: 10px; display: flex; flex-direction: column; }
.s6-rule {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -.015em;
  max-width: 30ch;
  margin-top: 90px;
  transition: font-size 600ms var(--ease), margin 600ms var(--ease), color 600ms var(--ease), max-width 600ms var(--ease);
}
.s6-rule span { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 4px; text-underline-offset: 5px; }
.slide-6.is-1 .s6-rule { font-size: 20px; margin-top: 0; max-width: 60ch; color: var(--ink-2); font-family: var(--font-body); font-weight: 500; }
.slide-6.is-1 .s6-rule span { color: var(--ink); }

.s6-schema {
  display: grid;
  grid-template-columns: 420px 160px 190px 1fr;
  align-items: center;
  gap: 0 20px;
  margin-top: 28px;
}
.s6-sources { display: flex; flex-direction: column; gap: 14px; }
.src { padding: 14px 18px; }
.src h3 { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 10px; }
.bubbles { display: flex; flex-direction: column; gap: 6px; }
.bub { display: block; height: 14px; border-radius: 7px; width: 55%; }
.bub.short { width: 38%; }
.bub.long { width: 72%; }
.bub.in { align-self: flex-start; background: var(--line); opacity: .45; }
.bub.out { align-self: flex-end; border: 1.5px solid var(--accent); background: rgb(0 240 255 / .08); }
.legend { font-size: 13px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.legend i { display: inline-block; width: 22px; height: 10px; border-radius: 5px; }
.legend .k-out { border: 1.5px solid var(--accent); }
.legend .k-in { background: var(--line); opacity: .5; margin-left: 10px; }

.s6-arrows { width: 160px; height: 300px; }
.s6-arrows path { fill: none; stroke: var(--accent); stroke-width: 2; }
.s6-arrows marker path { fill: var(--accent); stroke: none; }
.s6-leo { display: flex; justify-content: center; }

.s6-traits { display: flex; flex-direction: column; gap: 10px; padding-left: 16px; }
.s6-traits li {
  font-size: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.s6-traits li:last-child { border-bottom: 0; }
.s6-traits li::before { content: '→'; color: var(--accent); margin-right: 12px; font-weight: 500; }

.s6-msg { margin-top: 26px; padding: 18px 26px; max-width: 900px; }
.s6-msg p { font-size: 18px; line-height: 1.45; }
.s6-msg .sign { margin-top: 8px; font-family: var(--font-title); font-weight: 800; font-size: 18px; }
.slide-6 .end-line { margin-top: 22px; }

/* =========================================================
   SLIDE 7 — Tester ce qui marche (scène animée)
   Étapes : 1 fenêtre LinkedIn + Léo · 2 profil · 3 annonce repérée ·
   4 message A tapé par Léo · 5 message B, template générique, posé d'un coup · 6 relances
   ========================================================= */
.s7-stage {
  flex: 1 1 auto;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px 22px;
}
.s7-stage .card { padding: 0; overflow: hidden; }
.s7-stage .bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px; letter-spacing: .03em; color: var(--ink-3);
}
.s7-stage .bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.s7-stage .bar i:nth-child(3) { margin-right: 8px; }
.s7-stage .bar span { flex: 1 1 auto; }
.s7-stage .bar .tag { font-weight: 500; color: var(--accent); letter-spacing: .04em; }

.s7-browser { grid-column: 1; grid-row: 1 / 3; min-height: 318px; }
.s7-leo { display: flex; align-items: center; gap: 8px; font-family: var(--font-title); font-weight: 800; font-size: 14px; color: var(--ink); }
.avatar-xxs { width: 30px; height: 30px; }
.avatar-xxs.avatar-ring { --ring-gap: 2px; --ring: 4px; --ring-far: 8px; }

.s7-browser .profile {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
}
.s7-browser .ph-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--line); flex: 0 0 auto; }
.s7-browser .profile b { display: block; font-size: 18px; font-weight: 500; }
.s7-browser .profile span { display: block; font-size: 14px; color: var(--ink-2); margin-top: 2px; }
/* balayage : Léo parcourt le profil (trait cyan qui passe une fois) */
.s7-browser .scan {
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--accent); opacity: 0;
}
.s7-browser .profile.revealed .scan { animation: scan-x 1300ms var(--ease) 350ms 1 both; }
@keyframes scan-x { 0% { left: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: 100%; opacity: 0; } }

.s7-browser .post { position: relative; padding: 14px 18px 16px; }
.s7-browser .post-meta { display: block; font-size: 13px; color: var(--ink-3); margin-bottom: 6px; }
.s7-browser .post p { font-size: 16px; line-height: 1.45; }
.s7-browser .post::before {
  content: ''; position: absolute; inset: 6px 8px; border-radius: 10px;
  border: 1.5px solid var(--accent); opacity: 0;
  transition: opacity 500ms var(--ease) 700ms;
}
.s7-browser .post.revealed::before { opacity: 1; }
.s7-browser .found {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-title); font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
  opacity: 0; translate: 0 6px;
  transition: opacity 450ms var(--ease) 1000ms, translate 450ms var(--ease) 1000ms;
}
.s7-browser .post.revealed .found { opacity: 1; translate: 0 0; }
.s7-browser .found::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); margin-right: 8px; vertical-align: 1px;
  animation: live-breathe 2.2s ease-in-out infinite;
}

.s7-composer { grid-column: 2; grid-row: 1; }
.s7-composer .typed, .s7-short .typed {
  padding: 16px 18px 18px;
  font-size: 16px; line-height: 1.5;
  min-height: 96px;
}
/* curseur de frappe */
.typed.typing::after, .txt.typing::after {
  content: ''; display: inline-block; width: 2px; height: 1em; margin-left: 2px;
  background: var(--accent); vertical-align: -0.15em;
  animation: caret-breathe 900ms ease-in-out infinite;
}

.s7-short { grid-column: 2; grid-row: 2; }

.s7-timeline { grid-column: 1 / -1; grid-row: 3; margin-top: 4px; }
.tl-exit { font-size: 14px; color: var(--ink-2); margin-bottom: 12px; }
.tl-exit::before { content: '↑'; color: var(--accent); margin-right: 8px; }
.tl { position: relative; display: flex; justify-content: space-between; }
.tl::before { content: ''; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: var(--accent); }
.tl li { position: relative; flex: 1 1 0; text-align: center; }
.tl li:first-child { text-align: left; }
.tl li:last-child { text-align: right; }
.tl i { position: relative; display: block; width: 20px; height: 20px; margin: 0 auto 8px; border-radius: 50%; border: 2px solid var(--accent); background: var(--bg); }
.tl li:first-child i { margin-left: 0; background: var(--accent); }
.tl li:last-child i { margin-right: 0; }
.tl .stop i { border-radius: 3px; border-color: var(--ink-2); }
.tl b { display: block; font-family: var(--font-title); font-weight: 800; font-size: 18px; }
.tl span { display: block; font-size: 13px; color: var(--ink-3); }
.tl .stop b { color: var(--ink-2); }

/* =========================================================
   SLIDE 8 — Convertir
   ========================================================= */
.s8-scene { flex: 1 1 auto; margin-top: 20px; display: grid; grid-template-columns: 1fr 440px; gap: 28px; align-items: start; }
.chat { display: flex; flex-direction: column; gap: 12px; padding: 22px 24px; }
.s8-side { display: flex; flex-direction: column; gap: 20px; }
.s8-side .card { padding: 20px 22px; }
.s8-side h3 { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 12px; }
.notif {
  padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: var(--surface-2); font-size: 15px; line-height: 1.4;
}
.notif b { font-weight: 500; }
.s8-escal p { margin-top: 10px; font-size: 15px; color: var(--ink-2); }
.cal { display: flex; flex-direction: column; gap: 4px; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line); border-left: 3px solid var(--accent); background: var(--surface-2); }
.cal .cal-day { font-size: 13px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .04em; }
.cal b { font-family: var(--font-title); font-weight: 800; font-size: 24px; color: var(--accent); }
.cal span:last-child { font-size: 16px; }
.slide-8 .end-line { margin-top: 22px; }

/* =========================================================
   SLIDE 9 — Vous livrer prêt
   ========================================================= */
.s9-scene { flex: 1 1 auto; margin-top: 20px; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.crm { padding: 0 28px 6px; }
.crm-head { padding: 12px 0; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); border-bottom: 1px solid var(--line); }
.crm-block { padding: 12px 0; border-bottom: 1px solid var(--line); }
.crm-block:last-child { border-bottom: 0; }
.crm-block h4 { font-family: var(--font-title); font-weight: 800; font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.crm-block dl { display: grid; grid-template-columns: 120px 1fr; gap: 2px 12px; font-size: 16px; }
.crm-block dt { color: var(--ink-3); }
.crm-block p, .crm-block li { font-size: 16px; line-height: 1.4; }
.crm-block ul li::before { content: '·'; color: var(--accent); margin-right: 8px; font-weight: 800; }
.s9-side { padding-top: 8px; }
.crm-logos { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.crm-logos li { display: flex; align-items: center; gap: 14px; font-size: 20px; font-weight: 500; }
.crm-logos i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--surface);
  font-family: var(--font-title); font-weight: 800; font-style: normal; font-size: 18px;
}
.s9-side .small { font-size: 15px; color: var(--ink-2); margin-top: 6px; }
.slide-9 .end-line { margin-top: 18px; }

/* =========================================================
   SLIDE 11 — L'interface
   ========================================================= */
.dash {
  flex: 0 0 auto;
  height: 586px;
  min-height: 0;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 400px 1fr 300px;
  gap: 20px;
  align-items: stretch;
}
.dash .card { padding: 18px 20px; }
.dash h4 { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 14px; }
.dash-chat { display: flex; flex-direction: column; min-height: 0; }
.dash-msgs { flex: 1 1 auto; min-height: 0; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; }
.dash-chat .msg { max-width: 92%; font-size: 14px; line-height: 1.35; padding: 8px 12px; }
.dash-input { margin-top: 14px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; color: var(--ink-3); }
.dash-camp ul { display: flex; flex-direction: column; gap: 18px; }
.dash-camp li { display: grid; grid-template-columns: 1fr; gap: 6px; }
.dash-camp b { font-weight: 500; font-size: 17px; }
.dash-camp .bar { display: block; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.dash-camp .bar i { display: block; height: 100%; width: var(--p); background: var(--accent); }
.dash-camp em { font-style: normal; font-size: 14px; color: var(--ink-3); }
.dash-kpi { display: flex; flex-direction: column; gap: 14px; }
.kpi { flex: 1 1 0; display: flex; flex-direction: column; justify-content: center; }
.kpi strong { font-family: var(--font-title); font-weight: 800; font-size: 40px; color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.kpi span { font-size: 14px; color: var(--ink-2); margin-top: 4px; }

/* =========================================================
   SLIDE 12 — Conclusion
   ========================================================= */
.slide-12 { justify-content: center; }
.s12-logos {
  display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap;
  transition: opacity 500ms var(--ease);
}
.slide-12.is-4 .s12-logos { opacity: 0; pointer-events: none; }
.logo-slot {
  display: flex; align-items: center; justify-content: center;
  width: 220px; height: 90px;
  border: 1px dashed var(--line); border-radius: 12px;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3);
}
.logo-slot img { max-height: 48px; max-width: 170px; }
.s12-next {
  position: absolute;
  left: var(--pad-x); right: var(--pad-x); top: 50%;
  translate: 0 -50%;
}
.s12-next p { margin-top: 26px; font-size: 26px; line-height: 1.4; max-width: 34ch; }
.s12-target { margin-top: 32px; }

/* =========================================================
   MOUVEMENT — entrées décalées, traits, barres, mouvements permanents.
   Lent et discret : rien sous 400 ms, rien qui clignote.
   ========================================================= */

/* curseur de saisie : un trait qui respire dans le champ vide, disparaît au focus ou à la saisie */
.caret {
  position: absolute;
  width: 2px;
  background: var(--accent);
  border-radius: 1px;
  animation: caret-breathe 1.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes caret-breathe { 0%, 100% { opacity: 1; } 50% { opacity: .15; } }
input:focus + .caret, input:not(:placeholder-shown) + .caret { opacity: 0; animation: none; }

/* témoin d'activité (slide 11) */
.live {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: 2px;
  animation: live-breathe 2.6s ease-in-out infinite;
}
.live.idle { background: var(--ink-3); animation: none; }
.live.done { background: transparent; border: 1.5px solid var(--ink-3); animation: none; }
@keyframes live-breathe { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* puces : entrées décalées via --d posé par le JS */
.chip { opacity: 0; translate: 0 8px; transition: opacity 450ms var(--ease) var(--d, 0ms), translate 450ms var(--ease) var(--d, 0ms); }
.revealed .chip, .chips.revealed .chip { opacity: 1; translate: 0 0; }

/* --- 1 --- */
.s1-field { position: relative; }
.s1-field .caret { left: -8px; top: 8px; height: 44px; }
.s1-q .s1-field, .s1-q .s1-range { opacity: 0; translate: 0 8px; transition: opacity 500ms var(--ease) 250ms, translate 500ms var(--ease) 250ms; }
.s1-q.revealed .s1-field, .s1-q.revealed .s1-range { opacity: 1; translate: 0 0; }

/* --- 2 : segment qui se trace, rond qui s'ouvre, texte ensuite --- */
.node { translate: 0 0; }
.slide-2 .node { transition: opacity 240ms var(--ease), translate 240ms var(--ease); }
.node::before { scale: 0 1; transform-origin: left center; transition: scale 740ms var(--ease-draw); }
.node.revealed::before { scale: 1 1; }
.node .dot { scale: .55; transition: scale var(--dur-pop) var(--ease-out-back) 600ms, background-color var(--dur-state) var(--ease), border-color var(--dur-state) var(--ease); }
.node.revealed .dot { scale: 1; }
.node b, .node em, .node small { opacity: 0; translate: 0 6px; transition: opacity 450ms var(--ease) 660ms, translate 450ms var(--ease) 660ms; }
.node.revealed b, .node.revealed em, .node.revealed small { opacity: 1; translate: 0 0; }
.node.revealed em { transition-delay: 760ms; }
.s2-counters { opacity: 0; translate: 0 14px; transition: opacity 600ms var(--ease) 500ms, translate 600ms var(--ease) 500ms; }
.slide-2.is-active .s2-counters { opacity: 1; translate: 0 0; }
.foot-note { opacity: 0; transition: opacity 600ms var(--ease) 900ms; }
.slide.is-active .foot-note { opacity: 1; }

/* --- 4 : Léo puis les blocs, qui arrivent depuis le trait --- */
.s4-leo { opacity: 0; scale: .82; translate: 0 34px; transition: opacity 550ms var(--ease) 250ms, scale 750ms var(--ease-out-back) 250ms, translate 750ms var(--ease-out-back) 250ms; }
.slide-4.is-active .s4-leo { opacity: 1; scale: 1; translate: 0 0; }
.s4-blocks li { translate: -26px 0; }
.s4-blocks .n, .s4-blocks div { opacity: 0; transition: opacity 450ms var(--ease) 650ms; }
.s4-blocks li.revealed .n, .s4-blocks li.revealed div { opacity: 1; }

/* --- 5 --- */
.s5-fields label { position: relative; }
.s5-fields .caret { left: 15px; bottom: 16px; height: 22px; }
.s5-fields label { opacity: 0; translate: 0 10px; transition: opacity 500ms var(--ease), translate 500ms var(--ease); }
.slide-5.is-active .s5-fields label { opacity: 1; translate: 0 0; }
.slide-5.is-active .s5-fields label:nth-child(1) { transition-delay: 300ms; }
.slide-5.is-active .s5-fields label:nth-child(2) { transition-delay: 400ms; }
.slide-5.is-active .s5-fields label:nth-child(3) { transition-delay: 500ms; }
.slide-5.is-active .s5-fields label:nth-child(4) { transition-delay: 600ms; }
.slide-5.is-1 .s5-fields label { opacity: 0; transition-delay: 0ms; }
.s5-results.revealed .s5-count { transition-delay: 200ms; }
.corner-leo { opacity: 0; scale: .82; translate: 0 20px; transition: opacity 550ms var(--ease) 500ms, scale 750ms var(--ease-out-back) 500ms, translate 750ms var(--ease-out-back) 500ms; }
.slide.is-active .corner-leo { opacity: 1; scale: 1; translate: 0 0; }

/* --- 6 : messages envoyés qui s'allument, flèches qui se tracent, Léo, traits --- */
.s6-rule { opacity: 0; translate: 0 12px; transition: opacity 650ms var(--ease) 350ms, translate 650ms var(--ease) 350ms, font-size 600ms var(--ease), margin 600ms var(--ease), color 600ms var(--ease), max-width 600ms var(--ease); }
.slide-6.is-active .s6-rule { opacity: 1; translate: 0 0; }
.src { opacity: 0; translate: -16px 0; transition: opacity 500ms var(--ease), translate 500ms var(--ease); }
.slide-6.is-1 .src { opacity: 1; translate: 0 0; }
.slide-6.is-1 .src:nth-child(2) { transition-delay: 150ms; }
.legend { opacity: 0; transition: opacity 500ms var(--ease) 1500ms; }
.slide-6.is-1 .legend { opacity: 1; }
.bub.out { border-color: var(--line); background: transparent; transition: border-color 500ms var(--ease), background-color 500ms var(--ease); }
.slide-6.is-1 .bub.out { border-color: var(--accent); background: rgb(0 240 255 / .08); }
.slide-6.is-1 .src:nth-child(1) .bub.out:nth-child(2) { transition-delay: 500ms; }
.slide-6.is-1 .src:nth-child(1) .bub.out:nth-child(4) { transition-delay: 700ms; }
.slide-6.is-1 .src:nth-child(2) .bub.out:nth-child(1) { transition-delay: 900ms; }
.slide-6.is-1 .src:nth-child(2) .bub.out:nth-child(3) { transition-delay: 1100ms; }
.s6-arrows path:not(marker path) { stroke-dasharray: 260; stroke-dashoffset: 260; transition: stroke-dashoffset 900ms var(--ease) 1200ms; }
.slide-6.is-1 .s6-arrows path { stroke-dashoffset: 0; }
.s6-arrows marker path { opacity: 0; transition: opacity 300ms var(--ease) 1950ms; }
.slide-6.is-1 .s6-arrows marker path { opacity: 1; }
.s6-leo { opacity: 0; scale: .82; translate: 0 34px; transition: opacity 550ms var(--ease) 1700ms, scale 750ms var(--ease-out-back) 1700ms, translate 750ms var(--ease-out-back) 1700ms; }
.slide-6.is-1 .s6-leo { opacity: 1; scale: 1; translate: 0 0; }
.s6-traits li { opacity: 0; translate: -12px 0; transition: opacity 450ms var(--ease), translate 450ms var(--ease); }
.s6-traits.revealed li { opacity: 1; translate: 0 0; }
.s6-traits.revealed li:nth-child(1) { transition-delay: 100ms; }
.s6-traits.revealed li:nth-child(2) { transition-delay: 250ms; }
.s6-traits.revealed li:nth-child(3) { transition-delay: 400ms; }
.s6-traits.revealed li:nth-child(4) { transition-delay: 550ms; }
.s6-msg .sign { opacity: 0; transition: opacity 450ms var(--ease) 600ms; }
.s6-msg.revealed .sign { opacity: 1; }

/* --- 7 : la scène se construit bloc par bloc, la ligne de temps se trace --- */
.s7-browser { translate: -24px 0; }
.s7-composer, .s7-short { translate: 24px 0; }
.s7-browser.revealed, .s7-composer.revealed, .s7-short.revealed { translate: 0 0; }
.s7-browser .profile, .s7-browser .post { opacity: 0; translate: 0 12px; transition: opacity 550ms var(--ease), translate 550ms var(--ease); }
.s7-browser .profile.revealed, .s7-browser .post.revealed { opacity: 1; translate: 0 0; }
.s7-templates li { opacity: 0; translate: -8px 0; transition: opacity 400ms var(--ease), translate 400ms var(--ease); }
.s7-templates.revealed li { opacity: 1; translate: 0 0; }
.s7-templates.revealed li:nth-child(1) { transition-delay: 100ms; }
.s7-templates.revealed li:nth-child(2) { transition-delay: 190ms; }
.s7-templates.revealed li:nth-child(3) { transition-delay: 280ms; }
.s7-templates.revealed li:nth-child(4) { transition-delay: 370ms; }
.tl::before { scale: 0 1; transform-origin: left center; transition: scale 1400ms var(--ease) 200ms; }
.s7-timeline.revealed .tl::before { scale: 1 1; }
.tl li { opacity: 0; transition: opacity 450ms var(--ease); }
.s7-timeline.revealed .tl li { opacity: 1; }
.s7-timeline.revealed .tl li:nth-child(1) { transition-delay: 200ms; }
.s7-timeline.revealed .tl li:nth-child(2) { transition-delay: 500ms; }
.s7-timeline.revealed .tl li:nth-child(3) { transition-delay: 800ms; }
.s7-timeline.revealed .tl li:nth-child(4) { transition-delay: 1100ms; }
.s7-timeline.revealed .tl li:nth-child(5) { transition-delay: 1400ms; }
.tl-exit { opacity: 0; transition: opacity 500ms var(--ease) 900ms; }
.s7-timeline.revealed .tl-exit { opacity: 1; }

/* --- 8 : bulles qui arrivent de leur côté, cartes latérales depuis la droite --- */
.chat { opacity: 0; translate: 0 16px; transition: opacity 600ms var(--ease) 300ms, translate 600ms var(--ease) 300ms; }
.slide-8.is-active .chat { opacity: 1; translate: 0 0; }
.chat .msg.from { translate: -18px 8px; scale: .98; }
.chat .msg.me   { translate: 18px 8px; scale: .98; }
.chat .msg { transition: opacity var(--dur) var(--ease), translate var(--dur) var(--ease), scale var(--dur) var(--ease); }
.chat .msg.revealed { translate: 0 0; scale: 1; }
.s8-side .card { translate: 24px 0; }
.s8-side .card.revealed { translate: 0 0; }
.notif, .cal { opacity: 0; translate: 0 8px; transition: opacity 500ms var(--ease) 350ms, translate 500ms var(--ease) 350ms; }
.revealed .notif, .revealed .cal { opacity: 1; translate: 0 0; }
.s8-escal p { opacity: 0; transition: opacity 500ms var(--ease) 750ms; }
.s8-escal.revealed p { opacity: 1; }

/* --- 9 : la fiche se remplit ligne par ligne, les CRM arrivent à l'entrée --- */
.crm { opacity: 0; translate: 0 16px; transition: opacity 600ms var(--ease) 300ms, translate 600ms var(--ease) 300ms; }
.slide-9.is-active .crm { opacity: 1; translate: 0 0; }
.crm-block { translate: 0 0; }
.crm-block h4 { opacity: 0; translate: -8px 0; transition: opacity 400ms var(--ease), translate 400ms var(--ease); }
.crm-block.revealed h4 { opacity: 1; translate: 0 0; }
.crm-block dt, .crm-block dd, .crm-block p, .crm-block li { opacity: 0; translate: -10px 0; transition: opacity 450ms var(--ease), translate 450ms var(--ease); }
.crm-block.revealed dt, .crm-block.revealed dd, .crm-block.revealed p, .crm-block.revealed li { opacity: 1; translate: 0 0; }
.crm-block.revealed :is(dt, dd, p, li):nth-child(1) { transition-delay: 200ms; }
.crm-block.revealed :is(dt, dd, p, li):nth-child(2) { transition-delay: 290ms; }
.crm-block.revealed :is(dt, dd, p, li):nth-child(3) { transition-delay: 380ms; }
.crm-block.revealed :is(dt, dd, p, li):nth-child(4) { transition-delay: 470ms; }
.crm-block.revealed :is(dt, dd, p, li):nth-child(5) { transition-delay: 560ms; }
.crm-block.revealed :is(dt, dd, p, li):nth-child(6) { transition-delay: 650ms; }
.crm-block.revealed :is(dt, dd, p, li):nth-child(7) { transition-delay: 740ms; }
.crm-block.revealed :is(dt, dd, p, li):nth-child(8) { transition-delay: 830ms; }
.crm-logos li, .s9-side .small { opacity: 0; translate: 12px 0; transition: opacity 500ms var(--ease), translate 500ms var(--ease); }
.slide-9.is-active .crm-logos li, .slide-9.is-active .s9-side .small { opacity: 1; translate: 0 0; }
.slide-9.is-active .crm-logos li:nth-child(1) { transition-delay: 500ms; }
.slide-9.is-active .crm-logos li:nth-child(2) { transition-delay: 620ms; }
.slide-9.is-active .crm-logos li:nth-child(3) { transition-delay: 740ms; }
.slide-9.is-active .s9-side .small { transition-delay: 900ms; }

/* --- 11 : les trois zones entrent en décalé, les barres se remplissent, les compteurs montent --- */
.dash > .card, .dash-kpi { opacity: 0; translate: 0 18px; transition: opacity 600ms var(--ease), translate 600ms var(--ease); }
.slide-11.is-active .dash > .card, .slide-11.is-active .dash-kpi { opacity: 1; translate: 0 0; }
.slide-11.is-active .dash-chat { transition-delay: 250ms; }
.slide-11.is-active .dash-camp { transition-delay: 400ms; }
.slide-11.is-active .dash-kpi  { transition-delay: 550ms; }
.dash-camp .bar i { width: 0; transition: width 1300ms var(--ease); }
.slide-11.is-active .dash-camp .bar i { width: var(--p); }
.slide-11.is-active .dash-camp li:nth-child(2) .bar i { transition-delay: 900ms; }
.slide-11.is-active .dash-camp li:nth-child(3) .bar i { transition-delay: 1050ms; }
.slide-11.is-active .dash-camp li:nth-child(4) .bar i { transition-delay: 1200ms; }

/* --- 12 : logos qui se posent, puis l'écran nu --- */
.logo-slot { scale: .96; translate: 0 10px; transition: opacity var(--dur-pop) var(--ease), translate var(--dur-pop) var(--ease), scale var(--dur-pop) var(--ease); }
.logo-slot.revealed { scale: 1; translate: 0 0; }
.s12-next .title, .s12-next p { opacity: 0; translate: 0 12px; transition: opacity 600ms var(--ease), translate 600ms var(--ease); }
.s12-next.revealed .title { opacity: 1; translate: 0 0; transition-delay: 350ms; }
.s12-next.revealed p { opacity: 1; translate: 0 0; transition-delay: 550ms; }
.s12-next.revealed .chip { transition-delay: calc(800ms + var(--d, 0ms)); }

/* =========================================================
   AJOUTS — slide 1 (bouton), 5 (signal), 8 (frappe, agenda),
   9 (logos, moment final), 11 (aide, suggestions), 12 (logos)
   ========================================================= */

/* --- 1 : bouton Continuer, apparaît 3 s après la saisie --- */
.s1-go {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 44px;
  padding: 14px 22px 14px 26px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: var(--font-title); font-weight: 800; font-size: 20px;
  color: var(--ink);
  opacity: 0; translate: 0 14px; pointer-events: none;
  transition: opacity 600ms var(--ease), translate 600ms var(--ease), background-color var(--dur-state);
}
.s1-go kbd {
  font: inherit; font-family: var(--font-body); font-weight: 500; font-size: 13px;
  padding: 4px 10px; border-radius: 8px;
  border: 1px solid var(--line-strong); color: var(--ink-2);
}
.s1-go.show { opacity: 1; translate: 0 0; pointer-events: auto; }
.s1-go:hover { background: rgb(0 240 255 / .08); }
.s1-go:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.deck[data-slide="1"] .ready-hint, .deck[data-slide="12"] .ready-hint { display: none; }

/* --- 5 : le signal recherché --- */
.s5-signal { margin-top: 16px; font-size: 16px; color: var(--ink-2); transition: opacity 400ms var(--ease); }
.s5-signal b { font-weight: 500; color: var(--ink); }
.slide-5.is-1 .s5-signal { display: none; }
.chip-signal { border-color: var(--accent); }
.chip-signal small { color: var(--accent); }

/* --- bulles tapées en direct : indicateur de saisie puis texte --- */
.msg .dots { display: none; gap: 5px; align-items: center; height: 22px; }
.msg .dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-3); animation: dot-wave 1.2s ease-in-out infinite; }
.msg .dots i:nth-child(2) { animation-delay: 150ms; }
.msg .dots i:nth-child(3) { animation-delay: 300ms; }
@keyframes dot-wave { 0%, 100% { opacity: .35; translate: 0 0; } 50% { opacity: 1; translate: 0 -3px; } }
.msg.pending .dots { display: inline-flex; }
.msg.pending .txt { display: none; }
.msg .txt { display: inline; }

/* --- 8 : notification avec logo, agenda qui reçoit le rendez-vous --- */
.notif { display: flex; align-items: flex-start; gap: 12px; }
.notif-logo { width: 26px; height: 26px; flex: 0 0 auto; margin-top: 2px; }
.s8-cal .week { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 4px; }
.s8-cal .day {
  position: relative; min-height: 124px;
  border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 8px 6px;
  font-size: 12px; color: var(--ink-3);
}
.s8-cal .day b { display: block; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.s8-cal .day i { display: block; font-style: normal; font-family: var(--font-title); font-weight: 800; font-size: 16px; color: var(--ink-2); margin-top: 2px; }
.s8-cal .day.is-target i { color: var(--ink); }
.s8-cal .event {
  position: absolute; left: 6px; right: 6px; bottom: 6px;
  padding: 6px 8px; border-radius: 6px;
  background: rgb(0 240 255 / .10); border: 1.5px solid var(--accent);
  opacity: 0; scale: .5; transform-origin: center;
}
.s8-cal .event b { font-size: 12px; color: var(--accent); text-transform: none; letter-spacing: 0; }
.s8-cal .event span { display: block; font-size: 12px; color: var(--ink); margin-top: 1px; }
.s8-cal.revealed .event { animation: event-pop 700ms var(--ease-out-back) 500ms forwards; }
@keyframes event-pop { to { opacity: 1; scale: 1; } }
/* onde qui s'écarte deux fois, puis le rendez-vous respire */
.s8-cal .event::after {
  content: ''; position: absolute; inset: -3px; border-radius: 8px;
  border: 2px solid var(--accent); opacity: 0; pointer-events: none;
}
.s8-cal.revealed .event::after { animation: event-ping 1.1s var(--ease) 1000ms 2; }
@keyframes event-ping { 0% { opacity: .9; scale: 1; } 100% { opacity: 0; scale: 1.35; } }
.s8-cal.revealed .event { animation: event-pop 700ms var(--ease-out-back) 500ms forwards, event-breathe 3.2s ease-in-out 3.4s infinite; }
@keyframes event-breathe { 0%, 100% { box-shadow: 0 0 0 0 rgb(0 240 255 / 0); } 50% { box-shadow: 0 0 0 6px rgb(0 240 255 / .14); } }
.s8-cal .day.is-target { transition: border-color var(--dur-state) var(--ease) 600ms; }
.s8-cal.revealed .day.is-target { border-color: var(--accent); }
.s8-cal .cal-line { margin-top: 12px; font-size: 14px; color: var(--ink-2); opacity: 0; transition: opacity 500ms var(--ease) 1400ms; }
.s8-cal.revealed .cal-line { opacity: 1; }

/* --- 9 : vrais logos, et la phrase finale comme un moment --- */
.s9-label { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.crm-logos li { display: flex; align-items: center; gap: 14px; font-size: 20px; font-weight: 500; min-height: 44px; }
.crm-logos img { display: block; height: 40px; width: auto; }
.crm-logos li.alone img { height: 46px; }
.crm-logos img.tile { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; }
.s9-airtable { display: flex; align-items: center; gap: 10px; }
.s9-airtable img { width: 22px; height: 22px; }
.crm-head { display: flex; align-items: center; gap: 10px; }
.crm-head .sync { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: live-breathe 2.6s ease-in-out infinite; }

.slide-9 .s9-scene { transition: opacity 520ms var(--ease), scale 520ms var(--ease), filter 520ms var(--ease); }
/* la fiche disparaît complètement avant que la phrase arrive : plus aucune superposition */
.slide-9.is-4 .s9-scene { opacity: 0; scale: .975; pointer-events: none; }
.s9-final {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--pad-x);
  pointer-events: none;
}
.s9-final p {
  font-family: var(--font-title); font-weight: 800;
  font-size: 68px; line-height: 1.05; letter-spacing: -.025em;
  text-align: center; max-width: 18ch;
}
.s9-final p span { position: relative; white-space: nowrap; }
.s9-final p span::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 6px; border-radius: 3px;
  background: var(--accent); scale: 0 1; transform-origin: left center;
  transition: scale 800ms var(--ease) 900ms;
}
.s9-final.revealed p span::after { scale: 1 1; }
.s9-final { translate: 0 30px; transition-delay: 480ms; }
.s9-final.revealed { translate: 0 0; }

/* --- 11 : aide et suggestions --- */
.dash-help { font-size: 13px; color: var(--ink-2); margin: -8px 0 12px; line-height: 1.4; }
.dash-suggest { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 12px; }
.dash-suggest span {
  font-size: 12px; padding: 5px 11px; border-radius: 999px; white-space: nowrap;
  border: 1px solid var(--line-strong); color: var(--ink-2);
}
.dash-suggest span:first-child { border-color: var(--accent); color: var(--ink); }
.dash-input { position: relative; }
.dash-input .caret { left: 14px; top: 50%; translate: 0 -50%; height: 18px; opacity: .6; }
.dash-chat .msg .txt { font-size: 16px; }

/* --- 12 : logos clients --- */
.logo-slot { border: 0; width: auto; min-width: 200px; padding: 0 12px; }
.logo-slot img { display: block; max-height: 64px; max-width: 220px; width: auto; }
.logo-slot img.tile { height: 72px; width: 72px; border-radius: 16px; object-fit: cover; }

/* =========================================================
   MOUVEMENT PERMANENT — discret, lent, sur chaque slide
   ========================================================= */
/* numéro de slide : un point qui respire */
.kicker::after {
  content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-left: 10px; vertical-align: 2px;
  animation: live-breathe 2.8s ease-in-out infinite;
}
/* tête de la barre de progression */
.progress .bar { overflow: visible; }
.progress .bar i { position: relative; }
.progress .bar i::after {
  content: ''; position: absolute; right: -3px; top: -2px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: live-breathe 2.6s ease-in-out infinite;
}
/* indicateur « suite » quand la slide est jouée */
.ready-hint {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  opacity: 0; translate: -6px 0;
  transition: opacity 500ms var(--ease), translate 500ms var(--ease);
}
.ready-hint b { font-weight: 500; animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { translate: 0 0; } 50% { translate: 4px 0; } }
.deck.is-ready .ready-hint { opacity: 1; translate: 0 0; }
.deck.is-ready #btnNext { color: var(--accent); opacity: 1; }

/* indicateur « appuyez » quand la slide marque une pause volontaire (slide 9) */
.hold-hint {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  opacity: 0; translate: -6px 0;
  transition: opacity 500ms var(--ease), translate 500ms var(--ease);
}
.hold-hint b { font-weight: 500; animation: nudge 1.8s ease-in-out infinite; }
.deck.is-holding .hold-hint { opacity: 1; translate: 0 0; }
.deck.is-holding #btnNext { color: var(--accent); opacity: 1; }

/* slide 2 : un point de lumière parcourt les segments allumés */
.node.revealed::after {
  content: ''; position: absolute; top: 30px; left: -50%; width: 22px; height: 4px; border-radius: 2px;
  background: var(--accent); opacity: 0;
  animation: travel 3.6s linear 900ms infinite;
}
.node:first-child::after { display: none; }
@keyframes travel { 0% { left: -50%; opacity: 0; } 12% { opacity: .9; } 88% { opacity: .9; } 100% { left: calc(50% - 22px); opacity: 0; } }

/* slide 7 : point de lumière sur la ligne de temps */
.tl::after {
  content: ''; position: absolute; top: 8px; left: 0; width: 26px; height: 4px; border-radius: 2px;
  background: var(--accent); opacity: 0; z-index: 1;
}
.s7-timeline.revealed .tl::after { animation: travel-full 5s linear 2000ms infinite; }
@keyframes travel-full { 0% { left: 0; opacity: 0; } 8% { opacity: .9; } 92% { opacity: .9; } 100% { left: calc(100% - 26px); opacity: 0; } }

/* slides 4 et 6 : un flux qui circule sur les traits une fois tracés */
.s4-lines .flow, .s6-arrows .flow {
  fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 10 150; stroke-dashoffset: 0; opacity: 0;
  transition: opacity 600ms var(--ease) 1000ms;
  animation: dash-flow 3.2s linear infinite;
}
.slide-4.is-1 .f1, .slide-4.is-2 .f2, .slide-4.is-3 .f3, .slide-4.is-4 .f4 { opacity: .85; }
.slide-6.is-1 .s6-arrows .flow { opacity: .85; transition-delay: 2200ms; }
.s6-arrows .flow { stroke-dasharray: 8 110; }
@keyframes dash-flow { to { stroke-dashoffset: -160; } }

/* slide 5 : les profils respirent en vague */
.profiles i { animation: soft-pulse 3.2s ease-in-out infinite; }
.profiles li:nth-child(3n+2) i { animation-delay: 1.1s; }
.profiles li:nth-child(3n) i { animation-delay: 2.2s; }
@keyframes soft-pulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

/* slide 10 : point « non lu » à côté de l'expéditeur */
.mail-from { display: flex; align-items: center; gap: 8px; }
.mail-from .unread { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: live-breathe 2.6s ease-in-out infinite; }

/* slide 12 : les logos flottent doucement */
.logo-slot.revealed { animation: float-y 6s ease-in-out infinite; }
.logo-slot:nth-child(2).revealed { animation-delay: 2s; }
.logo-slot:nth-child(3).revealed { animation-delay: 4s; }
@keyframes float-y { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }

/* slide 3 : la carte respire imperceptiblement une fois posée */
.slide-3.is-2 .s3-card { animation: float-y 7s ease-in-out 1s infinite; }
/* slide 1 : Bonjour flotte */
.slide-1.is-active .s1-hello { animation: float-y 8s ease-in-out 2s infinite; }


/* =========================================================
   MOBILE (< 900px)
   ========================================================= */
@media (max-width: 899px) {
  .chapters { position: static; margin-top: 12px; flex-wrap: wrap; gap: 12px 16px; font-size: 12px; }
  .end-line { font-size: 22px; }
  .corner-leo { display: none; }

  /* 1 */
  .s1-hello { font-size: 72px; margin-bottom: 28px; }
  .s1-q label { font-size: 19px; }
  .s1-field input { font-size: 34px; width: 110px; }
  .s1-range output { font-size: 28px; }

  /* 2 */
  .chain { flex-direction: column; gap: 14px; }
  .chain::before { display: none; }
  .node { text-align: left; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 4px 14px; }
  .node::before { display: none; }
  .node .dot { width: 44px; height: 44px; margin: 0; font-size: 18px; grid-row: 1 / 3; }
  .node b { min-height: 0; font-size: 16px; }
  .node em { margin: 0; font-size: 18px; text-align: right; }
  .node small { grid-column: 3; text-align: right; }
  .s2-counters { flex-direction: column; gap: 18px; margin-top: 30px; }
  .counter strong { font-size: 44px; }
  .counter-you { padding-left: 0; border-left: 0; }
  .s2-punch { font-size: 24px; margin-top: 24px; }

  /* 4 */
  .s4-scene { display: flex; flex-direction: column; gap: 24px; }
  .s4-leo { position: static; }
  .s4-lines { display: none; }
  .s4-blocks { position: static; gap: 14px; }
  .s4-blocks li { height: auto; padding: 16px 18px; }
  .s4-blocks b { font-size: 20px; }
  .s4-blocks p { font-size: 15px; }

  /* 5 */
  .s5-fields { grid-template-columns: 1fr; gap: 12px; }
  .profiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .profiles li:nth-child(n+9) { display: none; }
  .s5-result { font-size: 18px; }

  /* 6 */
  .s6-rule { font-size: 26px; margin-top: 20px; }
  .s6-schema { grid-template-columns: 1fr; gap: 20px; }
  .s6-arrows { display: none; }
  .s6-traits { padding-left: 0; }
  .s6-traits li { font-size: 17px; padding: 8px 0; }
  .s6-msg p { font-size: 16px; }

  /* 7 (scène) */
  .s7-stage { display: flex; flex-direction: column; gap: 14px; }
  .s7-browser { min-height: 0; }
  .s7-browser, .s7-composer, .s7-short { translate: 0 0; }
  .tl b { font-size: 15px; }
  .tl span { display: none; }

  /* ajouts */
  .s1-go { font-size: 17px; padding: 12px 18px 12px 20px; }
  .s8-cal .day { min-height: 84px; padding: 6px; }
  .s9-final p { font-size: 34px; }
  .logo-slot { min-width: 40%; }
  .logo-slot img { max-height: 44px; max-width: 150px; }
  .kicker::after { width: 5px; height: 5px; }

  /* 8 */
  .s8-scene { grid-template-columns: 1fr; gap: 16px; }
  .chat { padding: 16px; }
  .msg { max-width: 92%; font-size: 15px; }

  /* 9 */
  .s9-scene { grid-template-columns: 1fr; gap: 20px; }
  .crm { padding: 0 18px 6px; }
  .crm-block dl { grid-template-columns: 90px 1fr; font-size: 15px; }
  .crm-block p, .crm-block li { font-size: 15px; }

  /* 11 */
  .dash { grid-template-columns: 1fr; }
  .dash-kpi { display: grid; grid-template-columns: 1fr 1fr; }

  /* 12 */
  .logo-slot { width: 44%; height: 64px; }
  .s12-next { position: static; translate: none; }
  .s12-next p { font-size: 20px; }
}
