/* ============================================================
   INDIE.CO — Pitch Deck Slide-by-Slide
   DA: Rothko × Médaillon Apollo bleu × Malraux
   ============================================================ */

:root {
  /* Klein Blue IK41 (bleu du logo Apollon) — couleur de référence */
  --blue-klein: #0033a0;
  --blue-klein-dark: #001f66;
  --blue-klein-soft: #4a6fd8;

  /* Bleus historiques réassignés :
     - petits accents (brand, electric) → teinte Klein
     - grandes surfaces (deep, royal, ink) → neutres graphite (le bleu Klein
       est réservé aux accents ; les fonds sombres restent neutres) */
  --blue-deep: #0d1220;
  --blue-royal: #1a2440;
  --blue-brand: #0033a0;
  --blue-electric: #4a6fd8;
  --blue-ink: #0a0e18;

  --rothko-orange: #e85d2f;
  --rothko-red: #b8351a;
  --rothko-yellow: #f5a623;
  --rothko-crimson: #8f1e13;
  --rothko-pink: #d94a6b;
  --rothko-purple: #6b2d5c;
  --rothko-cream: #f5ead6;
  --gold: #d4a441;

  --black: #050810;
  --near-black: #0a0d16;
  --ink: #1a1d28;
  --smoke: #e8e6df;
  --paper: #faf7f0;
  --paper-warm: #f5f0e3;

  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(10, 8, 16, 0.1);

  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --slide-pad: clamp(2rem, 4vw, 4rem);
  --container: 1360px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; }

/* ============================================================
   PROGRESS BAR + COUNTER + NAV
   ============================================================ */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 200;
}
.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-electric), var(--rothko-orange), var(--rothko-crimson));
  width: 0%;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.counter {
  position: fixed;
  top: 1.75rem;
  right: 2rem;
  z-index: 150;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  mix-blend-mode: difference;
}
.counter__sep { margin: 0 0.35rem; opacity: 0.5; }

.nav {
  position: fixed;
  top: 1.5rem;
  left: 2rem;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  mix-blend-mode: difference;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
}
.nav__logo img {
  width: 30px; height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(43, 127, 217, 0.35));
}
.nav__logo span {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.nav__logo b { color: var(--blue-electric); font-weight: 700; }
.nav__logo i {
  font-style: normal;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
  margin-left: 0.5rem;
  font-weight: 500;
}
.nav__dots {
  display: flex;
  gap: 0.35rem;
}
.nav__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.nav__dot--active {
  background: var(--rothko-orange);
  transform: scale(1.3);
}

.hint {
  position: fixed;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 150;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  mix-blend-mode: difference;
}

/* ============================================================
   SLIDES BASE
   ============================================================ */
.deck { position: relative; }

.slide {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem var(--slide-pad) 4rem;
  overflow: hidden;
}

/* Transitions inter-slides : entrée douce du contenu quand la slide arrive */
.slide__inner {
  will-change: opacity, transform;
}
@supports (animation-timeline: view()) {
  .slide__inner {
    animation: slideEnter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }
  @keyframes slideEnter {
    from { opacity: 0.35; transform: translateY(28px) scale(0.985); }
    to   { opacity: 1;    transform: translateY(0)   scale(1); }
  }
  /* Cover, merci et catalogue : entrée plus douce (fond mosaïque en filigrane) */
  .slide--cover .cover-simple,
  .slide--merci .merci-layout {
    animation: slideEnter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}
/* Fallback : IntersectionObserver ajoute .slide-in ; sinon rien ne change */
.slide.slide-in .slide__inner {
  animation: slideEnterJs 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slideEnterJs {
  from { opacity: 0;   transform: translateY(28px) scale(0.985); }
  to   { opacity: 1;   transform: translateY(0)   scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .slide__inner { animation: none !important; opacity: 1 !important; transform: none !important; }
}

.slide--light,
.slide--business,
.slide--budget,
.slide--split,
.slide--dark,
.slide--catalog,
.slide--outro {
  background: var(--paper);
  color: var(--ink);
}
.slide--cover {
  background: var(--black);
  color: var(--paper);
}

/* Ambiance Rothko chaude uniforme — subtile sur les slides claires */
.slide--light::before,
.slide--business::before,
.slide--budget::before,
.slide--split::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(245,166,35,0.10), transparent 60%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(232,93,47,0.08), transparent 60%),
    radial-gradient(ellipse 45% 35% at 50% 50%, rgba(184,53,26,0.03), transparent 70%);
}

.slide--dark::before,
.slide--catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 100% 100%, rgba(232,93,47,0.12), transparent 60%),
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(107,45,92,0.10), transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(184,53,26,0.08), transparent 70%);
}

/* Grain uniforme sur toutes les slides pour la cohésion */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}
.slide--dark::after,
.slide--catalog::after,
.slide--cover::after,
.slide--outro::after {
  opacity: 0.08;
  mix-blend-mode: screen;
}

.slide__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.slide__inner--center {
  text-align: center;
}

.slide-head { max-width: 900px; margin-bottom: 3rem; }
.slide-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
.slide-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--rothko-orange);
}
.slide--dark .slide-head h2 em { color: var(--rothko-yellow); }
.slide-head .lead {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(10,8,16,0.65);
  max-width: 720px;
}
.slide--dark .slide-head .lead { color: rgba(255,255,255,0.72); }

.chapter {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rothko-orange);
  margin-bottom: 1.25rem;
}
.chapter--small { font-size: 0.65rem; margin-bottom: 0.5rem; }
.chapter--gold { color: var(--gold); }
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue-electric);
  margin-bottom: 1.5rem;
}
.eyebrow--gold { color: var(--gold); }
.accent { color: var(--blue-electric); }
.slide--light .accent { color: var(--blue-brand); }

.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  color: rgba(255,255,255,0.85);
  margin-top: 3rem;
}
.slide--light .pullquote { color: var(--ink); border-color: var(--line-dark); }
.pullquote--small { font-size: 1.3rem; margin-top: 2rem; padding: 1.5rem 0; }
.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   ROTHKO MOSAIC BACKGROUND
   ============================================================ */
.rothko-mosaic {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
  overflow: hidden;
}
.rothko-mosaic::before,
.rothko-mosaic::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(232,93,47,0.9) 0%, rgba(232,93,47,0.9) 55%, rgba(184,53,26,0.9) 55%, rgba(184,53,26,0.9) 100%),
    linear-gradient(180deg, rgba(245,166,35,0.85) 0%, rgba(245,166,35,0.85) 60%, rgba(232,93,47,0.85) 60%, rgba(232,93,47,0.85) 100%),
    linear-gradient(180deg, rgba(184,53,26,0.85) 0%, rgba(184,53,26,0.85) 50%, rgba(80,20,10,0.9) 50%, rgba(80,20,10,0.9) 100%),
    linear-gradient(180deg, rgba(107,45,92,0.85) 0%, rgba(107,45,92,0.85) 55%, rgba(217,74,107,0.85) 55%, rgba(217,74,107,0.85) 100%),
    linear-gradient(180deg, rgba(232,93,47,0.9) 0%, rgba(232,93,47,0.9) 45%, rgba(245,234,214,0.9) 45%, rgba(245,234,214,0.9) 100%);
  background-size:
    18% 32%,
    22% 28%,
    16% 35%,
    20% 30%,
    18% 33%;
  background-position:
    5% 22%,
    28% 26%,
    48% 20%,
    72% 30%,
    90% 24%;
  background-repeat:
    no-repeat;
  filter: blur(0.5px);
}
.rothko-mosaic::after {
  background-position:
    8% 60%,
    32% 66%,
    54% 62%,
    76% 70%,
    92% 64%;
  transform: translateY(28%);
  filter: hue-rotate(10deg) blur(0.5px);
}
/* Version --muted : champ monochrome Rothko (une seule couleur profonde) */
.rothko-mosaic--muted {
  background: #6a1a12;
}
.rothko-mosaic--muted::before,
.rothko-mosaic--muted::after {
  background-image: none;
  filter: none;
  transform: none;
  animation: none;
  opacity: 1;
}
.rothko-mosaic--muted::before {
  background:
    radial-gradient(ellipse 90% 70% at 50% 30%, #b8351a 0%, #8f2a15 40%, #4a1208 100%);
}
.rothko-mosaic--muted::after {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,0.5), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(232,93,47,0.25), transparent 60%);
  mix-blend-mode: multiply;
}

/* ============================================================
   SLIDE 01 — COVER
   ============================================================ */
.slide--cover {
  background: #0a0810;
  color: var(--paper);
}
.tv-set {
  position: relative;
  width: min(760px, 82vw);
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tv-set > .tv-frame,
.tv-set > .tv-neck,
.tv-set > .tv-base {
  align-self: center;
}
.tv-frame {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #1a1a20 0%, #0a0a12 40%, #050508 100%);
  border-radius: 18px;
  padding: 22px 22px 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.tv-bezel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 40px rgba(0,0,0,0.8);
}
.tv-screen {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,51,160,0.18) 0%, transparent 70%),
    linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.tv-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.02) 100%);
}
.tv-glare::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(115deg, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.tv-logo {
  width: clamp(70px, 10vw, 120px);
  filter: drop-shadow(0 10px 30px rgba(0,51,160,0.5));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.tv-brand {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--blue-electric);
  letter-spacing: 0.02em;
  line-height: 1;
}
.tv-brand span { color: var(--blue-electric); }
.tv-sub {
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.tv-chin {
  position: relative;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}
.tv-led {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-30%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-electric);
  box-shadow: 0 0 6px rgba(74,111,216,0.8), 0 0 10px rgba(74,111,216,0.4);
  animation: tv-led-pulse 2.5s ease-in-out infinite;
}
@keyframes tv-led-pulse {
  0%, 100% { opacity: 0.9; box-shadow: 0 0 6px rgba(74,111,216,0.8), 0 0 10px rgba(74,111,216,0.4); }
  50%      { opacity: 0.5; box-shadow: 0 0 4px rgba(74,111,216,0.5), 0 0 6px rgba(74,111,216,0.2); }
}
.tv-brandmark {
  font-family: var(--font-sans);
  font-size: clamp(0.55rem, 0.8vw, 0.7rem);
  letter-spacing: 0.35em;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
}
.tv-grille {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-30%);
  width: 46px;
  height: 6px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1.5px);
  background-size: 4px 4px;
  background-repeat: repeat;
}

/* Stand : col + socle */
.tv-neck {
  position: relative;
  width: 12%;
  height: 22px;
  margin: -4px auto 0;
  background: linear-gradient(180deg, #1a1a20, #0a0a12);
  border-radius: 0 0 4px 4px;
  z-index: -1;
}
.tv-base {
  position: relative;
  width: 40%;
  height: 12px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1a20 0%, #0a0a12 60%, #000 100%);
  border-radius: 3px;
  box-shadow:
    0 15px 30px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.tv-base::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.4), transparent 70%);
}

.cover-meta {
  margin-top: 4rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}
.cover-meta__year {
  margin-top: 1rem;
  color: var(--rothko-yellow);
  letter-spacing: 0.3em;
  font-weight: 500;
}

/* ============================================================
   SLIDE 02 — MALRAUX / ROTHKO CHAPEL
   ============================================================ */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.rothko-chapel {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #d4a4a0 0%, #b58680 60%, #6a3a3a 100%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.rothko-chapel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 25%;
  background: linear-gradient(180deg, rgba(80,50,50,0.4), transparent);
}
.chapel-panel {
  position: absolute;
  background: linear-gradient(180deg, #3a1a25 0%, #2a0f18 50%, #1a0812 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.chapel-panel--left {
  top: 20%; left: 8%;
  width: 22%; height: 55%;
}
.chapel-panel--center {
  top: 15%; left: 34%;
  width: 32%; height: 62%;
}
.chapel-panel--right {
  top: 20%; left: 70%;
  width: 22%; height: 55%;
}
.chapel-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 18%;
  background: linear-gradient(180deg, #4a2a2a, #2a1515);
}

.quote-text .quote-big {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: 2rem;
}
.quote-text .quote-big em {
  color: var(--rothko-yellow);
}
.quote-attr {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 3rem;
}
.quote-note {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}
.quote-note strong { color: var(--rothko-orange); font-weight: 500; }

@media (max-width: 900px) {
  .quote-layout { grid-template-columns: 1fr; gap: 2rem; }
  .rothko-chapel { max-width: 340px; margin: 0 auto; }
}

/* ============================================================
   SLIDE 03 — SOMMAIRE
   ============================================================ */
.slide--sommaire { background: var(--paper); }
.sommaire {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem 3rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  counter-reset: item;
}
.sommaire li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.25s;
}
.sommaire li:hover { color: var(--rothko-orange); }
.sommaire li span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--rothko-orange);
  letter-spacing: 0.1em;
  font-weight: 500;
  min-width: 2rem;
}

@media (max-width: 900px) { .sommaire { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sommaire { grid-template-columns: 1fr; } }

/* ============================================================
   SLIDE 04 — TIMELINE
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 3rem; left: 4%; right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--rothko-yellow), var(--rothko-orange), var(--rothko-red), var(--rothko-crimson));
}
.timeline__item {
  padding: 5.5rem 1.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  top: 2.6rem; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--rothko-orange);
  box-shadow: 0 0 0 4px #fff, 0 6px 20px rgba(232,93,47,0.35);
}
.timeline__date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--rothko-orange);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.timeline__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.timeline__item p {
  font-size: 0.9rem;
  color: rgba(10,8,16,0.65);
  line-height: 1.55;
  margin: 0;
}
.timeline__item--now {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-color: transparent;
}
.timeline__item--now::before {
  background: var(--blue-electric);
  box-shadow: 0 0 0 4px var(--blue-deep), 0 6px 20px rgba(0,51,160,0.5);
}
.timeline__item--now .timeline__date { color: var(--blue-electric); }
.timeline__item--now p { color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
}

/* ============================================================
   SLIDE 05 — SPLIT PAST/NOW + STATS
   ============================================================ */
.split-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.split-card {
  padding: 2.5rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line-dark);
}
.split-card--past { border-top: 3px solid rgba(10,8,16,0.4); }
.split-card--now {
  border-top: 3px solid var(--rothko-orange);
  background: linear-gradient(160deg, #fff, #fff8ee);
}
.split-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rothko-orange);
  margin-bottom: 1.5rem;
}
.split-card--past .split-card__label { color: rgba(10,8,16,0.4); }
.split-card ul { list-style: none; }
.split-card li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
}
.split-card li:last-child { border: 0; }
.split-card__arrow { color: var(--rothko-orange); }
.split-card__arrow svg { width: 60px; }

