/* ═══ Variables canoniques ACROSS (globals.css v5.0) ═══ */
  :root {
    --beige: #F0EBE3;
    --cream: #FFFFFF;
    --warm-dark: #1A1714;
    --warm-darker: #0F0D0A;
    --warm-mid: #2A2520;
    --green: #00C96E;
    --green-dark: #008048;
    --green-glow: rgba(0,201,110,0.15);
    --coral: #FF6B4A;
    --coral-dark: #E85A3C;
    --amber: #FFB020;
    --red: #FF4D6A;
    --text-dark: #1A1714;
    --text-dark-2: #524A41;
    --text-dark-3: #5A5048;
    --text-light: #FAF7F2;
    --text-light-2: rgba(250,247,242,0.7);
    --text-light-3: rgba(250,247,242,0.55);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
    --container: 1680px;
    --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* ═══ Reset ═══ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

  html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
  }
  body {
    background: var(--warm-darker);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  /* ═══ Grain texture (signature ACROSS) ═══ */
  .grain {
    position: fixed; inset: 0; pointer-events: none;
    z-index: 10000; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  }

  /* ═══ Container ═══ */
  .container {
    max-width: var(--container); margin: 0 auto;
    padding: 0 64px; width: 100%;
  }
  @media (max-width: 900px) { .container { padding: 0 32px; } }

  /* ═══ Slide layout (1 slide = 1 viewport) ═══ */
  .slide {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vh, 80px) 0;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .slide-beige { background: var(--beige); color: var(--text-dark); }
  .slide-cream { background: var(--cream); color: var(--text-dark); }
  .slide-dark {
    background: var(--warm-dark); color: var(--text-light);
  }
  .slide-dark::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .slide-darker {
    background: var(--warm-darker); color: var(--text-light);
  }
  .slide-darker::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .slide-coral { background: var(--coral); color: white; }
  .slide-green { background: var(--green); color: var(--warm-darker); }
  .slide > .container { position: relative; z-index: 2; }

  /* Hero glow shapes (slides hero) */
  .glow-green, .glow-coral {
    position: absolute; border-radius: 50%;
    pointer-events: none; z-index: 0;
  }
  .glow-green {
    width: 700px; height: 700px;
    background: var(--green); opacity: 0.12;
    filter: blur(140px);
    top: -200px; right: -150px;
  }
  .glow-coral {
    width: 500px; height: 500px;
    background: var(--coral); opacity: 0.08;
    filter: blur(140px);
    bottom: -150px; left: -100px;
  }

  /* ═══ Typography ═══ */
  .label {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--text-dark-3); font-weight: 600;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .label::before {
    content: ''; display: inline-block;
    width: 32px; height: 1px; background: var(--green);
  }
  .slide-dark .label, .slide-darker .label { color: var(--text-light-3); }
  .slide-coral .label { color: rgba(255,255,255,0.85); }
  .slide-coral .label::before { background: white; }
  .slide-green .label { color: var(--warm-darker); }
  .slide-green .label::before { background: var(--warm-darker); }

  .display-xl {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.02; letter-spacing: -0.04em;
    max-width: 16ch;
  }
  .display-lg {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.08; letter-spacing: -0.03em;
    max-width: none;
  }
  .display-md {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.2; letter-spacing: -0.02em;
  }
  .display-xl em, .display-lg em, .display-md em {
    font-style: normal; color: var(--green);
  }
  .slide-coral .display-xl em, .slide-coral .display-lg em { color: var(--warm-darker); }

  .lead {
    font-size: 1.45rem; line-height: 1.5;
    max-width: 62ch; color: var(--text-dark-2);
    margin-top: 32px;
  }
  .slide-dark .lead, .slide-darker .lead { color: var(--text-light-2); }
  .slide-coral .lead { color: rgba(255,255,255,0.95); }

  p.long {
    max-width: 72ch; font-size: 1.22rem; line-height: 1.65;
    margin-bottom: 18px; color: var(--text-dark-2);
  }
  .slide-dark p.long, .slide-darker p.long { color: var(--text-light-2); }

  /* ═══ Section head pattern ═══ */
  .section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 64px; margin-bottom: 56px; flex-wrap: wrap;
  }
  .section-head .left { flex: 1 1 520px; }
  .section-head .right {
    flex: 0 1 380px;
    font-size: 1.18rem; line-height: 1.6;
    color: var(--text-dark-2);
  }
  .slide-dark .section-head .right { color: var(--text-light-2); }

  /* ═══ Grid 1px style ACROSS ═══ */
  .grid-bw {
    display: grid;
    gap: 1px;
    background: rgba(26,23,20,0.12);
    border: 1px solid rgba(26,23,20,0.12);
  }
  .slide-dark .grid-bw, .slide-darker .grid-bw {
    background: rgba(250,247,242,0.10);
    border: 1px solid rgba(250,247,242,0.10);
  }
  .cell {
    background: var(--cream);
    padding: 36px 32px;
    transition: background 0.3s var(--ease-spring);
  }
  .slide-dark .cell, .slide-darker .cell {
    background: var(--warm-dark);
    color: var(--text-light);
  }
  .cell:hover { background: var(--beige); }
  .slide-dark .cell:hover, .slide-darker .cell:hover { background: var(--warm-mid); }

  .cell .c-num {
    font-family: var(--font-mono); font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--green); margin-bottom: 12px; font-weight: 600;
  }
  .cell h3 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 1.8rem; margin-bottom: 14px;
    line-height: 1.2; letter-spacing: -0.02em;
  }
  .cell p {
    font-size: 1.28rem; line-height: 1.55;
    color: var(--text-dark-2);
  }
  .slide-dark .cell p, .slide-darker .cell p { color: var(--text-light-2); }

  /* ═══ Big stat cards (debunk) ═══ */
  .stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(26,23,20,0.12);
    border: 1px solid rgba(26,23,20,0.12);
  }
  .stat-cell {
    background: var(--cream);
    padding: 36px 30px;
    border-top: 3px solid var(--red);
  }
  .stat-num {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(3rem, 5vw, 4rem);
    line-height: 1; color: var(--red);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
  }
  .stat-label {
    font-size: 1.3rem; line-height: 1.5;
    color: var(--text-dark); margin-bottom: 14px;
    font-weight: 500;
  }
  .stat-source {
    font-family: var(--font-mono); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-dark-3); font-weight: 500;
  }

  /* ═══ Promesses list (debunk) ═══ */
  .promesses-list {
    list-style: none;
    max-width: none;
  }
  .promesses-list li {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    line-height: 1.35; color: var(--text-light);
    padding: 16px 0 16px 40px;
    border-bottom: 1px solid rgba(250,247,242,0.08);
    position: relative;
  }
  .promesses-list li::before {
    content: '«';
    position: absolute; left: 0; top: 12px;
    color: var(--red); font-size: 1.6em;
    font-weight: 700; line-height: 1;
  }
  .promesses-list li:last-child { border-bottom: none; }

  /* ═══ Quote géant ═══ */
  .quote-hero {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1; letter-spacing: -0.025em;
    color: var(--text-dark);
    max-width: none;
    margin: 32px 0;
  }
  .quote-hero em { color: var(--green); font-style: normal; }

  .quote-source {
    font-family: var(--font-mono); font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--text-dark-3); margin-top: 32px;
  }

  /* ═══ Before/After layout (use cases) ═══ */
  .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(26,23,20,0.12);
    border: 1px solid rgba(26,23,20,0.12);
    margin-top: 40px;
  }
  .slide-dark .ba-grid, .slide-darker .ba-grid {
    background: rgba(250,247,242,0.12);
    border: 1px solid rgba(250,247,242,0.12);
  }
  .ba-cell {
    background: var(--cream);
    padding: 36px 32px;
  }
  .ba-cell.before {
    background: var(--beige);
    border-top: 3px solid var(--text-dark-3);
  }
  .ba-cell.after {
    background: var(--cream);
    border-top: 3px solid var(--green);
  }
  .slide-dark .ba-cell.before, .slide-darker .ba-cell.before {
    background: var(--warm-mid); color: var(--text-light);
    border-top-color: var(--text-light-3);
  }
  .slide-dark .ba-cell.after, .slide-darker .ba-cell.after {
    background: var(--warm-dark); color: var(--text-light);
    border-top-color: var(--green);
  }
  .ba-tag {
    font-family: var(--font-mono); font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 0.16em;
    font-weight: 600; margin-bottom: 14px;
  }
  .ba-cell.before .ba-tag { color: var(--text-dark-3); }
  .ba-cell.after .ba-tag { color: var(--green); }
  .slide-dark .ba-cell.before .ba-tag,
  .slide-darker .ba-cell.before .ba-tag { color: var(--text-light-3); }
  .ba-cell h4 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 1.32rem; margin-bottom: 12px;
    line-height: 1.25; letter-spacing: -0.015em;
  }
  .ba-cell p {
    font-size: 1.12rem; line-height: 1.55;
    color: var(--text-dark-2);
  }
  .slide-dark .ba-cell p, .slide-darker .ba-cell p { color: var(--text-light-2); }

  /* Avant/après en 4 lignes (Pipeline LinkedIn) */
  .ba-table {
    margin-top: 32px;
    border: 1px solid rgba(250,247,242,0.10);
  }
  .ba-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    border-bottom: 1px solid rgba(250,247,242,0.10);
  }
  .ba-row:last-child { border-bottom: none; }
  .ba-row > div { padding: 22px 26px; }
  .ba-row .ba-dim {
    background: var(--warm-darker);
    font-family: var(--font-display); font-weight: 600;
    font-size: 1.05rem;
    color: var(--green);
    display: flex; align-items: center;
  }
  .ba-row .ba-bef {
    background: var(--warm-mid);
    color: var(--text-light-2);
    font-size: 0.95rem; line-height: 1.5;
    border-left: 3px solid var(--text-light-3);
  }
  .ba-row .ba-aft {
    background: var(--warm-dark);
    color: var(--text-light);
    font-size: 0.95rem; line-height: 1.5;
    border-left: 3px solid var(--green);
  }

  /* ═══ Watermark chiffres geants ═══ */
  .watermark-num {
    position: absolute;
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(8rem, 18vw, 16rem);
    line-height: 0.85; letter-spacing: -0.04em;
    pointer-events: none; z-index: 1;
    color: rgba(26,23,20,0.04);
    right: clamp(40px, 6vw, 100px); top: 60px;
  }
  .slide-dark .watermark-num, .slide-darker .watermark-num {
    color: rgba(250,247,242,0.05);
  }

  /* ═══ Bios cards ═══ */
  .bios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(26,23,20,0.12);
    border: 1px solid rgba(26,23,20,0.12);
    margin-top: 40px;
  }
  .bio-cell {
    background: var(--cream);
    padding: 40px 32px;
    border-top: 3px solid var(--green);
  }
  .bio-name {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.55rem; line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .bio-role {
    font-family: var(--font-mono); font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--green-dark); font-weight: 600;
    margin-bottom: 20px;
  }
  .bio-desc {
    font-size: 1.12rem; line-height: 1.6;
    color: var(--text-dark-2);
  }

  /* ═══ Piliers grid (8 piliers) ═══ */
  .piliers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(26,23,20,0.12);
    border: 1px solid rgba(26,23,20,0.12);
    margin-top: 40px;
  }
  .pilier {
    background: var(--cream);
    padding: 28px 24px;
    border-top: 3px solid var(--green);
    transition: background 0.3s var(--ease-spring);
  }
  .pilier:nth-child(2) { border-top-color: var(--red); }
  .pilier:nth-child(3) { border-top-color: #42A5F5; }
  .pilier:nth-child(4) { border-top-color: var(--amber); }
  .pilier:nth-child(5) { border-top-color: #B388FF; }
  .pilier:nth-child(6) { border-top-color: #66EBAA; }
  .pilier:nth-child(7) { border-top-color: #FF8A50; }
  .pilier:nth-child(8) { border-top-color: #FF80AB; }
  .pilier:hover { background: var(--beige); }
  .pilier-num {
    font-family: var(--font-mono); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--text-dark-3); font-weight: 600;
    margin-bottom: 8px;
  }
  .pilier-name {
    font-family: var(--font-display); font-weight: 600;
    font-size: 1.28rem; color: var(--text-dark);
    letter-spacing: -0.015em;
  }

  /* ═══ Recap cards (Lead/Deal/Churn/KAM) ═══ */
  .recap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(26,23,20,0.12);
    border: 1px solid rgba(26,23,20,0.12);
    margin-top: 40px;
  }

  /* ═══ Deck navigation ═══ */
  .deck-nav {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 1000;
    padding: 10px 18px;
    background: rgba(15,13,10,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--text-light); font-weight: 500;
    letter-spacing: 0.08em;
    display: flex; align-items: center; gap: 14px;
  }
  .deck-nav .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
  }
  .deck-nav .hint {
    color: var(--text-light-3);
    font-size: 0.62rem; letter-spacing: 0.12em;
    padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.1);
  }
  @media (max-width: 700px) { .deck-nav .hint { display: none; } }

  /* ═══ Slide brand mark ═══ */
  .slide-brand {
    position: absolute; bottom: 32px; left: 0; right: 0;
    z-index: 3;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 64px;
    font-family: var(--font-mono); font-size: 0.65rem;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--text-dark-3); font-weight: 500;
  }
  .slide-dark .slide-brand, .slide-darker .slide-brand,
  .slide-coral .slide-brand { color: var(--text-light-3); }

  /* ═══ Cover specific ═══ */
  .cover-meta {
    display: flex; gap: 32px; margin-top: 56px;
    flex-wrap: wrap;
  }
  .cover-meta div {
    padding-left: 18px;
    border-left: 2px solid var(--green);
  }
  .cover-meta .m-label {
    font-family: var(--font-mono); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--text-light-3); margin-bottom: 6px;
  }
  .cover-meta .m-value {
    font-family: var(--font-display); font-weight: 600;
    font-size: 1.05rem; color: var(--text-light);
  }

  /* ═══ KPIs row (impact metrics) ═══ */
  .kpis-row {
    display: flex; gap: 1px;
    background: rgba(26,23,20,0.12);
    border: 1px solid rgba(26,23,20,0.12);
    margin-top: 32px;
  }
  .kpi {
    flex: 1;
    background: var(--cream);
    padding: 24px 28px;
    border-top: 3px solid var(--green);
  }
  .kpi-num {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.6rem; color: var(--green-dark);
    line-height: 1; margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .kpi-label {
    font-size: 0.96rem; color: var(--text-dark-2);
    line-height: 1.4;
  }

  /* ═══ Big verdict (slide 3) ═══ */
  .big-verdict {
    margin-top: 56px;
    display: flex; align-items: baseline; gap: 32px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(250,247,242,0.10);
  }
  .bv-num {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(5rem, 11vw, 9rem);
    line-height: 0.85; letter-spacing: -0.04em;
    color: var(--red);
  }
  .bv-text {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1; letter-spacing: -0.03em;
    color: var(--text-light);
  }
  .bv-sub {
    flex-basis: 100%;
    font-size: 1.15rem; color: var(--text-light-2);
    font-style: italic;
    margin-top: 8px;
  }

  /* ═══ Punchline ═══ */
  .punchline {
    font-family: var(--font-display); font-weight: 600;
    font-size: 1.5rem; line-height: 1.35;
    font-style: italic; color: var(--text-dark);
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid rgba(26,23,20,0.12);
    max-width: 64ch;
  }
  .slide-dark .punchline, .slide-darker .punchline {
    color: var(--text-light);
    border-top-color: rgba(250,247,242,0.12);
  }

  /* ═══ CTA section ═══ */
  .cta-block {
    margin-top: 40px;
    display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  }
  .cta-btn {
    display: inline-block;
    padding: 18px 36px;
    background: var(--warm-darker);
    color: var(--text-light);
    font-family: var(--font-display); font-weight: 600;
    font-size: 1.05rem; letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.3s var(--ease-spring);
  }
  .cta-btn:hover {
    background: var(--green);
    color: var(--warm-darker);
    transform: translateY(-2px);
  }
  .slide-coral .cta-btn { background: white; color: var(--coral-dark); }
  .slide-coral .cta-btn:hover { background: var(--warm-darker); color: white; }

  .contact-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(250,247,242,0.10);
    border: 1px solid rgba(250,247,242,0.10);
    margin-top: 48px;
    max-width: 800px;
  }
  .contact-cell {
    background: var(--warm-dark);
    padding: 36px 32px;
  }
  .contact-cell .c-name {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.3rem; color: var(--text-light);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .contact-cell .c-role {
    font-family: var(--font-mono); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--green); font-weight: 600;
    margin-bottom: 16px;
  }
  .contact-cell .c-email {
    font-family: var(--font-mono); font-size: 0.95rem;
    color: var(--text-light-2);
  }

  /* ═══ Mobile responsive (basic, deck is screen-first) ═══ */
  @media (max-width: 900px) {
    .bios-grid, .stat-grid, .piliers-grid { grid-template-columns: 1fr; }
    .ba-grid, .recap-grid { grid-template-columns: 1fr; }
    .piliers-grid { grid-template-columns: repeat(2, 1fr); }
    .ba-row { grid-template-columns: 1fr; }
    .ba-row .ba-dim { padding: 14px 24px; }
  }

