@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #071c27;
  --ink-soft: #0d2b38;
  --ink-lift: #123746;
  --blue: #2475b3;
  --blue-deep: #1d639a;
  --teal: #1f7375;
  --aqua: #65c8c8;
  --paper: #f3f6f5;
  --warm: #eeeae3;
  --white: #fff;
  --text: #182b35;
  --muted: #5a6b73;
  --line: #d7dfdf;
  --line-dark: #24404b;
  --alert: #9a3f35;
  --success: #176a58;
  --display: "Instrument Sans", Arial, sans-serif;
  --body: "Instrument Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --shadow: 0 24px 70px rgba(7, 28, 39, 0.14);
  --radius: 3px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 11vw, 4.6rem);
  font-weight: 570;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 8vw, 3.7rem);
  font-weight: 560;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  font-weight: 610;
}

p:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--blue-deep);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, 1440px);
  margin-inline: auto;
}

.section {
  padding-block: 78px;
}

.section-white {
  background: var(--white);
}

.section-warm {
  background: var(--warm);
}

.section-dark {
  color: #c7d4d8;
  background: var(--ink);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow {
  color: var(--aqua);
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 3vw, 1.34rem);
  line-height: 1.48;
}

.section-dark .lead {
  color: #b7c6ca;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 42px;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading.split-copy p {
  max-width: 600px;
}

