/* ============================================================
   DEEN CODE — VSL Design System
   Palette tirée du logo : bleu électrique, noir, blanc
   ============================================================ */

/* Keyboard hint overlay (auto-hides) */
.fs-hint {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(5, 11, 26, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(10, 124, 255, 0.25);
  padding: 10px 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.4s ease;
}
.fs-hint.hidden { opacity: 0; pointer-events: none; }
.fs-hint .key {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(10, 124, 255, 0.18);
  border: 1px solid rgba(10, 124, 255, 0.45);
  color: var(--white, #fff);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin: 0 2px;
}
.fs-hint .dim { opacity: 0.4; }

:root {
  /* CORE — tech/analytique (défaut) */
  --blue: #0A7CFF;
  --blue-bright: #1F8DFF;
  --cyan: #00D4FF;
  --bg-0: #000000;
  --bg-1: #030712;
  --bg-2: #0A1628;
  --white: #FFFFFF;
  --dim: rgba(255, 255, 255, 0.62);
  --dimmer: rgba(255, 255, 255, 0.32);
  --grid-line: rgba(10, 124, 255, 0.03);
  --border: rgba(10, 124, 255, 0.22);
  --border-bright: rgba(10, 124, 255, 0.55);

  /* SEMANTIC — chaleur (famille, foi, personnel) */
  --amber: #FFB547;
  --amber-bright: #FFC875;
  --amber-soft: rgba(255, 181, 71, 0.15);

  /* SEMANTIC — croissance (preuve, argent, résultat) */
  --mint: #3DD68C;
  --mint-bright: #6CE4A7;
  --mint-soft: rgba(61, 214, 140, 0.15);

  /* SEMANTIC — alerte/négatif (croix, peurs, douleurs, blocages) */
  --rose: #FF5D6C;
  --rose-bright: #FF7A8A;
  --rose-soft: rgba(255, 93, 108, 0.15);
}

/* Helper classes — accents sémantiques inline */
.warm   { color: var(--amber-bright); text-shadow: 0 0 22px rgba(255, 181, 71, 0.35); }
.growth { color: var(--mint-bright);  text-shadow: 0 0 22px rgba(61, 214, 140, 0.35); }
.cold   { color: var(--blue-bright);  text-shadow: 0 0 22px rgba(10, 124, 255, 0.35); }
.alert  { color: var(--rose-bright);  text-shadow: 0 0 22px rgba(255, 93, 108, 0.35); }

/* Reveal.js override — full-bleed dark canvas */
html, body, .reveal, .reveal .slides {
  background: var(--bg-0);
  color: var(--white);
}

.reveal {
  font-family: "Space Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.reveal .slides {
  text-align: left;
}

.reveal section {
  width: 1920px;
  height: 1080px;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Each slide uses .slide as inner wrapper */
.slide {
  width: 1920px;
  height: 1080px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #0A1628 0%, #050B1A 50%, #000000 100%);
  color: var(--white);
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 120px 120px;
  pointer-events: none;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(10, 124, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

/* ================= HUD top (minimalist wordmark) ================= */
.hud-top {
  position: absolute;
  left: 0; right: 0; top: 0;
  display: flex;
  align-items: center;
  padding: 44px 72px;
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
  justify-content: space-between;
}
.wordmark {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.22em;
  display: inline-flex;
  align-items: center;
}
.wordmark .deen { color: var(--blue); }
.wordmark .code { color: var(--white); }
.wordmark .sep { color: var(--blue); opacity: 0.5; margin: 0 4px; }

/* ================= SLIDE 1 — HOOK ================= */
.hook {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1500px;
}
.eyebrow-1 {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-1::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--cyan);
}
.hook h1 {
  font-size: 136px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 36px;
}
.hook .sub {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dim);
  letter-spacing: -0.015em;
}
.hook .sub .pivot {
  color: var(--blue-bright);
  font-weight: 500;
  text-shadow: 0 0 28px rgba(10, 124, 255, 0.45);
}
.accent-mark {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 420px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 124, 255, 0.35) 50%, transparent 100%);
}
.accent-mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 24px rgba(10, 124, 255, 0.65);
  transform: translateY(-50%);
}

/* ================= SLIDE 2 — MÉTHODE ================= */
.stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.eyebrow-2 {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px; color: var(--cyan);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow-2::before, .eyebrow-2::after {
  content: "";
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.stage h2 {
  font-size: 104px; font-weight: 700; letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 28px;
  text-align: center;
}
.stage h2 .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 28px rgba(10, 124, 255, 0.35);
}
.meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px; color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  margin-bottom: 120px;
  text-transform: uppercase;
}
.meta .arrow { color: var(--blue); }
.circuit {
  width: 1600px; height: 300px;
  position: relative;
}
.nodes {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  z-index: 2;
}
.node {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  position: relative;
}
.hex {
  width: 108px; height: 108px;
  background:
    radial-gradient(circle at 50% 50%, rgba(10, 124, 255, 0.22) 0%, rgba(10, 124, 255, 0.06) 60%, transparent 100%),
    #050B1A;
  border: 1.5px solid var(--border-bright);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  box-shadow:
    0 0 0 8px rgba(10, 124, 255, 0.04),
    0 0 32px rgba(10, 124, 255, 0.4),
    inset 0 0 24px rgba(10, 124, 255, 0.15);
  position: relative;
  text-align: center;
}
.hex::before {
  content: "";
  position: absolute; inset: -14px;
  border: 1px solid rgba(10, 124, 255, 0.12);
  border-radius: 50%;
}
.hex .small {
  font-size: 11px;
  color: var(--dimmer);
  display: block;
  margin-top: 2px;
  font-weight: 400;
}
.node .label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-top: 10px;
}
.traces {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}
.punchline {
  margin-top: 90px;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
}

/* ================= SLIDE 3 — OFFER STACK ================= */
.stack {
  position: absolute; inset: 0;
  padding: 120px 96px 96px;
  display: flex; flex-direction: column;
}
.head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.eyebrow-3 {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px; color: var(--cyan);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow-3::before {
  content: ""; width: 48px; height: 1px; background: var(--cyan);
}
.stack h3 {
  font-size: 88px; font-weight: 700; letter-spacing: -0.04em;
  line-height: 0.95; color: var(--white);
}
.stack h3 .hl { color: var(--blue-bright); text-shadow: 0 0 24px rgba(10, 124, 255, 0.35); }
.price {
  text-align: right;
  font-family: "JetBrains Mono", monospace;
}
.price .big {
  font-size: 56px; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; display: block; line-height: 1;
}
.price .small {
  font-size: 15px; color: var(--dim);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 10px; display: block;
}
.grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(135deg, rgba(10, 124, 255, 0.04) 0%, rgba(0, 0, 0, 0.6) 100%), #030712;
  border: 1px solid var(--border);
  padding: 24px 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 48px; height: 1px;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}
.card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(10, 124, 255, 0.85);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.card .title {
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 10px;
}
.card .desc {
  font-size: 14px; font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
}
.card.featured {
  background: linear-gradient(135deg, rgba(10, 124, 255, 0.16) 0%, rgba(10, 124, 255, 0.02) 100%), #050B1A;
  border-color: var(--border-bright);
  box-shadow: inset 0 0 40px rgba(10, 124, 255, 0.08);
}
.card.featured .tag { color: var(--blue-bright); }
.footer {
  margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.cta {
  display: inline-flex; align-items: center; gap: 18px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: var(--bg-0);
  padding: 24px 36px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 36px rgba(10, 124, 255, 0.35);
  position: relative;
}
.cta .arrow { font-size: 24px; }
.cta-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   BATCH 1 — Slides 1-10 (opening hook + qualification)
   ============================================================ */

/* Shared utility: eyebrow mono cyan */
.eyebrow-cyan {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow-cyan::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--cyan);
}