/* === Carousel infini (slide recap autres use cases) === */
.idea-carousel-wrap {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.idea-carousel {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: carousel-scroll-left 45s linear infinite;
}
.idea-carousel.reverse {
  animation-name: carousel-scroll-right;
  animation-duration: 55s;
}
.idea-carousel:hover { animation-play-state: paused; }
@keyframes carousel-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50%)); }
}
@keyframes carousel-scroll-right {
  0%   { transform: translateX(calc(-50%)); }
  100% { transform: translateX(0); }
}
.idea-chip {
  flex: 0 0 auto;
  padding: 16px 26px;
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.08);
  border-left: 3px solid var(--green);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--text-dark);
  white-space: nowrap;
  letter-spacing: -0.015em;
}
.idea-chip.amber { border-left-color: var(--amber); }
.idea-chip.coral { border-left-color: var(--coral); }
.idea-chip.blue  { border-left-color: #42A5F5; }
.idea-chip.purple { border-left-color: #B388FF; }

/* === Bullet lists pour cells avant/apres === */
.ba-list {
  list-style: none;
  margin: 0; padding: 0;
}
.ba-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--text-dark-2);
}
.ba-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 2px;
  background: var(--text-dark-3);
}
.ba-cell.after .ba-list li::before { background: var(--green); }
.ba-cell.before .ba-list li::before { background: var(--text-dark-3); }
.slide-dark .ba-list li, .slide-darker .ba-list li { color: var(--text-light-2); }
.slide-dark .ba-cell.before .ba-list li::before,
.slide-darker .ba-cell.before .ba-list li::before { background: var(--text-light-3); }
.slide-dark .ba-cell.after .ba-list li::before,
.slide-darker .ba-cell.after .ba-list li::before { background: var(--green); }