.stat-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  border-radius: 16px;
  color: var(--paper);
}
.stat { text-align: center; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--rothko-yellow);
}
.stat__value span {
  font-size: 0.5em;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.stat__label {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .split-cards { grid-template-columns: 1fr; }
  .split-card__arrow { transform: rotate(90deg); }
  .stat-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   SLIDE 06 — 5 NIVEAUX
   ============================================================ */
.levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.level {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: transform 0.3s, background 0.3s;
}
.level:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.level__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.level__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--rothko-yellow);
  margin-bottom: 0.75rem;
}
.level p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

@media (max-width: 1000px) { .levels { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .levels { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SLIDE 07 — GEO MAP
   ============================================================ */
.geo {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.geo__map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}
.geo__legend {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.geo__pin {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--rothko-orange);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 1rem;
  align-items: baseline;
}
.geo__pin--main {
  border-left-color: var(--blue-brand);
  background: linear-gradient(160deg, #fff, #f0f5fc);
}
.geo__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--rothko-orange);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.geo__pin--main .geo__num { color: var(--blue-brand); }
.geo__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.geo__pin p {
  grid-column: 2;
  font-size: 0.85rem;
  color: rgba(10,8,16,0.65);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1000px) { .geo { grid-template-columns: 1fr; } }

/* ============================================================
   SLIDE 08 — CATALOG / THEMES
   ============================================================ */
.themes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 2rem 0 3rem;
}
.theme {
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
.theme__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.theme--art .theme__label { color: var(--rothko-yellow); }
.theme--sci .theme__label { color: var(--blue-electric); }
.theme--soc .theme__label { color: var(--rothko-orange); }
.theme--nature .theme__label { color: var(--rothko-pink); }
.theme--move .theme__label { color: var(--gold); }
.theme__list {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.softpower-bar {
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.softpower-bar__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.softpower-bar__flow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
}
.softpower-bar__flow span:nth-child(even) {
  color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
}

@media (max-width: 1100px) { .themes { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .themes { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SLIDE 09 — SCHÉMA IPTV
   ============================================================ */
.iptv-schema {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  align-items: stretch;
  margin: 2rem 0 2rem;
}
.iptv-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.iptv-col__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  text-align: center;
  padding: 0.6rem;
  background: #fff;
  border-radius: 6px 6px 0 0;
  border: 1px solid var(--line-dark);
  border-bottom: 2px solid var(--rothko-orange);
}
.iptv-node {
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  min-height: 56px;
}
.iptv-node svg { width: 18px; height: 18px; color: var(--blue-royal); flex-shrink: 0; }
.iptv-node--dark {
  background: var(--blue-deep);
  color: var(--paper);
  border-color: var(--blue-deep);
}
.iptv-node--accent {
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  border-color: transparent;
  font-weight: 600;
  flex-direction: column;
  text-align: center;
  padding: 1.2rem 1rem;
}
.iptv-node--accent svg { width: 26px; height: 26px; color: currentColor; }
.iptv-node--light {
  background: #f8f5ec;
}
.iptv-arrow {
  align-self: center;
  color: rgba(10,8,16,0.3);
  font-size: 1.3rem;
  padding-top: 2.5rem;
}
.iptv-mini {
  padding: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(10,8,16,0.55);
  text-align: center;
  background: #f8f5ec;
  border-radius: 6px;
  line-height: 1.5;
}
.iptv-note {
  padding: 1.5rem;
  background: var(--near-black);
  color: var(--paper);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .iptv-schema { grid-template-columns: 1fr; }
  .iptv-arrow { transform: rotate(90deg); padding: 0; text-align: center; }
}

/* ============================================================
   SLIDE 10 — BOÎTIER IP + TÉLÉCOMMANDE
   ============================================================ */
.box-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.box-visual {
  position: relative;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at center, rgba(0,51,160,0.12), transparent 70%);
  border-radius: 20px;
  padding: 2rem;
}
.box-visual__router {
  position: absolute;
  top: 15%; left: 10%;
  width: 45%;
  height: 90px;
  background: linear-gradient(180deg, #1a1a2e, #0a0a15);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box-visual__lights {
  display: flex;
  gap: 0.4rem;
}
.box-visual__lights span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rothko-orange);
  animation: blink 1.5s ease-in-out infinite;
}
.box-visual__lights span:nth-child(2) { background: var(--blue-electric); animation-delay: 0.3s; }
.box-visual__lights span:nth-child(3) { background: var(--rothko-yellow); animation-delay: 0.6s; }
.box-visual__lights span:nth-child(4) { background: var(--blue-electric); animation-delay: 0.9s; }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.box-visual__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.box-visual__wire {
  position: absolute;
  top: 32%; left: 55%;
  width: 15%; height: 2px;
  background: linear-gradient(90deg, var(--rothko-orange), var(--blue-electric));
}
.box-visual__tv {
  position: absolute;
  top: 15%; right: 10%;
  width: 32%; aspect-ratio: 16/10;
  background: #0a0a12;
  border: 4px solid #0a0a15;
  border-radius: 6px;
  padding: 8px;
}
.box-visual__tv-screen {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,51,160,0.15), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-visual__tv-screen img {
  width: 40%;
  opacity: 0.9;
}
.box-visual__remote {
  position: absolute;
  bottom: 8%; left: 50%;
  transform: translateX(-50%);
  width: 30%; aspect-ratio: 2/5;
  background: linear-gradient(180deg, #2a1a1a, #1a0f0f);
  border-radius: 30px 30px 20px 20px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.box-visual__remote-dot {
  width: 40%;
  height: 8%;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.box-visual__remote-dot:nth-child(1) { background: var(--rothko-orange); }
.box-visual__remote-signature {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-align: center;
  text-transform: uppercase;
}

.box-copy {
  display: grid;
  gap: 1.5rem;
}
.box-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.box-feature__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
}
.box-feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.35rem;
}
.box-feature p {
  grid-column: 2;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) { .box-layout { grid-template-columns: 1fr; } }

/* ============================================================
   SLIDE 11 — PROGRAMMES
   ============================================================ */
.programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.program {
  padding: 1.5rem 1.35rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  border-left: 3px solid var(--rothko-orange);
  transition: transform 0.25s, box-shadow 0.25s;
}
.program:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(10,8,16,0.08);
}
.program__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.program__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(10,8,16,0.7);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}
.program__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.program__tags span {
  padding: 0.3rem 0.65rem;
  background: #f5f0e3;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--rothko-crimson);
  font-weight: 500;
}

@media (max-width: 1000px) { .programs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .programs { grid-template-columns: 1fr; } }

/* ============================================================
   SLIDE 12 — SUJETS COURTS
   ============================================================ */
.shorts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.short {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  transition: all 0.3s;
}
.short:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10,8,16,0.08);
  border-color: var(--rothko-orange);
}
.short__icon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rothko-orange);
  margin-bottom: 0.8rem;
  line-height: 1;
}
.short h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.short p {
  font-size: 0.85rem;
  color: rgba(10,8,16,0.65);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1000px) { .shorts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .shorts { grid-template-columns: 1fr; } }

/* ============================================================
   SLIDE 13 — GRILLE TV COULEURS
   ============================================================ */
.grid-tv {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 2rem;
  background: #0f0e14;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.grid-tv__times {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 0.4rem;
  padding-top: 2rem;
}
.grid-tv__times span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}
.grid-tv__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}
.day {
  display: grid;
  grid-template-rows: auto repeat(5, minmax(30px, 1fr));
  gap: 0.35rem;
}
.day__name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 0.4rem;
  font-weight: 600;
}
.prog {
  padding: 0.4rem 0.5rem;
  border-radius: 3px;
  font-size: 0.7rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
}
.prog--pink   { background: #d94a6b; }
.prog--orange { background: #e85d2f; }
.prog--purple { background: #6b2d5c; }
.prog--red    { background: #b8351a; }
.prog--dark   { background: #4a1a2c; }

/* ============================================================
   SLIDE 14 — TV4U
   ============================================================ */
.tv4u {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.tv4u__flow {
  display: grid;
  gap: 1rem;
}
.tv4u__step {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--blue-brand);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.25rem;
  align-items: baseline;
}
.tv4u__num {
  font-family: var(--font-mono);
  color: var(--blue-brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.tv4u__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.tv4u__step p {
  grid-column: 2;
  font-size: 0.88rem;
  color: rgba(10,8,16,0.65);
  line-height: 1.5;
  margin: 0;
}
.tv4u__mock {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #0f2544, #1a3a6a);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(10, 26, 58, 0.35);
  color: var(--paper);
}
.tv4u__mock-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.tv4u__mock-head span:first-child {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--blue-electric);
  letter-spacing: 0.05em;
}
.tv4u__mock-head span:last-child {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
}
.tv4u__mock-tags {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.tv4u__mock-tags span {
  padding: 0.3rem 0.7rem;
  background: rgba(0,51,160,0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--blue-electric);
}
.tv4u__mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.tv4u__mock-card {
  aspect-ratio: 4/3;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.tv4u__mock-card--1 { background: linear-gradient(135deg, #e85d2f, #b8351a); }
.tv4u__mock-card--2 { background: linear-gradient(135deg, #d94a6b, #6b2d5c); }
.tv4u__mock-card--3 { background: linear-gradient(135deg, #f5a623, #e85d2f); }
.tv4u__mock-card--4 { background: linear-gradient(135deg, #6b2d5c, #4a1a2c); }
.tv4u__mock-card--5 { background: linear-gradient(135deg, #3d9bff, #163a7a); }
.tv4u__mock-card--6 { background: linear-gradient(135deg, #b8351a, #4a1a2c); }

@media (max-width: 1000px) { .tv4u { grid-template-columns: 1fr; } }

/* ============================================================
   SLIDE 15 — APPS
   ============================================================ */
.apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.app {
  padding: 2rem 1.75rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line-dark);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.app:hover {
  transform: translateY(-6px);
  border-color: var(--rothko-orange);
  box-shadow: 0 25px 50px rgba(10,8,16,0.08);
}
.app__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.app__icon svg { width: 28px; height: 28px; }
.app h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.app p {
  font-size: 0.9rem;
  color: rgba(10,8,16,0.65);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1000px) { .apps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .apps { grid-template-columns: 1fr; } }

/* ============================================================
   SLIDE 16 — BUSINESS MODEL (GRADIENT)
   ============================================================ */
.gradient-model {
  padding: 3rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  margin-bottom: 3rem;
}
.gradient-model__scale {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.gradient-model__side {
  text-align: center;
}
.gradient-model__side-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(10,8,16,0.55);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.gradient-model__side-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.gradient-model__side--free .gradient-model__side-value { color: var(--rothko-orange); }
.gradient-model__side--premium .gradient-model__side-value { color: var(--blue-brand); }
.gradient-model__gradient {
  position: relative;
  height: 40px;
  background: linear-gradient(90deg, var(--rothko-orange), var(--rothko-yellow), var(--paper-warm), var(--blue-electric), var(--blue-deep));
  border-radius: 999px;
}
.gradient-model__ticks {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0.75rem 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(10,8,16,0.6);
  text-transform: uppercase;
}
.gradient-model__caption {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(10,8,16,0.6);
}

.revenue-streams {
  padding: 2rem;
  background: var(--near-black);
  color: var(--paper);
  border-radius: 14px;
}
.revenue-streams__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--rothko-yellow);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.revenue-streams__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.revenue-streams__grid span {
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 900px) {
  .gradient-model__scale { grid-template-columns: 1fr; }
  .revenue-streams__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SLIDE 17 — PARTENAIRES
   ============================================================ */
.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.partner-block {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
}
.partner-block__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--rothko-orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}
.partner-block__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.partner-block p {
  font-size: 0.88rem;
  color: rgba(10,8,16,0.65);
  line-height: 1.5;
  margin: 0;
}

.partners-open {
  padding: 1.75rem 2rem;
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  align-items: center;
}
.partners-open span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--rothko-yellow);
  text-transform: uppercase;
  font-weight: 600;
}
.partners-open div {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}

@media (max-width: 900px) { .partners { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SLIDE 18 — STRUCTURE JURIDIQUE
   ============================================================ */
.legal__timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.legal__step {
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-align: center;
}
.legal__step--current {
  background: linear-gradient(160deg, var(--rothko-orange), var(--rothko-red));
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(232,93,47,0.25);
}
.legal__step-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.legal__step--current .legal__step-label { color: rgba(255,255,255,0.85); }
.legal__step-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.4rem;
}
.legal__step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.legal__step--current p { color: rgba(255,255,255,0.9); }
.legal__arrow {
  color: var(--gold);
  font-size: 1.5rem;
}

.legal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.legal__card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.legal__card-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--rothko-yellow);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}
.legal__card-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--paper);
  line-height: 1;
}
.legal__card-value span {
  font-size: 0.6em;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-left: 0.15rem;
}
.legal__card p {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .legal__timeline { grid-template-columns: 1fr; }
  .legal__arrow { transform: rotate(90deg); }
  .legal__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SLIDE 19 — BUDGET
   ============================================================ */
.budget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}
.budget__chart {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
}
.budget__total {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.budget__total-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(10,8,16,0.55);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.budget__total-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--rothko-crimson);
  line-height: 1;
}
.budget__total-value span {
  font-size: 0.4em;
  color: rgba(10,8,16,0.55);
  font-weight: 400;
  margin-left: 0.3rem;
}

.budget__lines {
  display: grid;
  gap: 0.45rem;
}
.budget-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--line-dark);
}
.budget-line__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color);
}
.budget-line__label {
  font-size: 0.85rem;
  font-weight: 500;
}
.budget-line__value {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(10,8,16,0.7);
  font-weight: 500;
}
.budget__note {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(10,8,16,0.55);
  font-size: 0.95rem;
}

@media (max-width: 900px) { .budget { grid-template-columns: 1fr; } }

/* ============================================================
   SLIDE 20 — PRÉVISIONNEL
   ============================================================ */
.forecast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.forecast-chart {
  padding: 1.75rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
}
.forecast-chart__head { margin-bottom: 1rem; }
.forecast-chart__head h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
}
.forecast-chart canvas { max-height: 220px !important; }

.forecast-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  border-radius: 14px;
  color: var(--paper);
  margin-bottom: 1rem;
}
.kpi { text-align: center; }
.kpi__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--rothko-yellow);
  line-height: 1;
}
.kpi__value span {
  font-size: 0.45em;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-left: 0.2rem;
}
.kpi__label {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}
.forecast-note {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(10,8,16,0.55);
}

@media (max-width: 900px) {
  .forecast-grid { grid-template-columns: 1fr; }
  .forecast-kpis { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SLIDE 21 — ÉQUIPE
   ============================================================ */
.team-cards {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.team-card {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: transform 0.3s, background 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}
.team-card--main {
  background: linear-gradient(160deg, rgba(0,51,160,0.15), rgba(0,51,160,0.03));
  border-color: rgba(74,111,216,0.25);
}
.team-card__avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.team-card--main .team-card__avatar {
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-deep));
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.35rem;
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.team-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0 0 1rem;
}
.team-card__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.team-card__contact a {
  color: var(--blue-electric);
  text-decoration: none;
  transition: color 0.2s;
}
.team-card__contact a:hover { color: var(--paper); }

.ecosystem-mini {
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.ecosystem-mini__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--rothko-orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}
.ecosystem-mini__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ecosystem-mini__list span {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
  .team-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   OUTRO
   ============================================================ */
.slide--outro {
  background: var(--black);
  color: var(--paper);
}
.outro-logo {
  width: clamp(90px, 12vw, 130px);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 20px 60px rgba(0,51,160,0.5));
}
.outro-brand {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--blue-electric);
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
.outro-brand span { color: var(--blue-electric); }
.outro-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 2.5rem;
}
.outro-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rothko-yellow);
}
.outro-body {
  max-width: 640px;
  margin: 0 auto 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.outro-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--blue-electric);
  text-transform: uppercase;
}
.outro-contact {
  display: inline-flex;
  gap: 1rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.outro-contact a {
  color: var(--paper);
  text-decoration: none;
  transition: color 0.2s;
}
.outro-contact a:hover { color: var(--blue-electric); }
.outro-contact span { color: rgba(255,255,255,0.4); }
.outro-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   PAGE 3 — SOLUTION (nouvelle mise en page)
   ============================================================ */
.slide-head--tight { margin-bottom: 2rem; }
.slide-head--tight h2 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); }

.solution-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.sol-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.sol-card--channel {
  background: linear-gradient(160deg, rgba(232,93,47,0.1), rgba(184,53,26,0.02));
  border-color: rgba(232,93,47,0.2);
}
.sol-card--user {
  background: linear-gradient(160deg, rgba(0,51,160,0.15), rgba(0,51,160,0.02));
  border-color: rgba(74,111,216,0.25);
}

/* Header avec mockup en illustration */
.sol-card__head {
  position: relative;
  padding: 1.5rem 1.75rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.sol-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--rothko-yellow);
  letter-spacing: -0.02em;
}
.sol-card--user .sol-card__num { color: var(--blue-klein-soft); }

/* Mockup écran INDIE.CO */
.sol-card__mock {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a0f0d, #2a1410);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.sol-card__mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(232,93,47,0.15), transparent 60%);
  pointer-events: none;
}
.sol-card__mock-live {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--rothko-orange);
  font-weight: 700;
  padding-left: 0.4rem;
}
.sol-card__mock-live::before {
  content: "";
  position: absolute;
  left: -6px; top: 50%;
  transform: translateY(-40%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rothko-orange);
  box-shadow: 0 0 0 0 rgba(232, 93, 47, 0.6);
  animation: live-pulse 1.8s ease-out infinite;
}
.sol-card__mock-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--paper);
}
.sol-card__mock-bars {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 12px;
  margin-top: 0.25rem;
}
.sol-card__mock-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--rothko-yellow), var(--rothko-orange));
  border-radius: 2px;
  animation: sound-bar 1.4s ease-in-out infinite;
}
.sol-card__mock-bars span:nth-child(1) { height: 60%; animation-delay: 0s;   }
.sol-card__mock-bars span:nth-child(2) { height: 90%; animation-delay: 0.2s; }
.sol-card__mock-bars span:nth-child(3) { height: 50%; animation-delay: 0.4s; }
.sol-card__mock-bars span:nth-child(4) { height: 75%; animation-delay: 0.6s; }
@keyframes sound-bar {
  0%, 100% { transform: scaleY(0.6); }
  50%      { transform: scaleY(1);   }
}