/* SLIDE 2 — Three-beat routine (Tu te lèves / travailler / rentres) */
.slide--three-beat .content {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.slide--three-beat .beat {
  display: flex;
  align-items: baseline;
  gap: 36px;
}
.slide--three-beat .beat .time {
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  color: rgba(10, 124, 255, 0.85);
  letter-spacing: 0.12em;
  min-width: 96px;
  text-align: right;
}
.slide--three-beat .beat .text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 72px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.slide--three-beat .line-separator {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 340px;
  background: linear-gradient(180deg, transparent, rgba(10, 124, 255, 0.3), transparent);
  transform: translate(calc(-50% - 432px), -50%);
}

/* SLIDE 3 — Split contrast (Ta famille là / toi pas là) */
.slide--split .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
}
.slide--split .line-top {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 108px;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 64px;
}
.slide--split .divider {
  width: 360px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 124, 255, 0.45), transparent);
  margin-bottom: 64px;
}
.slide--split .line-bottom {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 84px;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  font-style: italic;
}
.slide--split .ghost {
  color: rgba(10, 124, 255, 0.65);
  font-style: italic;
  font-weight: 500;
}

/* SLIDE 4 — Identity conflict (Ramadan / Jumu'ah) */
.slide--conflict .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.slide--conflict .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(10, 124, 255, 0.8);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: -40px;
}
.slide--conflict .statement {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 58px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
  position: relative;
  padding-left: 36px;
}
.slide--conflict .statement::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 6px;
  height: calc(100% - 28px);
  background: linear-gradient(180deg, var(--blue), transparent);
}
.slide--conflict .statement .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 16px rgba(10, 124, 255, 0.35);
}

/* SLIDE 5 — Inner thought */
.slide--thought .content {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  text-align: center;
}
.slide--thought .setup {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  margin-bottom: 56px;
}
.slide--thought .inner {
  position: relative;
  padding: 0 80px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 76px;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.1;
}
.slide--thought .inner::before,
.slide--thought .inner::after {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-size: 180px;
  font-weight: 700;
  color: rgba(10, 124, 255, 0.4);
  line-height: 0.7;
  font-style: normal;
}
.slide--thought .inner::before {
  content: "\201C";
  left: -20px;
  top: 30px;
}
.slide--thought .inner::after {
  content: "\201D";
  right: -20px;
  bottom: -12px;
}

/* SLIDE 6 — Direct address */
.slide--address .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.slide--address .chevron {
  display: flex;
  gap: 12px;
}
.slide--address .chevron span {
  display: inline-block;
  width: 18px; height: 18px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
  box-shadow: 4px 4px 12px rgba(10, 124, 255, 0.35);
}
.slide--address .chevron span:nth-child(1) { opacity: 0.35; }
.slide--address .chevron span:nth-child(2) { opacity: 0.7; }
.slide--address .chevron span:nth-child(3) { opacity: 1; }
.slide--address h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 132px;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  text-align: center;
}
.slide--address h1 .pivot {
  color: var(--blue-bright);
  text-shadow: 0 0 28px rgba(10, 124, 255, 0.45);
}

/* SLIDE 7 — Honest transparency pause */
.slide--honest .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 42px;
  padding: 0 120px;
}
.slide--honest .mark {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slide--honest .statement {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 84px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  text-align: center;
  max-width: 1500px;
}
.slide--honest .scan-bars {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.slide--honest .scan-bars span {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(10, 124, 255, 0.7), transparent);
}

/* SLIDES 8-10 — Qualification list (checkmarks IN) */
.slide--qualify .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1500px;
}
.slide--qualify .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.slide--qualify h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 68px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 56px;
}
.slide--qualify h2 .accent-punctuation {
  color: var(--blue);
  font-weight: 400;
  margin-left: 6px;
}
.slide--qualify ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
  margin: 0;
}
.slide--qualify li {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 44px;
  letter-spacing: -0.015em;
  color: var(--white);
  line-height: 1.25;
}
.slide--qualify li .check {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1.5px solid var(--blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 0 16px rgba(10, 124, 255, 0.3);
}
.slide--qualify li .check svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-bright);
  fill: none;
  stroke-width: 2.5;
}
.slide--qualify li em {
  font-style: normal;
  color: var(--blue-bright);
  font-weight: 500;
}

/* SLIDE 10 — Final qualify punch */
.slide--qualify-final .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
}
.slide--qualify-final .hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(10, 124, 255, 0.75);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.slide--qualify-final .statement {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 112px;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  text-align: center;
  max-width: 1600px;
}
.slide--qualify-final .statement .strike {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.65);
}
.slide--qualify-final .statement .strike::after {
  content: "";
  position: absolute;
  left: -6px; right: -6px;
  top: 54%;
  height: 6px;
  background: var(--blue-bright);
  box-shadow: 0 0 16px rgba(10, 124, 255, 0.6);
  transform: rotate(-2deg);
}

/* ============================================================
   ILLUSTRATION COMPONENTS
   ============================================================ */

/* Office scene — slide 1 right side */
.illu-office {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 680px;
  pointer-events: none;
  overflow: hidden;
}
.illu-office::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(270deg, rgba(10, 124, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0A1628 0%, #000 100%);
}
.illu-office svg { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 640px; height: 760px; }
.illu-office .scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,
    rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px,
    transparent 1px, transparent 4px);
  mix-blend-mode: overlay;
}

/* Three-beat icons — slide 2 */
.beat-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(10, 124, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(10, 124, 255, 0.14) 0%, transparent 80%);
  flex-shrink: 0;
}
.beat-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--blue-bright); stroke-width: 1.5; }
.slide--three-beat .beat { gap: 28px; }
.slide--three-beat .beat .time { min-width: 88px; }

/* Conflict slide — Islamic geometric motif */
.illu-geo {
  position: absolute;
  right: 100px; top: 50%;
  transform: translateY(-50%);
  width: 440px;
  height: 440px;
  opacity: 0.35;
  pointer-events: none;
}
.illu-geo svg { width: 100%; height: 100%; }

/* Horizon / door silhouette — slide 5 */
.illu-horizon {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 240px;
  pointer-events: none;
  opacity: 0.85;
}
.illu-horizon svg { width: 100%; height: 100%; }

/* Qualify list icons (slide 8-9) */
.slide--qualify li .check-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border: 1.5px solid var(--blue-bright);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  box-shadow: 0 0 16px rgba(10, 124, 255, 0.25);
  background: radial-gradient(circle at center, rgba(10, 124, 255, 0.18) 0%, transparent 80%);
}
.slide--qualify li .check-icon svg {
  width: 28px; height: 28px;
  stroke: var(--blue-bright);
  fill: none;
  stroke-width: 1.75;
}
.slide--qualify li { gap: 32px; }

/* Slide 1 — adjust hook constraints when illustration is present */
.slide--hook.has-illu .hook { max-width: 1100px; }
.slide--hook.has-illu .accent-mark { display: none; }

/* ============================================================
   PHOTO TREATMENT — natural image + brand framing
   La photo garde ses couleurs. La cohérence vient du cadre tech
   (HUD corners + vignette edges + caption mono).
   ============================================================ */
