
  :root {
    --bg: #0a0a0a;
    --bg-1: #0d0d0d;
    --ink: #f4f4f2;
    --ink-2: rgba(244,244,242,.60);
    --ink-3: rgba(244,244,242,.34);
    --ink-4: rgba(244,244,242,.18);
    --line: rgba(244,244,242,.10);
    --line-2: rgba(244,244,242,.22);
    --accent: #0AFF70;
    --accent-ink: #0a0a0a;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { background: var(--bg); }
  body {
    background: transparent;
    color: var(--ink);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  /* WebGL postprocessing background — fixed, content scrolls over */
  #bg-canvas {
    position: fixed; inset: 0;
    width: 100vw; height: 100vh;
    display: block; z-index: -2;
  }
  #bg-scrim {
    position: fixed; inset: 0;
    z-index: -1; pointer-events: none;
    background: rgba(10,10,10,.55);
  }

  .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
  .display { font-family: 'Space Mono', 'JetBrains Mono', monospace; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }

  .blur { backdrop-filter: blur(25px); }
  .bg-primary  { background: #0d0d0d !important;}

  /* ────────────────────────────────────────────────
     Framed layout — hairlines define the grid
     ──────────────────────────────────────────────── */
  .frame {
    max-width: 1360px;
    margin: 0 auto;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    position: relative;
  }
  .col-pad { padding-left: 40px; padding-right: 40px; }
  @media (max-width: 720px) {
    .col-pad { padding-left: 20px; padding-right: 20px; }
  }
  .hr { height: 1px; background: var(--line); border: 0; margin: 0; }

  /* ────────────────────────────────────────────────
     Navbar
     ──────────────────────────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10,10,10,.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 60px;
  }
  .logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600; font-size: 13px; letter-spacing: .01em;
  }
  .logo-dot {
    width: 8px; height: 8px; background: var(--accent); display: inline-block;
  }
  .logo .slash { color: var(--ink-3); font-weight: 400; }
  .nav-links {
    display: flex; gap: 26px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; letter-spacing: .02em;
  }
  .nav-links a {
    color: var(--ink-2);
    transition: color .15s ease;
    position: relative;
    padding: 4px 0;
  }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s cubic-bezier(.2,.7,.2,1);
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--ink); }
  .nav-links a.active::after { transform: scaleX(1); }
  .nav-links a.nav-logo { display: flex; align-items: center; padding: 0; }
  .nav-links a.nav-logo img { height: 29px; width: auto; display: block; }

  /* CTA in nav */
  .nav-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 10px 16px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--accent-ink);
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
  }
  .nav-cta .arr { display: inline-block; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .nav-cta:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
  .nav-cta:hover .arr { transform: translateX(4px); }
  .nav-cta-dot {
    width: 7px; height: 7px;
    background: var(--accent-ink);
    border-radius: 50%;
    display: inline-block;
    animation: navdot 1.6s ease-in-out infinite;
  }
  @keyframes navdot {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
  }

  @media (max-width: 900px) {
    .nav-links { gap: 18px; font-size: 11.5px; }
  }
  @media (max-width: 760px) {
    .nav-links { display: none; }
  }
  @media (max-width: 420px) {
    .nav-cta .arr { display: none; }
    .nav-cta { padding: 10px 12px; }
  }

  /* ────────────────────────────────────────────────
     Section frame
     ──────────────────────────────────────────────── */
  .section { position: relative; }
  .section + .section { border-top: 1px solid var(--line); }
  .section-head {
    display: flex; align-items: center; justify-content: space-between;
    height: 44px;
    border-bottom: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-3);
  }
  .section-head .l, .section-head .r { display: inline-flex; align-items: center; gap: 12px; }
  .section-head .num { color: var(--ink); }
  .section-head .live {
    width: 6px; height: 6px; background: var(--accent); display: inline-block;
    border-radius: 50%;
  }

  /* ────────────────────────────────────────────────
     Hero
     ──────────────────────────────────────────────── */
  .hero { padding-top: 120px; padding-bottom: 120px; }
  .hero-meta {
    display: flex; align-items: center; gap: 18px;
    color: var(--ink-3);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 56px;
  }
  .hero-meta .sep { width: 6px; height: 1px; background: var(--ink-4); }
  .hero-meta b { color: var(--ink); font-weight: 500; }

  .hero p.reveal {
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: clamp(20px, 3.3vw, 46px);
    line-height: 1.08;
    letter-spacing: -.02em;
    margin: 0;
    text-transform: uppercase;
  }
  .hero p.reveal .acc { color: var(--accent); }
  .hero .hero-sub {
    margin: 28px 0 0;
    max-width: 640px;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(13px, 1.15vw, 16px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink-2);
  }
  .hero .hero-sub b { color: var(--ink); font-weight: 500; }

  .hero-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: end;
    margin-top: 88px;
  }
  .hero-foot p {
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.65;
    max-width: 380px;
    margin: 0;
  }
  .hero-foot p b { color: var(--ink); font-weight: 500; }
  .hero-foot .ctas {
    display: flex; gap: 14px; justify-self: end; align-items: center; flex-wrap: wrap;
  }
  @media (max-width: 880px) {
    .hero { padding-top: 72px; padding-bottom: 72px; }
    .hero-foot { grid-template-columns: 1fr; gap: 36px; margin-top: 56px; }
    .hero-foot .ctas { justify-self: start; }
  }

  /* ────────────────────────────────────────────────
     Buttons — text + arrow, underline on hover
     ──────────────────────────────────────────────── */
  .link {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--line-2);
    transition: color .18s ease, border-color .18s ease;
    background: none; border-top: 0; border-left: 0; border-right: 0;
  }
  .link .arr { display: inline-block; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .link:hover { color: var(--accent); border-bottom-color: var(--accent); }
  .link:hover .arr { transform: translateX(4px); }
  .link.primary { color: var(--accent); border-bottom-color: var(--accent); }
  .link.primary:hover { color: var(--ink); border-bottom-color: var(--ink); }

  .pill {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 14px 20px 14px 22px;
    border: 1px solid var(--line-2);
    color: var(--ink);
    cursor: pointer;
    background: transparent;
    transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
  }
  .pill .arr { display: inline-block; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .pill:hover { border-color: var(--ink); }
  .pill:hover .arr { transform: translateX(4px); }
  .pill.primary {
    background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
  }
  .pill.primary:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
  .hero-foot .pill:not(.primary) {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .pill[disabled] { opacity: .5; cursor: default; }

  /* ────────────────────────────────────────────────
     Bénéfices — 3 cartes, leviers positifs
     ──────────────────────────────────────────────── */
  #benefices { padding-top: 0; padding-bottom: 0; }

  .ben-intro-row {
    margin-left: -40px; margin-right: -40px;
    padding: 40px 40px 44px;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 720px) {
    .ben-intro-row { margin-left: -20px; margin-right: -20px; padding: 28px 20px 32px; }
  }
  .ben-intro {
    max-width: 720px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-2);
    margin: 0;
    text-wrap: pretty;
  }
  @media (max-width: 720px) {
    .ben-intro { font-size: 13px; }
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: -40px; margin-right: -40px;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 960px) and (min-width: 721px) {
    .benefits-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 720px) {
    .benefits-grid { margin-left: -20px; margin-right: -20px; grid-template-columns: 1fr; }
  }

  .ben-card {
    position: relative;
    padding: 40px 40px 32px;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column;
    background: transparent;
    color: var(--ink);
    transition: background .2s ease;
  }
  .ben-card:last-child { border-right: 0; }
  @media (max-width: 960px) {
    .ben-card { border-right: 0; border-bottom: 1px solid var(--line); padding: 36px 28px; }
    .ben-card:last-child { border-bottom: 0; }
  }
  @media (max-width: 720px) {
    .ben-card { padding: 32px 20px; }
  }
  .ben-card:hover { background: rgba(244,244,242,.025); }

  .ben-title {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1;
    letter-spacing: -.035em;
    text-transform: uppercase;
    margin: 0 0 22px;
    color: var(--ink);
  }
  .ben-title .acc { color: var(--accent); }

  .ben-lead {
    color: var(--ink-2);
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 26px;
    max-width: 320px;
    text-wrap: pretty;
  }

  .ben-bullets {
    list-style: none; padding: 0; margin: 0 0 auto;
    display: flex; flex-direction: column; gap: 6px;
    color: var(--ink-3);
    font-size: 11.5px; letter-spacing: .04em;
  }
  .ben-bullets li {
    display: flex; align-items: baseline; gap: 10px;
  }
  .ben-bullets li::before {
    content: "—"; color: var(--ink-4); flex: 0 0 auto;
  }

  .ben-foot {
    display: flex; justify-content: flex-start;
    padding-top: 22px;
    margin-top: 28px;
    border-top: 1px solid var(--line-2);
  }
  .ben-metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent);
  }

  /* ────────────────────────────────────────────────
     Services — 3 cartes cliquables
     ──────────────────────────────────────────────── */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  @media (max-width: 991px) and (min-width: 550px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 549px) {
    .services-grid { grid-template-columns: 1fr; }
  }

  .svc-card {
    position: relative;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--line);
    padding: 40px 40px 36px;
    display: flex; flex-direction: column;
    min-height: 360px;
    text-align: left;
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: background .2s ease;
    overflow: hidden;
  }
  .svc-card:nth-child(3n) { border-right: 0; }
  .svc-card:not(:nth-last-child(-n+3)) { border-bottom: 1px solid var(--line); }
  @media (max-width: 991px) and (min-width: 550px) {
    .svc-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 0; }
    .svc-card:nth-child(2n) { border-right: 0; }
    .svc-card:nth-last-child(-n+2) { border-bottom: 0; }
  }
  @media (max-width: 549px) {
    .svc-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; }
    .svc-card:last-child { border-bottom: 0; }
  }
  .svc-card:hover { background: rgba(244,244,242,.025); }
  .svc-card:hover .svc-go { color: var(--accent); border-bottom-color: var(--accent); }
  .svc-card:hover .svc-go .arr { transform: translateX(4px); }
  .svc-card:hover .svc-num { color: var(--accent); }
  .svc-card:focus-visible { outline: 1px solid var(--accent); outline-offset: -1px; }

  .svc-head {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 36px;
  }
  .svc-num { color: var(--ink); transition: color .2s ease; }
  .svc-tag { color: var(--ink-3); }

  .svc-title {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1;
    letter-spacing: -.035em;
    text-transform: uppercase;
    margin: 0 0 20px;
  }
  .svc-title .acc { color: var(--accent); }

  .svc-lead {
    color: var(--ink-2);
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 320px;
  }
  .svc-bullets {
    list-style: none; padding: 0; margin: 0 0 auto;
    display: flex; flex-direction: column; gap: 6px;
    color: var(--ink-3);
    font-size: 11.5px; letter-spacing: .04em;
  }
  .svc-bullets li {
    display: flex; align-items: baseline; gap: 10px;
    color: #ffffff;
  }
  .svc-bullets li::before {
    content: "—"; color: var(--ink-4); flex: 0 0 auto;
  }
  .svc-foot {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 32px;
    padding-top: 28px;
    position: relative; z-index: 1;
  }
  .svc-go {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--line-2);
    transition: color .18s ease, border-color .18s ease;
  }
  .svc-go .arr { display: inline-block; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .svc-price {
    font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-3);
  }

  /* ────────────────────────────────────────────────
     Modale Service
     ──────────────────────────────────────────────── */
  .modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(10,10,10,.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 300;
    display: flex; align-items: flex-start; justify-content: center;
    padding: 64px 24px;
    overflow-y: auto;
    opacity: 0;
    animation: modal-fade .22s ease forwards;
  }
  @keyframes modal-fade { to { opacity: 1; } }

  .modal {
    background: var(--bg);
    border: 1px solid var(--line-2);
    width: 100%; max-width: 880px;
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    transform: translateY(12px);
    opacity: 0;
    animation: modal-rise .35s cubic-bezier(.2,.7,.2,1) .04s forwards;
    position: relative;
  }
  @keyframes modal-rise { to { transform: none; opacity: 1; } }

  .modal-head {
    display: flex; justify-content: space-between; align-items: center;
    height: 44px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-3);
  }
  .modal-head .l { display: inline-flex; align-items: center; gap: 12px; }
  .modal-head .l .num { color: var(--ink); }
  .modal-close {
    background: transparent; border: 0; color: var(--ink-2);
    font-family: inherit; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 8px;
    transition: color .15s ease;
  }
  .modal-close:hover { color: var(--accent); }
  .modal-close .x {
    display: inline-block; width: 14px; height: 14px;
    position: relative;
  }
  .modal-close .x::before, .modal-close .x::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 14px; height: 1px; background: currentColor;
    transform-origin: center;
  }
  .modal-close .x::before { transform: translate(-50%,-50%) rotate(45deg); }
  .modal-close .x::after  { transform: translate(-50%,-50%) rotate(-45deg); }

  .modal-body { padding: 48px 48px 56px; }
  @media (max-width: 640px) { .modal-body { padding: 32px 24px 40px; } }

  .modal-title {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: .98;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin: 0 0 20px;
  }
  .modal-title .acc { color: var(--accent); }
  .modal-lead {
    color: var(--ink); font-size: 15px; line-height: 1.65;
    max-width: 620px; margin: 0 0 40px;
  }

  .modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  @media (max-width: 640px) {
    .modal-grid { grid-template-columns: 1fr; }
  }
  .modal-block {
    padding: 24px 24px 28px 0;
    border-bottom: 1px solid var(--line);
  }
  .modal-block + .modal-block { padding-left: 24px; border-left: 1px solid var(--line); }
  @media (max-width: 640px) {
    .modal-block { padding: 20px 0; }
    .modal-block + .modal-block { padding-left: 0; border-left: 0; }
  }
  .modal-block h5 {
    font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-3); margin: 0 0 14px; font-weight: 500;
  }
  .modal-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .modal-block li {
    font-size: 13px; line-height: 1.55;
    color: var(--ink); display: flex; align-items: baseline; gap: 10px;
  }
  .modal-block li::before { content: "→"; color: var(--accent); flex: 0 0 auto; }

  .modal-meta {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 36px 0 36px;
  }
  @media (max-width: 640px) { .modal-meta { grid-template-columns: 1fr; } }
  .modal-meta > div {
    padding: 16px 20px 16px 0;
    border-right: 1px solid var(--line);
  }
  .modal-meta > div:last-child { border-right: 0; padding-right: 0; }
  @media (max-width: 640px) {
    .modal-meta > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 14px 0; }
    .modal-meta > div:last-child { border-bottom: 0; }
  }
  .modal-meta .k {
    display: block;
    font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-3); margin-bottom: 6px;
  }
  .modal-meta .v {
    font-size: 13px; color: var(--ink); letter-spacing: .01em;
  }
  .modal-meta .v .acc { color: var(--accent); }

  .modal-foot {
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
    padding-top: 4px;
  }
  .modal-foot .note { color: var(--ink-3); font-size: 11px; letter-spacing: .04em; margin: 0; }

  /* ────────────────────────────────────────────────
     Réalisations
     ──────────────────────────────────────────────── */
  .real-wrap { position: relative; }
  .real-row {
    border-bottom: 1px solid var(--line);
    padding-left: 40px; padding-right: 40px;
  }
  .real-row:last-child { border-bottom: 0; }
  @media (max-width: 720px) {
    .real-row { padding-left: 20px; padding-right: 20px; }
  }
  .real-trigger {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: 0;
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    transition: opacity .2s ease, color .2s ease;
  }
  .real-trigger .real-name { font-weight: 600; letter-spacing: -.005em; }
  .real-trigger .real-cat  { text-align: center; color: var(--ink-2); }
  .real-trigger .real-type { text-align: right;  color: var(--ink-2); font-size: 13px; letter-spacing: .01em; }

  /* dim siblings on hover */
  .real-list[data-hovering="true"] .real-trigger { opacity: .35; }
  .real-list[data-hovering="true"] .real-row.is-hover .real-trigger,
  .real-list[data-hovering="true"] .real-row.is-open  .real-trigger { opacity: 1; }
  .real-row.is-open .real-trigger .real-name,
  .real-row.is-open .real-trigger .real-cat { color: var(--accent); }

  /* Expand/collapse */
  .real-expand {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s cubic-bezier(.2,.7,.2,1);
  }
  .real-row.is-open .real-expand { grid-template-rows: 1fr; }
  .real-expand-inner { overflow: hidden; min-height: 0; }
  .real-expand-pad   { padding: 6px 0 36px; }

  .real-title {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 48px);
    letter-spacing: -.035em;
    color: var(--accent);
    text-align: center;
    margin: 0;
    padding: 4px 0 28px;
    text-transform: none;
  }

  .real-grid {
    display: grid;
    grid-template-columns: 360px 1fr 160px;
    gap: 56px;
    align-items: start;
  }
  .real-thumb-col { display: block; }
  .real-thumb-big {
    width: 100%; aspect-ratio: 16/10;
    border-top: 1px solid var(--line-2);
  }
  .real-cap {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--ink);
    letter-spacing: .02em;
    margin-top: 12px;
  }
  .real-desc { padding-top: 0; }
  .real-desc p {
    color: var(--ink); font-size: 14px; line-height: 1.7;
    margin: 0 0 14px; max-width: 520px;
  }
  .real-desc .real-stack {
    color: var(--ink); font-style: italic; font-size: 13px;
    margin-top: 22px;
  }
  .real-visit {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; font-weight: 500;
    color: var(--ink);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line-2);
    transition: color .18s ease, border-color .18s ease;
    align-self: start;
    justify-self: end;
  }
  .real-visit:hover { color: var(--accent); border-bottom-color: var(--accent); }
  .real-visit .arr { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .real-visit:hover .arr { transform: translate(3px,-3px); }

  @media (max-width: 880px) {
    .real-trigger { grid-template-columns: 1fr auto; gap: 14px; }
    .real-trigger .real-cat { display: none; }
    .real-grid { grid-template-columns: 1fr; gap: 28px; }
    .real-visit { justify-self: start; }
  }

  /* Floating cursor thumbnail */
  .real-cursor {
    position: fixed; top: 0; left: 0;
    width: 300px; height: 188px;
    pointer-events: none;
    z-index: 200;
    opacity: 0;
    transform: translate3d(-9999px,-9999px,0);
    transition: opacity .18s ease;
    will-change: transform;
    filter: saturate(0);
  }
  .real-cursor.on { opacity: 1; }
  @media (max-width: 720px) { .real-cursor { display: none; } }

  /* Mock thumbnail card (placeholder until real screenshots are dropped in) */
  .thumb-card {
    width: 100%; height: 100%;
    background: #141414;
    border: 1px solid var(--line-2);
    display: flex; flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.6);
  }
  .thumb-card.flat { box-shadow: none; }
  .thumb-bar {
    height: 22px; padding: 0 10px;
    background: #181818;
    display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--line);
    flex: 0 0 auto;
  }
  .thumb-bar span {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--ink-4);
  }
  .thumb-body {
    flex: 1; position: relative;
    background:
      linear-gradient(180deg, transparent 0, transparent 28%, rgba(244,244,242,.025) 28%, rgba(244,244,242,.025) 29%, transparent 29%),
      repeating-linear-gradient(135deg, transparent 0 8px, rgba(244,244,242,.04) 8px 9px);
  }
  .thumb-label {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-3);
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .thumb-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ────────────────────────────────────────────────
     Partenaires — galerie logos N&B
     ──────────────────────────────────────────────── */
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-cell {
    position: relative;
    aspect-ratio: 7/4;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-2);
    background: transparent;
    transition: background .2s ease, color .2s ease;
    overflow: hidden;
    text-decoration: none;
  }
  .partner-cell:nth-child(2n) { border-right: 0; }
  .partner-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .partner-cell:hover { color: var(--ink); background: rgba(244,244,242,.03); }
  .partner-cell:focus-visible { outline: 1px solid var(--accent); outline-offset: -1px; }

  .partner-logo {
    display: inline-flex; align-items: center; gap: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
    font-weight: 500;
    filter: grayscale(1);
    transition: opacity .2s ease;
  }
  .partner-logo img {
    width: 300px;
    height: auto;
    border-radius: 5px;
    object-fit: contain;
    opacity: .85;
    transition: opacity .2s ease;
  }
  .partner-cell:hover .partner-logo img { opacity: 1; }
  .partner-mark {
    width: 14px; height: 14px;
    background: currentColor;
    flex: 0 0 auto;
    display: inline-block;
  }
  .partner-cell:nth-child(6n+2) .partner-mark { border-radius: 50%; }
  .partner-cell:nth-child(6n+3) .partner-mark { transform: rotate(45deg); width: 11px; height: 11px; }
  .partner-cell:nth-child(6n+4) .partner-mark {
    background: transparent;
    border: 1.5px solid currentColor;
  }
  .partner-cell:nth-child(6n+5) .partner-mark {
    background: transparent;
    border: 1.5px solid currentColor;
    border-radius: 50%;
  }
  .partner-cell:nth-child(6n+6) .partner-mark {
    background: transparent;
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid currentColor;
  }

  .partner-arrow {
    position: absolute;
    top: 16px; right: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--ink-4);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity .2s ease, transform .25s cubic-bezier(.2,.7,.2,1), color .2s ease;
  }
  .partner-cell:hover .partner-arrow { opacity: 1; transform: none; color: var(--accent); }

  @media (max-width: 880px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .partner-cell:nth-child(3n) { border-right: 1px solid var(--line); }
    .partner-cell:nth-child(2n) { border-right: 0; }
    .partner-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
    .partner-cell:nth-last-child(-n+2) { border-bottom: 0; }
    .partner-cell:nth-last-child(-n+2):nth-child(odd):last-child { border-right: 0; }
    .partner-logo img { width: 100%; max-width: 180px; }
  }

  /* ────────────────────────────────────────────────
     Contact
     ──────────────────────────────────────────────── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  /* Padding lives inside columns so the vertical divider spans top→bottom */
  .contact-grid > * { padding: 88px 56px 96px; }
  .contact-grid > *:first-child { padding-left: 0; }
  .contact-grid > *:last-child { padding-right: 0; border-left: 1px solid var(--line); }
  @media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; gap: 0; }
    .contact-grid > * { padding: 56px 40px; }
    .contact-grid > *:last-child { border-left: 0; border-top: 1px solid var(--line); }
  }

  .contact-lead h2 {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin: 0 0 28px;
  }
  .contact-lead h2 .acc { color: var(--accent); }
  .contact-lead p {
    color: var(--ink-2); font-size: 14px; line-height: 1.65;
    max-width: 360px; margin: 0 0 40px;
  }
  .info-list {
    border-top: 1px solid var(--line);
  }
  .info-list .row {
    display: grid; grid-template-columns: 88px 1fr;
    gap: 16px; padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    align-items: center;
  }
  .info-list .row .k {
    color: var(--ink-3); letter-spacing: .1em; text-transform: uppercase;
    font-size: 10.5px;
  }
  .info-list .row .v { color: var(--ink); }
  .info-list .row.linkable .v { transition: color .15s ease; }
  .info-list .row.linkable:hover .v { color: var(--accent); }

  /* Form */
  .form .field { display: flex; flex-direction: column; gap: 8px; }
  .form .field + .field { margin-top: 28px; }
  .form .field label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-3);
    display: flex; justify-content: space-between; align-items: baseline;
  }
  .form .field .err {
    color: var(--accent); font-size: 10.5px; letter-spacing: .04em;
    text-transform: none;
  }
  .form .field input,
  .form .field textarea,
  .form .field select {
    background: transparent;
    border: 0; border-bottom: 1px solid var(--line-2);
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    padding: 10px 0 12px;
    outline: none;
    transition: border-color .18s ease;
    width: 100%;
  }
  .form .field input::placeholder,
  .form .field textarea::placeholder { color: var(--ink-3); }
  .form .field input:focus,
  .form .field textarea:focus,
  .form .field select:focus { border-bottom-color: var(--accent); }
  .form .field.error input,
  .form .field.error textarea,
  .form .field.error select { border-bottom-color: var(--accent); }

  /* Textarea */
  .form .field textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.6;
  }

  /* Select (custom-styled, native dropdown) */
  .form .field .select-wrap { position: relative; }
  .form .field .select-wrap::after {
    content: ""; position: absolute; right: 2px; top: 50%;
    width: 10px; height: 7px; transform: translateY(-50%);
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23f4f4f2' stroke-width='1.5'><path d='M1 1 L6 6 L11 1'/></svg>") no-repeat center / contain;
    pointer-events: none;
    transition: transform .18s ease;
  }
  .form .field .select-wrap:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .form .field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 24px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 13px;
  }
  .form .field select[data-empty="true"] { color: var(--ink-3); }
  .form .field select option { background: var(--bg); color: var(--ink); font-size: 14px; }
  .form .field select option[disabled] { color: var(--ink-3); }

  .form-foot {
    display: flex; flex-direction: column;
    margin-top: 36px; gap: 18px;
  }
  .form-submit {
    width: 100%;
    justify-content: center;
    padding-top: 18px; padding-bottom: 18px;
  }
  .form-foot .note {
    font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
    color: var(--ink-3); letter-spacing: .04em; margin: 0;
    line-height: 1.55; text-align: center;
  }

  .form-success {
    padding: 24px 0;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    line-height: 1.65;
  }
  .form-success b { color: var(--accent); font-weight: 600; }

  /* ────────────────────────────────────────────────
     RDV
     ──────────────────────────────────────────────── */
  .rdv { padding-top: 96px; padding-bottom: 112px; }
  .rdv-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: end;
  }
  .rdv h3 {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: clamp(40px, 6.4vw, 88px);
    line-height: 1;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin: 0 0 24px;
  }
  .rdv h3 .acc { color: var(--accent); }
  .rdv p.sub {
    color: var(--ink-2); font-size: 14px; line-height: 1.65;
    max-width: 380px; margin: 0 0 36px;
  }
  .rdv-cta-row {
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  }
  .slots {
    border-top: 1px solid var(--line);
  }
  .slot {
    display: grid; grid-template-columns: 1fr auto;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink);
    align-items: center;
    gap: 16px;
  }
  .slot .date { color: var(--ink); letter-spacing: .04em; }
  .slot .date .live { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; margin-right: 10px; vertical-align: middle; }
  .slot .count { color: var(--ink-3); }
  .slot.more {
    color: var(--ink-3);
    transition: color .15s ease;
  }
  .slot.more:hover { color: var(--accent); }

  @media (max-width: 880px) {
    .rdv-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  /* ────────────────────────────────────────────────
     Témoignages
     ──────────────────────────────────────────────── */
  .tm-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 720px) {
    .tm-videos { grid-template-columns: 1fr; }
  }
  .tm-video {
    position: relative;
    padding: 36px 40px 32px;
    border-right: 1px solid var(--line);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    align-items: stretch;
    background: transparent;
    border-top: 0; border-bottom: 0; border-left: 0;
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease;
  }
  .tm-video:last-child { border-right: 0; }
  @media (max-width: 940px) {
    .tm-video { grid-template-columns: 168px 1fr; gap: 22px; padding: 32px 28px; }
  }
  @media (max-width: 720px) {
    .tm-video { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 20px; grid-template-columns: 150px 1fr; gap: 20px; }
    .tm-video:last-child { border-bottom: 0; }
  }
  .tm-video:hover { background: rgba(244,244,242,.025); }
  .tm-video:hover .tm-play { border-color: var(--accent); color: var(--accent); }
  .tm-video:hover .tm-play .tri { border-left-color: var(--accent); }

  .tm-video-frame {
    position: relative;
    aspect-ratio: 9/16;
    width: 100%;
    background: #141414;
    border: 1px solid var(--line-2);
    overflow: hidden;
    align-self: start;
  }
  .tm-video-frame::before {
    content: ""; position: absolute; inset: 0;
    background:
      linear-gradient(180deg, transparent 0, transparent 55%, rgba(0,0,0,.45) 100%),
      repeating-linear-gradient(135deg, transparent 0 10px, rgba(244,244,242,.04) 10px 11px);
  }
  .tm-video-frame .tm-tag {
    position: absolute; top: 10px; left: 10px;
    font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--ink); background: rgba(10,10,10,.7);
    padding: 3px 7px;
    border: 1px solid var(--line-2);
  }
  .tm-video-frame .tm-time {
    position: absolute; bottom: 10px; right: 10px;
    font-size: 10.5px; color: var(--ink-2); background: rgba(10,10,10,.7);
    padding: 2px 7px;
    border: 1px solid var(--line);
  }
  .tm-video-frame .tm-ratio {
    position: absolute; bottom: 10px; left: 10px;
    font-size: 9.5px; letter-spacing: .14em; color: var(--ink-3);
    background: rgba(10,10,10,.55);
    padding: 2px 6px;
    border: 1px solid var(--line);
  }
  .tm-play {
    position: absolute; inset: 0; margin: auto;
    width: 54px; height: 54px;
    border: 1px solid var(--ink);
    background: rgba(10,10,10,.6);
    color: var(--ink);
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color .18s ease, color .18s ease, background .18s ease;
  }
  .tm-play .tri {
    width: 0; height: 0;
    border-left: 12px solid var(--ink);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 4px;
    transition: border-left-color .18s ease;
  }
  .tm-video-el {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    background: #000;
    opacity: 1; pointer-events: none;
    filter: saturate(0);
    transition: opacity .2s ease;
  }
  .tm-video.is-playing .tm-video-el { opacity: 1; pointer-events: auto; filter: none; }
  .tm-video.is-playing .tm-video-frame::before,
  .tm-video.is-playing .tm-tag,
  .tm-video.is-playing .tm-ratio,
  .tm-video.is-playing .tm-play { display: none; }

  .tm-video-body {
    display: flex; flex-direction: column;
    min-width: 0;
  }
  .tm-video-head {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 18px;
  }
  .tm-video-head .num { color: var(--ink); }
  .tm-video-excerpt {
    font-family: 'Space Mono', monospace;
    font-size: 17px; line-height: 1.4;
    color: var(--ink);
    margin: 0 0 auto 0;
    padding-bottom: 18px;
    text-wrap: pretty;
  }
  @media (max-width: 720px) {
    .tm-video-excerpt { font-size: 14.5px; }
  }
  .tm-video-meta {
    display: grid; grid-template-columns: 1fr auto;
    align-items: baseline; gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .tm-video-meta .name { font-weight: 600; font-size: 13.5px; color: var(--ink); }
  .tm-video-meta .role { display: block; font-size: 11px; color: var(--ink-3); margin-top: 4px; letter-spacing: .03em; }
  .tm-video-meta .stars { color: var(--accent); letter-spacing: .14em; font-size: 12px; }

  .tm-texts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  @media (max-width: 720px) {
    .tm-texts { grid-template-columns: 1fr; }
  }
  .tm-text {
    padding: 36px 40px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column;
    min-height: 240px;
  }
  .tm-text:nth-child(2n) { border-right: 0; }
  .tm-text:nth-last-child(-n+2) { border-bottom: 0; }
  @media (max-width: 720px) {
    .tm-text { border-right: 0; padding: 28px 20px; }
    .tm-text:nth-child(2n) { border-right: 0; }
    .tm-text:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .tm-text:last-child { border-bottom: 0; }
  }
  .tm-text-head {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 22px;
  }
  .tm-text-head .num { color: var(--ink); }
  .tm-text-head .stars { color: var(--accent); letter-spacing: .14em; }
  .tm-quote {
    font-family: 'Space Mono', monospace;
    font-size: 17px; line-height: 1.5; letter-spacing: -.005em;
    color: var(--ink);
    margin: 0 0 auto;
    text-wrap: pretty;
    position: relative;
    padding-left: 18px;
  }
  .tm-quote::before {
    content: "“"; position: absolute; left: -2px; top: -10px;
    font-family: 'Space Mono', monospace;
    color: var(--accent);
    font-size: 36px; line-height: 1;
  }
  .tm-quote::after {
    content: "”"; margin-left: 4px;
    font-family: 'Space Mono', monospace;
    color: var(--accent);
    font-size: 36px; line-height: 0; vertical-align: -14px;
  }
  .tm-attrib {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'JetBrains Mono', monospace;
  }
  .tm-person { display: flex; align-items: center; gap: 12px; }
  .tm-avatar {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    background: var(--line);
    object-fit: cover;
  }
  .tm-attrib .name { font-size: 13px; color: var(--ink); font-weight: 600; text-decoration: none; transition: opacity .2s; }
  .tm-attrib a.name:hover { opacity: .6; text-decoration: underline; }
  .tm-attrib .role { font-size: 11px; color: var(--ink-3); letter-spacing: .03em; }
  .tm-attrib .right { text-align: right; }

  /* ────────────────────────────────────────────────
     Process — 5 phases, jalons d'ascension
     ──────────────────────────────────────────────── */
  .process-intro-row {
    padding: 40px 40px 44px;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 720px) {
    .process-intro-row { padding: 28px 20px 32px; }
  }
  .process-intro {
    max-width: 720px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-2);
    margin: 0;
    text-wrap: pretty;
  }
  @media (max-width: 720px) { .process-intro { font-size: 13px; } }

  .process-split {
    border-bottom: 1px solid var(--line);
  }
  .process-list > .process-split:last-child { border-bottom: 0; }
  .process-row {
    display: grid;
    grid-template-columns: 120px 1fr 160px;
    gap: 40px;
    align-items: start;
    padding: 36px 40px;
    transition: background .2s ease;
  }
  .process-row:hover { background: rgba(244,244,242,.025); }
  .process-row:hover .process-num .n { color: var(--accent); }
  .process-row:hover .process-bars span:not(.on) { background: var(--line-2); }

  /* Desktop only — zigzag split: phase content in left half, empty right;
     next phase in right half, empty left. */
  @media (min-width: 881px) {
    .process-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .process-split .process-row {
      grid-template-columns: 90px 1fr 130px;
      gap: 28px;
      padding: 36px 32px;
    }
    .process-split.left .process-row {
      grid-column: 1;
      border-right: 1px solid var(--line);
    }
    .process-split.right .process-row {
      grid-column: 2;
      border-left: 1px solid var(--line);
    }
    .process-split .process-num .n { font-size: 28px; }
    .process-split .process-title { font-size: clamp(22px, 2.4vw, 32px); }
  }

  .process-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding-top: 6px;
  }
  .process-num .n {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 8px;
    letter-spacing: -.04em;
    line-height: 1;
    transition: color .2s ease;
  }
  .process-list > .process-split:last-child .process-num .n { color: var(--accent); }

  .process-body { max-width: 640px; }
  .process-title {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1;
    letter-spacing: -.035em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }
  .process-title .acc { color: var(--accent); }
  .process-desc {
    color: var(--ink-2);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
    text-wrap: pretty;
  }

  .process-prog {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    padding-top: 10px;
    font-family: 'JetBrains Mono', monospace;
  }
  .process-prog .label {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-3);
  }
  .process-prog .label b { color: var(--ink); font-weight: 500; }
  .process-bars {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    height: 36px;
  }
  .process-bars span {
    display: block;
    width: 7px;
    background: var(--line);
    transition: background .25s ease;
  }
  .process-bars span:nth-child(1) { height: 10px; }
  .process-bars span:nth-child(2) { height: 17px; }
  .process-bars span:nth-child(3) { height: 24px; }
  .process-bars span:nth-child(4) { height: 30px; }
  .process-bars span:nth-child(5) { height: 36px; }
  .process-bars span.on { background: var(--accent); }

  @media (max-width: 880px) {
    .process-row {
      grid-template-columns: 80px 1fr;
      gap: 24px;
      padding: 28px 20px;
    }
    .process-prog {
      grid-column: 1 / -1;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding-top: 4px;
    }
    .process-num .n { font-size: 28px; }
  }

  /* ────────────────────────────────────────────────
     FAQ — lignes dépliantes
     ──────────────────────────────────────────────── */
  .faq-row {
    border-bottom: 1px solid var(--line);
    padding-left: 40px; padding-right: 40px;
  }
  .faq-row:last-child { border-bottom: 0; }
  @media (max-width: 720px) {
    .faq-row { padding-left: 20px; padding-right: 20px; }
  }
  .faq-trigger {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: 0;
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    text-align: left;
    gap: 24px;
    transition: opacity .2s ease, color .2s ease;
  }
  .faq-trigger .faq-num {
    font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-3);
  }
  .faq-trigger .faq-q {
    font-size: 16px; font-weight: 600; letter-spacing: -.005em;
    line-height: 1.4;
  }
  .faq-trigger .faq-toggle {
    width: 18px; height: 18px; position: relative;
    color: var(--ink-2);
    transition: color .2s ease, transform .3s cubic-bezier(.2,.7,.2,1);
  }
  .faq-trigger .faq-toggle::before,
  .faq-trigger .faq-toggle::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 14px; height: 1px; background: currentColor;
    transform-origin: center;
  }
  .faq-trigger .faq-toggle::before { transform: translate(-50%,-50%); }
  .faq-trigger .faq-toggle::after  { transform: translate(-50%,-50%) rotate(90deg); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .faq-list[data-hovering="true"] .faq-trigger { opacity: .4; }
  .faq-list[data-hovering="true"] .faq-row.is-hover .faq-trigger,
  .faq-list[data-hovering="true"] .faq-row.is-open  .faq-trigger { opacity: 1; }
  .faq-row.is-open .faq-trigger .faq-q { color: var(--accent); }
  .faq-row.is-open .faq-trigger .faq-num { color: var(--accent); }
  .faq-row.is-open .faq-trigger .faq-toggle { color: var(--accent); }
  .faq-row.is-open .faq-trigger .faq-toggle::after { transform: translate(-50%,-50%) rotate(0deg); }

  .faq-expand {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s cubic-bezier(.2,.7,.2,1);
  }
  .faq-row.is-open .faq-expand { grid-template-rows: 1fr; }
  .faq-expand-inner { overflow: hidden; min-height: 0; }
  .faq-expand-pad {
    padding: 0 0 32px;
    display: grid;
    grid-template-columns: 64px 1fr 1fr;
    gap: 24px;
  }
  .faq-expand-pad .spacer {}
  .faq-expand-pad p {
    color: var(--ink); font-size: 14px; line-height: 1.7;
    margin: 0 0 14px;
    max-width: 560px;
  }
  .faq-expand-pad p.muted { color: var(--ink-2); }
  .faq-expand-pad .faq-text p:last-child { margin-bottom: 0; }
  .faq-expand-pad .faq-text ul {
    color: var(--ink); font-size: 14px; line-height: 1.7;
    margin: 0 0 14px; padding-left: 18px; list-style: disc;
  }
  .faq-expand-pad .faq-text ul li { margin: 0 0 4px; }
  .faq-expand-pad .side {
    color: var(--ink-3); font-size: 11.5px; letter-spacing: .04em;
    border-left: 1px solid var(--line);
    padding-left: 24px;
    align-self: start;
  }
  .faq-expand-pad .side b { color: var(--ink); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; font-size: 10.5px; display: block; margin-bottom: 8px; }
  @media (max-width: 720px) {
    .faq-trigger { grid-template-columns: 1fr auto; gap: 16px; }
    .faq-trigger .faq-num { display: none; }
    .faq-expand-pad { grid-template-columns: 1fr; }
    .faq-expand-pad .side { border-left: 0; padding-left: 0; padding-top: 14px; border-top: 1px solid var(--line); }
  }

  /* ────────────────────────────────────────────────
     CTA finale — Travaillons ensemble
     ──────────────────────────────────────────────── */
  .cta-close {
    padding-top: 140px;
    padding-bottom: 140px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    gap: 28px;
  }
  @media (max-width: 720px) {
    .cta-close { padding-top: 88px; padding-bottom: 88px; gap: 22px; }
  }
  .cta-close-title {
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: clamp(48px, 8vw, 120px);
    line-height: 0.95;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin: 0;
    color: var(--ink);
    text-wrap: balance;
  }
  .cta-close-title .acc { color: var(--accent); }
  .cta-close-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.65;
    color: #ffffff;
    max-width: 480px;
    margin: 0;
    text-wrap: pretty;
  }
  .cta-close-btn {
    margin-top: 12px;
    padding: 18px 28px;
    font-size: 13px;
  }
  @media (max-width: 720px) {
    .cta-close-sub { font-size: 13px; }
    .cta-close-btn { width: 100%; justify-content: space-between; }
  }

  /* ────────────────────────────────────────────────
     Footer
     ──────────────────────────────────────────────── */
  .footer {
    border-top: 1px solid var(--line);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 0;
  }
  .footer-top > div {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
  }
  .footer-top > div:first-child { padding-left: 0; }
  .footer-top > div:last-child { border-right: 0; padding-right: 0; }
  .footer-logo { height: 80px; width: auto; display: block; margin: 20px 0 0; }
  .footer h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-3); margin: 0 0 18px; font-weight: 500;
  }
  .footer p, .footer li, .footer a {
    font-family: 'JetBrains Mono', monospace; font-size: 12.5px; line-height: 1.7;
    color: var(--ink-2);
  }
  .footer p { margin: 0; max-width: 280px; }
  .footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .footer a { transition: color .15s ease; }
  .footer a:hover { color: var(--accent); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--ink-3); letter-spacing: .04em;
    border-top: 1px solid var(--line);
    padding-top: 18px; padding-bottom: 22px;
    flex-wrap: wrap; gap: 14px;
  }
  .footer-bottom .legal a { margin-left: 22px; }
  .footer-bottom .legal a:hover { color: var(--ink); }
  @media (max-width: 880px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top > div { padding: 28px 24px; }
    .footer-top > div:nth-child(odd) { padding-left: 0; }
    .footer-top > div:nth-child(even) { padding-right: 0; border-right: 0; }
    .footer-top > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  }
  @media (max-width: 540px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-top > div { padding: 24px 0; border-right: 0; }
    .footer-top > div:nth-child(n+2) { border-top: 1px solid var(--line); }
  }

  /* ────────────────────────────────────────────────
     Reveal on scroll
     ──────────────────────────────────────────────── */
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }
