.site-v2 {
    --v2-gutter: clamp(1.25rem, 4vw, 4rem);
    --v2-space: clamp(5rem, 9vw, 9rem);
    background: var(--bg);
}

.site-v2 .site-container {
    width: min(1280px, calc(100% - (2 * var(--v2-gutter))));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 5000;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    background: var(--text);
    color: #fff;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(23, 24, 20, 0.22);
    background: rgba(246, 244, 237, 0.94);
}

.site-header.is-sticky {
    position: fixed;
    box-shadow: 0 16px 40px rgba(23, 24, 20, 0.08);
}

.site-header__inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 800;
}

.site-logo img {
    width: 30px;
    height: 30px;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 1.5vw, 1.6rem);
    font-size: 0.78rem;
    font-weight: 700;
}

.site-navigation > a:not(.site-button) {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding-block: 0.45rem;
    border-bottom: 1px solid transparent;
}

.site-navigation > a:not(.site-button):hover {
    border-color: currentColor;
}

.site-navigation__lang {
    font-family: var(--font-mono);
}

.site-menu-toggle {
    display: none;
    min-height: 48px;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    font-weight: 700;
}

.site-menu-toggle i,
.site-menu-toggle i::before,
.site-menu-toggle i::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: '';
}

.site-menu-toggle i {
    position: relative;
}

.site-menu-toggle i::before,
.site-menu-toggle i::after {
    position: absolute;
    left: 0;
}

.site-menu-toggle i::before { top: -6px; }
.site-menu-toggle i::after { top: 6px; }

.site-button {
    display: inline-flex;
    min-height: 50px;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--text);
    background: var(--text);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}

.site-button svg,
.site-text-link svg,
.intent-grid svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-button:hover svg,
.site-text-link:hover svg,
.intent-grid a:hover svg {
    transform: translateX(4px);
}

.site-button--secondary {
    background: transparent;
    color: var(--text);
}

.site-button--inverse {
    border-color: rgba(255, 255, 255, 0.75);
    background: transparent;
    color: #fff;
}

.site-button--nav {
    min-height: 48px;
    padding: 0.6rem 0.85rem;
    background: var(--accent);
    color: var(--text);
}

.site-button--event {
    min-height: 42px;
    border-color: var(--accent);
    background: var(--accent);
    color: var(--text);
}

.event-banner {
    padding: 4.875rem 0 0.75rem;
    background: var(--text);
    color: #fff;
}

.event-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.event-banner__inner > .site-text-link {
    flex-shrink: 0;
    white-space: nowrap;
}

.event-banner__text {
    display: flex;
    gap: 0.65rem;
    align-items: baseline;
    min-width: 0;
}

.event-banner__text > * + *::before {
    content: '—';
    margin-right: 0.65rem;
    color: rgba(255, 255, 255, 0.38);
}

.event-banner__eyebrow {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.event-banner strong {
    display: inline;
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.event-banner__body {
    display: inline;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    white-space: nowrap;
}

.event-banner + .site-hero {
    padding-top: clamp(3rem, 6vw, 5rem);
}

.site-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.site-hero {
    min-height: min(900px, 100svh);
    padding: clamp(9rem, 15vw, 12rem) 0 clamp(5rem, 10vw, 8rem);
    background: var(--accent);
}

.site-breadcrumbs {
    padding: 6.25rem 0 0;
    background: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
}

.site-breadcrumbs .site-container {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.site-breadcrumbs span[aria-current='page'] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-breadcrumbs + .site-hero {
    padding-top: clamp(3.5rem, 7vw, 6rem);
}

.site-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.site-hero__grid--copy {
    grid-template-columns: minmax(0, 1fr);
}

.site-hero__grid--copy .site-hero__copy {
    max-width: 1020px;
}

.site-hero__grid--copy .site-hero__copy h1 {
    max-width: 18ch;
}

.site-hero__copy h1 {
    max-width: 12ch;
    font-size: clamp(3.2rem, 7.2vw, 6rem);
    letter-spacing: -0.04em;
}

.site-hero__copy > p {
    max-width: 66ch;
    margin-top: 1.75rem;
    color: var(--text);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.site-eyebrow {
    margin: 0 0 1rem !important;
    color: var(--text) !important;
    font-family: var(--font-mono);
    font-size: 0.72rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-marker {
    max-width: none !important;
    margin-top: 1.5rem !important;
    padding-block: 0.85rem;
    border-block: 1px solid rgba(23, 24, 20, 0.42);
    font-family: var(--font-mono);
    font-size: clamp(0.68rem, 1.15vw, 0.82rem) !important;
    font-weight: 600;
    letter-spacing: 0.035em;
}

.site-hero--scoped {
    min-height: min(826px, calc(100svh - 74px));
    padding-block: clamp(7rem, 10vw, 8.5rem) clamp(2.5rem, 5vw, 4rem);
}

.site-hero--scoped .site-hero__copy {
    max-width: 1180px;
}

.site-hero--scoped .site-hero__copy h1 {
    max-width: 22ch;
    font-size: clamp(3rem, 5.5vw, 5rem);
}

.site-hero--scoped .site-hero__copy > p {
    margin-top: 1rem;
}

.hero-scope {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    border-block: 1px solid rgba(23, 24, 20, 0.45);
}

.hero-scope article {
    padding: 1rem 1.25rem 1rem 0;
    border-right: 1px solid rgba(23, 24, 20, 0.35);
}

.hero-scope article + article { padding-left: 1.25rem; }
.hero-scope article:last-child { border-right: 0; }

.hero-scope h2 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero-scope p {
    max-width: 34ch;
    margin-top: 0.4rem;
    font-size: 0.78rem;
}

.site-hero--scoped .site-actions { margin-top: 1.25rem; }

.hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    list-style: none;
}

.hero-reassurance li + li::before {
    content: '·';
    margin-right: 1.5rem;
}

.product-flow {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(23, 24, 20, 0.55);
    background: rgba(246, 244, 237, 0.42);
}

.product-flow__top,
.product-flow__gate {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-flow__path {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr;
    align-items: center;
    margin-block: 3rem;
}

.product-flow__path div {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid var(--text);
    background: var(--bg);
}

.product-flow__path strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.product-flow__path small {
    color: var(--text-soft);
    font-size: 0.68rem;
}

.product-flow__path i {
    height: 1px;
    background: var(--text);
}

.product-flow__gate span {
    padding: 0.5rem;
    border: 1px solid rgba(23, 24, 20, 0.45);
}

.product-flow figcaption {
    margin-top: 1.25rem;
    color: var(--text-soft);
    font-size: 0.68rem;
}

.trust-strip {
    padding: 0;
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
    background: var(--accent);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip__grid > div {
    min-height: 130px;
    padding: 1.5rem;
    border-right: 1px solid rgba(23, 24, 20, 0.35);
}

.trust-strip__grid > div:last-child { border-right: 0; }

.trust-strip strong,
.trust-strip span {
    display: block;
}

.client-logos {
    padding: clamp(2.25rem, 4vw, 3.5rem) 0;
    border-block: 1px solid var(--line-strong);
    background: var(--bg);
}

.client-logos h2 {
    max-width: 48ch;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.client-logos__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    margin-top: 2rem;
    background: var(--line-strong);
    list-style: none;
}

.client-logos__grid li {
    display: grid;
    min-height: 112px;
    place-items: center;
    padding: 1rem;
    background: var(--bg);
}

.client-logos__grid img {
    width: min(100%, 160px);
    height: 64px;
    object-fit: contain;
    filter: grayscale(1);
}

.trust-strip strong {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.7rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.trust-strip span {
    max-width: 24ch;
    margin-top: 0.8rem;
    font-size: 0.74rem;
    font-weight: 700;
}

.site-section {
    padding: var(--v2-space) 0;
}

.site-section--paper { background: var(--bg); }
.site-section--yellow { background: var(--accent); }
.site-section--proof { background: var(--bg-soft); }
.site-section--carbon { background: var(--text); color: #fff; }

.section-header {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-header--solo {
    grid-template-columns: minmax(0, 900px);
}

.section-header h2,
.section-split h2,
.product-section h2,
.conversion-section h2,
.fallback-panel h2 {
    max-width: 14ch;
    font-size: clamp(2.4rem, 4.5vw, 4.6rem);
    letter-spacing: -0.04em;
}

.section-header p,
.section-lead {
    font-size: 1.05rem;
}

.section-split,
.product-section,
.conversion-section__grid,
.fallback-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.section-split .section-lead,
.product-section .section-lead {
    margin-top: 1.5rem;
}

.ruled-list article,
.product-pillars article {
    padding: 1.4rem 0 1.8rem;
    border-top: 1px solid var(--line-strong);
}

.ruled-list h3,
.product-pillars h3 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.decision-card {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-right: 1px solid var(--line-strong);
}

.decision-card:nth-child(3n) { border-right: 0; }
.decision-card:nth-child(n + 4) { border-top: 1px solid var(--line-strong); }

.decision-card__meta {
    min-height: 2.6em;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.decision-card__problem {
    min-height: 6.5em;
    margin-top: 0 !important;
    font-size: 0.9rem;
    font-weight: 600;
}

.decision-card h3 {
    margin-top: 1.5rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.decision-card > p:not(.decision-card__meta) { margin-top: 1rem; }

.decision-card__profiles {
    margin-top: auto !important;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line-strong);
    font-size: 0.76rem;
}

.decision-card__profiles strong {
    display: block;
    margin-bottom: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.decision-card ul {
    display: grid;
    gap: 0.5rem;
    margin: 1.5rem 0 2rem;
    font-size: 0.8rem;
    list-style: none;
}

.decision-card li::before { content: '— '; }

.site-text-link {
    display: inline-flex;
    min-height: 44px;
    width: fit-content;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1.2rem;
    border-bottom: 1px solid currentColor;
    font-size: 0.8rem;
    font-weight: 800;
}

.site-v2 main [id] {
    scroll-margin-top: 90px;
}

#main-content {
    scroll-margin-top: 74px;
}

.capability-list {
    border-top: 1px solid var(--text);
}

.capability-list a {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) 1fr 40px;
    gap: 2rem;
    align-items: center;
    min-height: 150px;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--text);
}

.capability-list h3 { font-size: clamp(2rem, 4.5vw, 4.5rem); }
.capability-list p { color: var(--text); }
.capability-list span { font-size: 2rem; }

.lifecycle-matrix {
    background: var(--bg-soft);
}

.lifecycle-matrix__head,
.lifecycle-matrix__body details {
    display: grid;
    grid-template-columns: minmax(130px, 0.7fr) minmax(0, 5.3fr);
}

.lifecycle-matrix__head {
    grid-template-columns: minmax(130px, 0.7fr) repeat(6, minmax(120px, 1fr));
    border-block: 1px solid var(--line-strong);
    background: var(--text);
    color: #fff;
}

.lifecycle-matrix__head span {
    display: flex;
    min-height: 76px;
    align-items: flex-end;
    padding: 0.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
}

.lifecycle-matrix__body details {
    border-bottom: 1px solid var(--line-strong);
}

.lifecycle-matrix__body summary {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-right: 1px solid var(--line-strong);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    list-style: none;
}

.lifecycle-matrix__body summary::-webkit-details-marker { display: none; }

.lifecycle-matrix__cells {
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
}

.lifecycle-matrix__cells div {
    min-height: 150px;
    padding: 1rem 0.8rem;
    border-right: 1px solid var(--line-strong);
}

.lifecycle-matrix__cells strong {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
.lifecycle-matrix__cells p { font-size: 0.75rem; }

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
}

.proof-item {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    padding: 2rem;
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.proof-item:last-child { border-right: 0; }
.proof-item__client { color: var(--text); font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; }
.proof-item h3 { margin-top: 2rem; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.proof-item > p:not(.proof-item__client) { margin-top: 1rem; }

.proof-item__context {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.proof-item__context div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem;
}

.proof-item__context dt {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(23, 24, 20, 0.55);
}

.proof-item__context dd { font-size: 0.86rem; }

.proof-item__actions {
    margin: 0;
    padding: 0;
    list-style: none;
}

.proof-item__actions li {
    position: relative;
    padding-left: 1rem;
}

.proof-item__actions li + li { margin-top: 0.3rem; }

.proof-item__actions li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(23, 24, 20, 0.4);
}

.proof-item__outcome {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line-strong);
}

.proof-item__outcome dd { font-weight: 600; }
.proof-note { margin-top: 1rem; font-size: 0.72rem; }

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
}

.mission-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.mission-card:last-child { border-right: 0; }
.mission-card__meta { min-height: 2.8em; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; }
.mission-card h3 { margin: 1.5rem 0 2rem; font-size: clamp(1.7rem, 2.5vw, 2.2rem); }
.mission-card__block { margin-top: 1rem; }
.mission-card h4 { margin-bottom: 0.45rem; color: var(--text-soft); font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; }
.mission-card p,
.mission-card li { font-size: 0.8rem; }
.mission-card ul { display: grid; gap: 0.35rem; padding-left: 1rem; }
.mission-card__effect { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--line-strong); }
.mission-card__effect p { font-weight: 600; }

.product-section h2,
.product-section h3 { color: #fff; }
.product-section .site-eyebrow { color: rgba(255, 255, 255, 0.62) !important; }
.product-section p { color: rgba(255, 255, 255, 0.72); }
.product-pillars article { border-color: rgba(255, 255, 255, 0.38); }

.method-list {
    border-top: 1px solid var(--line-strong);
    list-style: none;
}

.method-list li {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--line-strong);
}

.method-list > li > span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.method-list h3 { font-size: clamp(1.9rem, 3vw, 3.2rem); }
.method-list p { margin-top: 0.65rem; }

.conversion-section {
    background: var(--text);
    color: #fff;
}

.conversion-section h2 { color: #fff; }
.conversion-section p { margin-top: 1.5rem; color: rgba(255, 255, 255, 0.72); }

.conversion-section__grid--single {
    grid-template-columns: minmax(0, 920px);
}

/* Homepage rhythm: monumental at turning points, dense where evidence carries the argument. */
.page-home {
    --v2-space: clamp(4.5rem, 6vw, 6.5rem);
}

.page-home .event-banner + .site-hero {
    min-height: auto;
    padding-block: clamp(3rem, 5vw, 4.5rem);
}

.page-home .site-hero__copy {
    max-width: 1180px;
}

.page-home .site-hero__copy h1 {
    max-width: 20ch;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
}

.page-home #expertises .decision-card { min-height: 700px; }

.page-home #intervention .decision-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.page-home #intervention .decision-card { min-height: 430px; padding: 1.5rem; }
.page-home #intervention .decision-card:nth-child(3n) { border-right: 1px solid var(--line-strong); }
.page-home #intervention .decision-card:nth-child(4n) { border-right: 0; }
.page-home #intervention .decision-card:nth-child(n + 4) { border-top: 0; }
.page-home #intervention .decision-card h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }

.page-home #delivery .method-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-home #delivery .method-list li {
    display: block;
    min-height: 260px;
    padding: 1.5rem;
    border-right: 1px solid var(--line-strong);
}

.page-home #delivery .method-list li:nth-child(4n) { border-right: 0; }
.page-home #delivery .method-list > li > span { display: block; margin-bottom: 2rem; }
.page-home #delivery .method-list h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }

.page-home h1,
.page-home h2,
.page-home h3 { text-wrap: balance; }

.page-home .section-header {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.page-home .section-header h2,
.page-home .section-split h2,
.page-home .product-section h2,
.page-home .conversion-section h2 {
    max-width: 18ch;
    font-size: clamp(2.6rem, 3.9vw, 3.9rem);
}

.page-home #solutions .decision-card {
    min-height: 430px;
    padding: 1.75rem;
}

.page-home #solutions .decision-card__problem { min-height: 5.5em; }

.page-home #preuves,
.page-home #proof,
.page-home #expertises {
    padding-block: clamp(4.5rem, 5.5vw, 5.75rem);
}

.page-home #preuves .section-header,
.page-home #proof .section-header,
.page-home #expertises .section-header {
    margin-bottom: clamp(2rem, 3vw, 2.75rem);
}

.page-home #preuves .section-header h2,
.page-home #proof .section-header h2,
.page-home #expertises .section-header h2 {
    max-width: 22ch;
    font-size: clamp(2.7rem, 3.7vw, 3.7rem);
}

.page-home #preuves .proof-item,
.page-home #proof .proof-item {
    min-height: 0;
    padding: 1.5rem 1.75rem 1.75rem;
}

.page-home #preuves .proof-item h3,
.page-home #proof .proof-item h3 {
    margin-top: 1.25rem;
    font-size: clamp(1.7rem, 2.4vw, 2rem);
}

.page-home #preuves .proof-item__outcome,
.page-home #proof .proof-item__outcome {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.page-home #preuves .proof-note,
.page-home #proof .proof-note { font-size: 0.8rem; }

.page-home #preuves .proof-note,
.page-home #proof .proof-note {
    max-width: 95ch;
    margin-top: 1.25rem;
    line-height: 1.55;
}