/* === Roue radar SVG (slide 18) === */
.radar-block {
  display: flex; align-items: center; gap: 56px;
  flex-wrap: wrap; margin-top: 32px;
}
.radar-left { flex: 0 0 380px; max-width: 100%; }
.radar-right { flex: 1 1 480px; min-width: 280px; }
.radar-svg { display: block; width: 100%; height: auto; }
.radar-svg .grid { fill: none; stroke: rgba(26,23,20,0.10); stroke-width: 1; }
.radar-svg .axis { stroke: rgba(26,23,20,0.10); stroke-width: 1; }
.radar-svg .fill { fill: var(--green); fill-opacity: 0.16; stroke: var(--green); stroke-width: 2; stroke-opacity: 0.7; }
.radar-svg .dot { fill: var(--green); }
.radar-svg .dot.warn { fill: var(--amber); }
.radar-svg .dot.crit { fill: var(--red); }
.radar-svg .label-text {
  font-family: var(--font-mono); font-size: 9px;
  fill: var(--text-dark-3); text-anchor: middle;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.radar-caption {
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dark-3); text-align: center;
}

/* === Dashboard mockup (slide 20) === */
.dash-mockup {
  margin-top: 32px;
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.10);
  box-shadow: 0 20px 60px -20px rgba(26,23,20,0.18);
  overflow: hidden;
  font-size: 13px;
}
.dash-header {
  background: var(--warm-dark); color: var(--text-light);
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.dash-header .dot-row { display: flex; gap: 6px; }
.dash-header .d { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.20); }
.dash-tabs {
  display: flex; gap: 0; background: var(--beige);
  border-bottom: 1px solid rgba(26,23,20,0.10);
  overflow-x: auto;
}
.dash-tab {
  padding: 14px 20px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.82rem; letter-spacing: -0.01em;
  color: var(--text-dark-3); white-space: nowrap;
  border-bottom: 3px solid transparent;
  cursor: default;
}
.dash-tab.active {
  background: var(--cream); color: var(--text-dark);
  border-bottom-color: var(--green);
}
.dash-body {
  padding: 28px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.dash-mini-radar { width: 100%; }
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(26,23,20,0.10);
  border: 1px solid rgba(26,23,20,0.10);
}
.dash-kpi { background: var(--cream); padding: 16px 18px; }
.dash-kpi .k-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dark-3); margin-bottom: 6px;
}
.dash-kpi .k-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.9rem; line-height: 1;
  letter-spacing: -0.02em;
}
.dash-kpi .k-value.green { color: var(--green-dark); }
.dash-kpi .k-value.amber { color: var(--amber); }
.dash-kpi .k-value.red { color: var(--red); }
.dash-kpi .k-sub {
  font-size: 0.75rem; color: var(--text-dark-2); margin-top: 4px;
}
@media (max-width: 720px) {
  .dash-body { grid-template-columns: 1fr; }
}