/* Mockup TV4U */
.sol-card__mock--user {
  background: linear-gradient(135deg, #0f1f3d, #163a7a);
}
.sol-card__mock--user::before {
  background: radial-gradient(ellipse at top left, rgba(0,51,160,0.2), transparent 60%);
}
.sol-card__mock-for {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--blue-electric);
  font-weight: 700;
}
.sol-card__mock-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  flex: 1;
}
.sol-card__mock-grid span {
  border-radius: 3px;
  animation: mock-fade 3.5s ease-in-out infinite;
}
.sol-card__mock-grid span:nth-child(1) { background: linear-gradient(135deg, #e85d2f, #b8351a); }
.sol-card__mock-grid span:nth-child(2) { background: linear-gradient(135deg, #d94a6b, #6b2d5c); animation-delay: 0.3s; }
.sol-card__mock-grid span:nth-child(3) { background: linear-gradient(135deg, #f5a623, #e85d2f); animation-delay: 0.6s; }
.sol-card__mock-grid span:nth-child(4) { background: linear-gradient(135deg, #3d9bff, #163a7a); animation-delay: 0.9s; }
@keyframes mock-fade {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

/* Corps de la carte */
.sol-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.sol-card__brand {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--paper);
  margin-bottom: 0.35rem;
}
.sol-card__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--rothko-yellow);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.sol-card--user .sol-card__tagline { color: var(--blue-electric); }
.sol-card__desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}
.sol-card__desc strong {
  color: var(--paper);
  font-weight: 600;
}
.sol-card__list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  padding: 1rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sol-card__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.sol-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rothko-orange);
}
.sol-card--user .sol-card__list li::before { background: var(--blue-electric); }

/* Baseline avec les 3 piliers en ligne */
.solution-baseline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  max-width: max-content;
  margin: 0 auto;
}
.solution-baseline__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--paper);
}
.solution-baseline__icon {
  color: var(--rothko-orange);
  font-size: 1.1rem;
}
.solution-baseline__sep {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .solution-duo { grid-template-columns: 1fr; gap: 1.5rem; max-width: 780px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 900px) {
  .solution-duo { gap: 1.25rem; }
  .sol-card__head { grid-template-columns: auto 1fr; padding: 1.25rem 1.25rem 0; }
  .sol-card__num { font-size: 2.25rem; }
  .sol-card__body { padding: 1.25rem; }
  .sol-card__tagline { font-size: 1.25rem; }
  .solution-baseline { flex-direction: column; padding: 1.25rem 1.5rem; border-radius: 20px; max-width: 100%; }
  .solution-baseline__sep { display: none; }
}

/* ============================================================
   PAGE 5 — TECH FLOW horizontal (nouveau)
   ============================================================ */
.tech-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}
.tech-flow__step {
  padding: 1.25rem 1rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tech-flow__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(10,8,16,0.08);
}
.tech-flow__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0,51,160,0.08);
  color: var(--blue-royal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-flow__icon svg { width: 24px; height: 24px; }
.tech-flow__title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.tech-flow__desc {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: rgba(10,8,16,0.55);
  line-height: 1.35;
}
.tech-flow__arrow {
  align-self: center;
  color: rgba(232,93,47,0.6);
  font-size: 1.1rem;
}
.tech-flow__step--main {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(10,26,58,0.15);
}
.tech-flow__step--main .tech-flow__icon {
  background: rgba(255,255,255,0.1);
  color: var(--blue-electric);
}
.tech-flow__step--main .tech-flow__title { color: var(--paper); }
.tech-flow__step--main .tech-flow__desc { color: rgba(255,255,255,0.65); }
.tech-flow__step--ai {
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(232,93,47,0.25);
}
.tech-flow__step--ai .tech-flow__icon {
  background: rgba(255,255,255,0.15);
  color: var(--paper);
}
.tech-flow__step--ai .tech-flow__title { color: var(--paper); }
.tech-flow__step--ai .tech-flow__desc { color: rgba(255,255,255,0.75); }
.tech-flow__step--last {
  background: linear-gradient(160deg, #fff, #fff8ee);
  border-color: rgba(232,93,47,0.2);
}
.tech-flow__step--last .tech-flow__icon {
  background: rgba(232,93,47,0.12);
  color: var(--rothko-orange);
}

/* Tech duo : AI + OTT côte à côte */
.tech-duo {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.tech-duo .ai-illustration,
.tech-duo .ott-illustration { margin: 0; }

@media (max-width: 1100px) {
  .tech-flow { grid-template-columns: 1fr; }
  .tech-flow__arrow { transform: rotate(90deg); align-self: center; padding: 0.15rem 0; }
  .tech-duo { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE 4 — PIPELINE V2 (schéma visuel enrichi) [legacy]
   ============================================================ */
.pipeline-v2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.pipeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.1rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pipeline-step:hover {
  transform: translateX(4px);
  border-color: var(--rothko-orange);
  box-shadow: 0 15px 30px rgba(10,8,16,0.06);
}
.pipeline-step__icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(0,51,160,0.08);
  color: var(--blue-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pipeline-step__icon svg { width: 28px; height: 28px; }
.pipeline-step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.pipeline-step__desc {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(10,8,16,0.55);
}
.pipeline-step__badge {
  padding: 0.35rem 0.75rem;
  background: rgba(10,26,58,0.08);
  color: var(--blue-royal);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
}
.pipeline-step__badge--ai {
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
}

.pipeline-step--main {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(10,26,58,0.15);
}
.pipeline-step--main .pipeline-step__icon {
  background: rgba(255,255,255,0.08);
  color: var(--blue-electric);
}
.pipeline-step--main .pipeline-step__title { color: var(--paper); }
.pipeline-step--main .pipeline-step__desc { color: rgba(255,255,255,0.6); }
.pipeline-step--main .pipeline-step__badge {
  background: rgba(255,255,255,0.1);
  color: var(--blue-electric);
}
.pipeline-step--main:hover { transform: translateX(4px); box-shadow: 0 20px 40px rgba(10,26,58,0.25); }

.pipeline-step--ai {
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(232,93,47,0.25);
}
.pipeline-step--ai .pipeline-step__icon {
  background: rgba(255,255,255,0.15);
  color: var(--paper);
}
.pipeline-step--ai .pipeline-step__title { color: var(--paper); }
.pipeline-step--ai .pipeline-step__desc { color: rgba(255,255,255,0.75); }
.pipeline-step--ai:hover { transform: translateX(4px); box-shadow: 0 20px 40px rgba(232,93,47,0.35); }

/* Connecteurs verticaux entre étapes */
.pipeline-connector {
  position: relative;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pipeline-connector::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(10,8,16,0.15), rgba(232,93,47,0.35));
}
.pipeline-connector span {
  position: relative;
  z-index: 2;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--rothko-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pipeline-connector span::before {
  content: "";
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--rothko-orange);
  transform: translateY(1px);
}

/* Rangée des écrans finaux */
.pipeline-devices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(160deg, #fff, var(--paper-warm));
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  margin-top: 0;
}
.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  color: var(--blue-royal);
  transition: transform 0.3s, background 0.3s;
}
.device:hover {
  background: rgba(0,51,160,0.08);
  transform: translateY(-3px);
}
.device svg {
  width: 32px; height: 32px;
}
.device--tablet svg, .device--phone svg { width: 22px; }
.device span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(10,8,16,0.7);
  font-weight: 500;
}

/* Layout global slide 4 */
.techno-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.techno-side { display: grid; gap: 1.5rem; }

/* ---------- Bloc IA illustré ---------- */
.ai-illustration {
  padding: 2rem;
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(10,26,58,0.2);
  position: relative;
  overflow: hidden;
}
.ai-illustration::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,111,216,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ai-illustration__label {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rothko-yellow);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.ai-illustration h4 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.ai-network {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 160px;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background: rgba(0,0,0,0.15);
  border-radius: 10px;
}
.ai-network circle {
  transform-origin: center;
  transform-box: fill-box;
}
.ai-network circle[fill="#e85d2f"] {
  animation: neuron-pulse 2.5s ease-in-out infinite;
}
.ai-network circle[fill="#e85d2f"]:nth-of-type(2) { animation-delay: 0.3s; }
.ai-network circle[fill="#e85d2f"]:nth-of-type(3) { animation-delay: 0.6s; }
.ai-network circle[fill="#e85d2f"]:nth-of-type(4) { animation-delay: 0.9s; }
@keyframes neuron-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(232,93,47,0.4)); }
  50%      { transform: scale(1.2); filter: drop-shadow(0 0 12px rgba(232,93,47,0.9)); }
}

.ai-features {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.ai-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 2px solid var(--rothko-orange);
}
.ai-feature__num {
  font-family: var(--font-mono);
  color: var(--rothko-yellow);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-top: 0.15rem;
}
.ai-features strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.1rem;
}
.ai-features span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ---------- Illustration OTT (téléphone v2) ---------- */
.ott-illustration {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(10,8,16,0.05);
}

/* Copy à gauche */
.ott-copy { align-self: center; }
.ott-copy__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.ott-copy h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.25rem;
  line-height: 1.15;
}
.ott-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 0.5rem;
}
.ott-steps li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(160deg, #fff, #fff8ee);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(10,8,16,0.8);
  transition: transform 0.25s, background 0.25s;
}
.ott-steps li:hover {
  transform: translateX(3px);
  background: linear-gradient(160deg, #fff, #fff0d8);
}
.ott-steps li span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--rothko-orange);
  font-weight: 600;
  min-width: 20px;
}

/* Téléphone plus grand et détaillé */
.ott-phone {
  justify-self: center;
  align-self: center;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.15));
}
.ott-phone__frame {
  position: relative;
  width: 180px;
  aspect-ratio: 9 / 19.5;
  background: #0a0d16;
  border-radius: 26px;
  padding: 7px;
  box-shadow:
    inset 0 0 0 2px #1a1f2e,
    inset 0 0 0 3px rgba(255,255,255,0.05);
}
.ott-phone__notch {
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 42%; height: 16px;
  background: #0a0d16;
  border-radius: 0 0 10px 10px;
  z-index: 3;
}
.ott-phone__screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0f1830 0%, #163a7a 50%, #0f1830 100%);
  border-radius: 20px;
  padding: 22px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

