/* CHLLM — Landing Monument (lot F, 09/2026). Portage CSS maison du design
   « monument » du prototype (new-directions) : noir, blanc, bleu ; Geist
   auto-hébergée ; aucune dépendance. Une seule identité : pas de bascule
   clair/sombre sur la landing. */
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('/fonts/geist/geist-98bbbccb.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('/fonts/geist/geist-001175b1.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Geist Mono'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('/fonts/geist/geist-mono-013b2f2f.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Geist Mono'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('/fonts/geist/geist-mono-44745446.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  --ink: #101010; --paper: #fff; --muted: #626262; --line: #d0d0d0; --line-dark: #454545;
  --accent: #2c47ef; --accent-hero: #465bff; --accent-soft: #eff1ff; --ok: #126448;
  --sans: 'Geist', -apple-system, 'Segoe UI', Arial, sans-serif; --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
.new-direction * { min-width: 0; }
:focus-visible { outline: 2px solid var(--accent-hero); outline-offset: 3px; }

/* Bandeaux */
.beta-band { background: #1a1a1a; color: #ddd; font-size: 13px; text-align: center; padding: 9px 24px; border-bottom: 1px solid #333; }
.beta-band a { color: #fff; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.maintenance-strip { background: #fff3cd; color: #4a3b00; font-size: 13.5px; text-align: center; padding: 9px 24px; }

/* Marque */
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; color: inherit; }
.brand strong { font-size: 30px; letter-spacing: -2px; font-weight: 750; }
.brand-division { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; font-weight: 500; border-left: 1px solid #6b6b6b; margin-left: 3px; padding-left: 14px; }
.brand-mark { display: grid; grid-template-columns: repeat(2, 5px); gap: 2px; margin-right: 1px; }
.brand-mark i { width: 5px; height: 10px; background: currentColor; }
.brand-mark i:last-child { background: var(--accent-hero); }

/* Nav noire */
.nd-nav { height: 88px; padding: 0 4.4%; display: flex; align-items: center; gap: 36px; border-bottom: 1px solid var(--line-dark); position: sticky; top: 0; z-index: 35; background: #0b0b0b; color: #fff; }
.nd-nav nav { display: flex; gap: 30px; margin-left: auto; font-size: 14px; }
.nd-nav nav a { position: relative; padding: 12px 0; }
.nd-nav nav a:after { content: ''; position: absolute; bottom: 5px; left: 0; height: 1px; background: currentColor; width: 100%; transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.nd-nav nav a:hover:after { transform: scaleX(1); }
.nd-nav-actions { display: flex; align-items: center; gap: 24px; position: relative; }
.nd-login { font-size: 14px; color: inherit; }
.nd-button { display: inline-flex; justify-content: space-between; align-items: center; gap: 35px; min-height: 56px; padding: 16px 22px; background: var(--ink); color: #fff; border: 1px solid transparent; border-radius: 0; font-size: 14px; font-weight: 550; transition: background .25s, color .25s, box-shadow .25s; }
.nd-button > svg { transition: translate .35s cubic-bezier(.2, .8, .2, 1); flex: none; }
.nd-button:hover > svg { translate: 3px -3px; }
.nd-button:hover { box-shadow: inset 0 0 0 1px currentColor; }
.nd-nav .nd-button { background: #fff; color: #111; min-height: 44px; padding: 11px 17px; gap: 23px; }
.nd-text-link { display: inline-flex; align-items: center; gap: 18px; padding: 8px 0; font-size: 14px; }
.nd-text-link > svg { transition: translate .3s; }
.nd-text-link:hover > svg { translate: 3px 0; }
.nd-kicker { font-size: 12px; letter-spacing: .07em; font-family: var(--mono); display: block; line-height: 1.6; }
.nd-reassurance { display: block; font-size: 12px; line-height: 1.6; margin-top: 16px; opacity: .75; }
.nd-pad { padding: 110px 6.5%; scroll-margin-top: 88px; }
.new-direction h2 { font-size: clamp(38px, 4.3vw, 64px); line-height: 1.08; letter-spacing: -.055em; font-weight: 500; text-wrap: balance; }
.new-direction h2 em { font-style: normal; }
.nd-section-marker { font: 12px/1.6 var(--mono); letter-spacing: .04em; display: flex; align-items: flex-start; gap: 25px; justify-content: space-between; }

/* Switch de langue (repris de la landing v2, sur fond noir) */
.lang-switch { position: relative; }
.lang-flag { font-size: 17px; line-height: 1; }
.lang-btn { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; color: #ddd; background: transparent; border: 0; cursor: pointer; }
.lang-btn:hover, .lang-btn:focus-visible { color: #fff; background: #222; outline: none; }
.lang-menu { position: absolute; top: calc(100% + 6px); right: 0; z-index: 70; display: flex; flex-direction: column; gap: 2px; min-width: 160px; padding: 4px; background: #fff; border: 1px solid var(--line); color: var(--ink); box-shadow: 0 12px 40px #0004; }
.lang-option { display: flex; align-items: center; gap: 10px; padding: 8px 12px; font-size: 14px; }
.lang-option:hover { background: #f1f1f1; }
.lang-option.active { color: var(--accent); font-weight: 600; }
.lang-menu[hidden] { display: none; }

/* Menu mobile */
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { display: block; width: 22px; height: 1.6px; background: #fff; transition: transform .35s, opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; z-index: 30; padding: 84px 25px 28px; background: #0b0b0b; color: #fff; border-bottom: 1px solid var(--line-dark); display: flex; flex-direction: column; transform: translateY(-12px); opacity: 0; pointer-events: none; visibility: hidden; transition: transform .35s, opacity .3s, visibility 0s .35s; }
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; visibility: visible; transition: transform .35s, opacity .3s; }
.mobile-menu a { font-size: 19px; font-weight: 500; padding: 14px 4px; border-bottom: 1px solid #ffffff12; }
.mobile-menu .mm-cta { margin-top: 18px; border-bottom: 0; background: #fff; color: #111; justify-content: space-between; }

/* Hero */
.monument-hero { position: relative; background: #0b0b0b; color: #fff; padding: 0 4.4%; display: grid; grid-template-columns: 1.22fr 1fr; column-gap: 4%; min-height: 780px; }
.monument-hero-copy { padding: 49px 0 45px; position: relative; z-index: 3; display: flex; flex-direction: column; align-items: flex-start; }
.monument-hero-copy > .nd-kicker { display: flex; gap: 12px; align-items: center; font-size: 11px; color: #c7c7c7; }
.monument-hero-copy > .nd-kicker > i { width: 7px; height: 7px; background: var(--accent-hero); }
.monument-hero h1 { font-size: clamp(62px, 7.35vw, 117px); font-weight: 450; line-height: 1.01; letter-spacing: -.075em; margin: 50px 0 40px; }
.monument-hero h1 > span, .monument-hero h1 > em { display: block; font-style: normal; }
.monument-hero h1 > em { color: var(--accent-hero); }
.monument-intro { margin-top: auto; }
.monument-intro > p { font-size: 16px; line-height: 1.75; color: #c1c1c1; margin-bottom: 27px; }
.monument-intro > .nd-button { background: var(--accent-hero); color: #fff; }
.monument-intro > .nd-reassurance { font-size: 12px; color: #aaa; }
.monument-film { height: calc(100% - 45px); min-height: 650px; align-self: end; margin-top: 45px; }
.monument-film > video, .monument-film > .film-poster { filter: grayscale(1) contrast(1.25) brightness(.83); object-position: 55% center; }
.monument-film .film-shade { background: linear-gradient(180deg, #0004, transparent 45%, #0009); }
.monument-film-grid { position: absolute; inset: 30px; pointer-events: none; }
.monument-film-grid > i { position: absolute; background: #fff4; }
.monument-film-grid > i:nth-child(1), .monument-film-grid > i:nth-child(2) { width: 1px; height: 100%; top: 0; }
.monument-film-grid > i:nth-child(1) { left: 30%; }
.monument-film-grid > i:nth-child(2) { left: 65%; }
.monument-film-grid > i:nth-child(3), .monument-film-grid > i:nth-child(4) { height: 1px; width: 100%; left: 0; }
.monument-film-grid > i:nth-child(3) { top: 25%; }
.monument-film-grid > i:nth-child(4) { top: 72%; }
.monument-film-corner { position: absolute; top: 32px; left: 30px; font: 13px/1.2 var(--mono); letter-spacing: .12em; }
.monument-bottom { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 26px 0; border-top: 1px solid var(--line-dark); margin-top: 30px; }
.monument-bottom > span { font: 12px var(--mono); letter-spacing: .04em; color: #bbb; }
.monument-bottom > a { color: #fff; display: flex; gap: 22px; align-items: center; font-size: 14px; }

/* Films */
.stock-film { position: relative; isolation: isolate; overflow: hidden; margin: 0; background: #151515; color: #fff; }
.stock-film > video, .stock-film > .film-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
.stock-film > .film-poster { z-index: -4; }
.stock-film .film-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(0deg, #0008, transparent 30%); }
.stock-film.film-unavailable > video { opacity: 0; }
.stock-film > figcaption { position: absolute; inset: auto 25px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 4; font: 12px/1.5 var(--mono); letter-spacing: .03em; text-shadow: 0 1px 6px #000; }
.stock-film > figcaption > button, .stock-film > figcaption > a { display: flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid #ffffff75; backdrop-filter: blur(10px); background: #0005; color: #fff; min-height: 38px; padding: 8px 12px; font: 12px var(--sans); text-shadow: none; }
.stock-film > figcaption > button:hover { background: #0009; }
.stock-film > figcaption > span { max-width: 70%; }
.stock-film > figcaption > [hidden] { display: none; }

/* Audience */
.nd-audience { display: flex; justify-content: space-between; gap: 40px; align-items: center; padding: 30px 4.4%; border-block: 1px solid var(--line-dark); background: #0b0b0b; color: #fff; }
.nd-audience > span { font: 12px/1.6 var(--mono); max-width: 300px; letter-spacing: .025em; color: #aaa; }
.nd-audience > div { display: flex; gap: 55px; font-size: 20px; letter-spacing: -.6px; }

/* Manifeste */
.nd-manifesto { display: grid; grid-template-columns: 1fr 3fr; gap: 8%; }
.nd-manifesto h2 em { color: var(--accent); }
.nd-manifesto > div > p { font-size: 18px; line-height: 1.75; max-width: 640px; margin: 28px 0 45px; color: #555; }
.nd-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.nd-principles > div { border-top: 1px solid #bdbdbd; padding-top: 16px; }
.nd-principles > div > span { font: 12px var(--mono); color: var(--accent); }
.nd-principles h3 { font-size: 18px; letter-spacing: -.5px; line-height: 1.35; font-weight: 550; margin: 24px 0 13px; }
.nd-principles p { font-size: 16px; line-height: 1.7; color: var(--muted); }

/* Le dossier (noir) + animation documentaire */
.nd-product { background: #111; color: #fff; border-block: 1px solid #111; }
.nd-product-heading { max-width: 1000px; }
.nd-product-heading h2 { margin: 23px 0; }
.nd-product-heading h2 em { color: var(--accent-hero); }
.nd-product-heading > p { font-size: 18px; color: #aaa; }
.nd-product .dossier-motion { margin-top: 52px; }
.nd-product-foot { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; }
.nd-product-foot > span { font: 12px var(--mono); max-width: 360px; line-height: 1.7; color: #aaa; }
.nd-product-foot > a { display: flex; gap: 18px; align-items: center; font-size: 14px; color: inherit; }
.dossier-motion { --dm-bg: #171717; --dm-text: #fff; --dm-line: #424242; --dm-muted: #aaa; --dm-accent: var(--accent-hero); background: var(--dm-bg); color: var(--dm-text); border: 1px solid var(--dm-line); overflow: hidden; isolation: isolate; }
.dm-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 28px; border-bottom: 1px solid var(--dm-line); font: 12px var(--mono); letter-spacing: .05em; color: var(--dm-muted); }
.dm-top > button { color: inherit; padding: 5px; width: 32px; height: 32px; display: grid; place-items: center; }
.dm-pause-icon { width: 12px; height: 12px; display: block; border-left: 3px solid currentColor; border-right: 3px solid currentColor; }
.dm-top > button.is-paused .dm-pause-icon { border: 0; width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 12px solid currentColor; }
.dm-stage { display: grid; grid-template-columns: 1fr .8fr 1fr; padding: 40px 8% 50px; align-items: center; gap: 0; min-height: 385px; perspective: 1800px; }
.dm-overline { display: block; font: 11px var(--mono); letter-spacing: .055em; color: var(--dm-muted); margin-bottom: 25px; }
.dm-input { display: flex; gap: 14px; align-items: center; min-height: 53px; border: 1px solid var(--dm-line); margin-top: 14px; padding: 13px 15px; font-size: 14px; background: var(--dm-bg); position: relative; transition: border-color 1s, translate 1.8s cubic-bezier(.22, 1, .36, 1); }
.dm-input > span { height: 28px; width: 28px; display: grid; place-items: center; background: #ffffff12; flex: none; }
.dm-input > i { width: 4px; height: 4px; border-radius: 50%; background: var(--dm-muted); margin-left: auto; }
.dm-phase-1 .dm-input { border-color: var(--dm-accent); translate: 5px 0; }
.dm-phase-1 .dm-input-1 { transition-delay: .15s; }
.dm-phase-1 .dm-input-2 { transition-delay: .3s; }
.dm-tracks { margin-top: 32px; }
.dm-tracks svg { width: 100%; height: 220px; overflow: visible; }
.dm-tracks path { stroke: var(--dm-line); stroke-width: 1; fill: none; }
.dm-tracks .dm-beam { stroke: var(--dm-accent); stroke-width: 2; stroke-dasharray: 14 240; animation: dm-flow 4.8s linear infinite; }
@keyframes dm-flow { to { stroke-dashoffset: -508; } }
.dm-output { position: relative; padding-right: 10px; transform: perspective(1500px) rotateY(-10deg) rotateZ(2deg); transform-origin: center; transition: transform 1.8s cubic-bezier(.22, 1, .36, 1); }
.dm-phase-1 .dm-output { transform: perspective(1500px) rotateY(0deg) rotateZ(-1deg); }
.dm-phase-2 .dm-output { transform: perspective(1500px) rotateY(-3deg) rotateZ(0deg); }
.dm-paper { position: relative; background: #fff; color: #121212; padding: 22px 27px; box-shadow: 0 18px 50px #0006; border: 1px solid #ccc; min-height: 285px; }
.dm-paper-back { position: absolute; inset: 8px 0 -8px 8px; background: var(--dm-accent); border: 1px solid var(--dm-accent); transform: rotate(3deg); transition: transform 1.8s cubic-bezier(.22, 1, .36, 1); }
.dm-phase-2 .dm-paper-back { transform: rotate(-3deg) translate(7px, 4px); }
.dm-paper-top { display: flex; justify-content: space-between; border-bottom: 1px solid #bbb; padding-bottom: 13px; font: 10px var(--mono); letter-spacing: .03em; color: #676767; }
.dm-paper-label { display: block; font: 10px var(--mono); letter-spacing: .05em; color: #666; margin-top: 23px; }
.dm-paper h3 { white-space: pre-line; font-size: 38px; line-height: 1.05; letter-spacing: -.06em; font-weight: 500; margin: 13px 0 23px; animation: nd-arrive .65s cubic-bezier(.22, 1, .36, 1); }
.dm-paper-lines i { display: block; height: 2px; background: #ccc; margin: 7px 0; }
.dm-paper-lines i:nth-child(2) { width: 84%; }
.dm-paper-lines i:nth-child(3) { width: 55%; }
.dm-paper-status { display: flex; gap: 7px; align-items: center; font-size: 11px; margin-top: 23px; color: #474747; }
.dm-paper [hidden] { display: none; }
.dm-bottom { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 20px 28px; border-top: 1px solid var(--dm-line); }
.dm-steps { display: flex; gap: 30px; }
.dm-steps > button { display: flex; align-items: center; gap: 9px; color: var(--dm-muted); font-size: 13px; padding: 7px 0; }
.dm-steps > button > span { font: 11px var(--mono); }
.dm-steps > button[aria-pressed='true'] { color: var(--dm-text); box-shadow: 0 1px 0 currentColor; }
.dm-open { color: var(--dm-text); display: flex; align-items: center; gap: 12px; font-size: 13px; }
.dm-paused .dm-beam { animation-play-state: paused !important; }

/* Carte-preuve réelle */
.nd-proof { display: grid; grid-template-columns: 1fr 1.15fr; gap: 6%; align-items: center; border-top: 1px solid #ccc; }
.nd-proof h2 { margin: 23px 0; }
.nd-proof h2 em { color: var(--accent); }
.nd-proof-copy > p { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 460px; }
.proof { position: relative; min-width: 0; }
.report { background: #fff; border: 1px solid #b7b7b7; box-shadow: 8px 8px 0 #e6e6e6; overflow: hidden; }
.report-head { display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.chip { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.chip.blue { color: var(--accent); background: var(--accent-soft); padding: 3px 8px; }
.report-tag { margin-left: auto; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted); }
.report-body { padding: 26px 28px 24px; display: flex; flex-direction: column; gap: 14px; }
.report-body h3 { font-size: 20px; font-weight: 550; line-height: 1.35; letter-spacing: -.02em; }
.report-body .excerpt { font-size: 16px; line-height: 1.75; color: #222; }
.cite { color: var(--accent); border-bottom: 1px dotted var(--accent); cursor: pointer; padding: 0 2px; transition: background .3s, color .3s; }
.cite.active { background: var(--accent); color: #fff; border-bottom-color: var(--accent); }
.cite-hint { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.cite-hint .mob { display: none; }
.demo-tag { display: flex; align-items: center; gap: 9px; padding: 12px 20px; border-top: 1px solid var(--line); font: 12px var(--mono); letter-spacing: .03em; color: var(--muted); }
.demo-tag:hover { color: var(--accent); }
.demo-tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blinkdot 2s ease-in-out infinite; }
@keyframes blinkdot { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.popover { position: absolute; z-index: 20; width: min(380px, 100%); background: #fff; border: 1px solid #b7b7b7; box-shadow: 0 16px 50px #0003; padding: 16px 18px; opacity: 0; transform: translateY(6px); pointer-events: none; transition: opacity .25s, transform .25s; }
.popover::before { content: ''; position: absolute; top: -6.5px; left: var(--caret-x, 40px); width: 11px; height: 11px; background: #fff; border-left: 1px solid #b7b7b7; border-top: 1px solid #b7b7b7; transform: rotate(45deg); }
.popover.show { opacity: 1; transform: none; pointer-events: auto; }
.popover-content { display: flex; flex-direction: column; gap: 8px; }
.popover .src-line { display: flex; align-items: center; gap: 8px; }
.popover .domain { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--muted); }
.popover .verified { margin-left: auto; font-family: var(--mono); font-size: 10.5px; color: var(--ok); display: flex; align-items: center; gap: 5px; }
.popover .verified::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
.popover .src-title { font-size: 14.5px; font-weight: 600; line-height: 1.4; }
.popover .quote { font-style: italic; font-size: 13.5px; line-height: 1.6; color: #444; }
.popover .open-src { font-size: 13px; color: var(--accent); font-weight: 500; }
.popover .open-src:hover { text-decoration: underline; }

/* Éditorial */
.nd-editorial { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.nd-editorial-film { min-height: 700px; }
.nd-editorial-film > video, .nd-editorial-film > .film-poster { filter: saturate(.25) contrast(1.12); }
.nd-editorial-copy { padding: 80px 13%; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; background: var(--accent-hero); color: #fff; }
.nd-editorial-copy h2 { font-size: clamp(50px, 5.6vw, 82px); letter-spacing: -.065em; line-height: 1.03; margin: 35px 0 30px; }
.nd-editorial-copy > p { font-size: 17px; line-height: 1.75; max-width: 375px; }
.nd-editorial-copy > .nd-text-link { margin-top: 35px; }

/* Livrables */
.nd-deliverables-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 10%; margin-bottom: 52px; }
.nd-deliverables-head h2 { margin-top: 24px; }
.nd-deliverables-head > p { font-size: 17px; line-height: 1.7; max-width: 340px; color: #666; padding-bottom: 4px; }
.nd-output-row { width: 100%; color: var(--ink); display: grid; grid-template-columns: 40px 38px 1fr 180px; align-items: center; gap: 32px; text-align: left; border-top: 1px solid #b7b7b7; padding: 34px 0; min-height: 210px; position: relative; transition: padding .35s, background .35s; }
.nd-output-row:last-child { border-bottom: 1px solid #b7b7b7; }
.nd-output-index { font: 14px var(--mono); align-self: start; color: var(--muted); }
.nd-output-icon { align-self: start; color: var(--accent); }
.nd-output-row > div > span { display: block; font: 12px var(--mono); letter-spacing: .05em; color: var(--muted); margin-bottom: 13px; }
.nd-output-row h3 { font-size: 32px; letter-spacing: -1.4px; line-height: 1.2; font-weight: 500; margin-bottom: 13px; }
.nd-output-row p { font-size: 16px; color: #666; line-height: 1.7; }
.nd-output-paper { background: #f4f4f4; border: 1px solid #bbb; min-height: 150px; width: 130px; padding: 16px; justify-self: center; transform: rotate(3deg); box-shadow: 4px 4px 0 #e2e2e2; transition: transform .5s, box-shadow .5s; }
.nd-output-paper > span { display: block; font: 7px var(--mono); margin: 0 0 20px; letter-spacing: .03em; }
.nd-output-paper > svg { margin-bottom: 20px; color: var(--accent); }
.nd-output-paper > i { display: block; height: 2px; background: #bbb; margin-top: 5px; }
.nd-output-paper > i:last-child { width: 70%; }
.nd-output-row:hover { background: #fafafa; padding-inline: 12px; }
.nd-output-row:hover .nd-output-paper { transform: rotate(0) translateY(-5px); box-shadow: 8px 10px 0 #e2e2e2; }
.nd-deliverable-note { display: flex; align-items: flex-start; gap: 13px; font-size: 14px; color: #656565; line-height: 1.6; margin-top: 27px; flex-wrap: wrap; }
.nd-deliverable-note > svg { flex: none; margin-top: 2px; }
.nd-deliverable-note a { color: var(--accent); }

/* Contrôle */
.nd-control { display: grid; grid-template-columns: 1fr 1fr; gap: 12%; border-top: 1px solid #ccc; background: #f6f6f6; }
.nd-control h2 { margin: 23px 0; }
.nd-control > div > p { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 430px; }
.nd-control .nd-text-link { margin-top: 28px; }
.nd-control-table > div { border-top: 1px solid #bbb; padding: 22px 0; display: grid; grid-template-columns: 28px 110px 1fr 18px; gap: 15px; align-items: center; }
.nd-control-table > div > span { font: 12px var(--mono); color: #666; }
.nd-control-table strong { font-size: 15px; font-weight: 550; }
.nd-control-table p { font-size: 14px; line-height: 1.6; color: #606060; }
.nd-control-table svg { color: var(--accent); }
.nd-control-table > span { display: block; border-top: 1px solid #bbb; padding-top: 20px; font: 12px/1.7 var(--mono); color: #666; }

/* Autres domaines */
.nd-domains { display: grid; grid-template-columns: 1fr 3fr; gap: 8%; border-top: 1px solid #ccc; }
.nd-h2-small { font-size: clamp(30px, 3vw, 44px) !important; }
.nd-domains > div > p { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 640px; margin: 22px 0 32px; }
.nd-domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.nd-domain { border: 1px solid #bbb; padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.nd-domain .name { font-size: 16px; font-weight: 550; }
.nd-domain .srcs { font: 11.5px var(--mono); color: var(--muted); letter-spacing: .02em; }
.nd-domain-note { margin-top: 22px; font-size: 14px; line-height: 1.7; color: #555; max-width: 640px; }

/* FAQ */
.nd-faq { display: grid; grid-template-columns: 1fr 3fr; gap: 8%; border-top: 1px solid #ccc; }
.nd-faq-row { border-top: 1px solid #bbb; }
.nd-faq-row:last-child { border-bottom: 1px solid #bbb; }
.nd-faq-row > button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 25px; font-size: 18px; text-align: left; padding: 24px 0; }
.nd-faq-row > button > svg { flex: none; transition: transform .25s; }
.nd-faq-row > button[aria-expanded='true'] > svg { transform: rotate(45deg); }
.nd-faq-row > p { font-size: 16px; line-height: 1.8; color: #606060; padding: 0 35px 24px 0; max-width: 750px; }
.nd-faq-row > p[hidden] { display: none; }

/* Clôture + footer */
.nd-closing { padding: 95px 5% 110px; background: #0b0b0b; color: #fff; text-align: center; }
.nd-closing h2 { font-size: clamp(54px, 7vw, 110px); letter-spacing: -.07em; line-height: 1.03; margin: 35px 0 40px; }
.nd-closing h2 em { color: var(--accent-hero); }
.nd-closing .nd-button { background: #fff; color: var(--ink); min-width: 250px; }
.nd-footer { padding: 35px 4.4%; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: #fff; color: #111; flex-wrap: wrap; }
.nd-footer > span { font-size: 13px; color: #666; }
.nd-footer > div { display: flex; gap: 22px; flex-wrap: wrap; }
.nd-footer a { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #555; }
.nd-footer a:hover { color: var(--accent); }
.nd-footer-meta { width: 100%; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 18px; font: 11px var(--mono); color: #777; flex-wrap: wrap; }
.nd-credits a { display: inline; font: inherit; color: #555; text-decoration: underline; text-underline-offset: 2px; }

/* Révélations */
.nd-reveal { opacity: 1; }
.nd-reveal.nd-visible { animation: nd-arrive .85s cubic-bezier(.22, 1, .36, 1) both; }
@keyframes nd-arrive { from { opacity: .3; translate: 0 25px; } to { opacity: 1; translate: 0 0; } }

@media (max-width: 1150px) {
  .nd-nav { gap: 25px; padding-inline: 4%; }
  .nd-nav nav { gap: 22px; }
  .nd-nav-actions { gap: 16px; }
  .nd-login { display: none; }
  .monument-hero { padding-inline: 4%; column-gap: 3%; min-height: 690px; }
  .monument-hero h1 { font-size: 7.2vw; margin: 43px 0 30px; }
  .monument-film { min-height: 580px; }
  .monument-hero-copy { padding-top: 40px; }
  .monument-intro > p { max-width: 400px; }
  .nd-audience > div { gap: 35px; font-size: 18px; }
  .nd-audience > span { font-size: 11px; max-width: 250px; }
  .nd-pad { padding: 85px 5%; }
  .nd-manifesto, .nd-faq, .nd-domains { grid-template-columns: 1fr 3.2fr; gap: 5%; }
  .nd-section-marker { font-size: 11px; gap: 14px; }
  .nd-principles { gap: 22px; }
  .nd-principles h3 { font-size: 17px; }
  .nd-editorial, .nd-editorial-film { min-height: 630px; }
  .nd-editorial-copy { padding: 60px 10%; }
  .nd-editorial-copy h2 { font-size: 64px; }
  .nd-output-row { grid-template-columns: 30px 28px 1fr 135px; gap: 25px; }
  .nd-output-row h3 { font-size: 29px; }
  .nd-control, .nd-proof { gap: 7%; }
  .nd-control-table > div { grid-template-columns: 23px 90px 1fr 16px; gap: 13px; }
  .nd-footer > div { gap: 17px; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 74px; }
  .nd-nav { height: 74px; padding: 0 22px; gap: 20px; }
  .nd-nav nav { display: none; }
  .nd-nav-actions { margin-left: auto; }
  .burger { display: flex; }
  .nd-nav .brand strong { font-size: 26px; }
  .nd-nav .brand-division { font-size: 11px; margin-left: 1px; padding-left: 10px; }
  .nd-nav .nd-button { padding: 10px 12px; min-height: 40px; font-size: 12px; gap: 12px; }
  .nd-kicker { font-size: 11px; }
  .nd-pad { padding: 62px 25px; scroll-margin-top: 74px; }
  .new-direction h2 { font-size: 39px; line-height: 1.09; letter-spacing: -1.9px; }
  .nd-audience { display: block; padding: 25px; }
  .nd-audience > span { max-width: none; font-size: 10px; }
  .nd-audience > div { justify-content: space-between; gap: 20px; margin-top: 18px; font-size: 15px; letter-spacing: -.45px; }
  .nd-manifesto, .nd-faq, .nd-domains, .nd-proof { grid-template-columns: 1fr; gap: 32px; }
  .nd-section-marker { justify-content: flex-start; gap: 25px; }
  .nd-manifesto > div > p { font-size: 16px; margin: 23px 0 35px; }
  .nd-principles { grid-template-columns: 1fr; gap: 28px; }
  .nd-principles > div { display: grid; grid-template-columns: 25px 1fr; gap: 8px 20px; padding-top: 20px; }
  .nd-principles > div > span { font-size: 12px; margin-top: 3px; }
  .nd-principles h3 { font-size: 21px; margin: 0; }
  .nd-principles p { grid-column: 2; }
  .nd-product-heading > p { font-size: 16px; }
  .nd-product .dossier-motion { margin-top: 32px; }
  .nd-product-foot { display: block; margin-top: 23px; }
  .nd-product-foot > span { display: block; font-size: 10px; max-width: 320px; }
  .nd-product-foot > a { margin-top: 19px; font-size: 13px; gap: 15px; }
  .dm-top { padding: 17px 18px; font-size: 9px; letter-spacing: .03em; gap: 12px; }
  .dm-stage { grid-template-columns: 1fr; gap: 30px; padding: 25px 25px 35px; }
  .dm-overline { font-size: 10px; margin-bottom: 16px; }
  .dm-input { padding: 11px 13px; min-height: 46px; font-size: 13px; margin-top: 10px; gap: 13px; }
  .dm-input > span { width: 24px; height: 24px; }
  .dm-tracks { display: none; }
  .dm-output { max-width: 290px; width: 100%; justify-self: center; padding-right: 7px; transform: rotate(2deg); }
  .dm-paper { padding: 22px 25px; min-height: 280px; }
  .dm-paper h3 { font-size: 36px; }
  .dm-bottom { display: block; padding: 18px 20px; }
  .dm-steps { gap: 20px; justify-content: space-between; }
  .dm-steps > button { font-size: 11px; gap: 6px; }
  .dm-steps > button > span { font-size: 10px; }
  .dm-open { font-size: 12px; justify-content: space-between; width: 100%; margin-top: 21px; padding-top: 15px; border-top: 1px solid var(--dm-line); }
  .report-body { padding: 20px 18px; }
  .report-body .excerpt { font-size: 15px; }
  .cite-hint .desk { display: none; }
  .cite-hint .mob { display: inline; }
  .nd-editorial { grid-template-columns: 1fr; min-height: 0; }
  .nd-editorial-film { min-height: 430px; }
  .nd-editorial-copy { padding: 48px 25px 55px; min-height: 0; }
  .nd-editorial-copy h2 { font-size: 63px; letter-spacing: -3.5px; margin: 27px 0; }
  .nd-editorial-copy > p { font-size: 16px; max-width: 450px; }
  .nd-editorial-copy > .nd-text-link { margin-top: 25px; }
  .nd-deliverables-head { display: block; margin-bottom: 35px; }
  .nd-deliverables-head > p { font-size: 16px; max-width: 420px; margin-top: 25px; }
  .nd-output-row { grid-template-columns: 23px 1fr; gap: 17px; padding: 28px 0; min-height: 0; }
  .nd-output-icon, .nd-output-paper { display: none; }
  .nd-output-row > div > span { font-size: 11px; margin-bottom: 12px; }
  .nd-output-row h3 { font-size: 26px; }
  .nd-output-row p { font-size: 15px; line-height: 1.6; }
  .nd-output-index { font-size: 12px; }
  .nd-output-row:hover { padding-inline: 0; }
  .nd-deliverable-note { font-size: 13px; gap: 10px; margin-top: 23px; }
  .nd-control { grid-template-columns: 1fr; gap: 35px; }
  .nd-control > div > p { font-size: 16px; }
  .nd-control-table > div { grid-template-columns: 23px 86px 1fr 16px; gap: 11px; padding: 19px 0; }
  .nd-control-table p { font-size: 13px; }
  .nd-control-table strong { font-size: 14px; }
  .nd-control-table > span { font-size: 10px; }
  .nd-domain-grid { grid-template-columns: 1fr 1fr; }
  .nd-faq-row > button { font-size: 17px; padding: 21px 0; }
  .nd-faq-row > p { font-size: 15px; padding-right: 10px; }
  .nd-closing { padding: 62px 25px 74px; }
  .nd-closing h2 { font-size: 57px; letter-spacing: -3.6px; margin: 26px 0 32px; }
  .nd-closing .nd-kicker { font-size: 10px; }
  .nd-closing .nd-button { font-size: 14px; min-width: 240px; }
  .nd-footer { padding: 30px 25px; gap: 23px; }
  .nd-footer > div { width: 100%; gap: 18px; }
  .nd-footer a { font-size: 11px; }
  .stock-film > figcaption { left: 20px; right: 20px; bottom: 20px; font-size: 10px; gap: 15px; }
  .stock-film > figcaption > button, .stock-film > figcaption > a { font-size: 11px; padding: 8px 10px; }
  .stock-film > figcaption > span { max-width: 63%; }
  .monument-hero { grid-template-columns: 1fr; padding: 0 25px; min-height: 0; }
  .monument-hero-copy { padding: 32px 0 30px; }
  .monument-hero-copy > .nd-kicker { font-size: 10px; }
  .monument-hero h1 { font-size: clamp(55px, 12.4vw, 84px); line-height: 1.035; margin: 34px 0 28px; letter-spacing: -.072em; }
  .monument-intro > p { font-size: 15px; max-width: 430px; margin-bottom: 23px; }
  .monument-intro .nd-button { font-size: 13px; min-height: 53px; padding: 15px 18px; gap: 30px; }
  .monument-intro .nd-reassurance { font-size: 11px; }
  .monument-film { height: 460px; min-height: 460px; margin-top: 0; width: 100%; }
  .monument-film-grid { inset: 25px; }
  .monument-film-corner { top: 27px; left: 25px; font-size: 11px; }
  .monument-bottom { margin-top: 24px; padding: 23px 0; gap: 20px; }
  .monument-bottom > span { font-size: 10px; line-height: 1.6; max-width: 190px; }
  .monument-bottom > a { font-size: 12px; gap: 10px; white-space: nowrap; }
}
@media (max-width: 380px) {
  .nd-nav { padding-inline: 17px; }
  .nd-nav .brand-division { display: none; }
  .nd-nav .brand strong { font-size: 25px; }
  .nd-pad, .nd-audience { padding-inline: 21px; }
  .nd-audience > div { gap: 15px; font-size: 13px; }
  .monument-hero h1 { font-size: 54px; }
  .nd-control-table > div { grid-template-columns: 20px 75px 1fr 14px; gap: 9px; }
  .nd-closing h2 { font-size: 50px; }
  .nd-domain-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .new-direction *, .new-direction *:before, .new-direction *:after { animation: none !important; transition: none !important; }
  .nd-output-row:hover .nd-output-paper, .dm-output, .dm-paper-back { transform: none !important; }
  .dm-beam { display: none; }
  html { scroll-behavior: auto; }
}
@media print { .nd-nav, .stock-film, .mobile-menu, .beta-band { display: none !important; } .monument-hero, .nd-product, .nd-closing, .nd-audience { background: #fff !important; color: #111 !important; } }