/* === Pitch aval mockup (slide 10) === */
.pitch-mockup {
  flex: 0 0 320px;
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.10);
  box-shadow: 0 20px 60px -20px rgba(26,23,20,0.20);
  overflow: hidden;
  font-size: 11px;
  transform: rotate(-1deg);
  transition: transform 0.4s var(--ease-spring);
}
.pitch-mockup:hover { transform: rotate(0deg) scale(1.02); }
.pitch-cover {
  background: var(--warm-dark); color: var(--text-light);
  padding: 18px 18px 26px;
  border-bottom: 3px solid var(--green);
}
.pitch-cover .p-eyebrow {
  font-family: var(--font-mono); font-size: 0.55rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green); margin-bottom: 8px;
}
.pitch-cover .p-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; letter-spacing: -0.02em;
  line-height: 1.15;
}
.pitch-cover .p-sub {
  font-size: 0.7rem; color: var(--text-light-2);
  margin-top: 6px;
}
.pitch-section {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(26,23,20,0.08);
}
.pitch-section:last-child { border-bottom: none; }
.pitch-section .ps-label {
  font-family: var(--font-mono); font-size: 0.55rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green-dark); margin-bottom: 6px;
}
.pitch-section .ps-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.88rem; color: var(--text-dark);
  margin-bottom: 6px;
}
.pitch-section .ps-line {
  height: 6px; background: rgba(26,23,20,0.08); border-radius: 2px;
  margin-bottom: 5px;
}
.pitch-section .ps-line.short { width: 55%; }
.pitch-section .ps-line.med { width: 80%; }
.pitch-quote {
  background: var(--beige);
  border-left: 2px solid var(--green);
  padding: 10px 12px;
  font-family: var(--font-display); font-style: italic;
  font-size: 0.78rem; color: var(--text-dark);
  margin-top: 8px;
}
.pitch-aval-wrap {
  display: flex; gap: 40px;
  align-items: center; flex-wrap: wrap;
  margin-top: 16px;
}
.pitch-aval-text { flex: 1 1 400px; min-width: 280px; }
@media (max-width: 720px) {
  .pitch-mockup { transform: none; margin: 0 auto; }
}