.mono-note {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  gap: 13px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.btn-light:hover {
  background: #edf3f3;
}

.btn-outline {
  color: var(--ink);
  border-color: #9fb0b6;
}

.btn-outline:hover {
  border-color: var(--ink);
}

.btn-outline-light {
  color: var(--white);
  border-color: #5d747f;
}

.btn-outline-light:hover {
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-block: 4px;
  color: var(--blue-deep);
  font-weight: 660;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Header */

.utility-bar {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

/* Le flou vit sur un pseudo-élément : un backdrop-filter posé sur .site-header
   en ferait le containing block de ses descendants en position fixed, et le
   menu mobile (.site-nav, fixed inset 0) se retrouverait clippé au header. */
.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  backdrop-filter: blur(14px);
  content: "";
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 31px;
}

.nav-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  gap: 8px;
  padding: 102px 20px 30px;
  overflow-y: auto;
  background: var(--white);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.nav-open .site-nav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav > a,
.site-nav > details > summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 600;
  list-style: none;
}

.site-nav summary::-webkit-details-marker {
  display: none;
}

.site-nav summary::after {
  width: 8px;
  height: 8px;
  margin-left: 10px;
  margin-right: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.site-nav details[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-panel {
  display: grid;
  gap: 2px;
  padding: 12px 0 18px;
}

.nav-panel a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 2px;
}

.nav-panel .nav-ico {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 3px;
  color: var(--blue);
}

.site-nav > a[aria-current="page"],
.site-nav > details.is-current > summary {
  color: var(--blue-deep);
  border-bottom-color: var(--blue);
}

.nav-panel a[aria-current="page"] {
  padding-left: 12px;
  border-left: 3px solid var(--blue);
  background: var(--paper);
}

.nav-panel .nav-index {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.nav-panel strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.nav-panel small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 450;
}

.nav-cta {
  margin-top: 12px;
}

/* Home hero */

.hero-home {
  position: relative;
  min-height: min(640px, calc(100svh - 73px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-home::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(101, 200, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 200, 200, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.hero-layout {
  position: relative;
  display: flex;
  min-height: inherit;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--container));
  /* svh : les titres longs (EN) débordaient du premier écran de 2 px à 390×744 */
  padding-block: clamp(22px, 4svh, 36px);
  margin-inline: auto;
}

.hero-content h1 {
  max-width: 860px;
  color: var(--white);
  text-wrap: balance;
}

.hero-content .eyebrow {
  color: var(--aqua);
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 30px;
  color: #c6d4d8;
  font-size: clamp(1.08rem, 4vw, 1.31rem);
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 28, 39, 0.98) 0%, rgba(7, 28, 39, 0.88) 58%, rgba(7, 28, 39, 0.46) 100%), linear-gradient(to bottom, transparent 70%, var(--ink));
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.proof-strip {
  background: var(--ink);
}

.proof-rail {
  display: grid;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.proof-item:last-child {
  border-bottom: 0;
}

.proof-item span {
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.67rem;
}

.proof-item strong {
  color: #dce6e8;
  font-size: 0.88rem;
  font-weight: 520;
}

/* Editorial system statement */

.statement {
  display: grid;
  gap: 42px;
}

.statement-copy h2 {
  max-width: 770px;
}

.statement-copy .lead {
  max-width: 680px;
}

.system-map {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.system-map::before {
  position: absolute;
  inset: 9px;
  border: 1px solid #e8eded;
  content: "";
  pointer-events: none;
}

.map-node,
.map-core {
  position: relative;
  z-index: 1;
  padding: 17px;
  border: 1px solid var(--line);
}

.map-node {
  background: #f7f9f8;
}

.map-node span,
.map-core span {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-node strong,
.map-core strong {
  display: block;
  color: var(--ink);
  font-size: 0.93rem;
}

.map-core {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.map-core span {
  color: var(--aqua);
}

.map-core strong {
  color: var(--white);
}

.map-caption {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.79rem;
}

/* Pillars */

.pillars {
  border-top: 1px solid var(--line);
}

.pillar {
  display: grid;
  gap: 26px;
  padding-block: 48px;
  border-bottom: 1px solid var(--line);
}

.pillar-number {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.pillar-copy h3 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 7vw, 2.75rem);
}

.pillar-copy > p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.04rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 23px 0 26px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 10px;
  border: 1px solid #c7d1d2;
  color: #425860;
  font-family: var(--mono);
  font-size: 0.67rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.pillar-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--ink);
}

.pillar-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.page-visual {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  background: var(--ink);
}

.page-visual img {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 400px);
  object-fit: cover;
}

.pillar-visual .visual-label,
.page-visual .visual-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 13px;
  color: #d6e2e4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 28, 39, 0.82);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.engineering-visual {
  display: grid;
  min-height: 300px;
  align-content: end;
  padding: 26px;
  overflow: hidden;
  background-color: var(--ink);
  background-image: linear-gradient(rgba(101, 200, 200, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 200, 200, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 73% 22%, rgba(40, 127, 193, 0.35), transparent 38%);
  background-size: 30px 30px, 30px 30px, auto;
}

.engineering-stack {
  display: grid;
  gap: 8px;
}

.engineering-layer {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid #31505c;
  color: #c4d4d8;
  background: rgba(13, 43, 56, 0.82);
  font-size: 0.77rem;
}

.engineering-layer span:first-child {
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.governance-visual {
  display: grid;
  min-height: 300px;
  place-content: center;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.governance-ring {
  position: relative;
  display: grid;
  width: min(70vw, 245px);
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid #55707a;
  border-radius: 50%;
}

.governance-ring::before,
.governance-ring::after {
  position: absolute;
  border: 1px solid #31505c;
  border-radius: 50%;
  content: "";
  inset: 15%;
}

.governance-ring::after {
  border-color: var(--teal);
  inset: 30%;
}

.governance-ring strong {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.71rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

/* Operating model */

.model-grid {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.model-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.model-step > span {
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.model-step h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.model-step p {
  color: #a9bcc1;
  font-size: 0.91rem;
}

.deliverable-band {
  margin-top: 42px;
  padding: 25px;
  border: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.deliverable-band > p {
  margin-bottom: 18px;
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deliverable-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverable-list li {
  display: flex;
  gap: 10px;
  color: #d5dfe1;
  font-size: 0.88rem;
}

.deliverable-list li::before {
  flex: none;
  color: var(--aqua);
  content: "↳";
}

/* Compliance feature */

.compliance-feature {
  display: grid;
  background: var(--white);
  box-shadow: var(--shadow);
}

.compliance-media {
  min-height: 300px;
  overflow: hidden;
}

.compliance-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.compliance-copy {
  padding: 34px 24px;
}

.compliance-copy h2 {
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.reg-list {
  display: grid;
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.reg-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 13px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.reg-list strong {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.71rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.reg-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Contexts and insights */

.context-grid,
.insight-grid {
  display: grid;
  gap: 16px;
}

.context-card {
  position: relative;
  min-height: 250px;
  padding: 26px 24px;
  border-top: 3px solid var(--teal);
  background: var(--white);
}

.context-card .mono-note {
  margin-bottom: 42px;
}

.context-card h3 {
  font-size: 1.55rem;
}

.context-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.insight-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.insight-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insight-card h3 {
  font-size: 1.55rem;
}

.insight-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.insight-card .text-link {
  margin-top: auto;
  font-size: 0.88rem;
}

/* CTA and footer */

.contact-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.contact-cta::after {
  position: absolute;
  right: -160px;
  bottom: -230px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.04),
    0 0 0 100px rgba(255, 255, 255, 0.03);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding-block: 72px;
}

.cta-inner h2 {
  max-width: 800px;
  color: var(--white);
}

.cta-inner p {
  max-width: 650px;
  color: #dce8ee;
  font-size: 1.1rem;
}

.cta-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.site-footer {
  color: #aabac0;
  background: #051720;
}

.footer-main {
  display: grid;
  gap: 36px;
  padding-block: 55px 40px;
}

.footer-brand img {
  width: auto;
  height: 31px;
  margin-bottom: 18px;
  filter: grayscale(1) brightness(4);
}

.footer-brand p {
  max-width: 330px;
  font-size: 0.86rem;
}

.footer-col h2 {
  margin-bottom: 15px;
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  font-size: 0.84rem;
}

.footer-col a:hover,
.legal-row a:hover {
  color: var(--white);
}

.footer-outsourcing {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
  color: #82979f;
  font-size: 0.76rem;
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  padding-block: 21px;
  border-top: 1px solid #17313c;
  color: #7f939b;
  font-size: 0.72rem;
}

.legal-row .copyright {
  flex-basis: 100%;
}

/* Inner page hero */

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: clamp(34px, 6svh, 52px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero::after {
  position: absolute;
  right: -100px;
  bottom: -240px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(101, 200, 200, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(101, 200, 200, 0.03),
    0 0 0 110px rgba(101, 200, 200, 0.02);
  content: "";
}

body[data-page-type="service_detail"] .page-hero {
  background: linear-gradient(112deg, #071c27 0 68%, #0b3943 100%);
}

body[data-page-type="audit_detail"] .page-hero {
  background: linear-gradient(112deg, #0b1f2c 0 68%, #24455a 100%);
}

body[data-page-type="sector"] .page-hero {
  background: linear-gradient(112deg, #151e24 0 68%, #5a4634 100%);
}

body[data-page-type="audit_detail"] .page-hero::after {
  border-radius: 0;
  transform: rotate(36deg);
}

body[data-page-type="sector"] .page-hero::after {
  border-color: rgba(208, 163, 111, 0.25);
  border-radius: 16%;
  box-shadow: 0 0 0 55px rgba(208, 163, 111, 0.035),
    0 0 0 110px rgba(208, 163, 111, 0.02);
  transform: rotate(28deg);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #8ea4ac;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--aqua);
}

.page-hero h1 {
  max-width: 940px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.25rem, 10vw, 3.8rem);
}

.page-hero .lead {
  max-width: 760px;
  color: #bccbd0;
  font-size: clamp(0.94rem, 3.6vw, 1.1rem);
  line-height: 1.48;
}

.page-hero-aside {
  display: none;
}

.page-hero-aside p:first-child {
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero-aside p:last-child {
  color: #d3dfe2;
  font-size: 0.84rem;
  line-height: 1.45;
}

.page-hero-mobile-note {
  padding-block: 15px;
  color: #d3dfe2;
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.page-hero-mobile-note .container {
  display: grid;
  gap: 4px;
}

.page-hero-mobile-note p:first-child {
  margin: 0;
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-hero-mobile-note p:last-child {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.4;
}

.anchor-nav {
  position: sticky;
  z-index: 20;
  top: 72px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  scrollbar-width: none;
}

.anchor-nav::-webkit-scrollbar {
  display: none;
}

.anchor-nav-inner {
  display: flex;
  width: max-content;
  min-width: 100%;
}

.anchor-nav a {
  display: block;
  padding: 16px 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.anchor-nav a:hover {
  color: var(--blue-deep);
}

/* Inner page modules */

.intro-grid,
.content-split,
.feature-grid,
.standard-grid,
.regulation-grid,
.governance-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.intro-copy h2,
.content-copy h2 {
  text-wrap: balance;
}

.intro-copy p,
.content-copy > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.principle-card,
.feature-card,
.standard-card,
.regulation-card,
.governance-card {
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--white);
}

.principle-card {
  border-top: 3px solid var(--teal);
}

.principle-card + .principle-card {
  margin-top: 14px;
}

.principle-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.principle-card p,
.feature-card p,
.standard-card p,
.regulation-card p,
.governance-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-card .feature-index,
.standard-card .feature-index,
.governance-card .feature-index {
  display: block;
  margin-bottom: 45px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.feature-card h3,
.standard-card h3,
.governance-card h3 {
  font-size: 1.45rem;
}

/* Les cartes à fond blanc doivent garder un titre encre même posées dans une
   section sombre : sans cela, .section-dark h3 (blanc) rend les titres
   invisibles (ex. « Standards de delivery » de construire-operer). */
.principle-card h3,
.feature-card h3,
.standard-card h3,
.regulation-card h3,
.governance-card h3,
.delivery-model-card h3 {
  color: var(--ink);
}

.capability-list,
.check-list,
.plain-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.capability-list li,
.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.89rem;
}

.capability-list li::before,
.check-list li::before {
  color: var(--teal);
  content: "—";
}

.plain-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.scope-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.scope-table-wrap:focus-visible {
  position: relative;
  z-index: 1;
}

.scope-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.scope-table th,
.scope-table td {
  padding: 16px 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.scope-table th {
  color: var(--ink);
  background: #eef3f2;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scope-table td {
  color: var(--muted);
  font-size: 0.86rem;
}

.scope-table td:first-child {
  color: var(--ink);
  font-weight: 630;
}

.scope-table tr:last-child td,
.scope-table tr:last-child th {
  border-bottom: 0;
}

.scope-table th:last-child,
.scope-table td:last-child {
  border-right: 0;
}

.notice {
  padding: 23px;
  border-left: 3px solid var(--teal);
  background: #e9efed;
}

.notice-spaced {
  margin-top: 24px;
}

.notice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.notice p {
  color: var(--muted);
  font-size: 0.89rem;
}

.notice-dark {
  border-color: var(--aqua);
  background: var(--ink-soft);
}

.notice-dark strong {
  color: var(--white);
}

.notice-dark p {
  color: #b7c7cb;
}

.regulation-card {
  position: relative;
  overflow: hidden;
  padding-top: 34px;
}

.regulation-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--teal);
  content: "";
}

.regulation-card .reg-code {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.regulation-card h3 {
  font-size: 1.7rem;
}

.regulation-card .reg-scope {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 630;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding-bottom: 29px;
}

.timeline li::before {
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 14px;
  width: 1px;
  background: #aac0c0;
  content: "";
}

.timeline li:last-child::before {
  display: none;
}

.timeline-index {
  display: grid;
  width: 29px;
  height: 29px;
  place-content: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--teal);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.timeline h3 {
  margin: 2px 0 7px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.timeline p {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 20px 38px 20px 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 630;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--teal);
  content: "+";
  font-family: var(--mono);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 850px;
  padding: 0 32px 20px 0;
  color: var(--muted);
  font-size: 0.91rem;
}

/* Contact form */

.contact-panel {
  padding: 26px 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-panel h2 {
  font-size: 1.9rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.field-row {
  display: grid;
  gap: 18px;
  align-items: start;
}

.field {
  display: grid;
  gap: 7px;
  align-content: start;
}

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.required {
  color: var(--alert);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #aebdc1;
  border-radius: 0;
  color: var(--text);
  background: var(--white);
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid var(--white);
  outline-offset: 1px;
  box-shadow: 0 0 0 4px var(--blue-deep);
}

.field-hint {
  color: var(--muted);
  font-size: 0.75rem;
}

.field-hint a {
  color: var(--blue-deep);
  font-weight: 620;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.check-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.check-field label {
  color: var(--muted);
  font-size: 0.8rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  display: none;
  padding: 16px;
  color: #134f43;
  border: 1px solid #9bc9be;
  background: #e4f1ed;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #792f28;
  border-color: #d4a29d;
  background: #f8e9e7;
}

.company-lookup {
  position: relative;
}

.company-results {
  position: absolute;
  z-index: 15;
  top: 78px;
  right: 0;
  left: 0;
  max-height: 310px;
  overflow-y: auto;
  border: 1px solid #91a7ad;
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-results button {
  display: grid;
  width: 100%;
  gap: 3px;
  padding: 13px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  background: var(--white);
  text-align: left;
}

.company-results button:hover,
.company-results button:focus,
.company-results button[aria-selected="true"] {
  background: var(--paper);
  outline: 0;
}

.company-results strong,
.company-results span {
  display: block;
}

.company-results span {
  color: var(--muted);
  font-size: 0.76rem;
}

.company-summary {
  padding: 16px;
  border: 1px solid #abc5c1;
  background: #edf5f3;
}

.company-summary-head {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}

.company-summary-head span {
  padding: 3px 7px;
  color: #155848;
  border: 1px solid #85b5a8;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.company-summary dl {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
}

.company-summary dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #cbded9;
}

.company-summary dt,
.company-summary dd,
.company-summary p {
  margin: 0;
  font-size: 0.74rem;
}

.company-summary dt,
.company-summary p {
  color: var(--muted);
}

.company-summary p {
  margin-top: 14px;
  line-height: 1.5;
}

.contact-aside {
  display: grid;
  align-content: start;
  gap: 24px;
}

.contact-aside-card {
  padding: 24px;
  border: 1px solid var(--line);
}

.contact-aside-card h3 {
  font-size: 1.2rem;
}

.contact-aside-card p,
.contact-aside-card li {
  color: var(--muted);
  font-size: 0.87rem;
}

/* Page-specific */

.offer-summary {
  display: grid;
  gap: 14px;
}

.offer-summary a {
  display: grid;
  grid-template-columns: 36px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.offer-summary .feature-index {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.67rem;
}

.offer-summary strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
}

.offer-summary small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.offer-summary svg {
  width: 18px;
  color: var(--blue);
}

.outsourcing-strip {
  display: grid;
  gap: 20px;
  padding: 27px;
  border: 1px solid #526b74;
  background: var(--ink-soft);
}

.outsourcing-strip h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.outsourcing-strip p {
  color: #b7c7cb;
  font-size: 0.9rem;
}

.company-manifesto {
  max-width: 990px;
  color: var(--ink);
  font-size: clamp(1.65rem, 6vw, 3.2rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.company-manifesto em {
  color: var(--teal);
  font-style: normal;
}

.article-layout {
  display: grid;
  gap: 40px;
}

.article-body {
  max-width: 780px;
}

.article-body h2 {
  margin-top: 54px;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
}

.article-body h3 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.article-body p,
.article-body li {
  color: #40535c;
  font-size: 1rem;
  line-height: 1.75;
}

.article-aside {
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.resource-grid {
  display: grid;
  gap: 14px;
}

/* Resources editorial hub */

.resource-command {
  padding-block: 72px;
  background: #e9eeee;
}

.resource-command-grid {
  display: grid;
  gap: 18px;
}

.resource-lead {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 95% 5%, #596cae 0, #27315f 38%, #151c39 78%);
}

.resource-lead::before {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(191, 205, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(191, 205, 255, 0.04), 0 0 0 92px rgba(191, 205, 255, 0.025);
  content: "";
}

.resource-lead-meta,
.resource-lead-map {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  color: #aebbea;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-lead-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: 48px;
}

.resource-lead-copy .eyebrow,
.resource-lead-copy p {
  color: #c8d1f1;
}

.resource-lead-copy h2,
.resource-lead-copy .text-link {
  color: var(--white);
}

.resource-lead-copy h2 {
  font-size: clamp(2.35rem, 8.5vw, 4.8rem);
}

.resource-lead-map {
  justify-content: flex-start;
}

.resource-lead-map span {
  padding: 7px 9px;
  border: 1px solid rgba(191, 205, 255, 0.26);
}

.resource-watch {
  padding: 26px;
  color: var(--white);
  background: var(--ink);
}

.resource-watch-head {
  padding-bottom: 24px;
}

.resource-watch-head .eyebrow,
.resource-assessment .eyebrow {
  color: var(--aqua);
}

.resource-watch-head h2 {
  color: var(--white);
  font-size: 2.1rem;
}

.resource-watch > a {
  display: grid;
  gap: 6px;
  padding-block: 22px;
  border-top: 1px solid var(--line-dark);
}

.resource-watch > a > span,
.resource-watch > a > small {
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-watch > a > strong {
  max-width: 360px;
  color: var(--white);
  font-size: 1.05rem;
}

.resource-watch > a > small {
  color: #839aa3;
  text-transform: none;
}

.resource-library-head {
  display: grid;
  gap: 28px;
  margin-bottom: 46px;
}

.resource-library-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
}

.resource-library-proof span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.resource-library-layout {
  display: grid;
  gap: 34px;
}

.resource-topic-index {
  align-self: start;
  border-top: 3px solid var(--ink);
}

.resource-topic-index > p {
  padding-block: 16px;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.resource-topic-index a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-block: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 620;
}

.resource-topic-index a span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.67rem;
}

.resource-dossier-list {
  border-top: 1px solid var(--ink);
}

.resource-dossier-list > a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 20px;
  gap: 13px;
  align-items: start;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.resource-dossier-list > a > svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--blue-deep);
  transition: transform 180ms ease;
}

.resource-dossier-list > a:hover > svg {
  transform: translateX(4px);
}

.resource-dossier-index,
.resource-dossier-list small {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.resource-dossier-list h3 {
  max-width: 740px;
  margin: 7px 0 8px;
  font-size: clamp(1.4rem, 5vw, 2rem);
}

.resource-dossier-list p {
  max-width: 680px;
  color: var(--muted);
  font-size: 0.91rem;
}

.resource-guides {
  background: #edf1ef;
}

.resource-guide-grid {
  display: grid;
  gap: 12px;
}

.resource-guide-grid article {
  padding: 25px;
  border-top: 4px solid var(--blue-deep);
  background: var(--white);
}

.resource-guide-grid article:nth-child(2) {
  border-top-color: var(--teal);
}

.resource-guide-grid article:nth-child(3) {
  border-top-color: #9b7951;
}

.resource-guide-grid article > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.resource-guide-grid h3 {
  min-height: 2.2em;
  margin-top: 18px;
}

.resource-guide-grid ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.resource-guide-grid li {
  border-top: 1px solid var(--line);
}

.resource-guide-grid a {
  display: block;
  padding-block: 11px;
  color: #344a54;
  font-size: 0.86rem;
}

.resource-guide-grid a:hover {
  color: var(--blue-deep);
}

.resource-assessment {
  color: #c8d5d9;
  background: var(--ink);
}

.resource-assessment-inner {
  display: grid;
  gap: 36px;
  padding-block: 74px;
}

.resource-assessment h2 {
  max-width: 850px;
  color: var(--white);
}

.resource-assessment p {
  max-width: 690px;
}

.resource-assessment-actions {
  display: grid;
  gap: 18px;
  align-content: center;
}

.resource-assessment-actions .text-link {
  color: var(--aqua);
}

/* Sub-expertise, audit and sector landing pages */

.detail-opening {
  padding-block: 76px;
  border-bottom: 1px solid var(--line);
}

.detail-opening > .container {
  display: grid;
  gap: 38px;
}

.detail-opening-copy {
  max-width: 850px;
}

.detail-signature {
  display: grid;
  gap: 24px;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
}

.detail-signature > div {
  display: grid;
  gap: 5px;
}

.detail-signature span,
.detail-signature li {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-signature span {
  color: var(--aqua);
}

.detail-signature strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 520;
}

.detail-signature ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: rgba(255, 255, 255, 0.15);
  counter-reset: signature;
  list-style: none;
}

.detail-signature li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding: 10px 12px;
  background: var(--ink-soft);
  counter-increment: signature;
}

.detail-signature li::before {
  color: var(--aqua);
  content: counter(signature, decimal-leading-zero);
}

.detail-facts {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.detail-facts article {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  gap: 22px;
  padding: 20px;
  background: var(--white);
}

.detail-facts span,
.detail-method-grid article > span {
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-facts span {
  color: var(--teal);
}

.detail-facts strong {
  max-width: 320px;
  color: var(--ink);
  font-size: 0.94rem;
}

.detail-area-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  margin: 0;
  background: var(--line);
  counter-reset: area;
  list-style: none;
}

.detail-area-grid li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  color: var(--ink);
  background: #f7f9f8;
  counter-increment: area;
  font-size: 0.95rem;
  font-weight: 620;
}

.detail-area-grid li::before {
  display: block;
  margin: 0;
  color: var(--teal);
  content: counter(area, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.detail-output {
  background: var(--warm);
}

.detail-deliverables {
  padding: 0;
  margin: 0;
  border-top: 1px solid #bfc6c3;
  list-style: none;
}

.detail-deliverables li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding-block: 18px;
  border-bottom: 1px solid #bfc6c3;
}

.detail-deliverables span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.detail-deliverables strong {
  font-size: 0.93rem;
}

.detail-method-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: var(--line-dark);
}

.detail-method-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--ink-soft);
}

.detail-method-grid h3 {
  margin-top: 52px;
  color: var(--white);
}

.detail-method-grid p {
  color: #aebfc5;
  font-size: 0.88rem;
}

.detail-next {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.detail-next p {
  margin-bottom: 24px;
  color: var(--muted);
}

.detail-next .btn {
  width: 100%;
  margin-bottom: 14px;
}

.detail-next .text-link {
  display: flex;
  justify-content: space-between;
  padding-block: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
}

.detail-related {
  display: grid;
  gap: 0;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.detail-related > span {
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.detail-related a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-block: 9px;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 630;
}

.detail-related svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.detail-audit .detail-opening {
  background: #eaf1f2;
}

.detail-audit .detail-signature {
  background: #17364a;
}

.detail-audit .detail-signature li {
  background: #1f455b;
}

.detail-audit .detail-area-grid li::before,
.detail-audit .detail-facts span {
  color: var(--blue-deep);
}

.detail-sector .detail-opening {
  background: #f0ece4;
}

.detail-sector .detail-signature {
  background: #49392e;
}

.detail-sector .detail-signature li {
  background: #5b4636;
}

.detail-sector .detail-area-grid li::before,
.detail-sector .detail-facts span {
  color: #8a6846;
}

.resource-signature {
  padding-block: 62px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.resource-signature h2 {
  max-width: 760px;
  font-size: clamp(2rem, 7vw, 4rem);
}

.resource-signature p {
  max-width: 660px;
  color: var(--muted);
}

.signature-grid {
  display: grid;
  gap: 34px;
}

.scope-path,
.hds-chain,
.crisis-clock,
.regulation-status-band,
.dora-loop,
.product-lifecycle {
  display: grid;
  gap: 1px;
  padding: 1px;
  margin: 0;
  background: var(--line);
  list-style: none;
}

.scope-path li,
.hds-chain > div,
.crisis-clock > div,
.regulation-status-band > div,
.dora-loop > div,
.product-lifecycle > div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--white);
}

.scope-path span,
.hds-chain span,
.crisis-clock span,
.dora-loop span,
.product-lifecycle span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scope-path small,
.hds-chain small,
.crisis-clock small,
.dora-loop small {
  color: var(--muted);
  line-height: 1.4;
}

.resource-signature-nis2 {
  background: linear-gradient(130deg, #e8f1f5 0%, #f7f9f8 70%);
}

.resource-signature-nis2 .scope-path li:nth-child(2) {
  color: var(--white);
  background: var(--blue-deep);
}

.resource-signature-nis2 .scope-path li:nth-child(2) span,
.resource-signature-nis2 .scope-path li:nth-child(2) small {
  color: #c7e5ea;
}

.resource-signature-hds {
  color: var(--white);
  background: #173b3b;
}

.resource-signature-hds h2 {
  color: var(--white);
}

.resource-signature-hds .eyebrow {
  color: var(--aqua);
}

.hds-chain {
  margin-top: 34px;
  background: #496764;
}

.hds-chain > div {
  color: var(--white);
  background: #244b49;
}

.hds-chain > div:last-child {
  background: #2f7770;
}

.hds-chain span,
.hds-chain small {
  color: var(--white);
}

.resource-signature-crisis {
  color: var(--white);
  background: #1c252a;
}

.resource-signature-crisis h2 {
  color: var(--white);
}

.crisis-head {
  display: grid;
  gap: 20px;
}

.resource-signature-crisis p,
.resource-signature-crisis .eyebrow {
  color: #c0d0d4;
}

.crisis-clock {
  margin-top: 34px;
  background: #46555b;
}

.crisis-clock > div {
  background: #26343a;
}

.crisis-clock > div:first-child {
  border-top: 4px solid #d97864;
}

.crisis-clock strong {
  color: var(--white);
}

.crisis-clock span {
  color: #f0a18f;
}

.crisis-clock small {
  color: #a9bcc1;
}

.resource-signature-sovereignty {
  background: #f2eee5;
}

.sovereignty-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sovereignty-matrix > div {
  min-height: 130px;
  padding: 18px;
  border: 1px solid #cabfa9;
  background: #faf8f2;
}

.sovereignty-matrix strong,
.sovereignty-matrix span {
  display: block;
}

.sovereignty-matrix span {
  margin-top: 20px;
  color: #6d665b;
  font-size: 0.75rem;
}

.resource-signature-ai {
  color: var(--white);
  background: radial-gradient(circle at 85% 15%, #5363a1 0, #242d58 36%, #171e3d 75%);
}

.resource-signature-ai h2 {
  color: var(--white);
}

.resource-signature-ai p,
.resource-signature-ai .eyebrow {
  color: #c9d1f0;
}

.ai-status-head {
  display: grid;
  gap: 22px;
}

.regulation-status-band {
  margin-top: 36px;
  background: #515c84;
}

.regulation-status-band > div {
  background: rgba(20, 27, 58, 0.86);
}

.regulation-status-band > div.is-current {
  background: #f1f3ff;
}

.regulation-status-band time,
.regulation-status-band strong,
.regulation-status-band span {
  display: block;
}

.regulation-status-band time {
  color: #96a7e7;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.regulation-status-band .is-current time {
  color: #46527f;
}

.regulation-status-band strong {
  color: var(--white);
}

.regulation-status-band span {
  color: #bac4e3;
  font-size: 0.76rem;
}

.regulation-status-band .is-current strong {
  color: #1e2954;
}

.regulation-status-band .is-current span {
  color: #596383;
}

.ai-article-layout {
  display: grid;
  gap: 40px;
}

.ai-risk-stack {
  display: grid;
  gap: 6px;
  margin-block: 34px;
}

.ai-risk-stack > div {
  display: grid;
  gap: 5px;
  padding: 16px 20px;
  color: var(--white);
  background: #26335d;
}

.ai-risk-stack > div:nth-child(1) { width: 55%; background: #8d3f4b; }
.ai-risk-stack > div:nth-child(2) { width: 70%; background: #a05c39; }
.ai-risk-stack > div:nth-child(3) { width: 85%; background: #4c5f99; }
.ai-risk-stack > div:nth-child(4) { width: 100%; background: #49756f; }

.ai-risk-stack span {
  color: var(--white);
  font-size: 0.76rem;
}

.article-body p a:not(.btn):not(.text-link),
.article-body li a:not(.btn):not(.text-link) {
  color: var(--blue-deep);
  font-weight: 620;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ai-act-aside {
  align-self: start;
  padding: 25px;
  color: var(--white);
  background: #1a2348;
}

.ai-act-aside .mono-note {
  color: #a9b9ee;
}

.ai-act-aside ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 18px 0 30px;
  list-style: none;
}

.ai-act-aside li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid #45517b;
}

.ai-act-aside li span {
  color: #91a7eb;
  font-family: var(--mono);
}

.ai-act-aside .source-note {
  border-top-color: #45517b;
}

.ai-act-aside a {
  color: #cbd7ff;
}

.resource-signature-dora {
  color: var(--white);
  background: #183a58;
}

.resource-signature-dora h2 { color: var(--white); }
.resource-signature-dora .eyebrow { color: #9fd5ef; }

.dora-loop {
  margin-top: 34px;
  background: #53738b;
}

.dora-loop > div {
  color: var(--white);
  background: #224b69;
}

.dora-loop span,
.dora-loop small { color: #b9d9ea; }

.resource-signature-cra {
  background: #e9f1ed;
}

.product-lifecycle {
  background: #94aaa0;
}

.product-lifecycle > div {
  background: #f8fbf9;
}

.product-lifecycle span { color: #3c7165; }

.resource-card-featured {
  color: var(--white);
  border-color: #26335d;
  background: #26335d;
}

.resource-card-featured h3,
.resource-card-featured .text-link {
  color: var(--white);
}

.resource-card-featured p,
.resource-card-featured .insight-meta {
  color: #cad3ee;
}

.page-ressources-nis2 .article-aside { border-top: 5px solid #3d7e9e; }
.page-ressources-hds .article-aside { border-top: 5px solid #2f7770; }
.page-ressources-apres-piratage .article-aside { border-top: 5px solid #bd604f; }
.page-ressources-souverainete-numerique .article-aside { border-top: 5px solid #9e8760; }
.page-ressources-dora .article-aside { border-top: 5px solid #386d91; }
.page-ressources-cra .article-aside { border-top: 5px solid #4c8074; }

.resource-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.resource-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.resource-card h3 {
  font-size: 1.55rem;
}

.resource-card p {
  color: var(--muted);
}

.resource-card .text-link {
  margin-top: auto;
}

.section-link {
  margin-top: 30px;
}

.source-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.source-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.source-list a,
.source-list span {
  display: block;
}

.source-list a {
  color: var(--blue-deep);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: #9ab9ce;
  text-underline-offset: 3px;
}

.source-list span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.source-note {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.source-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.notice-alert {
  border-left-color: var(--alert);
}

.delivery-visual {
  display: grid;
  min-height: 330px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-content: center;
  padding: 28px;
  color: var(--white);
  background: var(--ink-soft);
}

.delivery-core {
  grid-column: 1 / -1;
  padding: 22px;
  border-left: 3px solid var(--aqua);
  background: var(--ink-lift);
}

.delivery-core span,
.delivery-core strong,
.delivery-node span,
.delivery-node small {
  display: block;
}

.delivery-core span,
.delivery-node small {
  color: #a9bdc3;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.delivery-core strong {
  margin-top: 5px;
  font-size: 1.35rem;
}

.delivery-node {
  min-width: 0;
  padding: 18px 12px;
  border: 1px solid var(--line-dark);
}

.delivery-node span {
  margin-bottom: 7px;
  color: var(--white);
  font-weight: 650;
}

.delivery-model-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.boundary-grid {
  display: grid;
  gap: 14px;
}

.boundary-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.boundary-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-model-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.delivery-model-card > span {
  display: block;
  margin-bottom: 40px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assessment-callout {
  color: #c4d2d6;
  background: var(--ink);
}

.assessment-callout h2 {
  color: var(--white);
}

.assessment-callout .eyebrow,
.page-hero .eyebrow {
  color: var(--aqua);
}

.assessment-callout .lead {
  color: #b8c8cd;
}

.assessment-callout-grid,
.assessment-callout-side {
  display: grid;
  gap: 34px;
}

.assessment-facts {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line-dark);
}

.assessment-facts li {
  display: grid;
  gap: 2px;
  padding: 18px;
  background: var(--ink-soft);
}

.assessment-facts strong {
  color: var(--white);
}

.assessment-facts span {
  color: #a9bdc3;
  font-size: 0.88rem;
}

.assessment-section {
  min-height: 680px;
  background: var(--paper);
}

.assessment-intro-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.assessment-intro-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.assessment-catalog {
  display: grid;
  gap: 14px;
}

/* La barre filtres+recherche n'est collante qu'en desktop : empilée sur mobile,
   elle occuperait plus de la moitié de l'écran en position sticky. */
.assessment-toolbar {
  display: grid;
  gap: 10px;
  padding: 14px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

/* Version compacte du champ de recherche, limitée à la barre d'outils */
.assessment-toolbar .assessment-search label {
  font-size: 0.77rem;
}

.assessment-toolbar .assessment-search input {
  min-height: 38px;
  padding: 8px 11px;
}

.assessment-filters {
  display: flex;
  gap: 7px;
  padding-bottom: 4px;
  overflow-x: auto;
}

.assessment-filters button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.77rem;
  font-weight: 650;
}

.assessment-filters button[aria-pressed="true"] {
  color: var(--white);
  border-color: var(--blue-deep);
  background: var(--blue-deep);
}

.assessment-search {
  min-width: 0;
}

.assessment-count {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.assessment-choice {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.assessment-choice-head {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.assessment-code {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0;
  padding: 6px 9px;
  color: var(--teal);
  border: 1px solid #9fc5c3;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.assessment-domain {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.assessment-empty {
  padding: 30px;
  border: 1px dashed #9eb0b5;
  text-align: center;
}

.assessment-choice p {
  color: var(--muted);
}

.assessment-choice ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: auto 0 24px;
  list-style: none;
}

.assessment-choice li {
  padding: 5px 8px;
  color: #4c626b;
  border: 1px solid var(--line);
  font-size: 0.74rem;
}

.assessment-choice .btn {
  width: 100%;
}

.assessment-protection {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}

.assessment-protection div {
  padding: 18px;
  background: #edf2f1;
}

.assessment-protection strong,
.assessment-protection span {
  display: block;
}

.assessment-protection span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.assessment-workspace,
.assessment-result,
.assessment-confirmation {
  max-width: 1040px;
  margin-inline: auto;
}

.assessment-progress-head {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.assessment-progress-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 7vw, 3rem);
}

.assessment-progress-count {
  flex: 0 0 auto;
  text-align: right;
}

.assessment-progress-count strong,
.assessment-progress-count span {
  display: block;
}

.assessment-progress-count strong {
  color: var(--ink);
  font-family: var(--mono);
}

.assessment-progress-count span {
  color: var(--muted);
  font-size: 0.8rem;
}

.assessment-stepper {
  display: flex;
  gap: 8px;
  padding: 2px 2px 10px;
  margin: 0 0 10px;
  overflow-x: auto;
  list-style: none;
}

.assessment-stepper button {
  min-width: 132px;
  padding: 10px 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.78rem;
  text-align: left;
}

.assessment-stepper button[aria-current="step"] {
  color: var(--ink);
  border-color: var(--teal);
  background: var(--white);
}

.assessment-stepper button:disabled {
  cursor: default;
  opacity: 0.54;
}

.assessment-meter {
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 28px;
  overflow: hidden;
  appearance: none;
  border: 0;
  background: var(--line);
}

.assessment-meter::-webkit-progress-bar {
  background: var(--line);
}

.assessment-meter::-webkit-progress-value {
  background: var(--teal);
}

.assessment-meter::-moz-progress-bar {
  background: var(--teal);
}

.assessment-question-form {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.assessment-questions {
  display: grid;
  gap: 30px;
}

.assessment-question {
  padding: 0;
  border: 0;
}

.assessment-question legend {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.35;
}

.assessment-question-note {
  display: block;
  margin: -7px 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.assessment-options {
  display: grid;
  gap: 8px;
}

.assessment-option {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid var(--line);
  background: #fafcfc;
  cursor: pointer;
}

.assessment-option:has(input:checked) {
  border-color: var(--teal);
  background: #edf6f4;
}

.assessment-option input {
  flex: 0 0 auto;
  margin-top: 4px;
}

.assessment-option span {
  color: #314751;
  line-height: 1.45;
}

.assessment-actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  margin-top: 32px;
}

.assessment-error {
  margin-top: 18px;
  color: var(--alert);
  font-weight: 600;
}

.score-panel {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 28px;
  color: var(--text);
  border: 1px solid var(--line);
  border-left: 7px solid var(--score-color, var(--teal));
  background: var(--white);
}

.score-panel[data-tone="high"] {
  --score-color: #176a58;
}

.score-panel[data-tone="mid"] {
  --score-color: #b06a12;
}

.score-panel[data-tone="low"] {
  --score-color: #9a3f35;
}

.score-panel h2 {
  font-size: clamp(2rem, 8vw, 3.8rem);
}

.score-disc {
  display: grid;
  width: 138px;
  height: 138px;
  place-content: center;
  border: 10px solid color-mix(in srgb, var(--score-color, var(--teal)) 25%, white);
  border-top-color: var(--score-color, var(--teal));
  border-radius: 50%;
  text-align: center;
}

.score-disc strong {
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1;
}

.score-disc span {
  color: var(--muted);
  font-size: 0.78rem;
}

.scope-result {
  padding: 13px;
  border-left: 3px solid var(--score-color, var(--teal));
  background: var(--paper);
  font-weight: 650;
}

.result-analysis {
  display: grid;
  gap: 40px;
  padding-block: 40px;
}

.dimension-list,
.priority-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.dimension-item {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.dimension-head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 9px;
}

.dimension-head strong:last-child {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.77rem;
}

.dimension-bar {
  display: block;
  width: 100%;
  height: 7px;
  overflow: hidden;
  appearance: none;
  border: 0;
  background: var(--line);
}

.dimension-bar::-webkit-progress-bar {
  background: var(--line);
}

.dimension-bar::-webkit-progress-value {
  background: currentColor;
}

.dimension-bar::-moz-progress-bar {
  background: currentColor;
}

.dimension-item[data-tone="high"] .dimension-bar {
  color: #176a58;
}

.dimension-item[data-tone="mid"] .dimension-bar {
  color: #b06a12;
}

.dimension-item[data-tone="low"] .dimension-bar {
  color: #9a3f35;
}

.dimension-item p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.priority-list {
  counter-reset: priority;
}

.priority-item {
  position: relative;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  background: var(--white);
  counter-increment: priority;
}

.priority-item::before {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--teal);
  content: counter(priority, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.priority-item strong,
.priority-item span {
  display: block;
}

.priority-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.result-grid {
  display: grid;
  gap: 32px;
  margin-top: 24px;
}

.assessment-lead-form {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.assessment-confirmation {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

@media (min-width: 620px) {
  .container {
    width: min(100% - 64px, var(--container));
  }

  .hero-actions,
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

  .proof-item {
    padding: 18px;
    border-right: 1px solid var(--line-dark);
  }

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .system-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-core,
  .map-caption {
    grid-column: 1 / -1;
  }

  .deliverable-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .context-grid,
  .insight-grid,
  .feature-grid,
  .standard-grid,
  .regulation-grid,
  .governance-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .field-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .scope-path,
  .hds-chain,
  .crisis-clock,
  .regulation-status-band,
  .dora-loop,
  .product-lifecycle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-card-featured {
    grid-column: 1 / -1;
  }

  .resource-lead,
  .resource-watch {
    padding: 34px;
  }

  .resource-library-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .resource-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-guide-grid article:last-child {
    grid-column: 1 / -1;
  }

  .detail-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-signature {
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
  }

  .detail-signature ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-area-grid,
  .detail-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .delivery-model-grid,
  .boundary-grid,
  .assessment-catalog,
  .assessment-protection {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-model-grid,
  .assessment-protection {
    grid-template-columns: repeat(3, 1fr);
  }

  .assessment-actions {
    flex-direction: row;
    justify-content: space-between;
  }

  .score-panel {
    grid-template-columns: auto 1fr;
    padding: 40px;
  }
}

@media (min-width: 960px) {
  .section {
    padding-block: 116px;
  }

  .assessment-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .assessment-toolbar {
    position: sticky;
    z-index: 40;
    top: 77px;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: end;
    padding: 14px 18px;
    box-shadow: 0 10px 24px -18px rgba(7, 28, 39, 0.35);
  }

  .assessment-count {
    grid-column: 1 / -1;
  }

  .resource-command {
    padding-block: 96px;
  }

  .resource-command-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  }

  .resource-lead,
  .resource-watch {
    min-height: 620px;
  }

  .resource-library-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 72px;
  }

  .resource-topic-index {
    position: sticky;
    top: 130px;
  }

  .resource-dossier-list > a {
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    gap: 20px;
    padding-block: 30px;
  }

  .resource-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .resource-guide-grid article:last-child {
    grid-column: auto;
  }

  .resource-assessment-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 80px;
    padding-block: 94px;
  }

  .detail-opening {
    padding-block: 98px;
  }

  .detail-opening > .container {
    gap: 58px;
  }

  .detail-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .signature-grid,
  .ai-status-head,
  .crisis-head {
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    gap: 80px;
    align-items: end;
  }

  .scope-path,
  .crisis-clock,
  .regulation-status-band,
  .product-lifecycle {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hds-chain,
  .dora-loop {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hds-chain > div,
  .dora-loop > div {
    min-height: 180px;
    align-content: end;
  }

  .ai-article-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 90px;
  }

  .ai-act-aside {
    position: sticky;
    top: 155px;
  }

  h1 {
    font-size: clamp(4.1rem, 6vw, 6.25rem);
  }

  h2 {
    font-size: clamp(3rem, 4.2vw, 4.35rem);
  }

  .utility-bar {
    display: block;
    color: #91a4ab;
    background: var(--ink);
  }

  .utility-inner {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 0.61rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .utility-inner span:last-child {
    color: var(--aqua);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    height: 33px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    padding: 0;
    overflow: visible;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .site-nav > a,
  .site-nav > details > summary {
    min-height: auto;
    padding: 11px 12px;
    border: 0;
    font-size: 0.83rem;
    font-weight: 580;
  }

  .site-nav > a:hover,
  .site-nav > details > summary:hover,
  .site-nav > a[aria-current="page"],
  .site-nav > details.is-current > summary {
    color: var(--blue-deep);
  }

  .site-nav > a[aria-current="page"],
  .site-nav > details.is-current > summary {
    box-shadow: inset 0 -2px var(--blue);
  }

  .site-nav > details {
    position: relative;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: -130px;
    display: grid;
    width: 620px;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-panel::before {
    position: absolute;
    top: -19px;
    right: 0;
    left: 0;
    height: 19px;
    content: "";
  }

  .nav-panel a {
    padding: 12px;
  }

  .nav-panel a:hover {
    background: var(--paper);
  }

  .nav-panel a[aria-current="page"] {
    padding-left: 12px;
  }

  .nav-cta {
    min-height: 44px !important;
    margin: 0 0 0 7px;
    padding-inline: 17px !important;
    color: var(--white) !important;
    background: var(--blue);
  }

  .nav-cta:hover {
    color: var(--white) !important;
    background: var(--blue-deep);
  }

  .nav-cta[aria-current="page"] {
    box-shadow: inset 0 -4px var(--aqua);
  }

  .hero-home {
    min-height: min(760px, calc(100svh - 111px));
  }

  .hero-layout {
    min-height: inherit;
  }

  .hero-content {
    display: flex;
    min-width: 0;
    width: min(100% - 64px, var(--container));
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 6svh, 64px) 0;
  }

  /* La colonne de texte s'arrête à la frontière de l'image (left: 46%), quel que
     soit l'écran. Un padding en % du viewport écrasait la colonne au-delà de
     ~1500px (conteneur fixe + padding proportionnel → 6 lignes de titre). */
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .hero-intro,
  .hero-content .hero-actions {
    max-width: min(556px, calc(46vw - 56px));
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, min(4.8vw, 8svh), 4.6rem);
  }

  .hero-intro {
    margin-bottom: clamp(14px, 2.8svh, 30px);
    font-size: clamp(0.98rem, 2.3svh, 1.31rem);
  }

  .hero-media {
    /* Au-delà de la largeur du conteneur, 46vw s'éloigne du texte : on cale la
       frontière sur le centre pour garder une colonne de texte constante. */
    left: max(46%, calc(50% - 40px));
  }

  .hero-media::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, var(--ink), transparent 28%);
    content: "";
  }

  .hero-media::after {
    display: none;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .proof-rail {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-item,
  .proof-item:nth-child(2n) {
    padding: 20px 24px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .proof-item:last-child {
    border-right: 0;
  }

  .statement {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 0.86fr);
    gap: 90px;
    align-items: center;
  }

  .system-map {
    padding: 22px;
  }

  .section-heading.split-copy {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.75fr);
    gap: 80px;
    align-items: end;
  }

  .section-heading.split-copy p {
    margin-bottom: 22px;
  }

  .pillar {
    grid-template-columns: 50px minmax(0, 0.93fr) minmax(380px, 0.87fr);
    gap: 38px;
    align-items: center;
    padding-block: 72px;
  }

  .pillar:nth-child(even) .pillar-visual {
    grid-column: 2;
    grid-row: 1;
  }

  .pillar:nth-child(even) .pillar-copy {
    grid-column: 3;
    grid-row: 1;
  }

  .pillar:nth-child(even) .pillar-number {
    grid-column: 1;
  }

  .pillar-visual,
  .pillar-visual img,
  .engineering-visual,
  .governance-visual,
  .delivery-visual {
    min-height: 430px;
  }

  .model-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .model-step {
    display: block;
    padding: 32px 25px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .model-step:last-child {
    border-right: 0;
  }

  .model-step > span {
    display: block;
    margin-bottom: 54px;
  }

  .deliverable-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .compliance-feature {
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  }

  .compliance-media,
  .compliance-media img {
    min-height: 660px;
  }

  .compliance-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 64px;
  }

  .context-grid,
  .insight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .context-card {
    min-height: 310px;
    padding: 32px;
  }

  .insight-card {
    min-height: 390px;
    padding: 30px;
  }

  .insight-meta {
    margin-bottom: 90px;
  }

  .cta-inner {
    padding-block: 100px;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 55px;
    padding-block: 72px 52px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .legal-row .copyright {
    flex-basis: auto;
    margin-right: auto;
  }

  .page-hero {
    min-height: min(520px, calc(100svh - 148px));
    padding-block: clamp(36px, 6svh, 68px);
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 90px;
  }

  .page-hero-aside {
    display: block;
    align-self: end;
    padding: 16px;
    border: 1px solid var(--line-dark);
    background: rgba(13, 43, 56, 0.62);
  }

  .page-hero-mobile-note {
    display: none;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, min(4.5vw, 7.4svh), 4.75rem);
  }

  .anchor-nav {
    top: 78px;
  }

  .anchor-nav-inner {
    width: min(100% - 64px, var(--container));
    min-width: 0;
    margin-inline: auto;
  }

  .anchor-nav a {
    padding: 17px 20px;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
    gap: 90px;
  }

  .content-split {
    grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
    gap: 95px;
    align-items: start;
  }

  .feature-grid,
  .regulation-grid,
  .governance-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .standard-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 54px;
  }

  .contact-panel {
    padding: 44px;
  }

  .outsourcing-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
    padding: 38px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 90px;
  }

  .assessment-callout-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
    gap: 90px;
    align-items: center;
  }

  .delivery-model-card,
  .assessment-choice {
    padding: 32px;
  }

  .assessment-question-form,
  .assessment-lead-form {
    padding: 40px;
  }

  .assessment-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1.2fr);
    gap: 54px;
    align-items: start;
  }

  .article-aside {
    position: sticky;
    top: 155px;
  }
}

@media (min-width: 1220px) {
  .site-nav > a,
  .site-nav > details > summary {
    padding-inline: 16px;
    font-size: 0.87rem;
  }
}

@media (min-width: 960px) and (max-height: 820px) {
  .hero-content {
    padding-block: 32px;
  }

  .hero-content .eyebrow {
    margin-bottom: 12px;
  }

  .hero-content h1 {
    margin-bottom: 14px;
    font-size: clamp(2.9rem, 4.4vw, 3.7rem);
  }

  .hero-intro {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 10px 13px;
    font-size: 0.82rem;
  }

  .page-hero {
    padding-block: 38px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 4.1vw, 3.8rem);
  }
}

@media (max-width: 959px) and (max-height: 700px) {
  .hero-content {
    padding-block: 18px;
  }

  .hero-content .eyebrow,
  .page-hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.61rem;
  }

  .hero-content h1,
  .page-hero h1 {
    margin-bottom: 11px;
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .hero-intro {
    margin-bottom: 16px;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .hero-actions {
    gap: 7px;
  }

  .hero-actions .btn {
    min-height: 42px;
    padding-block: 9px;
    font-size: 0.82rem;
  }

  .page-hero {
    padding-block: 17px;
  }

  .breadcrumbs {
    margin-bottom: 10px;
    font-size: 0.57rem;
  }

  .page-hero-grid {
    gap: 12px;
  }

  .page-hero .lead {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .page-hero-mobile-note {
    padding-block: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Language selector: both options remain visible and the active language is explicit. */
.nav-languages {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.nav-languages span[aria-current="true"] {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.nav-languages span[aria-hidden="true"] {
  color: #87979b;
}

.nav-languages a {
  color: var(--muted);
}

/* Micro-copy remains legible at normal zoom, including compact viewport rules. */
.eyebrow,
  .hero-content .eyebrow,
  .page-hero .eyebrow,
  .breadcrumbs,
  .proof-item span,
  .map-core span,
  .tag-list li,
  .page-visual .visual-label,
  .engineering-layer span:first-child,
  .insight-meta,
  .scope-table th,
  .timeline-index,
  .company-summary-head span,
  .offer-summary .feature-index,
  .footer-col h2,
  .page-hero-aside p:first-child,
  .page-hero-mobile-note p:first-child,
  .detail-facts span,
  .detail-method-grid article > span,
  .detail-area-grid li::before,
  .detail-deliverables span,
  .detail-related > span,
  .product-lifecycle span,
  .delivery-node small,
  .resource-lead-map,
  .resource-watch > a > small,
  .resource-library-proof span,
  .resource-topic-index > p,
  .resource-topic-index a span,
  .resource-dossier-list small,
  .resource-guide-grid article > span,
  .assessment-domain,
  .utility-inner,
  .mono-note {
  font-size: max(0.72rem, 12px);
}

@media (min-width: 960px) {
  .nav-languages {
    margin-left: 6px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 16mm 15mm 18mm;
  }

  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html {
    font-size: 10.5pt;
  }

  body {
    color: #152229;
    background: #fff;
  }

  .utility-bar,
  .site-header,
  .page-hero-mobile-note,
  .anchor-nav,
  .contact-cta,
  .site-footer,
  .resource-assessment,
  .skip-link,
  .btn,
  [data-track] {
    display: none !important;
  }

  .page-hero,
  .section,
  .resource-signature,
  .article-layout,
  .detail-opening,
  .detail-output,
  .detail-method,
  .detail-boundary {
    padding-block: 9mm !important;
    color: #152229 !important;
    border-color: #bbc5c8 !important;
    background: #fff !important;
  }

  .page-hero {
    display: block;
    min-height: 0;
  }

  .page-hero h1,
  .page-hero .lead,
  .detail-method h2,
  .detail-method h3,
  .detail-method p {
    color: #152229 !important;
  }

  .page-hero-aside {
    display: block;
    padding: 5mm;
    border: 1px solid #bbc5c8;
  }

  .page-hero-grid,
  .content-split,
  .article-layout,
  .signature-grid,
  .detail-opening > .container {
    display: block !important;
  }

  .article-aside {
    position: static;
    margin-top: 8mm;
  }

  .ai-act-aside,
  .dora-aside,
  .cra-aside,
  .source-note {
    position: static !important;
    break-inside: avoid;
  }

  .resource-card,
  .resource-guide-grid article,
  .detail-facts article,
  .detail-area-grid li,
  .detail-deliverables li,
  .detail-method-grid article,
  .article-section,
  figure,
  table {
    break-inside: avoid;
  }

  h1,
  h2,
  h3 {
    break-after: avoid;
  }

  .resource-source-list a[href^="http"]::after,
  .article-aside a[href^="http"]::after,
  .source-note a[href^="http"]::after {
    color: #53636a;
    content: " (" attr(href) ")";
    font-family: var(--mono);
    font-size: 8pt;
    font-weight: 400;
    overflow-wrap: anywhere;
  }

  .detail-signature,
  .detail-signature li,
  .detail-method-grid article {
    color: #152229 !important;
    border: 1px solid #bbc5c8;
    background: #fff !important;
  }
}