/* Barre de statut */
.ott-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.ott-status__icons { letter-spacing: 0.1em; }

/* Profil */
.ott-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  align-items: center;
  padding: 6px 4px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ott-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  box-shadow: 0 0 8px rgba(232,93,47,0.5);
}
.ott-profile__hi {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 2px;
}
.ott-profile__sub {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}

/* Tabs */
.ott-tabs {
  display: flex;
  gap: 4px;
  padding: 2px 0;
}
.ott-tabs__item {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  padding: 3px 7px;
  border-radius: 999px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  letter-spacing: 0.05em;
}
.ott-tabs__item--active {
  background: var(--rothko-orange);
  color: var(--paper);
  font-weight: 600;
}

/* Hero card featured */
.ott-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.ott-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%),
    linear-gradient(135deg, #e85d2f, #b8351a 50%, #6b2d5c 100%);
  animation: ott-hero-shift 8s ease-in-out infinite;
}
@keyframes ott-hero-shift {
  0%, 100% { filter: hue-rotate(0deg); }
  50%      { filter: hue-rotate(15deg); }
}
.ott-hero__badge {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  color: var(--rothko-yellow);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.ott-hero__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.68rem;
  color: var(--paper);
  line-height: 1.15;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Grid programmes */
.ott-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  flex: 1;
}
.ott-card {
  aspect-ratio: 4/3;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  animation: ott-fade 4s ease-in-out infinite;
  display: flex;
  align-items: flex-end;
  padding: 4px 5px;
}
.ott-card span {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  color: var(--paper);
  letter-spacing: 0.05em;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.ott-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}
.ott-card--1 { background: linear-gradient(135deg, #e85d2f, #b8351a); }
.ott-card--2 { background: linear-gradient(135deg, #d94a6b, #6b2d5c); animation-delay: 0.3s; }
.ott-card--3 { background: linear-gradient(135deg, #f5a623, #e85d2f); animation-delay: 0.6s; }
.ott-card--4 { background: linear-gradient(135deg, #3d9bff, #163a7a); animation-delay: 0.9s; }
@keyframes ott-fade {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 1; }
}

/* Bottom nav dots */
.ott-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 4px 0 2px;
}
.ott-nav__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.ott-nav__dot--active {
  background: var(--rothko-orange);
  width: 14px;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .ott-illustration { grid-template-columns: 1fr; text-align: center; }
  .ott-steps li { text-align: left; }
  .ott-phone__frame { width: 160px; }
}

@media (max-width: 1100px) {
  .techno-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pipeline-step { grid-template-columns: 44px 1fr; padding: 1rem 1rem; gap: 0.85rem; }
  .pipeline-step__icon { width: 40px; height: 40px; }
  .pipeline-step__icon svg { width: 22px; height: 22px; }
  .pipeline-step__title { font-size: 1rem; }
  .pipeline-step__desc { font-size: 0.68rem; }
  .pipeline-step__badge { grid-column: 1 / -1; justify-self: start; margin-top: 0.4rem; }
  .pipeline-devices { grid-template-columns: 1fr 1fr; }
  .ott-illustration { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .ott-phone { width: 110px; }
}

/* ============================================================
   PAGE 2 — LE PROBLÈME (stats + grid + quote)
   ============================================================ */
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.problem-stat {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--rothko-crimson);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.problem-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10,8,16,0.06);
}
.problem-stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--rothko-crimson);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.problem-stat__value span {
  font-size: 0.45em;
  color: rgba(10,8,16,0.55);
  font-weight: 400;
  margin-left: 0.15rem;
}
.problem-stat__label {
  font-size: 0.9rem;
  color: rgba(10,8,16,0.65);
  line-height: 1.5;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.problem-card {
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, #fff, #fff8ee);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(232,93,47,0.08);
}
.problem-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(232,93,47,0.12);
  color: var(--rothko-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.problem-card__icon svg { width: 22px; height: 22px; }

.problem-card__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--rothko-orange);
  margin-bottom: 1rem;
}
.problem-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.problem-card p {
  font-size: 0.92rem;
  color: rgba(10,8,16,0.65);
  line-height: 1.55;
  margin: 0;
}
.problem-card strong {
  color: var(--rothko-crimson);
  font-weight: 600;
}

.problem-quote {
  text-align: center;
  padding: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  max-width: 900px;
  margin: 0 auto;
}
.problem-quote strong {
  color: var(--rothko-crimson);
  font-weight: 500;
  font-style: normal;
}
.problem-quote em {
  color: var(--rothko-orange);
  font-style: italic;
  font-weight: 500;
}

/* ============================================================
   CONVICTIONS — mise en page éditoriale (remplace .problem-grid)
   ============================================================ */
.convictions {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  border-top: 1px solid rgba(10,8,16,0.14);
}
.conviction {
  display: grid;
  grid-template-columns: 90px minmax(220px, 1fr) 2.2fr;
  align-items: baseline;
  gap: 2.5rem;
  padding: 1.9rem 0.25rem;
  border-bottom: 1px solid rgba(10,8,16,0.14);
  position: relative;
}
.conviction::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rothko-orange), var(--rothko-crimson));
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.problem-grid.is-visible .conviction::before,
.convictions.is-visible .conviction::before {
  width: 100%;
}
.conviction:last-child { border-bottom: 0; }
.conviction:hover .conviction__title em {
  color: var(--rothko-crimson);
}
.conviction__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--rothko-orange);
  padding-top: 0.35rem;
}
.conviction__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
}
.conviction__title em {
  font-style: italic;
  font-weight: 500;
  transition: color 0.3s;
}
.conviction__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(10,8,16,0.7);
  margin: 0;
  max-width: 46ch;
}
.conviction__text strong {
  color: var(--rothko-crimson);
  font-weight: 600;
}

@media (max-width: 900px) {
  .conviction {
    grid-template-columns: 60px 1fr;
    gap: 1rem 1.5rem;
    padding: 1.5rem 0.25rem;
  }
  .conviction__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .conviction__text {
    grid-column: 2 / -1;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .conviction {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0.15rem;
  }
  .conviction__text {
    grid-column: 1;
  }
}

@media (max-width: 900px) {
  .problem-stats, .problem-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE 3 — SOLUTION PILLARS
   ============================================================ */
.solution-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.solution-pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--paper);
}
.solution-pillar__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(232,93,47,0.25);
}

@media (max-width: 900px) {
  .solution-pillars { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem; }
  .solution-pillar { padding: 0.75rem 1rem; font-size: 0.95rem; }
}

/* ============================================================
   PAGE 6 — BUSINESS MODEL (nouvelle version simple)
   ============================================================ */
.bm-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.bm-card {
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(10,8,16,0.08);
}
.bm-card--premium {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 25px 60px rgba(10,26,58,0.2);
}
.bm-card__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(232,93,47,0.12);
  border: 1px solid rgba(232,93,47,0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.bm-card--premium .bm-card__badge {
  background: rgba(74,111,216,0.18);
  border-color: rgba(74,111,216,0.35);
  color: var(--blue-electric);
}
.bm-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(10,8,16,0.7);
  margin-bottom: 1rem;
}
.bm-card--premium .bm-card__title {
  color: rgba(255,255,255,0.75);
}
.bm-card__price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.bm-card--premium .bm-card__price { color: var(--paper); }
.bm-card__price span {
  font-size: 0.35em;
  color: rgba(10,8,16,0.5);
  font-weight: 300;
  margin-left: 0.35rem;
}
.bm-card--premium .bm-card__price span { color: rgba(255,255,255,0.6); }
.bm-card__list {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}
.bm-card--premium .bm-card__list { border-top-color: rgba(255,255,255,0.15); }
.bm-card__list li {
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: rgba(10,8,16,0.75);
}
.bm-card--premium .bm-card__list li { color: rgba(255,255,255,0.85); }

.bm-plus {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  box-shadow: 0 15px 30px rgba(232,93,47,0.35);
}

.bm-streams {
  padding: 2rem 2.5rem;
  background: rgba(10,8,16,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2.5rem;
  align-items: center;
}
.bm-streams__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  white-space: nowrap;
}
.bm-streams__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.bm-streams__list li {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.25s;
}
.bm-streams__list li:hover {
  background: var(--rothko-orange);
  border-color: var(--rothko-orange);
  color: var(--paper);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .bm-duo { grid-template-columns: 1fr; gap: 1rem; }
  .bm-plus { justify-self: center; width: 48px; height: 48px; font-size: 1.6rem; }
  .bm-streams { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .bm-streams__list { justify-content: center; }
}

/* ============================================================
   PAGE 2 — VISION BLOCK (3 PILIERS)
   ============================================================ */
.vision-block {
  margin-top: 3rem;
  padding: 2.5rem 2.5rem 2rem;
  background: linear-gradient(160deg, #fff 0%, #fff8ee 100%);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(10,8,16,0.04);
}
.vision-block__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 2rem;
}
.vision-pillar {
  text-align: center;
}
.vision-pillar__icon {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  color: var(--rothko-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision-pillar__icon svg { width: 100%; height: 100%; }
.vision-pillar__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.vision-pillar p {
  font-size: 0.9rem;
  color: rgba(10,8,16,0.65);
  line-height: 1.5;
  margin: 0;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.vision-block__quote {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto;
}
.vision-block__quote strong {
  font-weight: 500;
  color: var(--rothko-crimson);
  font-style: normal;
}

@media (max-width: 900px) {
  .vision-block__pillars { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================================
   PAGE 3 — DUO CARDS ENRICHIES
   ============================================================ */
.duo-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.duo-card__badge {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(232,93,47,0.15);
  border: 1px solid rgba(232,93,47,0.3);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rothko-yellow);
  font-weight: 600;
}
.duo-card__badge--alt {
  background: rgba(74,111,216,0.15);
  border-color: rgba(74,111,216,0.35);
  color: var(--blue-electric);
}
.duo-card__features {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
}
.duo-card__features li {
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.duo-card--alt .duo-card__features li {
  background: rgba(74,111,216,0.06);
  border-color: rgba(74,111,216,0.15);
}
.duo-card__feat-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--paper);
  margin-bottom: 0.2rem;
}
.duo-card__feat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.pullquote--small em {
  color: var(--rothko-orange);
  font-style: italic;
}
.slide--dark .pullquote--small em { color: var(--rothko-yellow); }

/* ============================================================
   PAGE 1 — COVER HOOK
   ============================================================ */
.cover-hook {
  margin-top: 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PAGE 3 — DUO CARDS
   ============================================================ */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.duo-card {
  position: relative;
  padding: 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.duo-card--alt {
  background: linear-gradient(160deg, rgba(0,51,160,0.15), rgba(0,51,160,0.03));
  border-color: rgba(74,111,216,0.25);
}
.duo-card__index {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--rothko-yellow);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.duo-card--alt .duo-card__index { color: var(--blue-electric); }
.duo-card__brand {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: var(--paper);
  margin-bottom: 0.35rem;
}
.duo-card__type {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--rothko-orange);
  margin-bottom: 1.25rem;
}
.duo-card--alt .duo-card__type { color: var(--blue-electric); }
.duo-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.98rem;
  margin: 0 0 1.5rem;
}
.duo-card p strong { color: var(--paper); }
.duo-card__tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.duo-card__tags li {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.78rem;
}
.duo-card__flow {
  list-style: none;
  display: grid; gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.duo-card__flow li {
  padding: 0.65rem 1rem;
  background: rgba(74,111,216,0.1);
  border-left: 3px solid var(--blue-electric);
  border-radius: 4px;
  font-size: 0.9rem;
}
.duo-mock {
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.08);
}
.duo-mock--alt { background: linear-gradient(135deg, #0f2544, #1a3a6a); }
.duo-mock__live {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--rothko-orange);
  font-weight: 600;
}
.duo-mock__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--paper);
}
.duo-mock__for {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--blue-electric);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.duo-mock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  flex: 1;
}
.duo-mock__grid span {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}

@media (max-width: 900px) { .duo { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE 4 — TECHNO / PIPELINE
   ============================================================ */
.techno-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.pipeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.pipeline__node {
  padding: 1rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 30px rgba(10,8,16,0.04);
  text-align: center;
  min-width: 320px;
}
.pipeline__node small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(10,8,16,0.55);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}
.pipeline__node--main {
  background: var(--blue-deep);
  color: var(--paper);
  border-color: var(--blue-deep);
  padding: 1.25rem 1.75rem;
  font-weight: 600;
}
.pipeline__node--main small { color: rgba(255,255,255,0.65); }
.pipeline__node--ai {
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  border-color: transparent;
  padding: 1.25rem 1.75rem;
  font-weight: 600;
}
.pipeline__node--ai small { color: rgba(255,255,255,0.75); }
.pipeline__arrow {
  color: rgba(10,8,16,0.3);
  font-size: 1.2rem;
}
.pipeline__fan {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.4rem;
}
.pipeline__fan span {
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  background: #fff;
  font-weight: 500;
}

.techno-side {
  display: grid;
  gap: 1.25rem;
  align-self: stretch;
}
.techno-block {
  padding: 1.75rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
}
.techno-block--highlight {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 25px 50px rgba(10,26,58,0.15);
}
.techno-block__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.techno-block--highlight .techno-block__label { color: var(--rothko-yellow); }
.techno-block h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.techno-block ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.techno-block li {
  font-size: 0.9rem;
  padding-left: 1rem;
  position: relative;
  color: rgba(255,255,255,0.8);
}
.techno-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rothko-orange);
}
.techno-block p {
  font-size: 0.92rem;
  color: rgba(10,8,16,0.7);
  margin: 0;
}

@media (max-width: 1000px) { .techno-layout { grid-template-columns: 1fr; } .pipeline__node { min-width: 0; width: 100%; } }

/* ============================================================
   PAGE 5 — CATALOG FLOW + THEMES
   ============================================================ */
.catalog-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.catalog-flow__step {
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--paper);
  font-weight: 500;
}
.catalog-flow__step--last {
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  border-color: transparent;
  font-weight: 600;
}
.catalog-flow__arrow {
  color: var(--rothko-yellow);
  font-family: var(--font-mono);
  font-size: 1.1rem;
}

.themes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.theme-tag {
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--paper);
  transition: all 0.25s;
}
.theme-tag:hover {
  background: var(--rothko-orange);
  border-color: var(--rothko-orange);
  transform: translateY(-2px);
}

.softpower-strip {
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.softpower-strip__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.softpower-strip__flow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
}
.softpower-strip__flow span:nth-child(even) {
  color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
}

/* ============================================================
   PAGE 8 — ECOSYSTEM
   ============================================================ */
.ecosystem {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.ecosystem__card {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.ecosystem__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--blue-electric);
  margin-bottom: 1.2rem;
}
.ecosystem__card ul { list-style: none; padding: 0; margin: 0; }
.ecosystem__card li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.ecosystem__card li:last-child { border: 0; }

@media (max-width: 1000px) { .ecosystem { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); } }
@media (max-width: 640px)  { .ecosystem { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PAGE 9 — BUDGET RESTRUCTURÉ
   ============================================================ */
.fin-hero {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.fin-hero__card {
  padding: 2rem 2rem;
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(10, 26, 58, 0.18);
  position: relative;
  overflow: hidden;
}
.fin-hero__card::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(74,111,216,0.15), transparent 70%);
  border-radius: 50%;
}
.fin-hero__card--alt {
  background: linear-gradient(160deg, #2b1610, #4a1f14);
}
.fin-hero__card--alt::before {
  background: radial-gradient(circle, rgba(232, 93, 47, 0.2), transparent 70%);
}
.fin-hero__card--time {
  background: linear-gradient(160deg, #1a1a2e, #2a2a45);
}
.fin-hero__label {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 1rem;
  font-weight: 600;
}
.fin-hero__card--alt .fin-hero__label { color: var(--rothko-yellow); }
.fin-hero__card--time .fin-hero__label { color: var(--gold); }
.fin-hero__value {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fin-hero__value span {
  font-size: 0.35em;
  font-weight: 300;
  margin-left: 0.35rem;
  color: rgba(255,255,255,0.65);
}
.fin-hero__hint {
  position: relative;
  z-index: 2;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.fin-mid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.fin-pricing {
  padding: 2rem 2rem;
  background: linear-gradient(160deg, var(--near-black), var(--blue-ink));
  color: var(--paper);
  border-radius: 14px;
  text-align: center;
}
.fin-pricing__label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rothko-yellow);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.fin-pricing__amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}
.fin-pricing__amount span {
  font-size: 0.3em;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-left: 0.35rem;
}
.fin-pricing__year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin: 0.75rem 0 1.5rem;
}
.fin-pricing__tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.fin-pricing__tier {
  padding: 1rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}
.fin-pricing__tier--premium {
  background: linear-gradient(160deg, rgba(232,93,47,0.18), rgba(232,93,47,0.05));
  border-color: rgba(232,93,47,0.3);
}
.fin-pricing__tier-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--blue-electric);
  margin-bottom: 0.35rem;
}
.fin-pricing__tier--premium .fin-pricing__tier-name { color: var(--rothko-orange); }
.fin-pricing__tier p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.fin-formula {
  padding: 2rem 2rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line-dark);
  box-shadow: 0 15px 40px rgba(10,8,16,0.04);
}
.fin-formula__title {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
.fin-formula__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}
.fin-formula__cell {
  text-align: center;
  padding: 1.15rem 0.75rem;
  background: #f8f5ec;
  border-radius: 10px;
}
.fin-formula__cell--result {
  background: linear-gradient(160deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
}
.fin-formula__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1;
}
.fin-formula__value span {
  font-size: 0.5em;
  font-weight: 300;
  margin-left: 0.15rem;
  opacity: 0.7;
}
.fin-formula__label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(10,8,16,0.6);
}
.fin-formula__cell--result .fin-formula__label { color: rgba(255,255,255,0.8); }
.fin-formula__op {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rothko-orange);
  font-weight: 300;
}
.fin-formula__plus {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.fin-formula__plus span {
  padding: 0.45rem 0.95rem;
  background: #f8f5ec;
  border-radius: 999px;
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-style: italic;
}

.fin-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.fin-chart {
  padding: 1.75rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line-dark);
}
.fin-chart__head { margin-bottom: 1rem; }
.fin-chart__head h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
}
.fin-chart canvas { max-height: 240px !important; }

.fin-marketing {
  padding: 1.75rem 2rem;
  background: linear-gradient(160deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.fin-marketing__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.fin-marketing__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
}
.fin-marketing__value span {
  font-size: 0.4em;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-left: 0.35rem;
}
.fin-marketing__hint {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.fin-empty {
  padding: 3rem 2rem;
  background: repeating-linear-gradient(
    -45deg,
    rgba(10,8,16,0.03),
    rgba(10,8,16,0.03) 10px,
    rgba(10,8,16,0.06) 10px,
    rgba(10,8,16,0.06) 20px
  );
  border: 2px dashed rgba(10,8,16,0.15);
  border-radius: 12px;
  text-align: center;
}
.fin-empty span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(10,8,16,0.4);
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .fin-hero { grid-template-columns: 1fr; }
  .fin-mid { grid-template-columns: 1fr; }
  .fin-charts { grid-template-columns: 1fr; }
  .fin-formula__row { grid-template-columns: 1fr; }
  .fin-formula__op { transform: rotate(90deg); }
  .fin-marketing { grid-template-columns: 1fr; text-align: center; }
}

/* ============================================================
   PAGE 10 — ÉQUIPE
   ============================================================ */
.slide-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}
.team-card {
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
}
.team-card--main {
  background: linear-gradient(160deg, rgba(0,51,160,0.15), rgba(0,51,160,0.03));
  border-color: rgba(74,111,216,0.25);
}
/* Portrait encadré, format éditorial cohérent pour toutes les cartes */
.team-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 240px;
  margin: 0 auto 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow:
    0 10px 25px rgba(232,93,47,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.team-card__photo::before {
  content: attr(data-initials);
  position: relative;
  z-index: 2;
}
.team-card__photo:not(.team-card__photo--img)::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 12px,
      rgba(255,255,255,0.04) 12px,
      rgba(255,255,255,0.04) 24px
    );
  pointer-events: none;
}
.team-card--main .team-card__photo {
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-deep));
  box-shadow:
    0 20px 40px rgba(0,51,160,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* Variante avec vraie photo — même cadre portrait */
.team-card__photo--img {
  padding: 4px;
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
}
.team-card__photo--img::before { content: none; }
.team-card__photo--img::after { content: none; }
.team-card__photo--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 10px;
  display: block;
  filter: saturate(1.03) contrast(1.02);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .team-card__photo--img img {
  transform: scale(1.03);
}
.team-card--main .team-card__photo--img {
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-deep));
  padding: 5px;
  box-shadow:
    0 20px 45px rgba(0,51,160,0.32),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.35rem;
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.team-card__bio {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

.outro-contact {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  max-width: max-content;
  margin: 0 auto 1.5rem;
}
.outro-contact a {
  color: var(--paper);
  text-decoration: none;
  transition: color 0.2s;
}
.outro-contact a:hover { color: var(--blue-electric); }
.outro-contact span { color: rgba(255,255,255,0.4); }
.outro-copy {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 900px) {
  .team-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE 1 — COVER simple (juste TV + baseline + contact)
   ============================================================ */
.cover-simple {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 5rem var(--slide-pad) 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}
.cover-simple .tv-set {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.cover-simple .cover-baseline {
  margin: 0;
}
.slide--cover {
  padding: 0;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   PAGE 2 — PRÉSENTATION / PROBLÉMATIQUE
   ============================================================ */
.problematique {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}
.problematique__quote {
  padding: 3.5rem 3rem 2.75rem;
  background: linear-gradient(160deg, var(--blue-klein), var(--blue-klein-dark));
  color: var(--paper);
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0,31,102,0.35),
    0 8px 20px rgba(0,31,102,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
}
.problematique__quote::before {
  content: "\201C";
  position: absolute;
  top: -30px; left: 18px;
  font-family: var(--font-display);
  font-size: 11rem;
  color: rgba(245,166,35,0.16);
  line-height: 1;
  font-style: normal;
  font-weight: 500;
}
.problematique__quote::after {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(74,111,216,0.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.problematique__quote > span {
  position: relative;
  z-index: 2;
  display: block;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.problematique__quote cite {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--rothko-yellow);
  text-transform: uppercase;
  font-weight: 500;
}
.problematique__quote cite::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--rothko-yellow), transparent);
}
.problematique__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.problematique__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rothko-orange);
}
.problematique__body p {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(10,8,16,0.75);
  line-height: 1.6;
}
.problematique__body p strong {
  color: var(--ink);
  font-weight: 600;
}
.problematique__punch {
  margin-top: 0.75rem !important;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper) !important;
  border-radius: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem !important;
  text-align: center;
  box-shadow: 0 15px 30px rgba(232,93,47,0.25);
}

@media (max-width: 1000px) {
  .problematique { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .problematique__quote { padding: 2.5rem 1.75rem 2rem; font-size: 1.2rem; }
  .problematique__quote::before { font-size: 6rem; top: -14px; left: 10px; }
  .problematique__quote::after { width: 220px; height: 220px; }
}

/* ============================================================
   ORNEMENTS ÉDITORIAUX — filet-astérisque
   ============================================================ */
.slide-ornament {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  max-width: 520px;
}
.slide-ornament__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,93,47,0.55), transparent);
}
.slide-ornament__mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--rothko-orange);
  line-height: 1;
  transform: translateY(-1px);
}
.slide-head--decorated .slide-ornament { margin-top: 1.75rem; }

@media (max-width: 900px) {
  .slide-ornament { margin-top: 1.25rem; }
}

/* ============================================================
   PAGE 12 — MERCI / CONTACT (DA cover)
   ============================================================ */
.slide--merci {
  background: var(--black);
  color: var(--paper);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}
.merci-layout {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem var(--slide-pad) 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.merci-logo {
  width: clamp(90px, 12vw, 130px);
  filter: drop-shadow(0 15px 40px rgba(0,51,160,0.4));
  animation: float 6s ease-in-out infinite, logo-glow 5s ease-in-out infinite;
}
.merci-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue-electric);
  font-weight: 600;
}
.merci-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0;
}
.merci-body {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}
.merci-contact {
  margin: 1.5rem 0;
  padding: 2rem 2.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  display: grid;
  gap: 1.25rem;
  width: 100%;
  max-width: 560px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.merci-contact__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.75rem;
  align-items: baseline;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.merci-contact__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.merci-contact__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rothko-yellow);
  font-weight: 600;
  text-align: right;
  line-height: 1.4;
}
.merci-contact__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--paper);
  text-decoration: none;
  text-align: left;
  transition: color 0.25s;
  font-weight: 400;
  line-height: 1.4;
}
a.merci-contact__value {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
}
a.merci-contact__value:hover {
  color: var(--blue-electric);
  border-bottom-color: var(--blue-electric);
}
.merci-signature {
  padding-top: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--rothko-yellow);
}
.merci-copy {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 640px) {
  .merci-contact { padding: 1.25rem 1.35rem; }
  .merci-contact__row { grid-template-columns: 1fr; gap: 0.25rem; }
  .merci-contact__label { text-align: left; }
}

/* Bio Xavier (carte principale) — texte plus lisible en noir */
.team-card--main .team-card__bio { color: var(--ink); font-weight: 400; }

/* Parcours en liste structurée */
.team-card__parcours {
  list-style: none;
  padding: 1rem 0 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  text-align: left;
  border-top: 1px solid var(--line-dark);
}
.team-card__parcours li {
  position: relative;
  padding-left: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(10,8,16,0.75);
  line-height: 1.45;
}
.team-card__parcours li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rothko-orange);
}
.team-card--main .team-card__parcours li { color: var(--ink); }
.team-card--main .team-card__parcours li::before { background: var(--blue-brand); }
.team-card--main .team-card__parcours { border-top-color: rgba(0,51,160,0.15); }

/* ============================================================
   PAGE 1 — COVER 2 COLONNES
   ============================================================ */
.cover-layout {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem var(--slide-pad) 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cover-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.cover-visual .tv-set {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cover-baseline {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--rothko-yellow);
  font-weight: 300;
  text-align: center;
}
.cover-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 560px;
}
.cover-quote {
  margin: 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
}
.cover-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--rothko-orange);
  text-transform: uppercase;
}
.cover-problem {
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.cover-problem__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rothko-orange);
  margin-bottom: 1rem;
}
.cover-problem p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.cover-problem p:last-child { margin-bottom: 0; }
.cover-problem__punch {
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255,255,255,0.12);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--paper);
  text-align: center;
}
.cover-problem__punch strong {
  color: var(--rothko-yellow);
  font-weight: 500;
}
.cover-contact {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding-top: 0.5rem;
}
.cover-contact a { color: var(--blue-electric); text-decoration: none; }
.cover-contact a:hover { color: var(--paper); }

/* Reset padding sur .slide--cover puisque cover-layout gère */
.slide--cover { padding: 0; align-items: stretch; }
.slide--cover .slide__inner { display: none; }

@media (max-width: 1000px) {
  .cover-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem var(--slide-pad) 2.5rem;
  }
  .cover-visual .tv-set { max-width: 440px; }
  .cover-text { max-width: 640px; margin: 0 auto; }
}
@media (max-width: 700px) {
  .cover-visual .tv-set { max-width: 100%; }
  .cover-quote { font-size: 0.95rem; }
  .cover-problem { padding: 1.25rem 1.35rem; }
  .cover-problem p { font-size: 0.88rem; }
  .cover-problem__punch { font-size: 1rem; }
}

/* ============================================================
   PAGE 2 — CONVICTIONS
   ============================================================ */
.convictions-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   PAGE 4 — INFRA STRIP
   ============================================================ */
.infra-strip {
  margin: 0.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(10,26,58,0.04);
  border: 1px dashed var(--line-dark);
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
}
.infra-strip__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  white-space: nowrap;
}
.infra-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.infra-strip__items span {
  padding: 0.3rem 0.75rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--blue-royal);
  letter-spacing: 0.05em;
}

/* ============================================================
   PAGE 5 — JOURNEY (parcours en 5 étapes)
   ============================================================ */
.journey {
  margin-bottom: 2.5rem;
  padding: 2rem 2rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(10,8,16,0.04);
}
.journey__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
.journey__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  padding: 0;
  margin: 0;
}
.journey__steps::before {
  content: "";
  position: absolute;
  top: 22px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--rothko-yellow), var(--rothko-orange), var(--rothko-red));
  z-index: 0;
}
.journey__steps li {
  position: relative;
  padding: 0 0.75rem;
  text-align: center;
}
.journey__num {
  position: relative;
  z-index: 2;
  width: 44px; height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--rothko-orange);
  color: var(--rothko-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.journey__steps li:last-child .journey__num {
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(232,93,47,0.25);
}
.journey__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.journey__steps p {
  font-size: 0.82rem;
  color: rgba(10,8,16,0.6);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 900px) {
  .journey__steps { grid-template-columns: 1fr; gap: 1rem; }
  .journey__steps::before { display: none; }
}

/* ============================================================
   PAGE 6 — REVENUES DUO + AUDIENCE NOTE
   ============================================================ */
.revenues-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
}
.revenues-block {
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
}
.revenues-block--alt {
  background: linear-gradient(160deg, #fff, #fff8ee);
  border-color: rgba(232,93,47,0.15);
}
.revenues-block__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.revenues-block ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 0.65rem;
}
.revenues-block li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: rgba(10,8,16,0.75);
  line-height: 1.5;
}
.revenues-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rothko-orange);
}
.revenues-block strong { color: var(--ink); font-weight: 600; }
.revenues-block__hint {
  padding-left: 0 !important;
  padding-top: 0.5rem !important;
  margin-top: 0.35rem;
  border-top: 1px dashed var(--line-dark);
  font-family: var(--font-mono);
  font-size: 0.75rem !important;
  color: rgba(10,8,16,0.55) !important;
  font-style: italic;
}
.revenues-block__hint::before { display: none; }

.bm-audience-note {
  padding: 1.25rem 1.75rem;
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-radius: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
.bm-audience-note strong {
  color: var(--rothko-yellow);
  font-weight: 500;
  font-style: normal;
}

@media (max-width: 900px) {
  .revenues-duo { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE 7 — STRUCTURE GRID
   ============================================================ */
.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.structure-block {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.structure-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10,8,16,0.06);
}
.structure-block--main {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 20px 45px rgba(10,26,58,0.2);
}
.structure-block__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rothko-orange);
  margin-bottom: 1rem;
}
.structure-block__label--gold { color: var(--rothko-yellow); }
.structure-block h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.15;
}
.structure-block--main h4 { color: var(--paper); }
.structure-block p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(10,8,16,0.7);
  margin: 0 0 1.25rem;
}
.structure-block--main p { color: rgba(255,255,255,0.8); }
.structure-block strong { font-weight: 600; color: var(--ink); }
.structure-block--main strong { color: var(--rothko-yellow); }
.structure-block__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}
.structure-block__pillars span {
  padding: 0.3rem 0.75rem;
  background: #f8f5ec;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--rothko-crimson);
  font-weight: 500;
}

@media (max-width: 900px) {
  .structure-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE 8 — HUMANS DUO
   ============================================================ */
.humans-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.humans-block {
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.humans-block--alt {
  background: linear-gradient(160deg, rgba(232,93,47,0.1), rgba(184,53,26,0.03));
  border-color: rgba(232,93,47,0.2);
}
.humans-block__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--rothko-yellow);
  margin-bottom: 1rem;
}
.humans-block--alt .humans-block__label { color: var(--rothko-orange); }
.humans-block ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 0.65rem;
}
.humans-block li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.humans-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rothko-orange);
}
.humans-block strong { color: var(--paper); font-weight: 600; }

@media (max-width: 900px) {
  .humans-duo { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE 9 — BUDGET TABLE + COMPENSATION + NOTE
   ============================================================ */
.fin-hero--single { grid-template-columns: 1fr; }
.fin-hero__card--wide { text-align: center; }
.fin-hero__card--wide .fin-hero__label {
  text-align: center;
}

.budget-table {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(10,8,16,0.04);
}
.budget-row {
  display: grid;
  grid-template-columns: 1.5fr 3fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.budget-row:last-child { border-bottom: 0; padding-bottom: 0; }
.budget-row__label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.budget-row__bar {
  position: relative;
  height: 10px;
  background: rgba(232,93,47,0.08);
  border-radius: 5px;
  overflow: hidden;
}
.budget-row__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--rothko-orange), var(--rothko-red));
  border-radius: 5px;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.budget-table:not(.is-visible) .budget-row__bar span { width: 0 !important; }
.budget-row__value {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--rothko-crimson);
  font-weight: 600;
  min-width: 80px;
  text-align: right;
}

.fin-compensation {
  padding: 1.25rem 1.75rem;
  background: linear-gradient(160deg, #2a1610, #4a1f14);
  color: var(--paper);
  border-radius: 12px;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  align-items: center;
}
.fin-compensation__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.4;
}
.fin-compensation__title strong { color: var(--rothko-yellow); }
.fin-compensation__body {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.45;
}
.fin-compensation__body strong { color: var(--rothko-orange); font-style: normal; }

.fin-note {
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.5);
  border: 1px dashed var(--line-dark);
  border-radius: 12px;
  margin-top: 1.5rem;
}
.fin-note p {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(10,8,16,0.7);
}
.fin-note p:last-child { margin: 0; }
.fin-note em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rothko-crimson);
}

@media (max-width: 1000px) {
  .budget-row { grid-template-columns: 1.2fr 2fr auto; gap: 1rem; }
  .budget-row__label { font-size: 0.92rem; }
}
@media (max-width: 768px) {
  .budget-row { grid-template-columns: 1fr auto; gap: 0.5rem 1rem; }
  .budget-row__bar { grid-column: 1 / -1; }
  .fin-compensation { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE 12 — ÉQUIPE (nouvelle mise en page éditoriale, fond clair)
   ============================================================ */
.slide--team {
  background: linear-gradient(160deg, #faf6ea 0%, #f5ecd8 100%);
  color: var(--ink);
}
.slide--team .slide-head h2 { color: var(--ink); }
.slide--team .slide-head h2 em { color: var(--rothko-orange); }
.slide--team .chapter { color: var(--rothko-orange); }

.team-editorial {
  display: grid;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.team-portrait {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.25rem 2.5rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(10,8,16,0.05);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.team-portrait:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px rgba(10,8,16,0.09);
}
.team-portrait--alt {
  grid-template-columns: 1fr 240px;
}
.team-portrait--alt .team-portrait__photo { order: 2; }
.team-portrait--alt .team-portrait__body { order: 1; text-align: right; }
.team-portrait--alt .team-portrait__list { padding-left: 0; padding-right: 0; }
.team-portrait--alt .team-portrait__list li {
  padding-left: 0;
  padding-right: 1.25rem;
  text-align: right;
}
.team-portrait--alt .team-portrait__list li::before {
  left: auto; right: 0;
}

.team-portrait__photo {
  width: 240px;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(10,8,16,0.15);
  position: relative;
}
.team-portrait__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-deep));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.team-portrait--alt .team-portrait__photo::before {
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-crimson));
}
.team-portrait__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.05);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-portrait:hover .team-portrait__photo img {
  transform: scale(1.04);
}

.team-portrait__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.team-portrait__index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--rothko-orange);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.team-portrait--main .team-portrait__index { color: var(--blue-brand); }

.team-portrait__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.15rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}

.team-portrait__role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  margin: 0.75rem 0 1.25rem;
}
.team-portrait--main .team-portrait__role { color: var(--blue-brand); }

.team-portrait__list {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 0.55rem;
}
.team-portrait__list li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: rgba(10,8,16,0.75);
  line-height: 1.45;
}
.team-portrait__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rothko-orange);
}
.team-portrait--main .team-portrait__list li::before {
  background: var(--blue-brand);
}

/* Responsive */
@media (max-width: 900px) {
  .team-portrait,
  .team-portrait--alt {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
  }
  .team-portrait--alt .team-portrait__photo { order: 0; justify-self: center; }
  .team-portrait--alt .team-portrait__body { order: 1; text-align: center; }
  .team-portrait--alt .team-portrait__list li {
    padding-right: 0;
    padding-left: 1.25rem;
    text-align: left;
  }
  .team-portrait--alt .team-portrait__list li::before {
    left: 0; right: auto;
  }
  .team-portrait__photo { width: 180px; margin: 0 auto; }
  .team-portrait__list { text-align: left; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   PAGE 11 — PRÉVISIONNEL 6 ANS (éditorial calme)
   ============================================================ */

/* Hero : grand chiffre à gauche, graphique à droite */
.prev-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 2.5rem;
  background: linear-gradient(160deg, #fff 0%, #fdf8ee 100%);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 30px 60px rgba(10,8,16,0.05);
  position: relative;
  overflow: hidden;
}
.prev-hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,93,47,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.prev-hero__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.prev-hero__value {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--blue-deep);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.prev-hero__value em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.35em;
  color: var(--rothko-orange);
  letter-spacing: 0;
}
.prev-hero__note {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(10,8,16,0.6);
}
.prev-hero__meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 0.9rem;
}
.prev-hero__meta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
}
.prev-hero__meta-row span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10,8,16,0.5);
  font-weight: 500;
}
.prev-hero__meta-row strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
}
.prev-hero__chart {
  position: relative;
  height: 100%;
  min-height: 260px;
}
.prev-hero__chart canvas {
  max-height: 320px !important;
}

/* Timeline horizontale 6 années */
.prev-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
}
.prev-timeline::before {
  content: "";
  position: absolute;
  top: 22px; left: 4%; right: 4%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(245,166,35,0.4),
    rgba(232,93,47,0.6),
    var(--rothko-orange),
    var(--rothko-crimson));
  z-index: 0;
}
.prev-year {
  position: relative;
  padding: 3rem 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.prev-year:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(10,8,16,0.08);
}
.prev-year::before {
  content: "";
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--rothko-orange);
  z-index: 1;
}
.prev-year::after {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rothko-orange);
  z-index: 2;
}
.prev-year__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.prev-year__subs {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: rgba(10,8,16,0.55);
  margin-bottom: 0.35rem;
}
.prev-year__ca {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.1;
}
.prev-year--last {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(10,26,58,0.2);
}
.prev-year--last::before {
  background: var(--blue-deep);
  border-color: var(--rothko-yellow);
}
.prev-year--last::after {
  background: var(--rothko-yellow);
}
.prev-year--last .prev-year__label { color: var(--rothko-yellow); }
.prev-year--last .prev-year__subs { color: rgba(255,255,255,0.7); }
.prev-year--last .prev-year__ca { color: var(--paper); font-weight: 700; font-size: 1.1rem; }