/* === Slide 10 pitch mockup BIGGER === */
.pitch-mockup-big {
  flex: 1 1 0;
  min-width: 0;
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.12);
  box-shadow: 0 30px 80px -30px rgba(26,23,20,0.30);
  overflow: hidden;
  font-size: 13px;
  transform: rotate(-1deg);
  transition: transform 0.4s var(--ease-spring);
}
.pitch-mockup-big:hover { transform: rotate(0deg) scale(1.02); }
.pitch-mockup-big .pitch-cover {
  padding: 16px 28px 18px;
}
.pitch-mockup-big .pitch-cover .p-eyebrow {
  font-size: 0.7rem;
  margin-bottom: 12px;
}
.pitch-mockup-big .pitch-cover .p-title {
  font-size: 1.5rem;
  line-height: 1.15;
}
.pitch-mockup-big .pitch-cover .p-sub {
  font-size: 0.85rem;
  margin-top: 6px;
}
.pitch-mockup-big .pitch-section {
  padding: 12px 28px;
}
.pitch-mockup-big .pitch-section .ps-label {
  font-size: 0.7rem;
  margin-bottom: 10px;
}
.pitch-mockup-big .pitch-section .ps-title {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.pitch-mockup-big .ps-content {
  font-size: 0.85rem;
  color: var(--text-dark-2);
  line-height: 1.55;
}
.pitch-mockup-big .ps-content ul {
  list-style: none; padding: 0; margin: 0;
}
.pitch-mockup-big .ps-content li {
  padding: 4px 0 4px 14px;
  position: relative;
}
.pitch-mockup-big .ps-content li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 8px; height: 1px;
  background: var(--green);
}
.pitch-mockup-big .pitch-quote {
  font-size: 0.95rem;
  padding: 14px 18px;
  margin-top: 6px;
}
.pitch-mockup-big .pitch-cta {
  padding: 10px 28px;
  background: var(--green);
  color: var(--warm-darker);
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: -0.01em;
}
.pitch-aval-wrap-big {
  display: flex; gap: 48px;
  align-items: flex-start; flex-wrap: wrap;
  margin-top: 16px;
}
.pitch-aval-text-big { flex: 1 1 0; min-width: 280px; }
/* corps de la maquette en 2 colonnes : constat + next steps a gauche, verbatims a droite */
.pitch-mockup-big .pitch-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1px;
  background: rgba(26,23,20,0.10);
}
.pitch-mockup-big .pitch-body .pitch-section { background: var(--cream); border-bottom: none; }
.pitch-mockup-big .pitch-body .ps-col-main { grid-column: 1; }
.pitch-mockup-big .pitch-body .ps-col-quotes { grid-column: 2; grid-row: 1 / span 2; }
@media (max-width: 900px) {
  .pitch-mockup-big { transform: none; margin: 0 auto; flex-basis: 100%; max-width: 100%; }
  .pitch-mockup-big .pitch-body { grid-template-columns: 1fr; }
  .pitch-mockup-big .pitch-body .ps-col-main,
  .pitch-mockup-big .pitch-body .ps-col-quotes { grid-column: 1; grid-row: auto; }
}

/* Cockpit (slide 15) : sparklines etirees pleine largeur, trait d'epaisseur constante */
#s15 svg polyline,
#s15 svg path { vector-effect: non-scaling-stroke; }

/* ═══ Gate de capture (avant le deck) ═══ */
#gate {
  position: fixed; inset: 0; z-index: 10001;
  display: none;
  align-items: center; justify-content: center;
  background: var(--warm-darker);
  padding: 40px 24px; overflow-y: auto;
}
#gate::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 28px 28px;
}
body.gated { overflow: hidden; }
body.gated .deck-nav { display: none; }

.gate-card {
  position: relative; z-index: 2;
  width: 100%; max-width: 560px;
  background: var(--warm-dark);
  border: 1px solid rgba(250,247,242,0.10);
  padding: clamp(28px, 5vw, 52px);
}
.gate-eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light-3); margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.gate-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--green); display: inline-block; flex-shrink: 0;
}
.gate-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--text-light);
}
.gate-title em { font-style: normal; color: var(--green); }
.gate-sub {
  color: var(--text-light-2); font-size: 1.02rem;
  line-height: 1.6; margin: 16px 0 28px; max-width: 46ch;
}

/* Formulaire natif du gate (charte ACROSS, blanc sur fond sombre) */
#gate-form { display: flex; flex-direction: column; gap: 16px; }
#gate-form .g-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#gate-form .g-field { display: flex; flex-direction: column; gap: 6px; }
#gate-form label {
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light-2); font-weight: 600;
}
#gate-form input {
  width: 100%;
  background: var(--warm-darker);
  border: 1px solid rgba(250,247,242,0.18); border-radius: 2px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1.02rem; line-height: 1.4;
  padding: 12px 14px;
  transition: border-color 0.2s;
}
#gate-form input:focus { outline: none; border-color: var(--green); }
#gate-form input::placeholder { color: var(--text-light-3); }
#gate-form input:-webkit-autofill,
#gate-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-light);
  -webkit-box-shadow: 0 0 0 1000px var(--warm-darker) inset;
  caret-color: var(--text-light);
}
#gate-form .g-submit {
  margin-top: 8px;
  width: 100%;
  background: var(--green); color: var(--warm-darker);
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.04rem; letter-spacing: -0.01em;
  border: none; border-radius: 2px;
  padding: 14px 28px; cursor: pointer;
  transition: transform 0.2s var(--ease-spring), background 0.2s, opacity 0.2s;
}
#gate-form .g-submit:hover:not(:disabled) { transform: translateY(-1px); background: #00e07a; }
#gate-form .g-submit:disabled { opacity: 0.6; cursor: default; }
#gate-form .g-error {
  color: var(--coral); font-size: 0.86rem; line-height: 1.45; min-height: 1.2em;
}
@media (max-width: 520px) {
  #gate-form .g-row { grid-template-columns: 1fr; }
}