.photo-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #050B1A;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* léger grade cinéma : saturation douce, contraste discret */
  filter: saturate(0.92) contrast(1.05);
}
/* Vignette edges — fade vers le noir pour blend avec le fond */
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}
/* HUD corner markers (top-left + bottom-right) */
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(10, 124, 255, 0.22);
  pointer-events: none;
  z-index: 3;
}
.photo-frame .hud-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--blue-bright);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(10, 124, 255, 0.35);
}
.photo-frame .hud-corner.tl { top: 16px; left: 16px; border-top: 1.5px solid; border-left: 1.5px solid; }
.photo-frame .hud-corner.tr { top: 16px; right: 16px; border-top: 1.5px solid; border-right: 1.5px solid; }
.photo-frame .hud-corner.bl { bottom: 16px; left: 16px; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.photo-frame .hud-corner.br { bottom: 16px; right: 16px; border-bottom: 1.5px solid; border-right: 1.5px solid; }
.duotone--framed {
  border: 1px solid rgba(10, 124, 255, 0.35);
}
.duotone--framed::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 64px; height: 1px;
  background: var(--blue-bright);
  box-shadow: 0 0 12px rgba(10, 124, 255, 0.6);
  z-index: 2;
}
/* Subtle grain overlay to match the rest of the design */
.duotone--grain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
}

/* ============================================================
   BATCH 2 — Slides 11-25 (qualification NON + intro Hassan)
   ============================================================ */

/* SLIDES 11-12 — Qualify OUT (mirror of qualify IN with X marks) */
.slide--qualify-out .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1500px;
}
.slide--qualify-out .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.slide--qualify-out h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 68px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 56px;
}
.slide--qualify-out h2 .accent-punctuation {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  margin-left: 6px;
}
.slide--qualify-out ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
  margin: 0;
}
.slide--qualify-out li {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 44px;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.25;
}
.slide--qualify-out li .x-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255, 93, 108, 0.45);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-soft);
  box-shadow: 0 0 14px rgba(255, 93, 108, 0.2);
}
.slide--qualify-out li .x-icon svg {
  width: 22px; height: 22px;
  stroke: var(--rose-bright);
  fill: none;
  stroke-width: 2.2;
}
.slide--qualify-out li em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

/* SLIDE 14 — Pivot "Si tu es encore là, continue" */
.slide--pivot .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 120px;
  gap: 40px;
}
.slide--pivot h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 128px;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 0.95;
}
.slide--pivot h1 .pivot {
  color: var(--blue-bright);
  text-shadow: 0 0 28px rgba(10, 124, 255, 0.45);
}
.slide--pivot .sub {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* SLIDE 15 — Portrait intro Hassan (photo placeholder + text) */
.slide--portrait-intro .content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 780px 1fr;
}
.slide--portrait-intro .portrait-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030712;
  overflow: hidden;
}
.slide--portrait-intro .portrait-frame {
  position: relative;
  width: 520px;
  height: 680px;
  border: 1px solid rgba(10, 124, 255, 0.3);
  background: radial-gradient(ellipse at 50% 30%, rgba(10, 124, 255, 0.12) 0%, transparent 60%), #050B1A;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.slide--portrait-intro .portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide--portrait-intro .portrait-frame .silhouette {
  width: 380px;
  height: 500px;
  display: block;
}
.slide--portrait-intro .portrait-frame .silhouette svg { width: 100%; height: 100%; }
.slide--portrait-intro .portrait-frame .corner {
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--blue-bright);
  box-shadow: 0 0 12px rgba(10, 124, 255, 0.4);
  z-index: 2;
}
.slide--portrait-intro .portrait-frame .corner.tl { top: -1px; left: -1px; border-top: 1.5px solid; border-left: 1.5px solid; }
.slide--portrait-intro .portrait-frame .corner.br { bottom: -1px; right: -1px; border-bottom: 1.5px solid; border-right: 1.5px solid; }
.slide--portrait-intro .portrait-frame .placeholder-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(10, 124, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slide--portrait-intro .portrait-frame .placeholder-tag::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue);
}
.slide--portrait-intro .text-col {
  padding: 180px 120px 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide--portrait-intro .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.slide--portrait-intro .eyebrow::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--cyan);
}
.slide--portrait-intro h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 108px;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 40px;
}
.slide--portrait-intro h2 .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 24px rgba(10, 124, 255, 0.35);
}
.slide--portrait-intro .body {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
}

/* SLIDE 16 — Fact grid (4 stat cards) */
.slide--fact-grid .content {
  position: absolute;
  left: 120px; right: 120px; top: 50%;
  transform: translateY(-50%);
}
.slide--fact-grid .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.slide--fact-grid h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 56px;
  line-height: 1.15;
}
.slide--fact-grid h2 .hl {
  color: var(--white);
  font-weight: 700;
}
.slide--fact-grid .facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.slide--fact-grid .fact {
  border: 1px solid rgba(10, 124, 255, 0.22);
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(10, 124, 255, 0.04) 0%, rgba(0, 0, 0, 0.4) 100%), #030712;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slide--fact-grid .fact::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue);
}
.slide--fact-grid .fact .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(10, 124, 255, 0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.slide--fact-grid .fact .label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

/* SLIDE 18 — Weight (2 heavy statements) */
.slide--weight .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1500px;
}
.slide--weight .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(10, 124, 255, 0.75);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 56px;
}
.slide--weight .statement-1,
.slide--weight .statement-2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 54px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.slide--weight .statement-1 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  position: relative;
  padding-left: 36px;
}
.slide--weight .statement-1::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 4px;
  height: calc(100% - 24px);
  background: rgba(10, 124, 255, 0.35);
}
.slide--weight .statement-2 {
  color: var(--white);
  font-weight: 600;
  position: relative;
  padding-left: 36px;
}
.slide--weight .statement-2::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 4px;
  height: calc(100% - 24px);
  background: var(--blue-bright);
  box-shadow: 0 0 12px var(--blue);
}
.slide--weight .statement-2 .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 16px rgba(10, 124, 255, 0.35);
}

/* SLIDE 19 — Discovery moment */
.slide--discovery .content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  padding: 0 120px;
}
.slide--discovery .text {
  max-width: 900px;
}
.slide--discovery .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.slide--discovery .eyebrow::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--cyan);
}
.slide--discovery h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 68px;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 32px;
}
.slide--discovery .body {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.slide--discovery .body .hl {
  color: var(--blue-bright);
  font-weight: 500;
}
.slide--discovery .visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide--discovery .monitor {
  width: 440px;
  height: 300px;
  border: 1.5px solid rgba(10, 124, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(10, 124, 255, 0.18) 0%, rgba(10, 124, 255, 0.04) 100%),
    #050B1A;
  position: relative;
  box-shadow: 0 0 48px rgba(10, 124, 255, 0.25);
}
.slide--discovery .monitor svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.slide--discovery .monitor::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 4px;
  background: rgba(10, 124, 255, 0.35);
}

/* SLIDE 20 — Negations list (pas de capital, pas de stock, pas de patron) */
.slide--negations .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
  gap: 80px;
}
.slide--negations .lead {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 48px;
  color: var(--white);
  letter-spacing: -0.02em;
  text-align: center;
}
.slide--negations .lead .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 22px rgba(10, 124, 255, 0.4);
}
.slide--negations .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1500px;
}
.slide--negations .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 24px;
  border: 1px solid rgba(10, 124, 255, 0.22);
  background: linear-gradient(135deg, rgba(10, 124, 255, 0.04) 0%, rgba(0, 0, 0, 0.5) 100%), #030712;
  position: relative;
}
.slide--negations .item {
  border-color: rgba(255, 93, 108, 0.28);
  background: linear-gradient(135deg, rgba(255, 93, 108, 0.04) 0%, rgba(0, 0, 0, 0.5) 100%), #050305;
}
.slide--negations .item::before {
  content: "✕";
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--rose-bright);
  text-shadow: 0 0 14px rgba(255, 93, 108, 0.5);
}
.slide--negations .item .label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.01em;
  text-align: center;
}