/* Sources — pilules calmes */
.prev-sources {
  padding: 1.5rem 2rem;
  background: rgba(10,26,58,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  align-items: center;
}
.prev-sources__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rothko-orange);
  font-weight: 600;
  white-space: nowrap;
}
.prev-sources__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.prev-sources__list span {
  padding: 0.5rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.25s;
}
.prev-sources__list span:hover {
  background: var(--rothko-orange);
  border-color: var(--rothko-orange);
  color: var(--paper);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .prev-timeline { gap: 0.6rem; }
  .prev-year { padding: 2.75rem 0.85rem 1.1rem; }
  .prev-year__ca { font-size: 1rem; }
  .prev-hero__meta-row strong { font-size: 1.15rem; }
}
@media (max-width: 1000px) {
  .prev-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.75rem;
  }
  .prev-hero__value { font-size: clamp(3.5rem, 12vw, 5rem); }
  .prev-hero__chart { min-height: 220px; }
  .prev-timeline::before { display: none; }
}
@media (max-width: 900px) {
  .prev-timeline { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .prev-year--last { grid-column: span 3; }
}
@media (max-width: 560px) {
  .prev-timeline { grid-template-columns: repeat(2, 1fr); }
  .prev-year--last { grid-column: span 2; }
  .prev-hero__value { font-size: 3.25rem; }
  .prev-hero__note { font-size: 0.95rem; }
  .prev-hero__chart { min-height: 180px; }
  .prev-sources { grid-template-columns: 1fr; text-align: center; }
  .prev-sources__list { justify-content: center; }
}

.prev-charts {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.prev-charts .fin-chart canvas { max-height: 260px !important; }

.prev-table {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 45px rgba(10,8,16,0.06);
}
.prev-table__head,
.prev-row {
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: 1rem;
  padding: 0.95rem 1.75rem;
  align-items: center;
}
.prev-table__head {
  background: linear-gradient(135deg, #1a1420 0%, #2a1610 100%);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.prev-table__head span:first-child { color: var(--rothko-yellow); }
.prev-row {
  font-family: var(--font-display);
  font-size: 1rem;
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s, transform 0.3s;
  position: relative;
}
.prev-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--rothko-yellow), var(--rothko-orange));
  opacity: 0;
  transition: opacity 0.3s;
}
.prev-row:hover {
  background: linear-gradient(90deg, #fff8ee, #fff);
}
.prev-row:hover::before { opacity: 1; }
.prev-row:last-child { border-bottom: 0; }
.prev-row span:first-child {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--rothko-orange);
  font-weight: 600;
  letter-spacing: 0.12em;
}
.prev-row span:last-child {
  font-weight: 500;
  color: var(--ink);
  text-align: right;
}
.prev-row--last {
  background: linear-gradient(90deg, #fff5e8 0%, #ffede0 100%);
  font-weight: 600;
}
.prev-row--last::before {
  opacity: 1;
  width: 4px;
}
.prev-row--last span:first-child { color: var(--rothko-crimson); }
.prev-row--last span:last-child {
  color: var(--rothko-crimson);
  font-size: 1.2rem;
  font-weight: 700;
}

.prev-sources {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #1a1420 0%, #2a1610 100%);
  color: var(--paper);
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  align-items: center;
  box-shadow: 0 20px 45px rgba(10,8,16,0.15);
}
.prev-sources__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rothko-yellow);
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.3;
}
.prev-sources__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.prev-sources__list span {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--paper);
  transition: all 0.25s;
}
.prev-sources__list span:hover {
  background: var(--rothko-orange);
  border-color: var(--rothko-orange);
  transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .prev-kpis {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem;
    gap: 0;
  }
  .prev-kpi {
    padding: 1.25rem 0.75rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .prev-kpi:last-child { border-bottom: 0; }
  .prev-kpi__value { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .prev-charts { grid-template-columns: 1fr; }
  .prev-charts .fin-chart canvas { max-height: 220px !important; }
}
@media (max-width: 768px) {
  .prev-sources { grid-template-columns: 1fr; text-align: center; gap: 0.75rem 0; padding: 1.25rem; }
  .prev-sources__list { justify-content: center; }
  .prev-sources__list span { font-size: 0.85rem; padding: 0.35rem 0.75rem; }
  .prev-table__head, .prev-row { grid-template-columns: 60px 1fr 1fr; padding: 0.65rem 1rem; gap: 0.5rem; font-size: 0.88rem; }
  .prev-table__head { font-size: 0.62rem; }
  .prev-row span:first-child { font-size: 0.75rem; }
  .prev-row--last span:last-child { font-size: 1rem; }
}

/* ============================================================
   AUDIT RESPONSIVE — Slide 10 Budget initial
   ============================================================ */
@media (max-width: 1000px) {
  .budget-table { padding: 1.5rem 1.5rem; }
  .fin-hero__card--wide { padding: 1.75rem 1.5rem; }
  .fin-compensation { padding: 1.25rem 1.5rem; }
}
@media (max-width: 768px) {
  .fin-hero__value {
    font-size: clamp(2.5rem, 9vw, 3.25rem);
  }
  .fin-hero__hint { font-size: 0.78rem; }
  .budget-table { padding: 1.25rem 1.15rem; gap: 0.4rem; }
  .budget-row {
    grid-template-columns: 1fr auto;
    gap: 0.35rem 0.85rem;
    padding: 0.55rem 0;
  }
  .budget-row__bar { grid-column: 1 / -1; height: 8px; margin-top: 0.15rem; }
  .budget-row__label { font-size: 0.88rem; line-height: 1.3; }
  .budget-row__value { font-size: 0.82rem; min-width: 0; white-space: nowrap; }

  .fin-compensation {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.15rem 1.15rem;
    gap: 0.35rem;
  }
  .fin-compensation__title { font-size: 0.92rem; line-height: 1.4; }
  .fin-compensation__body { font-size: 0.85rem; line-height: 1.4; }

  .fin-marketing {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem 1.15rem;
    gap: 0.5rem;
  }
  .fin-marketing__label { justify-self: center; font-size: 0.68rem; }
  .fin-marketing__value { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .fin-marketing__hint { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .fin-hero__value { font-size: 2.25rem; }
  .fin-hero__card--wide { padding: 1.5rem 1.15rem; }
  .budget-row__label { font-size: 0.82rem; }
  .budget-row__value { font-size: 0.78rem; }
  .fin-compensation__title { font-size: 0.85rem; }
  .fin-compensation__body { font-size: 0.8rem; }
  .fin-marketing__value { font-size: 1.85rem; }
  .prev-kpi__value { font-size: 2.25rem; }
  .prev-kpi__hint { font-size: 0.82rem; }
}

/* ============================================================
   MODE CLAIR — Overrides pour slides passées de sombre à beige
   ============================================================ */

/* --- Slide 3 : SOLUTION --- */
.slide--dark .slide-head h2 em,
.slide--outro .slide-head h2 em {
  color: var(--rothko-orange);
}
.slide--catalog .slide-head h2 em {
  color: var(--rothko-crimson);
}
.slide--dark .slide-head .lead,
.slide--catalog .slide-head .lead,
.slide--outro .slide-head .lead {
  color: rgba(10,8,16,0.65);
}

.sol-card {
  background: #fff;
  border-color: var(--line-dark);
  box-shadow: 0 15px 40px rgba(10,8,16,0.05);
}
.sol-card--channel {
  background: linear-gradient(160deg, #fff, #fff8ee);
  border-color: rgba(232,93,47,0.25);
}
.sol-card--user {
  background: linear-gradient(160deg, #fff, #f0f5fc);
  border-color: rgba(0,51,160,0.25);
}
.sol-card:hover {
  box-shadow: 0 30px 60px rgba(10,8,16,0.1);
}
.sol-card__num { color: var(--rothko-orange); }
.sol-card--user .sol-card__num { color: var(--blue-brand); }
.sol-card__brand { color: var(--ink); }
.sol-card__tagline { color: var(--rothko-orange); }
.sol-card--user .sol-card__tagline { color: var(--blue-brand); }
.sol-card__desc { color: rgba(10,8,16,0.7); }
.sol-card__desc strong { color: var(--ink); }
.sol-card__list { border-top-color: var(--line-dark); }
.sol-card__list li { color: rgba(10,8,16,0.75); }

.solution-baseline {
  background: #fff;
  border-color: var(--line-dark);
  box-shadow: 0 10px 25px rgba(10,8,16,0.04);
}
.solution-baseline__item { color: var(--ink); }
.solution-baseline__sep { color: rgba(10,8,16,0.25); }

/* --- Slide 5 : CATALOGUE --- */
.catalog-flow {
  background: #fff;
  border-color: var(--line-dark);
  box-shadow: 0 10px 30px rgba(10,8,16,0.04);
}
.catalog-flow__step {
  background: #f8f5ec;
  border-color: var(--line-dark);
  color: var(--ink);
}
.catalog-flow__step--last {
  background: linear-gradient(135deg, var(--rothko-orange), var(--rothko-red));
  border-color: transparent;
  color: var(--paper);
}
.catalog-flow__arrow { color: var(--rothko-orange); }

.theme-tag {
  background: #fff;
  border-color: var(--line-dark);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(10,8,16,0.03);
}
.theme-tag:hover {
  background: var(--rothko-orange);
  border-color: var(--rothko-orange);
  color: var(--paper);
}

.softpower-strip {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-royal));
  border-color: transparent;
  color: var(--paper);
  box-shadow: 0 20px 40px rgba(10,26,58,0.15);
}
.softpower-strip__label { color: var(--rothko-yellow); }
.softpower-strip__flow { color: var(--paper); }
.softpower-strip__flow span:nth-child(even) { color: rgba(255,255,255,0.4); }

/* --- Slide 9 : Humans Duo (Créer / Faire vivre) --- */
.humans-block {
  background: #fff;
  border-color: var(--line-dark);
  box-shadow: 0 10px 25px rgba(10,8,16,0.04);
}
.humans-block--alt {
  background: linear-gradient(160deg, #fff, #fff8ee);
  border-color: rgba(232,93,47,0.2);
}
.humans-block__label { color: var(--rothko-orange); }
.humans-block--alt .humans-block__label { color: var(--rothko-crimson); }
.humans-block ul li { color: rgba(10,8,16,0.75); }
.humans-block ul li::before { background: var(--rothko-orange); }
.humans-block strong { color: var(--ink); font-weight: 600; }

/* --- Slide 8 : ÉCOSYSTÈME --- */
.ecosystem__card {
  background: #fff;
  border-color: var(--line-dark);
  box-shadow: 0 10px 25px rgba(10,8,16,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ecosystem__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10,8,16,0.08);
}
.ecosystem__title { color: var(--rothko-orange); }
.ecosystem__card li {
  color: rgba(10,8,16,0.75);
  border-bottom-color: var(--line-dark);
}

/* --- Slide 10 : ÉQUIPE --- */
.team-card {
  background: #fff;
  border-color: var(--line-dark);
  box-shadow: 0 10px 30px rgba(10,8,16,0.05);
}
.team-card:hover {
  background: #fff;
  box-shadow: 0 25px 50px rgba(10,8,16,0.1);
}
.team-card--main {
  background: linear-gradient(160deg, #fff, #f0f5fc);
  border-color: rgba(0,51,160,0.2);
}
.team-card__name { color: var(--ink); }
.team-card__role { color: var(--rothko-orange); }
.team-card__bio { color: rgba(10,8,16,0.65); }

.outro-contact {
  border-color: var(--line-dark);
  background: #fff;
  box-shadow: 0 10px 25px rgba(10,8,16,0.04);
}
.outro-contact a { color: var(--ink); }
.outro-contact a:hover { color: var(--rothko-orange); }
.outro-contact span { color: rgba(10,8,16,0.3); }
.outro-copy { color: rgba(10,8,16,0.4); }

/* --- Chapter gold devient orange sur fond clair --- */
.slide--dark .chapter--gold,
.slide--catalog .chapter--gold,
.slide--outro .chapter--gold {
  color: var(--rothko-orange);
}

/* --- Rothko mosaic muted (slides catalogue + outro) : champ orange INDIE.CO --- */
.rothko-mosaic--muted {
  background: var(--rothko-orange);
}
.rothko-mosaic--muted::before {
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(245,166,35,0.5) 0%, rgba(232,93,47,0.3) 40%, transparent 80%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(184,53,26,0.6), transparent 70%);
  filter: none;
  animation: none;
}
.rothko-mosaic--muted::after {
  background: none;
  filter: none;
  animation: none;
}

/* --- Pipeline v2 hover : slight orange sur fond clair maintenu --- */
/* (déjà OK) */

/* --- AI illustration reste sombre par contraste (contenu premium) --- */
/* (déjà OK - garde son fond bleu-deep pour marquer l'IA) */

/* ============================================================
   ANIMATIONS SYSTÈME
   ============================================================ */

/* Rothko mosaic : breathing lent */
.rothko-mosaic::before {
  animation: rothko-breath 14s ease-in-out infinite;
}
.rothko-mosaic::after {
  animation: rothko-breath 14s ease-in-out infinite reverse;
}
@keyframes rothko-breath {
  0%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translateY(-8px) scale(1.02);
  }
}
.rothko-mosaic--muted::before {
  animation: rothko-breath 18s ease-in-out infinite;
}

/* Progress bar shimmer */
.progress__bar {
  background: linear-gradient(90deg, var(--blue-electric), var(--rothko-orange), var(--rothko-crimson), var(--rothko-orange), var(--blue-electric));
  background-size: 200% 100%;
  animation: progress-shimmer 6s linear infinite;
}
@keyframes progress-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Logo pulse — halo bleu qui respire */
.nav__logo img {
  animation: logo-pulse 4s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% {
    filter: drop-shadow(0 2px 6px rgba(43, 127, 217, 0.35));
  }
  50% {
    filter: drop-shadow(0 2px 12px rgba(61, 155, 255, 0.6));
  }
}
.tv-logo {
  animation: logo-glow 5s ease-in-out infinite, float 6s ease-in-out infinite;
}
@keyframes logo-glow {
  0%, 100% {
    filter: drop-shadow(0 10px 30px rgba(43, 127, 217, 0.4));
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 15px 45px rgba(61, 155, 255, 0.7));
  }
}

/* LIVE dot pulse */
.duo-mock__live {
  position: relative;
  padding-left: 0.4rem;
}
.duo-mock__live::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rothko-orange);
  box-shadow: 0 0 0 0 rgba(232, 93, 47, 0.6);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 93, 47, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(232, 93, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 93, 47, 0);
  }
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal enfants avec stagger */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger].is-visible > *:nth-child(1)  { transition-delay: 0.05s; }
[data-reveal-stagger].is-visible > *:nth-child(2)  { transition-delay: 0.10s; }
[data-reveal-stagger].is-visible > *:nth-child(3)  { transition-delay: 0.15s; }
[data-reveal-stagger].is-visible > *:nth-child(4)  { transition-delay: 0.20s; }
[data-reveal-stagger].is-visible > *:nth-child(5)  { transition-delay: 0.25s; }
[data-reveal-stagger].is-visible > *:nth-child(6)  { transition-delay: 0.30s; }
[data-reveal-stagger].is-visible > *:nth-child(7)  { transition-delay: 0.35s; }
[data-reveal-stagger].is-visible > *:nth-child(8)  { transition-delay: 0.40s; }
[data-reveal-stagger].is-visible > *:nth-child(9)  { transition-delay: 0.45s; }
[data-reveal-stagger].is-visible > *:nth-child(10) { transition-delay: 0.50s; }
[data-reveal-stagger].is-visible > *:nth-child(n+11) { transition-delay: 0.55s; }

/* SVG map — path drawing */
.geo__map path[stroke-dasharray] {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw-line 3s ease-out forwards;
}
.geo__map path[stroke-dasharray]:nth-of-type(2) { animation-delay: 0.4s; }
.geo__map path[stroke-dasharray]:nth-of-type(3) { animation-delay: 0.8s; }
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* Geo pins — pulse sur les cercles */
.geo__map circle[fill="#e85d2f"],
.geo__map circle[fill="#0a1a3a"] {
  transform-origin: center;
  transform-box: fill-box;
  animation: pin-pulse 2.5s ease-in-out infinite;
}
.geo__map circle[fill="#0a1a3a"] { animation-delay: 0.3s; }
.geo__map circle[fill="#b8351a"] {
  transform-origin: center;
  transform-box: fill-box;
  animation: pin-pulse 2.5s ease-in-out infinite;
  animation-delay: 0.6s;
}
@keyframes pin-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.85; }
}
.geo__map circle[fill="none"][stroke="#3d9bff"] {
  transform-origin: center;
  transform-box: fill-box;
  animation: ring-expand 3s ease-out infinite;
}
@keyframes ring-expand {
  0%   { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* Pipeline arrows — descente animée */
.pipeline__arrow {
  animation: arrow-bounce 2s ease-in-out infinite;
}
.pipeline__arrow:nth-of-type(2) { animation-delay: 0.2s; }
.pipeline__arrow:nth-of-type(3) { animation-delay: 0.4s; }
.pipeline__arrow:nth-of-type(4) { animation-delay: 0.6s; }
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50%      { transform: translateY(4px); opacity: 0.7; }
}

/* Catalog flow arrows */
.catalog-flow__arrow {
  animation: flow-slide 2.5s ease-in-out infinite;
}
.catalog-flow__arrow:nth-of-type(2) { animation-delay: 0.3s; }
.catalog-flow__arrow:nth-of-type(3) { animation-delay: 0.6s; }
.catalog-flow__arrow:nth-of-type(4) { animation-delay: 0.9s; }
@keyframes flow-slide {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50%      { transform: translateX(4px); opacity: 1; }
}

/* Themes tags — subtle floating pattern */
.theme-tag {
  animation: theme-float 8s ease-in-out infinite;
}
.theme-tag:nth-child(3n)   { animation-delay: 0.5s; }
.theme-tag:nth-child(3n+1) { animation-delay: 1s; }
@keyframes theme-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* Nav dots hover / active */
.nav__dot {
  position: relative;
  overflow: visible;
}
.nav__dot--active::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--rothko-orange);
  animation: dot-ring 2s ease-out infinite;
}
@keyframes dot-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Chart canvas fade-in when parent revealed */
[data-reveal].is-visible canvas {
  animation: canvas-fade 1.2s ease-out;
}
@keyframes canvas-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Split cards subtle hover shift */
.split-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.split-card--past:hover {
  transform: translateX(-3px);
}
.split-card--now:hover {
  transform: translateX(3px);
  box-shadow: 0 30px 60px rgba(232, 93, 47, 0.12);
}

/* Duo card mock grid — cascading appearance on hover */
.duo-mock__grid span {
  transition: background 0.4s;
}
.duo-card--alt:hover .duo-mock__grid span:nth-child(1) { background: rgba(74,111,216,0.35); transition-delay: 0.05s; }
.duo-card--alt:hover .duo-mock__grid span:nth-child(2) { background: rgba(232,93,47,0.35);  transition-delay: 0.15s; }
.duo-card--alt:hover .duo-mock__grid span:nth-child(3) { background: rgba(245,166,35,0.35); transition-delay: 0.25s; }
.duo-card--alt:hover .duo-mock__grid span:nth-child(4) { background: rgba(184,53,26,0.35);  transition-delay: 0.35s; }

/* Count-up number: monospaced during animation for stable width */
.count-up.is-counting {
  font-variant-numeric: tabular-nums;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE FINAL — Audit complet
   ============================================================ */

/* Tablette (1000px) */
@media (max-width: 1000px) {
  :root { --slide-pad: 2.5rem; }
  .slide { padding: 5.5rem var(--slide-pad) 3.5rem; }
  .slide-head { margin-bottom: 2.5rem; }
  .slide-head .lead { font-size: 1.05rem; }
  .fin-hero { grid-template-columns: 1fr; }
  .fin-hero__card { padding: 1.75rem 1.75rem; }
  .fin-charts { grid-template-columns: 1fr; }
  .fin-marketing { grid-template-columns: 1fr; text-align: center; gap: 0.75rem; }
  .fin-marketing__label { justify-self: center; }
}

/* Mobile large (768px) */
@media (max-width: 768px) {
  html { scroll-snap-type: none; }
  :root { --slide-pad: 1.5rem; }
  .slide {
    padding: 4.5rem var(--slide-pad) 3rem;
    min-height: auto;
  }
  .slide-head { margin-bottom: 2rem; }
  .slide-head h2 { font-size: clamp(1.8rem, 8vw, 2.75rem); line-height: 1.05; }
  .slide-head .lead { font-size: 0.98rem; line-height: 1.55; }
  .chapter { font-size: 0.65rem; margin-bottom: 0.9rem; }

  /* Nav compacte */
  .nav { top: 1rem; left: 1rem; gap: 0.75rem; }
  .nav__logo img { width: 26px; height: 26px; }
  .nav__logo span { font-size: 0.82rem; }
  .nav__logo i { font-size: 0.5rem; letter-spacing: 0.25em; margin-left: 0.35rem; }
  .counter, .hint, .nav__dots { display: none; }

  /* Cover */
  .tv-set { width: min(100%, 92vw); }
  .tv-frame { padding: 14px 14px 6px; border-radius: 12px; }
  .tv-chin { height: 18px; }
  .tv-led { left: 14px; width: 4px; height: 4px; }
  .tv-brandmark { font-size: 0.5rem; letter-spacing: 0.28em; }
  .tv-grille { right: 14px; width: 36px; height: 5px; background-size: 3.5px 3.5px; }
  .tv-neck { height: 16px; width: 14%; }
  .tv-base { width: 45%; height: 10px; }
  .cover-hook { font-size: 1rem; margin-top: 2rem; padding: 0 0.5rem; }
  .cover-meta { margin-top: 2.5rem; font-size: 0.7rem; }

  /* Split cards → 1 col */
  .split-cards { grid-template-columns: 1fr; gap: 1rem; }
  .split-card__arrow { transform: rotate(90deg); justify-self: center; }
  .split-card { padding: 1.75rem 1.5rem; }
  .split-card li { padding: 0.65rem 0; font-size: 0.95rem; }

  /* Vision */
  .vision-block { padding: 1.75rem 1.5rem; margin-top: 2rem; }
  .vision-block__pillars { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
  .vision-pillar__icon { width: 40px; height: 40px; margin-bottom: 0.75rem; }
  .vision-pillar__title { font-size: 1.15rem; }
  .vision-block__quote { font-size: 1.05rem; }

  /* Duo cards */
  .duo { grid-template-columns: 1fr; gap: 1.25rem; }
  .duo-card { padding: 1.75rem 1.5rem; }
  .duo-card__index { font-size: 2.25rem; margin-bottom: 0.75rem; }
  .duo-card__type { font-size: 1.4rem; }
  .duo-card__features li { padding: 0.7rem 0.9rem; }
  .duo-card__feat-title { font-size: 0.92rem; }
  .duo-card__feat-desc { font-size: 0.78rem; }
  .pullquote--small { font-size: 1.05rem; margin-top: 1.5rem; padding: 1rem 0; }

  /* Techno */
  .techno-layout { grid-template-columns: 1fr; gap: 2rem; }
  .pipeline__node { min-width: 0; width: 100%; padding: 0.85rem 1.25rem; font-size: 0.9rem; }
  .pipeline__node small { font-size: 0.62rem; }
  .pipeline__fan span { padding: 0.45rem 0.85rem; font-size: 0.75rem; }
  .techno-block { padding: 1.5rem; }
  .techno-block h4 { font-size: 1.15rem; }
  .techno-block li { font-size: 0.85rem; }

  /* Catalogue */
  .catalog-flow { padding: 1.25rem 1rem; gap: 0.4rem; }
  .catalog-flow__step { padding: 0.6rem 0.9rem; font-size: 0.78rem; }
  .catalog-flow__arrow { font-size: 0.9rem; }
  .theme-tag { padding: 0.55rem 0.95rem; font-size: 0.88rem; }
  .themes-grid { gap: 0.45rem; margin-bottom: 2rem; }
  .softpower-strip { padding: 1.25rem 1.25rem; gap: 1rem; flex-direction: column; }
  .softpower-strip__flow { font-size: 0.75rem; letter-spacing: 0.1em; gap: 0.4rem; justify-content: center; }
  .softpower-strip__flow span:nth-child(even) { display: none; }

  /* Business */
  .gradient-model { padding: 1.5rem; }
  .gradient-model__scale { grid-template-columns: 1fr; gap: 1rem; }
  .gradient-model__gradient { height: 30px; }
  .gradient-model__ticks { padding: 0.65rem 0.35rem 0; font-size: 0.6rem; gap: 0.2rem; flex-wrap: wrap; justify-content: center; }
  .gradient-model__caption { font-size: 0.9rem; margin-top: 2rem; }
  .revenue-streams { padding: 1.5rem; }
  .revenue-streams__grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .revenue-streams__grid span { padding: 0.75rem 0.5rem; font-size: 0.85rem; }

  /* Geo / Structure */
  .geo { grid-template-columns: 1fr; gap: 1.5rem; }
  .geo__map { max-width: 100%; }
  .geo__pin { padding: 1rem 1.25rem; gap: 0.4rem 0.85rem; }
  .geo__label { font-size: 1rem; }
  .geo__pin p { font-size: 0.82rem; }

  /* Écosystème */
  .ecosystem { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .ecosystem__card { padding: 1.5rem 1.25rem; }
  .ecosystem__title { font-size: 1.05rem; margin-bottom: 0.9rem; }
  .ecosystem__card li { font-size: 0.85rem; padding: 0.35rem 0; }

  /* Budget */
  .fin-hero__value { font-size: 2.5rem; }
  .fin-mid { grid-template-columns: 1fr; gap: 1rem; }
  .fin-pricing { padding: 1.75rem 1.25rem; }
  .fin-pricing__amount { font-size: 3rem; }
  .fin-pricing__tiers { grid-template-columns: 1fr; gap: 0.5rem; }
  .fin-formula { padding: 1.75rem 1.25rem; }
  .fin-formula__row { grid-template-columns: 1fr; gap: 0.5rem; }
  .fin-formula__op { transform: rotate(90deg); font-size: 1.25rem; }
  .fin-formula__cell { padding: 1rem 0.75rem; }
  .fin-formula__value { font-size: 1.4rem; }
  .fin-formula__plus { gap: 0.35rem; padding-top: 1rem; margin-top: 1.25rem; }
  .fin-formula__plus span { padding: 0.35rem 0.75rem; font-size: 0.75rem; }
  .fin-charts { gap: 1rem; margin: 1.5rem 0; }
  .fin-chart { padding: 1.25rem; }
  .fin-chart canvas { max-height: 200px !important; }
  .fin-marketing__value { font-size: 2rem; }
  .fin-empty { padding: 2rem 1rem; }

  /* Team */
  .team-cards { grid-template-columns: 1fr; gap: 1rem; }
  .team-card { padding: 1.75rem 1.5rem; }
  .team-card__photo { width: 88px; height: 88px; font-size: 1.4rem; }
  .team-card__name { font-size: 1.3rem; }
  .outro-contact { padding: 0.75rem 1.5rem; font-size: 0.75rem; flex-direction: column; gap: 0.35rem; text-align: center; }
  .outro-contact span { display: none; }

  /* Progress bar plus fine */
  .progress { height: 2px; }
}

/* Petit mobile (480px) */
@media (max-width: 480px) {
  :root { --slide-pad: 1.15rem; }
  .slide { padding: 4rem var(--slide-pad) 2.5rem; }
  .slide-head h2 { font-size: clamp(1.6rem, 7.5vw, 2.25rem); }
  .slide-head .lead { font-size: 0.92rem; }

  .nav__logo span { font-size: 0.75rem; }
  .nav__logo i { display: none; }

  /* TV plus compacte */
  .tv-brand { font-size: 2rem; }
  .tv-sub { font-size: 0.65rem; letter-spacing: 0.35em; }
  .tv-logo { width: 60px; }
  .tv-brandmark { display: none; }
  .tv-grille { width: 28px; }

  /* Écosystème: 1 col en très petit */
  .ecosystem { grid-template-columns: 1fr; }

  /* Split card list plus compact */
  .split-card li { font-size: 0.9rem; padding: 0.55rem 0; }

  /* Vision */
  .vision-block__quote { font-size: 0.98rem; }

  /* Fin */
  .fin-hero__value { font-size: 2.1rem; }
  .fin-pricing__amount { font-size: 2.5rem; }
  .fin-marketing__value { font-size: 1.7rem; }

  /* Chart headers */
  .fin-chart__head h3 { font-size: 1rem; }

  /* Team */
  .team-card__photo { width: 76px; height: 76px; font-size: 1.2rem; }
}

/* Landscape mobile — évite les slides écrasées */
@media (max-height: 640px) and (orientation: landscape) {
  html { scroll-snap-type: none; }
  .slide { min-height: auto; padding: 4rem var(--slide-pad) 3rem; }
  .tv-set { width: min(400px, 60vw); }
}

/* ============================================================
   RESPONSIVE — Nouveaux composants (audit final)
   ============================================================ */

/* Slides content-heavy : min-height auto pour éviter la compression */
.slide--budget,
.slide--catalog,
.slide--business,
.slide--dark,
.slide--outro {
  min-height: auto;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

/* Tablette : structure-grid, revenues-duo, humans-duo passent en 1 col plus tôt */
@media (max-width: 1100px) {
  .structure-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .structure-block { padding: 1.75rem; }
  .journey__steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
  .journey__steps::before { display: none; }
  .journey__steps li:nth-child(4),
  .journey__steps li:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 900px) {
  .journey__steps { grid-template-columns: 1fr 1fr; }
  .revenues-duo { grid-template-columns: 1fr; }
  .humans-duo { grid-template-columns: 1fr; }
  .revenues-block, .humans-block { padding: 1.5rem 1.5rem; }
  .revenues-block__label, .humans-block__label { margin-bottom: 1rem; }
}

@media (max-width: 768px) {
  /* Cover contact wrap */
  .cover-contact { font-size: 0.68rem; }

  /* Journey en 1 col */
  .journey { padding: 1.5rem 1.25rem; }
  .journey__steps { grid-template-columns: 1fr; }
  .journey__title { font-size: 0.95rem; }

  /* Infra strip vertical */
  .infra-strip { grid-template-columns: 1fr; padding: 1rem 1.25rem; }
  .infra-strip__items { justify-content: flex-start; }
  .infra-strip__items span { font-size: 0.62rem; padding: 0.25rem 0.6rem; }

  /* Structure blocks */
  .structure-block h4 { font-size: 1.2rem; }
  .structure-block p { font-size: 0.88rem; }

  /* Humans blocks */
  .humans-block__label { font-size: 1.2rem; }
  .humans-block li { font-size: 0.88rem; }

  /* Revenues */
  .revenues-block li { font-size: 0.88rem; }
  .bm-audience-note { font-size: 0.9rem; padding: 1rem 1.25rem; line-height: 1.45; }

  /* Budget table */
  .budget-table { padding: 1.5rem 1.25rem; gap: 0.5rem; }
  .budget-row { grid-template-columns: 1fr auto; gap: 0.5rem 1rem; padding: 0.5rem 0; }
  .budget-row__bar { grid-column: 1 / -1; height: 8px; }
  .budget-row__label { font-size: 0.9rem; }
  .budget-row__value { font-size: 0.85rem; min-width: 0; }

  /* Fin compensation */
  .fin-compensation { grid-template-columns: 1fr; text-align: center; padding: 1.25rem 1.35rem; }
  .fin-compensation__title { font-size: 0.98rem; }
  .fin-compensation__body { font-size: 0.9rem; }

  /* Fin note */
  .fin-note { padding: 1.25rem 1.25rem; }
  .fin-note p { font-size: 0.88rem; }

  /* Convictions label */
  .convictions-label { font-size: 0.65rem; }

  /* Cover-quote sur mobile */
  .cover-quote br { display: none; }
}

@media (max-width: 480px) {
  /* Cover très compact */
  .cover-layout { padding: 3.5rem 1rem 2rem; gap: 1.5rem; }
  .cover-text { gap: 1.25rem; }
  .cover-baseline { font-size: 0.95rem; }
  .cover-quote { padding: 1rem 0; font-size: 0.9rem; }
  .cover-problem { padding: 1rem 1.15rem; }
  .cover-problem p { font-size: 0.82rem; }
  .cover-problem__punch { font-size: 0.95rem; }
  .cover-contact { display: flex; flex-direction: column; gap: 0.25rem; }

  /* Structure pillars wrap */
  .structure-block__pillars span { font-size: 0.62rem; padding: 0.25rem 0.55rem; }

  /* Team card photo plus petite */
  .team-card__photo--img img { border-radius: 50%; }
}