/* === Slide 9 briefing mockup === */
.briefing-block { margin-top: 32px; display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.briefing-text { flex: 1 1 380px; min-width: 280px; }
.briefing-visual { flex: 0 0 460px; max-width: 100%; position: relative; }
.briefing-stack { position: relative; padding-top: 40px; }
.briefing-page {
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.10);
  box-shadow: 0 16px 40px -16px rgba(26,23,20,0.20);
  padding: 18px 20px;
  font-size: 12px;
  position: absolute;
  width: 280px;
  border-top: 3px solid var(--green);
}
.briefing-page.p1 { top: 0; left: 0; transform: rotate(-3deg); z-index: 1; }
.briefing-page.p2 { top: 20px; left: 80px; transform: rotate(1deg); z-index: 2; }
.briefing-page.p3 { top: 40px; left: 160px; transform: rotate(-1deg); z-index: 3; }
.briefing-page .bp-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--green-dark); font-weight: 600;
  margin-bottom: 8px;
}
.briefing-page .bp-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.briefing-page .bp-line {
  height: 4px; background: rgba(26,23,20,0.08); border-radius: 2px;
  margin-bottom: 4px;
}
.briefing-page .bp-line.short { width: 60%; }
.briefing-page .bp-line.med { width: 85%; }
.briefing-stack-spacer { height: 240px; }

.slack-notif {
  margin-top: 24px;
  background: var(--warm-dark); color: var(--text-light);
  border-radius: 6px;
  padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 12px;
  box-shadow: 0 10px 30px -10px rgba(26,23,20,0.40);
  position: relative;
  width: 100%;
  max-width: 460px;
}
.slack-notif .s-icon {
  width: 32px; height: 32px;
  background: var(--green);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--warm-darker);
  flex-shrink: 0;
}
.slack-notif .s-body { flex: 1; font-size: 0.85rem; }
.slack-notif .s-head { display: flex; gap: 8px; align-items: baseline; margin-bottom: 4px; }
.slack-notif .s-name { font-weight: 700; }
.slack-notif .s-time { color: var(--text-light-3); font-size: 0.7rem; font-family: var(--font-mono); }
.slack-notif .s-text { color: var(--text-light-2); }

/* === Slide 15 dashboard 4 vues === */
.dash-views-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(26,23,20,0.10);
  border: 1px solid rgba(26,23,20,0.10);
}
.dash-view {
  background: var(--cream);
  padding: 22px 24px;
}
.dash-view .dv-tag {
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green-dark); font-weight: 600;
  margin-bottom: 6px;
}
.dash-view .dv-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; letter-spacing: -0.015em;
  color: var(--text-dark); margin-bottom: 14px;
}
.dash-view .dv-chart {
  height: 70px;
  background: var(--beige);
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
}
.dash-view .dv-chart svg { display: block; width: 100%; height: 100%; }
.dash-view .dv-stat {
  display: flex; gap: 18px; align-items: baseline;
}
.dash-view .dv-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.4rem; color: var(--green-dark);
  letter-spacing: -0.02em;
}
.dash-view .dv-label {
  font-size: 0.78rem; color: var(--text-dark-2);
}

/* === Slide 12 scoring table === */
.scoring-table {
  margin-top: 32px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.10);
  font-size: 0.98rem;
}
.scoring-table thead th {
  background: var(--warm-dark); color: var(--text-light);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 600;
}
.scoring-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(26,23,20,0.06);
  color: var(--text-dark);
}
.scoring-table tbody tr:last-child td { border-bottom: none; }
.scoring-table tbody tr:hover { background: var(--beige); }
.scoring-table .sc-company {
  font-family: var(--font-display); font-weight: 600;
  color: var(--text-dark);
}
.scoring-table .sc-score {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.scoring-table .sc-score.hi { color: var(--green-dark); }
.scoring-table .sc-score.mid { color: var(--amber); }
.scoring-table .sc-score.lo { color: var(--text-dark-3); }
.scoring-table .sc-action {
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--text-dark-3);
}

/* === Slide 13 sources cloud === */
.sources-block { margin-top: 32px; display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.sources-text { flex: 1 1 300px; min-width: 280px; }
.sources-cloud-wrap {
  flex: 1 1 640px; max-width: 100%;
  position: relative;
  height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.sources-core {
  position: relative;
  width: 140px; height: 140px;
  background: var(--warm-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; text-align: center;
  box-shadow: 0 0 60px var(--green-glow);
  z-index: 2;
}
.sources-core::after {
  content: ''; position: absolute; inset: -8px;
  border: 1px solid var(--green); border-radius: 50%;
  opacity: 0.4;
}
.source-chip {
  position: absolute;
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.10);
  border-left: 2px solid var(--green);
  padding: 5px 10px;
  font-family: var(--font-mono); font-size: 0.62rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(26,23,20,0.15);
}
.slide-dark .source-chip, .slide-darker .source-chip {
  background: var(--warm-mid); color: var(--text-light);
  border-color: rgba(250,247,242,0.10);
  border-left-color: var(--green);
}

/* === Slide 8 calendrier + Lighthouse === */
.seo-extras { margin-top: 18px; display: flex; gap: 32px; flex-wrap: wrap; align-items: stretch; }
.cal-mini {
  flex: 1 1 340px;
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.10);
  padding: 18px 20px;
}
.cal-mini .c-title {
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dark-3); font-weight: 600;
  margin-bottom: 12px;
}
.cal-mini .c-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-mini .c-day {
  aspect-ratio: 1;
  background: var(--beige);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--text-dark-3);
  font-family: var(--font-mono);
}
.cal-mini .c-day.pub { background: var(--green); color: var(--warm-darker); font-weight: 700; }
.cal-mini .c-day.pub.amber { background: var(--amber); }
.cal-mini .c-legend {
  margin-top: 12px;
  display: flex; gap: 16px;
  font-size: 0.72rem; color: var(--text-dark-2);
}
.cal-mini .c-legend span::before {
  content: ''; display: inline-block;
  width: 10px; height: 10px;
  margin-right: 6px;
  background: var(--green); vertical-align: middle;
}
.cal-mini .c-legend .amber-leg::before { background: var(--amber); }