/* SLIDE 22-23 — Proof lines (first client) */
.slide--proof .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 48px;
}
.slide--proof .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -16px;
}
.slide--proof .eyebrow::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--cyan);
}
.slide--proof h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 84px;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  max-width: 1600px;
}
.slide--proof h2 .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 24px rgba(10, 124, 255, 0.35);
}
.slide--proof .detail {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.3;
  max-width: 1400px;
}

/* SLIDE 24 — Pivot "Tout a changé" (hero moment, massive statement) */
.slide--pivot-hero .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
  gap: 40px;
}
.slide--pivot-hero .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}
.slide--pivot-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 156px;
  letter-spacing: -0.045em;
  color: var(--white);
  line-height: 0.92;
  text-align: center;
  max-width: 1700px;
}
.slide--pivot-hero h1 .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 36px rgba(10, 124, 255, 0.5);
}

/* SLIDE 25 — Intimate dinner scene (teaser of wife conversation) */
.slide--intimate .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 36px;
}
.slide--intimate .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(10, 124, 255, 0.75);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slide--intimate .statement {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
  max-width: 1500px;
}
.slide--intimate .soft {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 36px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.01em;
}

/* ============================================================
   BATCH 3 — Slides 26-35 (hijra arc + prospect mirror)
   ============================================================ */

/* SLIDE 27 — Three-checks (conditions MET, mint green) */
.slide--three-checks .content {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.slide--three-checks .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(61, 214, 140, 0.8);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.slide--three-checks .beat {
  display: flex;
  align-items: center;
  gap: 32px;
}
.slide--three-checks .beat .check {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border: 1.5px solid rgba(61, 214, 140, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(61, 214, 140, 0.18) 0%, transparent 70%), #050B0A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(61, 214, 140, 0.22);
}
.slide--three-checks .beat .check svg {
  width: 28px; height: 28px;
  stroke: var(--mint-bright);
  fill: none;
  stroke-width: 2.25;
}
.slide--three-checks .beat .text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}

/* SLIDE 28 — Decision (3-step pivot moment, intimate warm) */
.slide--decision .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.slide--decision .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 181, 71, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slide--decision .line {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 54px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.15;
}
.slide--decision .line.lead { color: var(--white); font-weight: 500; }
.slide--decision .line.final {
  color: var(--white);
  font-weight: 600;
  font-size: 72px;
}

/* SLIDE 29 — HERO PHOTO full-bleed (Maroc / Mosquée Hassan II) */
.slide--hero-photo {
  padding: 0;
}
.slide--hero-photo .photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slide--hero-photo .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}
.slide--hero-photo .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 55%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 35%);
  pointer-events: none;
}
.slide--hero-photo .overlay {
  position: absolute;
  left: 120px;
  bottom: 140px;
  z-index: 3;
  max-width: 1400px;
}
.slide--hero-photo .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.slide--hero-photo .eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--amber-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
}
.slide--hero-photo h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 108px;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}
.slide--hero-photo h1 .warm {
  color: var(--amber-bright);
}
.slide--hero-photo .sub {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  max-width: 1100px;
}
.slide--hero-photo .photo-credit {
  position: absolute;
  bottom: 40px; right: 72px;
  z-index: 3;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slide--hero-photo .photo-credit::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber);
}

/* SLIDE 31 — Contrast (NOT A, BUT B) */
.slide--contrast .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 56px;
}
.slide--contrast .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slide--contrast .not-this,
.slide--contrast .but-this {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.slide--contrast .not-this {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 93, 108, 0.55);
  text-decoration-thickness: 3px;
}
.slide--contrast .but-this {
  color: var(--white);
  font-weight: 600;
}
.slide--contrast .tag {
  flex-shrink: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  padding: 8px 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
}
.slide--contrast .not-this .tag {
  background: rgba(255, 93, 108, 0.18);
  color: var(--rose-bright);
  border: 1px solid rgba(255, 93, 108, 0.4);
}
.slide--contrast .but-this .tag {
  background: rgba(10, 124, 255, 0.18);
  color: var(--blue-bright);
  border: 1px solid rgba(10, 124, 255, 0.55);
}

/* SLIDE 33 — Mask (Tu mets ton masque) */
.slide--mask .content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  padding: 0 120px;
  gap: 72px;
}
.slide--mask .text {
  max-width: 900px;
}
.slide--mask .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 93, 108, 0.8);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.slide--mask h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 72px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
}
.slide--mask h2 .alert {
  color: var(--rose-bright);
  text-shadow: 0 0 22px rgba(255, 93, 108, 0.35);
  font-weight: 700;
}
.slide--mask .visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide--mask .mask-shape {
  width: 380px;
  height: 440px;
}

/* SLIDE 35 — Social performance (three "bonnes" with dim mono) */
.slide--performance .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 32px;
}
.slide--performance .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(10, 124, 255, 0.8);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.slide--performance .act {
  display: flex;
  align-items: baseline;
  gap: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 52px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.1;
}
.slide--performance .act .idx {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.15em;
  min-width: 48px;
}
.slide--performance .act .bonnes {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ============================================================
   BATCH 4 — Slides 36-50 (douleur + pivot libérateur + système)
   ============================================================ */

/* SLIDE 37 — Prayer fading (progression 3 états) */
.slide--prayer-fade .content {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1500px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.slide--prayer-fade .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 181, 71, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.slide--prayer-fade .step {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 52px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.slide--prayer-fade .step .dot {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255, 93, 108, 0.45);
  box-shadow: 0 0 12px rgba(255, 93, 108, 0.35);
}
.slide--prayer-fade .step-1 { color: rgba(255, 255, 255, 0.85); }
.slide--prayer-fade .step-2 { color: rgba(255, 255, 255, 0.55); }
.slide--prayer-fade .step-2 .dot { background: rgba(255, 93, 108, 0.65); }
.slide--prayer-fade .step-3 { color: rgba(255, 93, 108, 0.9); }
.slide--prayer-fade .step-3 .dot { background: var(--rose-bright); box-shadow: 0 0 16px rgba(255, 93, 108, 0.55); }

/* SLIDE 38 — Family split (enfants vs toi) */
.slide--family-split .content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.slide--family-split .col {
  padding: 0 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.slide--family-split .col.left {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.slide--family-split .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.slide--family-split .left .eyebrow { color: var(--amber-bright); }
.slide--family-split .right .eyebrow { color: var(--rose-bright); }
.slide--family-split h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 54px;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.slide--family-split .detail {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

/* SLIDE 39 — Big inner question */
.slide--question .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
  gap: 32px;
}
.slide--question .setup {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 181, 71, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slide--question .big-q {
  font-family: "Space Grotesk", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 88px;
  letter-spacing: -0.03em;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  max-width: 1500px;
  position: relative;
}
.slide--question .big-q::before {
  content: "?";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 200px;
  color: rgba(255, 181, 71, 0.12);
  line-height: 1;
}

/* SLIDE 41 — Aware triad (3 facets of pain) */
.slide--aware-triad .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.slide--aware-triad .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 93, 108, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.slide--aware-triad h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.slide--aware-triad .facet {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.slide--aware-triad .facet .bullet {
  width: 10px; height: 10px;
  background: var(--rose-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 93, 108, 0.4);
  flex-shrink: 0;
}
.slide--aware-triad .facet .hl { color: var(--white); font-weight: 500; }

/* SLIDE 43 — RUPTURE "Non." (massive single word) */
.slide--rupture {
  background: radial-gradient(ellipse at center, #0A1628 0%, #000 80%) !important;
}
.slide--rupture .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide--rupture .word {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 420px;
  color: var(--mint-bright);
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow:
    0 0 60px rgba(61, 214, 140, 0.45),
    0 0 120px rgba(61, 214, 140, 0.25);
  position: relative;
}
.slide--rupture .word::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 6px;
  background: var(--mint-bright);
  box-shadow: 0 0 22px rgba(61, 214, 140, 0.7);
}

/* SLIDE 44 — Liberation "Le problème ce n'est pas toi" */
.slide--liberation .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
  gap: 36px;
}
.slide--liberation .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--mint-bright);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
}
.slide--liberation h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 128px;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 0.95;
  text-align: center;
  max-width: 1700px;
}
.slide--liberation h1 .growth {
  text-shadow: 0 0 32px rgba(61, 214, 140, 0.5);
}

/* SLIDE 46 — The lies (strikethrough system beliefs) */
.slide--lies .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.slide--lies .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 93, 108, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.slide--lies h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 44px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}
.slide--lies .lie {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 46px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.slide--lies .lie .tag {
  flex-shrink: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  padding: 6px 12px;
  background: rgba(255, 93, 108, 0.15);
  color: var(--rose-bright);
  border: 1px solid rgba(255, 93, 108, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
}
.slide--lies .lie .text {
  position: relative;
}
.slide--lies .lie .text::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 52%;
  height: 4px;
  background: rgba(255, 93, 108, 0.55);
  box-shadow: 0 0 10px rgba(255, 93, 108, 0.4);
  transform: rotate(-0.8deg);
}

/* SLIDE 47 — Declaration (rose alert + mint forward) */
.slide--declaration .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 40px;
  align-items: flex-start;
}
.slide--declaration .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slide--declaration h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 96px;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1;
  max-width: 1700px;
}
.slide--declaration .sub {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: -0.01em;
}