.page-home #expertises .capability-list a {
    grid-template-columns: minmax(260px, 0.65fr) 1fr minmax(120px, auto);
    min-height: 118px;
    padding-block: 1.25rem;
}

.page-home #expertises .capability-list h3 {
    font-size: clamp(2.2rem, 3.2vw, 3.2rem);
}

.page-home #expertises .capability-list span {
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}

.page-home .method-list li {
    grid-template-columns: 64px minmax(0, 1fr);
    padding-block: 1.5rem;
}

.page-home .method-list h3 { font-size: clamp(1.9rem, 2.5vw, 2.5rem); }

.page-home #usages .decision-grid,
.page-home #use-cases .decision-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-home #usages .decision-card,
.page-home #use-cases .decision-card {
    min-height: 320px;
    padding: 1.5rem;
}

.page-home #usages .decision-card h3,
.page-home #use-cases .decision-card h3 {
    margin-top: 0;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.page-home .conversion-section {
    padding-block: clamp(4.5rem, 6vw, 6rem);
}

.page-home .conversion-section__grid--single > div { max-width: 900px; }

.embed-fallback {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.embed-fallback strong { font-family: var(--font-display); font-size: 1.5rem; }
.site-text-link--light { color: #fff; }

.fallback-panel {
    padding: clamp(2rem, 5vw, 4rem);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    align-items: center;
}

.fallback-panel p { margin-top: 1rem; }

.intent-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
}

.intent-grid a {
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    font-weight: 700;
}

.intent-grid a:nth-child(2n) { border-right: 0; }

.faq-list details { border-top: 1px solid var(--line-strong); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 800; }
.faq-list p { padding-bottom: 1.5rem; }

.site-footer {
    padding: 5rem 0 1.5rem;
    background: var(--text);
    color: #fff;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2.5rem;
}

.site-footer .site-logo,
.site-footer h2,
.site-footer a { color: #fff; }
.site-footer h2 { margin-bottom: 1.2rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.site-footer__grid > div:not(.site-footer__brand) { display: flex; flex-direction: column; gap: 0.65rem; }
.site-footer__grid a { min-height: 44px; display: flex; align-items: center; font-size: 0.8rem; }
.site-footer__brand p { margin-top: 1rem; color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.22); font-size: 0.75rem; }
.site-footer__legal a,
.site-footer__legal button { min-height: 44px; display: inline-flex; align-items: center; }
.site-footer__legal button { padding: 0; background: none; color: #fff; cursor: pointer; }

.consent-panel {
    position: fixed;
    z-index: 4000;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    max-width: 900px;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: var(--text);
    color: #fff;
    box-shadow: 0 20px 60px rgba(23, 24, 20, 0.28);
}

.consent-panel[hidden] { display: none; }
.consent-panel p { color: rgba(255, 255, 255, 0.72); font-size: 0.76rem; }
.consent-panel__actions { display: flex; gap: 0.5rem; }
.consent-panel button { min-height: 44px; padding: 0.55rem 0.85rem; border: 1px solid #fff; background: transparent; color: #fff; cursor: pointer; }
.consent-panel [data-consent-accept] { background: var(--accent); color: var(--text); border-color: var(--accent); }

@media (max-width: 1080px) {
    .site-menu-toggle { display: inline-flex; }
    .site-navigation {
        position: fixed;
        top: 74px;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        align-content: start;
        padding: 1.5rem var(--v2-gutter) 3rem;
        overflow-y: auto;
        background: var(--bg);
    }
    .site-navigation.is-open { display: grid; }
    .site-navigation > a:not(.site-button) { min-height: 54px; display: flex; align-items: center; border-bottom: 1px solid var(--line-strong); font-size: clamp(1.35rem, 2.3vw, 2rem); }
    .site-navigation .site-button { width: 100%; margin-top: 1rem; }
    .site-hero__grid,
    .section-split,
    .product-section,
    .conversion-section__grid,
    .fallback-panel { grid-template-columns: 1fr; }
    .site-hero { min-height: auto; }
    .site-hero__copy h1 { max-width: 14ch; }
    .site-hero__visual { max-width: 680px; }
    .decision-grid,
    .proof-grid { grid-template-columns: 1fr; }
    .decision-card,
    .proof-item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-strong); }
    .decision-card:nth-child(n + 4) { border-top: 0; }
    .page-home #usages .decision-grid,
    .page-home #use-cases .decision-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .client-logos__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lifecycle-matrix__head { display: none; }
    .lifecycle-matrix__body details { display: block; }
    .lifecycle-matrix__body summary {
        min-height: 64px;
        justify-content: space-between;
        border-right: 0;
        cursor: pointer;
    }
    .lifecycle-matrix__body summary::after { content: '+'; font-family: var(--font-mono); }
    .lifecycle-matrix__body details[open] summary::after { content: '−'; }
    .lifecycle-matrix__cells { grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); }
    .lifecycle-matrix__cells strong { position: static; width: auto; height: auto; margin: 0 0 0.65rem; overflow: visible; clip: auto; clip-path: none; white-space: normal; display: block; font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase; }
    .mission-grid { grid-template-columns: 1fr; }
    .mission-card { border-right: 0; }
    .page-home #expertises .decision-card { min-height: auto; }
    .page-home #intervention .decision-grid,
    .page-home #delivery .method-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-home #intervention .decision-card { min-height: 380px; border-right: 1px solid var(--line-strong); }
    .page-home #intervention .decision-card:nth-child(2n) { border-right: 0; }
    .page-home #intervention .decision-card:nth-child(n + 3) { border-top: 1px solid var(--line-strong); }
    .page-home #delivery .method-list li:nth-child(2n) { border-right: 0; }
    .page-home #delivery .method-list li:nth-child(2n + 1) { border-right: 1px solid var(--line-strong); }
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    .page-home { --v2-space: 3.75rem; }
    .event-banner { padding-top: 4.875rem; }
    .event-banner__inner { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
    .event-banner__text { display: block; }
    .event-banner__text > * + *::before { content: none; }
    .event-banner__eyebrow { margin-bottom: 0.2rem; }
    .event-banner__body { display: none; }
    .event-banner + .site-hero { padding-top: 3.5rem; }
    .site-hero { padding-top: 7.5rem; }
    .site-hero__copy h1 { font-size: clamp(3rem, 13vw, 4.2rem); }
    .site-hero--scoped { padding-block: 5.5rem 2rem; }
    .site-hero--scoped .site-hero__copy h1 { max-width: 18ch; font-size: clamp(2.1rem, 9vw, 2.7rem); }
    .hero-scope { grid-template-columns: 1fr; }
    .hero-scope article,
    .hero-scope article + article { padding: 0.55rem 0; border-right: 0; border-bottom: 1px solid rgba(23, 24, 20, 0.3); }
    .hero-scope article:last-child { border-bottom: 0; }
    .hero-scope p { max-width: none; }
    .hero-reassurance { display: grid; gap: 0.35rem; }
    .hero-reassurance li + li::before { content: none; }
    .site-actions { align-items: stretch; flex-direction: column; }
    .site-actions .site-button { width: 100%; }
    .product-flow__path { grid-template-columns: 1fr; gap: 0.5rem; margin-block: 2rem; }
    .product-flow__path i { width: 1px; height: 18px; margin-inline: auto; }
    .product-flow__path div { min-height: 110px; }
    .trust-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-strip__grid > div { min-height: 110px; border-bottom: 1px solid rgba(23, 24, 20, 0.35); }
    .trust-strip__grid > div:nth-child(2n) { border-right: 0; }
    .section-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .section-header h2,
    .section-split h2,
    .product-section h2,
    .conversion-section h2,
    .fallback-panel h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); }
    .page-home .section-header h2,
    .page-home .section-split h2,
    .page-home .product-section h2,
    .page-home .conversion-section h2 { max-width: 18ch; font-size: clamp(2.1rem, 8vw, 2.5rem); }
    .page-home #preuves .section-header h2,
    .page-home #proof .section-header h2,
    .page-home #expertises .section-header h2 { font-size: clamp(2.2rem, 8.5vw, 2.6rem); }
    .page-home #preuves,
    .page-home #proof,
    .page-home #expertises { padding-block: 3.75rem; }
    .decision-card { padding: 1.5rem 0; }
    .decision-card__problem { min-height: 0; }
    .page-home #solutions .decision-card,
    .page-home #usages .decision-card,
    .page-home #use-cases .decision-card { min-height: 0; padding: 1.5rem 0; }
    .page-home #solutions .decision-card__problem { min-height: 0; }
    .capability-list a { grid-template-columns: 1fr 32px; gap: 1rem; }
    .capability-list a p { grid-column: 1 / -1; }
    .page-home #expertises .capability-list a { grid-template-columns: 1fr; gap: 0.65rem; min-height: 0; padding-block: 1.25rem; }
    .page-home #expertises .capability-list h3 { font-size: clamp(2.1rem, 10vw, 2.6rem); }
    .page-home #expertises .capability-list p,
    .page-home #expertises .capability-list span { grid-column: 1; }
    .page-home #usages .decision-grid,
    .page-home #use-cases .decision-grid { grid-template-columns: 1fr; }
    .client-logos__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .client-logos__grid li { min-height: 96px; }
    .lifecycle-matrix__cells { grid-template-columns: 1fr; }
    .lifecycle-matrix__cells div { min-height: 0; border-bottom: 1px solid var(--line-strong); }
    .lifecycle-matrix__cells div:last-child { border-bottom: 0; }
    .mission-card { padding: 1.5rem 0; }
    .mission-card__meta { min-height: 0; }
    .page-home #intervention .decision-grid,
    .page-home #delivery .method-list { grid-template-columns: 1fr; }
    .page-home #intervention .decision-card,
    .page-home #intervention .decision-card:nth-child(2n),
    .page-home #delivery .method-list li,
    .page-home #delivery .method-list li:nth-child(2n + 1) { min-height: 0; border-right: 0; }
    .page-home #intervention .decision-card:nth-child(n + 3) { border-top: 0; }
    .method-list li { grid-template-columns: 48px minmax(0, 1fr); gap: 1rem; }
    .intent-grid { grid-template-columns: 1fr; }
    .intent-grid a { border-right: 0; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__brand { grid-column: auto; }
    .consent-panel { align-items: stretch; flex-direction: column; }
    .consent-panel__actions button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