.lighthouse-badge {
  flex: 1 1 340px;
  background: var(--warm-dark); color: var(--text-light);
  padding: 24px;
}
.lighthouse-badge .lh-title {
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-light-3); font-weight: 600;
  margin-bottom: 16px;
}
.lighthouse-badge .lh-circles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lh-circle {
  text-align: center;
}
.lh-circle .lh-num {
  width: 56px; height: 56px;
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--text-light);
  margin: 0 auto 6px;
}
.lh-circle.amber .lh-num { border-color: var(--amber); }
.lh-circle .lh-label {
  font-family: var(--font-mono); font-size: 0.55rem;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--text-light-2);
}

/* === Slide 11 ICP onion (projection-size) === */
.icp-onion-block { margin-top: 28px; display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.icp-onion-text { flex: 1 1 340px; min-width: 280px; }
.icp-onion-wrap { flex: 0 0 500px; max-width: 100%; display: flex; justify-content: center; }
.icp-onion {
  position: relative;
  width: 500px; height: 500px;
  max-width: 92vw;
  aspect-ratio: 1;
}
.icp-ring {
  position: absolute;
  border-radius: 50%;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 22px;
  font-family: var(--font-mono); font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 600;
}
.icp-r1 {
  inset: 0;
  background: rgba(255,77,106,0.10);
  border: 2px solid rgba(255,77,106,0.45);
  color: var(--red);
}
.icp-r2 {
  inset: 62px;
  background: rgba(255,176,32,0.14);
  border: 2px solid rgba(255,176,32,0.55);
  color: var(--amber);
}
.icp-r3 {
  inset: 124px;
  background: rgba(0,201,110,0.20);
  border: 2px solid var(--green);
  color: var(--green-dark);
}
.icp-r4 {
  inset: 186px;
  background: var(--warm-dark); color: var(--text-light);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.35rem;
  padding-top: 0;
  align-items: center;
  text-transform: none;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 0 60px var(--green-glow);
}
.slide-darker .icp-r3 { color: #66EBAA; }
@media (max-width: 560px) {
  .icp-onion { width: 92vw; height: 92vw; }
  .icp-r2 { inset: 12%; }
  .icp-r3 { inset: 25%; }
  .icp-r4 { inset: 37%; }
}

/* === Slide 14 attribution bars === */
.attr-bars-block { margin-top: 32px; display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.attr-bars-text { flex: 1 1 0; min-width: 0; }
.attr-bars-chart { flex: 1 1 0; min-width: 0; max-width: 100%; }
.attr-bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 56px;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(250,247,242,0.08);
}
.attr-bar-row:last-child { border-bottom: none; }
.attr-bar-label {
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--text-light-2); font-weight: 500;
}
.attr-bar-track {
  height: 14px;
  background: rgba(250,247,242,0.06);
  position: relative;
}
.attr-bar-fill {
  height: 100%;
  background: var(--green);
}
.attr-bar-fill.amber { background: var(--amber); }
.attr-bar-fill.red { background: var(--red); }
.attr-bar-pct {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; color: var(--text-light);
  letter-spacing: -0.01em;
  text-align: right;
}

/* === Slide 8 : growth chart + SEO score === */
.seo-growth {
  flex: 1 1 380px;
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.10);
  padding: 14px 20px;
}
.seo-growth .g-title {
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dark-3); font-weight: 600;
  margin-bottom: 4px;
}
.seo-growth .g-sub {
  font-size: 0.8rem; color: var(--text-dark-2);
  margin-bottom: 10px;
}
.seo-growth svg { display: block; width: 100%; height: auto; }
.seo-growth .g-axis { stroke: rgba(26,23,20,0.12); stroke-width: 1; }
.seo-growth .g-area-kw { fill: var(--green); fill-opacity: 0.12; }
.seo-growth .g-line-kw { fill: none; stroke: var(--green); stroke-width: 2.5; }
.seo-growth .g-line-traffic { fill: none; stroke: var(--coral); stroke-width: 2.5; stroke-dasharray: 4 3; }
.seo-growth .g-dot-kw { fill: var(--green); }
.seo-growth .g-dot-traffic { fill: var(--coral); }
.seo-growth .g-mlabel {
  font-family: var(--font-mono); font-size: 8px;
  fill: var(--text-dark-3); text-anchor: middle;
}
.seo-growth .g-legend {
  display: flex; gap: 20px; margin-top: 8px;
  font-size: 0.75rem; color: var(--text-dark-2);
}
.seo-growth .g-legend span { display: flex; align-items: center; gap: 7px; }
.seo-growth .g-legend .sw {
  width: 16px; height: 3px; display: inline-block;
}
.seo-growth .g-legend .sw.kw { background: var(--green); }
.seo-growth .g-legend .sw.tr { background: var(--coral); }
.seo-growth .g-deltas {
  display: flex; gap: 28px; margin-top: 10px;
  padding-top: 10px; border-top: 1px solid rgba(26,23,20,0.08);
}
.seo-growth .g-delta .gd-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.6rem; letter-spacing: -0.02em;
}
.seo-growth .g-delta .gd-num.green { color: var(--green-dark); }
.seo-growth .g-delta .gd-num.coral { color: var(--coral-dark); }
.seo-growth .g-delta .gd-label {
  font-size: 0.72rem; color: var(--text-dark-2); line-height: 1.3;
}