/* SLIDE 49 — Time stack (hours / weeks / months) */
.slide--time-stack .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 48px;
  align-items: flex-start;
}
.slide--time-stack .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(10, 124, 255, 0.8);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slide--time-stack h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 60px;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.05;
  max-width: 1500px;
  margin-bottom: 16px;
}
.slide--time-stack .units {
  display: flex;
  gap: 60px;
  align-items: flex-end;
}
.slide--time-stack .unit {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slide--time-stack .unit .num {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 84px;
  color: rgba(255, 93, 108, 0.85);
  line-height: 1;
  letter-spacing: -0.02em;
}
.slide--time-stack .unit .label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
}
.slide--time-stack .unit:nth-child(1) .num { opacity: 0.6; }
.slide--time-stack .unit:nth-child(2) .num { opacity: 0.82; }
.slide--time-stack .unit:nth-child(3) .num { opacity: 1; color: var(--rose-bright); text-shadow: 0 0 18px rgba(255, 93, 108, 0.45); }
.slide--time-stack .unit .plus {
  font-family: "JetBrains Mono", monospace;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.25);
  align-self: center;
  margin-bottom: 20px;
}

/* ============================================================
   BATCH 5 — Slides 51-80 (tentatives passées + révélation + méthode 5 phases)
   ============================================================ */

/* SLIDE 51 — Failed attempts (3 crossed cards rose) */
.slide--failed .content {
  position: absolute;
  left: 120px; right: 120px; top: 50%;
  transform: translateY(-50%);
}
.slide--failed .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 93, 108, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.slide--failed h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 44px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.slide--failed .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.slide--failed .card {
  border: 1px solid rgba(255, 93, 108, 0.25);
  background: linear-gradient(135deg, rgba(255, 93, 108, 0.04) 0%, rgba(0, 0, 0, 0.5) 100%), #050305;
  padding: 32px 28px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slide--failed .card::before {
  content: "✕";
  position: absolute;
  top: 20px; right: 24px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 22px;
  color: var(--rose-bright);
  text-shadow: 0 0 10px rgba(255, 93, 108, 0.5);
}
.slide--failed .card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(255, 93, 108, 0.75);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.slide--failed .card .name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.slide--failed .card .why {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.35;
  margin-top: 16px;
}

/* SLIDES 53-55 — Soit-triad (one per slide, with 01/03 marker) */
.slide--soit .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 28px;
}
.slide--soit .step-marker {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 93, 108, 0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.slide--soit .step-marker .current {
  color: var(--rose-bright);
  font-weight: 700;
}
.slide--soit .statement {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 76px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  max-width: 1500px;
}
.slide--soit .statement .soit {
  color: rgba(255, 93, 108, 0.85);
  font-weight: 600;
}

/* SLIDE 56 — Formations IA overwhelm */
.slide--overwhelm .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1600px;
}
.slide--overwhelm .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(10, 124, 255, 0.8);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.slide--overwhelm h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 44px;
  max-width: 1400px;
}
.slide--overwhelm .tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.slide--overwhelm .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  padding: 10px 18px;
  background: rgba(10, 124, 255, 0.1);
  border: 1px solid rgba(10, 124, 255, 0.35);
  color: rgba(10, 124, 255, 0.9);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* SLIDE 59 & 61 — Taught-vs-untaught contrast (reuse slide--contrast) */

/* SLIDE 63 — Revelation chapter break */
.slide--revelation .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 140px;
  gap: 40px;
}
.slide--revelation .chapter {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.slide--revelation h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 132px;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 0.95;
  max-width: 1600px;
}
.slide--revelation h1 .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 28px rgba(10, 124, 255, 0.45);
}

/* SLIDES 64 & 65 — The reveal pair (don't buy X / do buy Y) */
.slide--buy .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 32px;
}
.slide--buy .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.slide--buy.dont .eyebrow { color: var(--rose-bright); }
.slide--buy.do .eyebrow { color: var(--mint-bright); }
.slide--buy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 44px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.slide--buy .lines {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.slide--buy .line {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 54px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.slide--buy .line .idx {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.15em;
  min-width: 40px;
  opacity: 0.5;
}
.slide--buy.dont .line {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 93, 108, 0.6);
  text-decoration-thickness: 3px;
}
.slide--buy.dont .line .idx { color: var(--rose-bright); }
.slide--buy.do .line { color: var(--white); }
.slide--buy.do .line .idx { color: var(--mint-bright); }
.slide--buy.do .line .hl { color: var(--mint-bright); text-shadow: 0 0 18px rgba(61, 214, 140, 0.35); font-weight: 700; }

/* SLIDE 68 — Method intro (brand reveal of "Méthode Deen Code") */
.slide--method-intro .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
  gap: 44px;
}
.slide--method-intro .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.slide--method-intro .title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 156px;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 0.92;
  text-align: center;
}
.slide--method-intro .title .brand {
  color: var(--blue-bright);
  text-shadow: 0 0 40px rgba(10, 124, 255, 0.5);
}
.slide--method-intro .decoration {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.slide--method-intro .decoration .dash {
  width: 80px; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(10, 124, 255, 0.7), transparent);
}
.slide--method-intro .decoration .dot {
  width: 8px; height: 8px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(10, 124, 255, 0.6);
}

