    :root {
      --bg: #f7f4ee;
      --card: #ffffff;
      --ink: #121212;
      --muted: #59544c;
      --line: #ddd6ca;
      --accent: #c92a2a;
      --accent-2: #8f1d1d;
      --soft: #efe8dc;
    }

    * {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.55;
    }

    .wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 32px 20px 72px;
    }

    .top {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 24px;
      align-items: start;
      margin-bottom: 24px;
    }

    .card,
    .divers {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    }

    h1,
    h2,
    h3 {
      margin: 0
    }

    .eyebrow {
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 700;
      margin-bottom: 12px;
    }

    .name {
      font-size: 44px;
      line-height: .95;
      font-weight: 800;
      letter-spacing: -.03em;
      margin-bottom: 12px;
    }

    .role {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .summary {
      font-size: 18px;
      color: var(--muted);
      max-width: 52ch;
    }

    .quick {
      display: grid;
      gap: 10px;
    }

    .quick .row {
      padding: 12px 14px;
      border-radius: 14px;
      background: var(--soft);
      font-size: 14px;
      font-weight: 700;
    }

    .quick .row strong,
    .role strong,
    .summary strong {
      color: var(--accent-2)
    }

    .role strong::before,
    .summary strong::before {
      content: "→"
    }

    .section {
      margin-top: 18px;
    }

    .section h2 {
      font-size: 28px;
      letter-spacing: -.02em;
      margin-bottom: 14px;
    }

    .kpis {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 10px;
    }

    .kpi {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px;
    }

    .kpi strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      color: var(--accent);
      margin-bottom: 8px;
      letter-spacing: -.03em;
    }

    .kpi span {
      display: block;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--muted);
      font-weight: 700;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 18px;
    }

    .list {
      margin: 0;
      padding-left: 18px;
    }

    .list li {
      margin: 8px 0
    }

    .targets {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .pill {
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      font-size: 13px;
      font-weight: 700;
    }

    .exp {
      display: grid;
      gap: 16px;
      margin-top: 18px;
    }

    .exp-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 22px;
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 20px;
    }

    .period {
      font-size: 14px;
      font-weight: 800;
      color: var(--accent);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 6px 8px;
      border-radius: 999px;
      background: var(--soft);
      color: var(--accent-2);
    }

    .exp h3 {
      font-size: 28px;
      letter-spacing: -.02em;
      margin-bottom: 4px;
    }

    .org {
      color: var(--accent-2);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .org .details {
      color: #000;
      float: right;
    }

    .headline {
      font-size: 17px;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin: 14px 0 10px;
    }

    .proof {
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 12px;
      background: #fcfbf8;
    }

    .proof strong {
      display: block;
      font-size: 20px;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 6px;
    }

    .proof span {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--muted);
      font-weight: 700;
    }

    .proof em {
      display: block;
      font-style: normal;
      margin-top: 7px;
      font-size: 12px;
      color: var(--muted);
    }

    .cta {
      margin-top: 22px;
      background: var(--ink);
      color: #fff;
      border-radius: 24px;
      padding: 26px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
    }

    .cta h2 {
      font-size: 30px;
      margin-bottom: 8px
    }

    .cta p {
      margin: 0;
      color: #ddd6ca
    }

    .buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    .btn {
      text-decoration: none;
      padding: 14px 16px;
      border-radius: 14px;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      border: 1px solid rgba(255, 255, 255, .25);
      color: #fff;
    }

    .btn.primary {
      background: var(--accent);
      border-color: var(--accent);
    }

    .footer-note {
      margin-top: 18px;
      font-size: 13px;
      color: var(--muted);
    }

    @media (max-width:900px) {

      .top,
      .split,
      .cta,
      .exp-card {
        grid-template-columns: 1fr
      }

      .kpis,
      .proof-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .name {
        font-size: 36px
      }

      .role {
        font-size: 21px
      }
    }

    @media (max-width:560px) {

      .kpis,
      .proof-grid {
        grid-template-columns: 1fr
      }

      .wrap {
        padding: 18px 14px 52px
      }

      .card,
      .divers,
      .exp-card,
      .cta {
        padding: 18px
      }
    }

    /* CTA fixe mobile uniquement */
    .mobile-cta {
      position: fixed;
      bottom: 16px;
      left: 16px;
      right: 16px;
      z-index: 999;
      display: none;
      backdrop-filter: blur(10px);
    }

    .mobile-cta .btn {
      display: block;
      text-align: center;
      padding: 14px;
      font-size: 16px;
    }

    /* Mobile only */
    @media (max-width: 768px) {
      .mobile-cta {
        display: block;
      }
    }

    /* Quand on arrive sur le vrai CTA */
    .mobile-cta.hide {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    /* BRUTALIST OVERRIDES */

    :root {
      --bg: #0a0a0a;
      --card: #111111;
      --card-2: #151515;
      --ink: #f3efe7;
      --muted: #b7aea1;
      --line: rgba(255, 255, 255, .12);
      --line-strong: rgba(255, 255, 255, .24);
      --accent: #ff3b30;
      --accent-2: #ff6b63;
      --soft: #181818;
      --glow: rgba(255, 59, 48, .18);
    }

    html,
    body {
      background: var(--bg);
    }

    body {
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(255, 59, 48, .14), transparent 28%),
        radial-gradient(circle at 100% 20%, rgba(255, 255, 255, .06), transparent 22%),
        linear-gradient(180deg, #080808 0%, #0e0e0e 100%);
    }

    .noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .08;
      background-image: radial-gradient(rgba(255, 255, 255, .6) 0.5px, transparent 0.5px);
      background-size: 6px 6px;
      mix-blend-mode: soft-light;
    }

    .wrap {
      max-width: 1180px;
      padding: 28px 20px 84px;
    }

    .top {
      grid-template-columns: 1.35fr .65fr;
      gap: 18px;
    }

    .card,
    .divers,
    .exp-card,
    .kpi,
    .cta {
      background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
      border: 1px solid var(--line);
      box-shadow: none;
    }

    .card,
    .divers {
      border-radius: 24px;
    }

    .brutal-hero .card:first-child {
      min-height: 100%;
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(255, 59, 48, .10), transparent 40%),
        linear-gradient(180deg, #111111, #0d0d0d);
      border-color: var(--line-strong);
    }

    .brutal-hero .card:last-child {
      background: linear-gradient(180deg, #121212, #101010);
    }

    .eyebrow {
      color: var(--accent);
      letter-spacing: .22em;
    }

    .name {
      font-size: 64px;
      line-height: .9;
      text-transform: uppercase;
      max-width: 8ch;
      margin-bottom: 16px;
    }

    .role {
      font-size: 28px;
      margin-bottom: 18px;
    }

    .role strong,
    .summary strong,
    .org,
    .quick .row strong {
      color: var(--ink);
    }

    .summary {
      font-size: 19px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .03em;
    }

    .hero-stamp {
      display: inline-flex;
      margin: 6px 0 18px;
      padding: 8px 12px;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: rgba(255, 59, 48, .08);
      box-shadow: inset 0 0 0 1px rgba(255, 59, 48, .12);
    }

    .brutal-hero h2 {
      font-size: 44px;
      line-height: .98;
      letter-spacing: -.04em;
      margin-top: 18px;
      max-width: 11ch;
    }

    .hero-manifesto {
      max-width: 54ch;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .hero-rail {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .hero-rail span,
    .pill,
    .tag {
      border: 1px solid var(--line-strong);
      background: rgba(255, 255, 255, .03);
    }

    .hero-rail span {
      padding: 9px 12px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .16em;
    }

    .quick .row {
      background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
      border: 1px solid var(--line);
      border-left: 4px solid var(--accent);
      border-radius: 6px;
      color: var(--ink);
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .section-head {
      margin-bottom: 16px;
    }

    .section-head h2 {
      max-width: 18ch;
      font-size: 36px;
      line-height: 1;
    }

    .kpi {
      border-radius: 10px;
      padding: 22px 18px;
      position: relative;
      overflow: hidden;
    }

    .kpi::before,
    .proof::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent);
    }

    .kpi strong,
    .proof strong {
      color: var(--ink);
      font-size: 36px;
    }

    .kpi span,
    .proof span,
    .proof em,
    .org .details,
    .headline,
    .cta p,
    .footer-note,
    .list li,
    .btn,
    .pill {
      color: var(--muted);
    }

    .split {
      gap: 18px;
    }

    .split .card,
    .exp-card,
    .proof,
    .kpi,
    .cta {
      border-radius: 10px;
    }

    .exp-card {
      padding: 24px;
      grid-template-columns: 170px 1fr;
      position: relative;
      overflow: hidden;
    }

    .exp-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0 auto;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(255, 59, 48, .12), transparent 70%);
      pointer-events: none;
    }

    .period {
      color: var(--accent);
      font-size: 13px;
    }

    .tag,
    .pill {
      color: var(--ink);
      border-radius: 999px;
    }

    .exp h3 {
      font-size: 34px;
      text-transform: uppercase;
      line-height: .95;
      margin-bottom: 8px;
    }

    .org {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: space-between;
    }

    .headline {
      font-size: 18px;
      max-width: 60ch;
    }

    .proof-grid {
      gap: 12px;
    }

    .proof {
      position: relative;
      padding: 14px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    }

    .proof strong {
      margin-bottom: 8px;
    }

    .cta {
      background: linear-gradient(135deg, rgba(255, 59, 48, .15), transparent 34%), #101010;
      border-color: var(--line-strong);
    }

    .cta h2 {
      font-size: 38px;
      line-height: .96;
      max-width: 12ch;
    }

    .btn {
      border-radius: 8px;
      border-color: var(--line-strong);
      color: var(--ink);
      background: rgba(255, 255, 255, .02);
    }

    .btn.primary {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(255, 59, 48, .2), 0 14px 40px rgba(255, 59, 48, .18);
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .mobile-cta {
      left: 12px;
      right: 12px;
      bottom: 12px;
    }

    .mobile-cta .btn.primary {
      box-shadow: 0 12px 30px rgba(255, 59, 48, .28);
    }

    @media (max-width: 900px) {
      .name {
        font-size: 48px;
        max-width: none;
      }

      .brutal-hero h2,
      .section-head h2,
      .cta h2 {
        max-width: none;
        font-size: 34px;
      }

      .org {
        display: block;
      }

      .org .details {
        float: none;
        display: block;
        margin-top: 2px;
      }
    }

    @media (max-width: 560px) {
      .wrap {
        padding: 14px 12px 84px;
      }

      .brutal-hero .card:first-child,
      .card,
      .exp-card,
      .cta {
        padding: 18px;
      }

      .name {
        font-size: 38px;
        line-height: .95;
      }

      .role {
        font-size: 22px;
      }

      .brutal-hero h2,
      .section-head h2,
      .cta h2 {
        font-size: 28px;
      }

      .hero-manifesto,
      .headline {
        font-size: 15px;
      }

      .quick .row,
      .btn,
      .mobile-cta .btn {
        font-size: 13px;
      }
    }


    /* --- Immersive mobile navigation / motion layer --- */
    .reveal-block {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .55s ease, transform .55s ease, border-color .35s ease, box-shadow .35s ease;
    }

    .reveal-block.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-story-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1100;
      display: none;
      padding: calc(env(safe-area-inset-top, 0px) + 8px) 12px 8px;
      background: linear-gradient(180deg, rgba(5, 5, 5, .88), rgba(5, 5, 5, .58), rgba(5, 5, 5, 0));
      backdrop-filter: blur(12px);
      pointer-events: none;
    }

    .mobile-story-topline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .mobile-story-kicker,
    .mobile-story-label {
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 800;
    }

    .mobile-story-kicker {
      color: rgba(255, 255, 255, .42);
    }

    .mobile-story-label {
      color: #fff;
    }

    .mobile-story-progress {
      height: 3px;
      background: rgba(255, 255, 255, .08);
      border-radius: 999px;
      overflow: hidden;
    }

    .mobile-story-progress span {
      display: block;
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, #ff3b30, #ffd2ce);
      box-shadow: 0 0 18px rgba(255, 59, 48, .45);
      transition: width .18s linear;
    }

    .mobile-story-exp {
      margin-top: 8px;
      display: none;
      gap: 8px;
      justify-content: center;
      pointer-events: auto;
    }

    .mobile-story-exp.show {
      display: flex;
    }

    .story-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .18);
      background: rgba(255, 255, 255, .12);
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .35);
    }

    .story-dot.active {
      width: 30px;
      background: #ff3b30;
      border-color: #ff3b30;
      box-shadow: 0 0 18px rgba(255, 59, 48, .4);
    }

    .story-section {
      scroll-margin-top: 82px;
    }

    @media (max-width: 768px) {
html,
body {
  max-width: 100%;
  /* overflow-x: hidden au lieu de clip pour une meilleure compatibilité */
  overflow-x: hidden; 
  /* Assure-toi que la hauteur n'est pas bloquée */
  height: auto;
  min-height: 100%;
}

.exp {
    display: grid;
    gap: 14px;
    /* Active le magnétisme proprement sur l'axe Y */
    scroll-snap-type: y proximity; 
  }
  
  .exp-card {
    scroll-snap-align: center;
    /* Évite de forcer une hauteur trop rigide si le contenu est long */
    min-height: 70svh; 
  }

      .mobile-story-nav {
        display: block;
      }

      .wrap {
        padding-top: 72px;
      }

      .exp {
        gap: 14px;
      }

      .exp-card {
        min-height: 84svh;
        align-content: start;
        scroll-snap-align: center;
        scroll-margin-top: 94px;
        transform-origin: center center;
        transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
      }

      .exp-card::before {
        content: "SWIPE / SCROLL";
        position: absolute;
        top: 14px;
        right: 14px;
        font-size: 9px;
        letter-spacing: .18em;
        color: rgba(255, 255, 255, .22);
      }

      .exp-card.is-active {
        transform: scale(1.01);
        border-color: rgba(255, 59, 48, .45);
        box-shadow: 0 18px 50px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 59, 48, .16);
        background: linear-gradient(180deg, rgba(255, 59, 48, .08), rgba(255, 255, 255, .02) 34%), var(--card);
      }

      .proof-grid {
        grid-template-columns: 1fr;
      }

      .proof {
        transform: translateX(0);
        transition: transform .35s ease, border-color .35s ease, background .35s ease;
      }

      .exp-card.is-active .proof:nth-child(1) {
        transform: translateX(0px);
      }

      .exp-card.is-active .proof:nth-child(2) {
        transform: translateX(4px);
      }

      .exp-card.is-active .proof:nth-child(3) {
        transform: translateX(8px);
      }

      .exp-card.is-active .proof:nth-child(4) {
        transform: translateX(12px);
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .reveal-block,
      .exp-card,
      .proof,
      .story-dot,
      .mobile-story-progress span {
        transition: none !important;
      }
    }


    /* MOBILE IMMERSIVE FIXES */

    html,
    body {
      max-width: 100%;
      overflow-x: clip;
    }

    body {
      overflow-x: hidden;
    }

    img,
    svg,
    video,
    canvas {
      max-width: 100%;
      height: auto;
    }

    h1,
    h2,
    h3,
    p,
    li,
    span,
    a,
    strong,
    em,
    div {
      overflow-wrap: anywhere;
    }

    .mobile-story-nav,
    .mobile-guide {
      display: none;
    }

    .story-section {
      position: relative;
      transition: transform .35s ease, opacity .35s ease;
    }

    .story-section.is-current-section::before {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 18px;
      pointer-events: none;
      background: radial-gradient(circle at top left, rgba(255, 59, 48, .10), transparent 45%);
      opacity: .9;
    }

    .reveal-block {
      opacity: 0;
      transform: translateY(24px) scale(.985);
      transition: opacity .55s ease, transform .55s ease, border-color .35s ease, box-shadow .35s ease;
      will-change: transform, opacity;
    }

    .reveal-block.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    @media (max-width: 768px) {
      :root {
        --mobile-nav-h: 58px;
        --mobile-guide-h: 88px;
      }

      .wrap {
        max-width: 100%;
        padding: calc(var(--mobile-nav-h) + var(--mobile-guide-h) + 18px) 12px 108px;
      }

      .mobile-story-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        display: block;
        background: rgba(8, 8, 8, .84);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
      }

      .mobile-story-topline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 42px;
        padding: 10px 12px 6px;
      }

      .mobile-story-kicker {
        color: var(--accent);
        font-size: 10px;
        letter-spacing: .18em;
        text-transform: uppercase;
        font-weight: 800;
      }

      .mobile-story-label {
        color: var(--ink);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .12em;
        font-weight: 800;
        text-align: right;
      }

      .mobile-story-progress {
        height: 3px;
        background: rgba(255, 255, 255, .08);
      }

      .mobile-story-progress span {
        display: block;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--accent), #ff8a80);
        box-shadow: 0 0 20px rgba(255, 59, 48, .38);
      }

      .mobile-story-exp {
        display: none;
        padding: 8px 12px 10px;
        gap: 8px;
        justify-content: center;
        align-items: center;
      }

      .mobile-story-exp.show {
        display: flex;
      }

      .story-dot {
        width: 10px;
        height: 10px;
        padding: 0;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, .3);
        background: transparent;
        box-shadow: none;
      }

      .story-dot.active {
        width: 24px;
        background: var(--accent);
        border-color: var(--accent);
      }

      .mobile-guide {
        position: fixed;
        top: var(--mobile-nav-h);
        left: 0;
        right: 0;
        z-index: 1000;
        display: block;
        padding: 8px 12px 10px;
        background: linear-gradient(180deg, rgba(17, 17, 17, .98), rgba(17, 17, 17, .88));
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        backdrop-filter: none;
        pointer-events: none;
      }

      .mobile-guide-inner {
        border: 1px solid rgba(255, 255, 255, .09);
        background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
        border-radius: 12px;
        padding: 10px 12px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
      }

      .mobile-guide-meta {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: baseline;
        margin-bottom: 6px;
      }

      .mobile-guide-step {
        color: var(--accent);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .18em;
        text-transform: uppercase;
      }

      .mobile-guide-title {
        color: var(--ink);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
        text-align: right;
      }

      .mobile-guide-copy {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.38;
      }

      .noise {
        opacity: .04;
      }

      .top,
      .split,
      .cta,
      .exp-card,
      .kpis,
      .proof-grid {
        grid-template-columns: 1fr !important;
      }

      .top,
      .split,
      .exp,
      .kpis,
      .proof-grid,
      .buttons,
      .targets,
      .tags {
        min-width: 0;
      }

      .card,
      .divers,
      .exp-card,
      .cta,
      .kpi,
      .proof {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 16px;
      }

      .brutal-hero {
        gap: 12px;
        --hero-shift: 0px;
      }

      .brutal-hero .card:first-child {
        padding: 18px 16px;
        transform: translateY(var(--hero-shift));
      }

      .name {
        font-size: clamp(2.3rem, 13vw, 3.5rem);
        max-width: 100%;
      }

      .role {
        font-size: clamp(1.1rem, 5.2vw, 1.35rem);
      }

      .summary {
        font-size: .95rem;
        max-width: 100%;
      }

      .brutal-hero h2,
      .section-head h2,
      .exp h3,
      .cta h2 {
        max-width: 100%;
        font-size: clamp(1.55rem, 7vw, 2.35rem);
        line-height: .98;
      }

      .hero-manifesto,
      .headline,
      .cta p {
        font-size: .98rem;
        max-width: 100%;
      }

      .hero-rail,
      .targets,
      .tags,
      .buttons {
        gap: 8px;
      }

      .hero-rail span,
      .pill,
      .tag,
      .btn {
        max-width: 100%;
        white-space: normal;
      }

      .section-head {
        margin-bottom: 12px;
      }

      .kpi strong,
      .proof strong {
        font-size: 1.8rem;
      }

      .org {
        display: block;
      }

      .org .details {
        display: block;
        float: none;
        margin-top: 4px;
        font-size: .9rem;
      }

      .list {
        padding-left: 16px;
      }

      .list li {
        margin: 7px 0;
      }

      .exp-card {
        position: relative;
        scroll-margin-top: calc(var(--mobile-nav-h) + var(--mobile-guide-h) + 20px);
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
      }

      .exp-card.is-active {
        border-color: rgba(255, 59, 48, .42);
        box-shadow: 0 18px 38px rgba(0, 0, 0, .28), inset 0 0 0 1px rgba(255, 59, 48, .14);
        transform: translateY(-2px);
      }

      .exp-card.is-active::before {
        content: "EXPÉRIENCE EN COURS";
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .16em;
        color: var(--accent);
      }

      .proof-grid {
        margin-top: 12px;
      }

      .proof,
      .kpi {
        padding: 14px;
      }

      .buttons .btn,
      .mobile-cta .btn {
        display: block;
        width: 100%;
        text-align: center;
      }

      .mobile-cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
      }

      .mobile-cta .btn {
        font-size: 14px;
        padding: 14px 16px;
        box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
      }

      .footer-note {
        padding-bottom: 6px;
      }
    }