/* SEO content score card */
.seo-score {
  flex: 1 1 300px;
  background: var(--warm-dark); color: var(--text-light);
  padding: 16px 20px;
}
.seo-score .s-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 4px;
}
.seo-score .s-title {
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-light-3); font-weight: 600;
}
.seo-score .s-big {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.6rem; line-height: 1; color: var(--green);
  letter-spacing: -0.03em; margin: 4px 0 2px;
}
.seo-score .s-big small {
  font-size: 1.1rem; color: var(--text-light-3); font-weight: 600;
}
.seo-score .s-caption {
  font-size: 0.78rem; color: var(--text-light-2);
  margin-bottom: 10px; line-height: 1.4;
}
.seo-score .s-crit { margin-bottom: 12px; }
.seo-score .s-crit-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; margin-bottom: 3px;
}
.seo-score .s-crit-label { color: var(--text-light-2); }
.seo-score .s-crit-val { font-family: var(--font-mono); color: var(--green); font-weight: 600; }
.seo-score .s-crit-track {
  height: 4px; background: rgba(250,247,242,0.08);
  margin-bottom: 6px;
}
.seo-score .s-crit-fill { height: 100%; background: var(--green); }
/* Jauges circulaires (note d'optimisation) */
.seo-score .s-gauges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 12px;
}
.seo-score .s-gauge { text-align: center; }
.seo-score .s-gauge svg { width: 100%; max-width: 92px; height: auto; display: block; margin: 0 auto 8px; }
.seo-score .sg-track { fill: none; stroke: rgba(250,247,242,0.12); stroke-width: 7; }
.seo-score .sg-fill { fill: none; stroke: var(--green); stroke-width: 7; stroke-linecap: round; }
.seo-score .sg-num {
  fill: var(--text-light); font-family: var(--font-display); font-weight: 700;
  font-size: 26px; text-anchor: middle; dominant-baseline: central;
}
.seo-score .sg-label { font-size: 0.82rem; color: var(--text-light-2); line-height: 1.25; }
/* Compression slide 8 pour tenir en 1920x1080 */
#s-seo .ba-cell { padding: 16px 28px; }
/* Chiffre cle de la page : 2 articles/mois vs 4 articles/jour, tres gros */
#s-seo .ba-cell h4 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.02; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
#s-seo .ba-cell.after h4 { color: var(--green-dark); }
#s-seo .seo-growth svg { height: 195px; }
#s-seo .seo-growth .g-line-kw, #s-seo .seo-growth .g-line-traffic { vector-effect: non-scaling-stroke; }

/* === Slide 9 : integrations + calendar === */
.mp-block { margin-top: 32px; display: flex; gap: 44px; align-items: flex-start; flex-wrap: wrap; }
.mp-text { flex: 1 1 360px; min-width: 280px; }
.mp-visual { flex: 0 0 460px; max-width: 100%; }

.mp-sources {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 8px; flex-wrap: wrap;
}
.mp-source {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1;
}
.mp-source svg { width: 38px; height: 38px; display: block; }
.mp-source img {
  height: 34px; width: auto; max-width: 110px;
  object-fit: contain; display: block;
}
.mp-source .src-name {
  font-family: var(--font-mono); font-size: 0.58rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dark-3); font-weight: 600;
}
.mp-arrow {
  text-align: center; color: var(--green);
  font-size: 1.1rem; margin: 6px 0 10px;
}

/* Google-Calendar style day view */

/* === Slide 9 calendrier pleine largeur (row-based) === */
.gcal {
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.12);
  box-shadow: 0 20px 50px -20px rgba(26,23,20,0.22);
  overflow: hidden;
  width: 100%;
}
.gcal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 22px;
  background: var(--warm-dark); color: var(--text-light);
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem;
}
.gcal-head .gc-date {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-light-3); text-transform: uppercase; letter-spacing: 0.12em;
}
.gcal-list { display: flex; flex-direction: column; }
.gcal-row {
  display: grid; grid-template-columns: 64px 1fr;
  border-bottom: 1px solid rgba(26,23,20,0.06);
}
.gcal-row:last-child { border-bottom: none; }
.gcal-rtime {
  padding: 10px 12px;
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--text-dark-3);
  border-right: 1px solid rgba(26,23,20,0.06);
  display: flex; align-items: flex-start;
}
.gcal-ev {
  padding: 8px 16px;
  border-left: 3px solid var(--text-dark-3);
  background: var(--beige);
  margin: 4px 8px;
  border-radius: 3px;
}
.gcal-ev.faded { opacity: 0.6; padding: 6px 16px; }
.gcal-ev .ev-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.gcal-ev .ev-title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text-dark); }
.gcal-ev .ev-when { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-dark-3); white-space: nowrap; }
.gcal-ev .ev-chip-mini {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 6px;
  font-family: var(--font-mono); font-size: 0.66rem;
  color: var(--green-dark); font-weight: 600;
}
/* main event */
.gcal-ev.main {
  background: rgba(0,201,110,0.10);
  border-left: 3px solid var(--green);
  box-shadow: 0 8px 26px -10px rgba(0,201,110,0.40);
  padding: 12px 18px;
}
.gcal-ev.main .ev-title { font-size: 1.18rem; }
.gcal-ev.main .ev-sub {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-dark-3); margin-top: 4px;
}
.gcal-ev.main .ev-attendees {
  font-size: 0.82rem; color: var(--text-dark-2); margin-top: 8px;
}
.gcal-ev .ev-attach {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--warm-darker);
  padding: 8px 14px; border-radius: 4px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; letter-spacing: -0.01em;
}
.gcal-ev .ev-points {
  margin-top: 8px; list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.gcal-ev .ev-points li {
  font-size: 0.82rem; color: var(--text-dark-2);
  line-height: 1.4; padding-left: 14px; position: relative;
}
.gcal-ev .ev-points li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 2px; background: var(--green);
}
.gcal-ev .ev-points strong { color: var(--text-dark); font-weight: 600; }
@media (max-width: 720px) {
  .gcal-ev .ev-points { grid-template-columns: 1fr; }
}

/* === Slide 9 split: avant/apres gauche, calendrier droite === */
.mp9 { margin-top: 14px; display: flex; gap: 44px; align-items: stretch; flex-wrap: wrap; }
.mp9-left { flex: 1 1 380px; min-width: 300px; display: flex; flex-direction: column; }
.mp9-right { flex: 1.25 1 460px; min-width: 320px; display: flex; flex-direction: column; }
.mp9-left .ba-grid { grid-template-columns: 1fr; flex: 1; }
.mp9-right .gcal { flex: 1; }
@media (max-width: 860px) {
  .mp9 { flex-direction: column; }
}