/* SLIDES 71-79 — Phase intro (5 phases shared layout) */
.slide--phase-intro .content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 720px 1fr;
  align-items: center;
  padding: 0 120px;
  gap: 80px;
}
.slide--phase-intro .number-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-right: 1px solid rgba(10, 124, 255, 0.18);
  padding-right: 60px;
  position: relative;
}
.slide--phase-intro .number-col::after {
  content: "";
  position: absolute;
  right: -3px; top: 10%;
  width: 5px; height: 80%;
  background: linear-gradient(180deg, transparent, var(--blue-bright), transparent);
  box-shadow: 0 0 14px rgba(10, 124, 255, 0.5);
}
.slide--phase-intro .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.slide--phase-intro .big-number {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 340px;
  color: var(--blue-bright);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-shadow: 0 0 36px rgba(10, 124, 255, 0.35);
}
.slide--phase-intro .slash {
  font-family: "JetBrains Mono", monospace;
  font-size: 44px;
  color: rgba(10, 124, 255, 0.3);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.slide--phase-intro .text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.slide--phase-intro .name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 144px;
  letter-spacing: -0.045em;
  color: var(--white);
  line-height: 0.92;
}
.slide--phase-intro .desc {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 900px;
}
.slide--phase-intro .progress {
  position: absolute;
  bottom: 72px;
  left: 120px; right: 120px;
  display: flex;
  gap: 10px;
}
.slide--phase-intro .progress .dot {
  flex: 1;
  height: 3px;
  background: rgba(10, 124, 255, 0.15);
}
.slide--phase-intro .progress .dot.active {
  background: var(--blue-bright);
  box-shadow: 0 0 10px rgba(10, 124, 255, 0.6);
}

/* SLIDES 72, 74, 76, 78 — Phase details */
.slide--phase-detail .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.slide--phase-detail .phase-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.slide--phase-detail .phase-tag::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--cyan);
}
.slide--phase-detail h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 52px;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.slide--phase-detail h3 .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 22px rgba(10, 124, 255, 0.35);
}
.slide--phase-detail .items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.slide--phase-detail .q {
  display: flex;
  align-items: baseline;
  gap: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 34px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.slide--phase-detail .q .bullet {
  font-family: "JetBrains Mono", monospace;
  color: var(--blue-bright);
  font-size: 22px;
  flex-shrink: 0;
}

/* SLIDE 80 — Outcome stat (2-3 clients, 1500-3000€/month) */
.slide--outcome .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 52px;
}
.slide--outcome .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--mint-bright);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.slide--outcome .lead {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 56px;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 1400px;
  margin-bottom: 8px;
}
.slide--outcome .stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.slide--outcome .stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 2px solid rgba(61, 214, 140, 0.45);
  padding-left: 28px;
}
.slide--outcome .stat .num {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 72px;
  color: var(--mint-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(61, 214, 140, 0.3);
}
.slide--outcome .stat .label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.005em;
  line-height: 1.25;
}

/* ============================================================
   BATCH 6 — Slides 81-120 (exemple PME + marché + CTA + objection + Mohamed)
   ============================================================ */

/* SLIDE 84 — Problem setup (PME loses 3h/day) */
.slide--problem-setup .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.slide--problem-setup .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 93, 108, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slide--problem-setup h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
  max-width: 1500px;
  margin-bottom: 12px;
}
.slide--problem-setup h2 .alert {
  font-weight: 700;
}
.slide--problem-setup .ops {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.slide--problem-setup .op {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  padding: 10px 18px;
  background: rgba(255, 93, 108, 0.08);
  border: 1px solid rgba(255, 93, 108, 0.3);
  color: rgba(255, 93, 108, 0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* SLIDE 85 — Method applied */
.slide--method-apply .content {
  position: absolute;
  left: 120px; top: 50%;
  transform: translateY(-50%);
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.slide--method-apply .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.slide--method-apply h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 1400px;
}
.slide--method-apply .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.slide--method-apply .step {
  padding: 32px 28px;
  border: 1px solid rgba(10, 124, 255, 0.28);
  background: linear-gradient(135deg, rgba(10, 124, 255, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%), #030712;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.slide--method-apply .step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue);
}
.slide--method-apply .step .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.slide--method-apply .step .action {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* SLIDE 87, 89, 113 — Stat hero (big number + label) */
.slide--stat-hero .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 40px;
}
.slide--stat-hero .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--mint-bright);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.slide--stat-hero .big-line {
  display: flex;
  align-items: baseline;
  gap: 40px;
  flex-wrap: wrap;
}
.slide--stat-hero .num {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 240px;
  color: var(--mint-bright);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-shadow: 0 0 36px rgba(61, 214, 140, 0.35);
}
.slide--stat-hero .unit {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 56px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.slide--stat-hero .equals {
  font-family: "JetBrains Mono", monospace;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  padding: 0 20px;
}
.slide--stat-hero .converted {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.slide--stat-hero .converted .num {
  font-size: 160px;
  color: var(--white);
  text-shadow: none;
}
.slide--stat-hero .converted .unit {
  font-size: 42px;
  color: rgba(255, 255, 255, 0.65);
}
.slide--stat-hero .context {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.01em;
  max-width: 1400px;
}

/* SLIDE 91 — Big percentage (26%) */
.slide--big-percent .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 48px;
}
.slide--big-percent .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.slide--big-percent .percent-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
}
.slide--big-percent .percent {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 360px;
  color: var(--blue-bright);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-shadow: 0 0 48px rgba(10, 124, 255, 0.4);
}
.slide--big-percent .percent-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 800px;
}
.slide--big-percent .meter {
  width: 100%;
  max-width: 1200px;
  height: 6px;
  background: rgba(10, 124, 255, 0.1);
  border: 1px solid rgba(10, 124, 255, 0.22);
  position: relative;
  overflow: hidden;
}
.slide--big-percent .meter-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 26%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 14px rgba(10, 124, 255, 0.55);
}
.slide--big-percent .meter-label {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 14px;
  max-width: 1200px;
}

/* SLIDE 92 — Complementary opposite stat (70%) */
.slide--flip-stat .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 36px;
  align-items: center;
  text-align: center;
}
.slide--flip-stat h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 56px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 1500px;
}
.slide--flip-stat h2 .hl {
  color: var(--amber-bright);
  text-shadow: 0 0 22px rgba(255, 181, 71, 0.35);
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
}

/* SLIDE 98 — FIRST CTA INTERMEDIATE */
.slide--cta-intermediate .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 44px;
  align-items: flex-start;
}
.slide--cta-intermediate .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--mint-bright);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.slide--cta-intermediate h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 96px;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1;
  max-width: 1700px;
}
.slide--cta-intermediate h2 .hl {
  color: var(--mint-bright);
  text-shadow: 0 0 28px rgba(61, 214, 140, 0.4);
}
.slide--cta-intermediate .cta-block {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 12px;
}
.slide--cta-intermediate .btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-bright) 100%);
  color: var(--bg-0);
  padding: 26px 38px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 36px rgba(61, 214, 140, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.slide--cta-intermediate .btn .arrow { font-size: 28px; }
.slide--cta-intermediate .note {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* SLIDE 104 — Single pivot word "Sauf que" */
.slide--pivot-word .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide--pivot-word .word {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 240px;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
}
.slide--pivot-word .word::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: var(--blue-bright);
  box-shadow: 0 0 18px rgba(10, 124, 255, 0.55);
}

/* SLIDE 107 — Period. single-line authority */
.slide--period {
  background: radial-gradient(ellipse at center, #050B1A 0%, #000 80%) !important;
}
.slide--period .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide--period .statement {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 188px;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.slide--period .statement .period {
  color: var(--blue-bright);
  text-shadow: 0 0 28px rgba(10, 124, 255, 0.5);
}

/* SLIDES 108-115 — Mohamed case study */
.slide--mohamed-intro .content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 680px 1fr;
}
.slide--mohamed-intro .portrait-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030712;
  overflow: hidden;
}
.slide--mohamed-intro .portrait-frame {
  position: relative;
  width: 480px;
  height: 620px;
  border: 1px solid rgba(10, 124, 255, 0.3);
  background: radial-gradient(ellipse at 50% 30%, rgba(10, 124, 255, 0.12) 0%, transparent 60%), #050B1A;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.slide--mohamed-intro .portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.05);
}
.slide--mohamed-intro .portrait-frame .silhouette {
  width: 340px;
  height: 440px;
}
.slide--mohamed-intro .portrait-frame .silhouette svg { width: 100%; height: 100%; }
.slide--mohamed-intro .portrait-frame .corner {
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--blue-bright);
  box-shadow: 0 0 12px rgba(10, 124, 255, 0.4);
  z-index: 2;
}
.slide--mohamed-intro .portrait-frame .corner.tl { top: -1px; left: -1px; border-top: 1.5px solid; border-left: 1.5px solid; }
.slide--mohamed-intro .portrait-frame .corner.br { bottom: -1px; right: -1px; border-bottom: 1.5px solid; border-right: 1.5px solid; }
.slide--mohamed-intro .portrait-frame .tag-ph {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(10, 124, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  display: flex; align-items: center; gap: 8px;
}
.slide--mohamed-intro .portrait-frame .tag-ph::before {
  content: ""; width: 8px; height: 8px;
  background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 10px var(--blue);
}
.slide--mohamed-intro .text-col {
  padding: 160px 120px 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide--mohamed-intro .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.slide--mohamed-intro .eyebrow::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--cyan);
}
.slide--mohamed-intro h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 96px;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 32px;
}
.slide--mohamed-intro .attributes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slide--mohamed-intro .attr {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.01em;
}
.slide--mohamed-intro .attr.neg { color: rgba(255, 93, 108, 0.7); }
.slide--mohamed-intro .attr.neg::before {
  content: "✕";
  color: var(--rose-bright);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}
.slide--mohamed-intro .attr.pos::before {
  content: "✓";
  color: var(--mint-bright);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

/* SLIDE 116-118 — Entourage section */
.slide--entourage .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 36px;
}
.slide--entourage .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 181, 71, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slide--entourage h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.05;
  max-width: 1400px;
}
.slide--entourage .people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
}
.slide--entourage .person {
  padding: 24px 28px;
  border: 1px solid rgba(255, 181, 71, 0.28);
  background: linear-gradient(135deg, rgba(255, 181, 71, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%), #050305;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.015em;
  position: relative;
}
.slide--entourage .person::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--amber-bright);
  box-shadow: 0 0 8px var(--amber);
}

/* SLIDE 119 — Voices (negative quotes) */
.slide--voices .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
  gap: 28px;
}
.slide--voices .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: rgba(255, 93, 108, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.slide--voices .voice {
  font-family: "Space Grotesk", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.02em;
  line-height: 1.15;
  padding-left: 36px;
  position: relative;
  max-width: 1600px;
}
.slide--voices .voice::before {
  content: "❝";
  position: absolute;
  left: -6px; top: -20px;
  font-size: 80px;
  color: rgba(255, 93, 108, 0.4);
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  line-height: 1;
}

/* ============================================================
   BATCH 7 — Slides 121-205 (offre + garantie + CTA final)
   ============================================================ */

/* Principle single-line (slide 128) */
.slide--principle .content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 0 120px; gap: 40px;
}
.slide--principle .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; color: var(--cyan);
  letter-spacing: 0.28em; text-transform: uppercase;
}
.slide--principle .duo {
  display: flex; gap: 80px; align-items: center;
}
.slide--principle .duo .word {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 112px;
  letter-spacing: -0.04em; line-height: 1;
}
.slide--principle .word.less { color: rgba(255, 93, 108, 0.9); }
.slide--principle .word.more { color: var(--mint-bright); text-shadow: 0 0 24px rgba(61, 214, 140, 0.35); }
.slide--principle .sep {
  width: 2px; height: 80px;
  background: linear-gradient(180deg, transparent, rgba(10, 124, 255, 0.5), transparent);
}
.slide--principle .duo .sub {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400; font-size: 28px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 14px;
}

/* Anti-promise / We-give (129-130) — simple cross/check list */
.slide--promise-list .content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; padding: 0 120px; gap: 28px;
}
.slide--promise-list .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 12px;
}
.slide--promise-list.anti .eyebrow { color: var(--rose-bright); }
.slide--promise-list.pro .eyebrow { color: var(--mint-bright); }
.slide--promise-list h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500; font-size: 44px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.slide--promise-list .line {
  display: flex; align-items: center; gap: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500; font-size: 44px;
  letter-spacing: -0.02em; line-height: 1.1;
}
.slide--promise-list.anti .line {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 93, 108, 0.6);
  text-decoration-thickness: 3px;
}
.slide--promise-list.anti .line::before {
  content: "✕"; color: var(--rose-bright);
  font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 22px;
  border: 1.5px solid rgba(255, 93, 108, 0.45);
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  text-decoration: none;
}
.slide--promise-list.pro .line { color: var(--white); }
.slide--promise-list.pro .line::before {
  content: "✓"; color: var(--mint-bright);
  font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 22px;
  border: 1.5px solid rgba(61, 214, 140, 0.5);
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(61, 214, 140, 0.25);
}

/* Even-if list (153-158) — "Même si tu pars de zéro" */
.slide--even-if .content {
  position: absolute; left: 120px; top: 50%;
  transform: translateY(-50%); max-width: 1700px;
  display: flex; flex-direction: column; gap: 20px;
}
.slide--even-if .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; color: var(--cyan);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 20px;
}
.slide--even-if h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 56px;
  letter-spacing: -0.03em; color: var(--white);
  line-height: 1.05; margin-bottom: 32px;
}
.slide--even-if .item {
  display: flex; align-items: center; gap: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500; font-size: 36px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.015em; line-height: 1.2;
}
.slide--even-if .item .meme {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px; padding: 6px 12px;
  background: rgba(10, 124, 255, 0.12);
  border: 1px solid rgba(10, 124, 255, 0.4);
  color: var(--cyan);
  letter-spacing: 0.15em; text-transform: uppercase;
  flex-shrink: 0;
}

/* Bonus cards (161-176) — big reveal per bonus */
.slide--bonus .content {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 580px 1fr;
  align-items: center; padding: 0 120px; gap: 80px;
}
.slide--bonus .number-col {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
  border-right: 1px solid rgba(10, 124, 255, 0.2);
  padding-right: 60px;
}
.slide--bonus .number-col .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; color: var(--cyan);
  letter-spacing: 0.25em; text-transform: uppercase;
}
.slide--bonus .big-num {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700; font-size: 220px;
  color: var(--blue-bright); line-height: 0.88;
  letter-spacing: -0.03em;
  text-shadow: 0 0 32px rgba(10, 124, 255, 0.35);
}
.slide--bonus .incl {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; color: var(--mint-bright);
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
}
.slide--bonus .incl::before {
  content: ""; width: 8px; height: 8px;
  background: var(--mint-bright); border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
}
.slide--bonus .text-col {
  display: flex; flex-direction: column; gap: 24px;
}
.slide--bonus .title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 84px;
  letter-spacing: -0.035em; color: var(--white);
  line-height: 0.95;
}
.slide--bonus .desc {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400; font-size: 30px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: -0.01em; line-height: 1.3;
  max-width: 900px;
}

/* Community card (177-178) */
.slide--community .content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 0 120px; gap: 36px;
}
.slide--community .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; color: var(--amber-bright);
  letter-spacing: 0.25em; text-transform: uppercase;
}
.slide--community h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 96px;
  letter-spacing: -0.035em; color: var(--white);
  line-height: 0.95; text-align: center;
}
.slide--community h2 .hl {
  color: var(--amber-bright);
  text-shadow: 0 0 26px rgba(255, 181, 71, 0.4);
}
.slide--community .pills {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center; max-width: 1400px;
}
.slide--community .pill {
  padding: 12px 22px;
  border: 1px solid rgba(255, 181, 71, 0.4);
  background: rgba(255, 181, 71, 0.08);
  font-family: "JetBrains Mono", monospace;
  font-size: 15px; color: rgba(255, 181, 71, 0.95);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* Guarantee badge (182, 187) */
.slide--guarantee .content {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 520px 1fr;
  align-items: center; padding: 0 120px; gap: 80px;
}
.slide--guarantee .badge-col {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 20px;
}
.slide--guarantee .badge {
  width: 420px; height: 420px;
  border: 2px solid var(--mint-bright);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  background: radial-gradient(circle at center, rgba(61, 214, 140, 0.18) 0%, rgba(61, 214, 140, 0.04) 50%, transparent 80%), #020605;
  box-shadow: 0 0 42px rgba(61, 214, 140, 0.25), inset 0 0 42px rgba(61, 214, 140, 0.08);
  position: relative;
}
.slide--guarantee .badge::before {
  content: ""; position: absolute; inset: -14px;
  border: 1px solid rgba(61, 214, 140, 0.22); border-radius: 50%;
}
.slide--guarantee .badge::after {
  content: ""; position: absolute; inset: -30px;
  border: 1px dashed rgba(61, 214, 140, 0.15); border-radius: 50%;
}
.slide--guarantee .badge .num {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700; font-size: 140px;
  color: var(--mint-bright); line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 18px rgba(61, 214, 140, 0.35);
}
.slide--guarantee .badge .unit {
  font-family: "JetBrains Mono", monospace;
  font-size: 24px; color: var(--mint-bright);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.slide--guarantee .badge .label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px; color: var(--white);
  font-weight: 500; margin-top: 10px;
  text-align: center;
}
.slide--guarantee .text-col {
  display: flex; flex-direction: column; gap: 28px;
}
.slide--guarantee .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; color: var(--mint-bright);
  letter-spacing: 0.25em; text-transform: uppercase;
}
.slide--guarantee h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 72px;
  letter-spacing: -0.035em; color: var(--white);
  line-height: 0.98;
}
.slide--guarantee h2 .hl {
  color: var(--mint-bright);
  text-shadow: 0 0 24px rgba(61, 214, 140, 0.35);
}
.slide--guarantee .desc {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400; font-size: 28px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.01em; line-height: 1.35;
  max-width: 900px;
}

/* The question (193 — Dans 6 mois ?) */
.slide--the-question {
  background: radial-gradient(ellipse at center, #0A1628 0%, #000 80%) !important;
}
.slide--the-question .content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 0 120px; gap: 48px;
}
.slide--the-question .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; color: rgba(255, 181, 71, 0.8);
  letter-spacing: 0.3em; text-transform: uppercase;
}
.slide--the-question h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 128px;
  letter-spacing: -0.04em; color: var(--white);
  line-height: 0.95; text-align: center;
  max-width: 1700px;
}
.slide--the-question h1 .warm {
  font-style: italic;
}

/* Final CTA hero (198, 203, 207) */
.slide--final-cta .content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; padding: 0 120px;
  gap: 48px; align-items: flex-start;
}
.slide--final-cta .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; color: var(--cyan);
  letter-spacing: 0.25em; text-transform: uppercase;
}
.slide--final-cta h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 108px;
  letter-spacing: -0.04em; color: var(--white);
  line-height: 0.98; max-width: 1700px;
}
.slide--final-cta h1 .hl {
  color: var(--mint-bright);
  text-shadow: 0 0 28px rgba(61, 214, 140, 0.4);
}
.slide--final-cta .cta-block {
  display: flex; align-items: center; gap: 32px;
}
.slide--final-cta .btn {
  display: inline-flex; align-items: center; gap: 20px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-bright) 100%);
  color: var(--bg-0);
  padding: 28px 42px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 28px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 48px rgba(61, 214, 140, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.slide--final-cta .btn .arrow { font-size: 32px; }
.slide--final-cta .safeguards {
  display: flex; gap: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px; color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.slide--final-cta .safeguards .item {
  display: flex; align-items: center; gap: 10px;
}
.slide--final-cta .safeguards .item::before {
  content: ""; width: 8px; height: 8px;
  background: var(--mint-bright); border-radius: 50%;
  box-shadow: 0 0 10px var(--mint);
}

/* Two options close (204-206) */
.slide--two-options .content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; padding: 0 120px; gap: 36px;
}
.slide--two-options .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; color: var(--cyan);
  letter-spacing: 0.25em; text-transform: uppercase;
}
.slide--two-options h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 64px;
  letter-spacing: -0.03em; color: var(--white);
  line-height: 1.05; margin-bottom: 16px;
}
.slide--two-options .options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.slide--two-options .option {
  padding: 40px 36px;
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
}
.slide--two-options .option .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 4px;
}
.slide--two-options .option .title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600; font-size: 40px;
  letter-spacing: -0.025em; line-height: 1.1;
}
.slide--two-options .option .cost {
  font-family: "JetBrains Mono", monospace;
  font-size: 22px; font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.slide--two-options .option.bad {
  background: linear-gradient(135deg, rgba(255, 93, 108, 0.06) 0%, rgba(0, 0, 0, 0.5) 100%), #050305;
  border: 1px solid rgba(255, 93, 108, 0.3);
}
.slide--two-options .option.bad .tag { color: var(--rose-bright); }
.slide--two-options .option.bad .title { color: rgba(255, 255, 255, 0.65); }
.slide--two-options .option.bad .cost { color: var(--rose-bright); }
.slide--two-options .option.bad::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 60px; height: 2px; background: var(--rose-bright);
  box-shadow: 0 0 10px rgba(255, 93, 108, 0.5);
}
.slide--two-options .option.good {
  background: linear-gradient(135deg, rgba(61, 214, 140, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%), #020605;
  border: 1px solid rgba(61, 214, 140, 0.45);
  box-shadow: inset 0 0 32px rgba(61, 214, 140, 0.05);
}
.slide--two-options .option.good .tag { color: var(--mint-bright); }
.slide--two-options .option.good .title { color: var(--white); }
.slide--two-options .option.good .cost { color: var(--mint-bright); }
.slide--two-options .option.good::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 60px; height: 2px; background: var(--mint-bright);
  box-shadow: 0 0 12px rgba(61, 214, 140, 0.6);
}

/* ============================================================
   SLIDE DEMO — Photo + SVG coherence test (kept for reference)
   ============================================================ */
.slide--demo-photo .content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.slide--demo-photo .photo-col {
  position: relative;
  overflow: hidden;
}
.slide--demo-photo .photo-col .duotone {
  width: 100%;
  height: 100%;
}
.slide--demo-photo .text-col {
  padding: 180px 96px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-0);
}
.slide--demo-photo .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.slide--demo-photo .eyebrow::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--cyan);
}
.slide--demo-photo h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 84px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 32px;
}
.slide--demo-photo h2 .hl {
  color: var(--blue-bright);
  text-shadow: 0 0 24px rgba(10, 124, 255, 0.35);
}
.slide--demo-photo .body {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: -0.01em;
}
.slide--demo-photo .photo-meta {
  position: absolute;
  bottom: 32px; left: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide--demo-photo .photo-meta::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blue);
}


