/* Deferred non-critical styles; loaded after the inline critical path. */
.homepage-feeds { display: grid; gap: clamp(54px, 7vw, 88px); padding-block: clamp(64px, 8vw, 108px); border-top: 1px solid var(--line); }
.homepage-feed-section { display: grid; gap: 26px; }
.homepage-feed-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.homepage-feed-heading h2 { max-width: 18ch; margin: 8px 0 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.02; }
.homepage-feed-heading > a { flex: 0 0 auto; padding-bottom: 7px; border-bottom: 1px solid currentColor; color: var(--accent, var(--coral)); font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.homepage-feed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.homepage-feed-card { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto 1fr auto; min-width: 0; min-height: 310px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-light, #fff); transition: background-color .2s ease, transform .2s ease; }
.homepage-feed-card:hover { background: #fff; transform: translateY(-3px); }
.homepage-feed-topline, .homepage-feed-action { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--ink-soft, var(--muted)); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.homepage-feed-topline span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.homepage-feed-topline time { flex: 0 0 auto; }
.homepage-feed-card h3 { margin: 27px 0 14px; font-size: clamp(21px, 2.2vw, 28px); line-height: 1.08; }
.homepage-feed-card > p { display: -webkit-box; margin: 0 0 24px; overflow: hidden; color: var(--ink-soft, var(--muted)); font-size: 14px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.homepage-feed-action { align-self: end; padding-top: 16px; border-top: 1px solid var(--line); color: var(--accent, var(--coral)); }
.homepage-feed-action b { font-size: 18px; }
.homepage-feed-empty { margin: 0; padding: 30px; border: 1px solid var(--line); background: var(--paper-light, #fff); color: var(--ink-soft, var(--muted)); }
@media (max-width: 860px) { .homepage-feed-grid { grid-template-columns: 1fr; } .homepage-feed-card { min-height: 0; } }
@media (max-width: 620px) { .homepage-feed-heading { align-items: start; flex-direction: column; gap: 16px; } .homepage-feed-card { padding: 20px; } }

:root {
  --paper: #f4f0e8;
  --paper-deep: #e6dfd2;
  --paper-light: #fbf9f4;
  --ink: #0c131f;
  --ink-soft: #515b68;
  --night: #0c131f;
  --night-2: #14283a;
  --line: #cfc7ba;
  --accent: #0075a9;
  --accent-dark: #005b84;
  --gold: #d6a72b;
  --green: #1f7568;
  --aqua: #65b4cf;
  --floating-control-bottom: 14px;
  --page-top-space: clamp(48px, 5vw, 72px);
  --page-bottom-space: clamp(64px, 7vw, 88px);
  --page-top-gap: clamp(32px, 4vw, 52px);
  --font-display: system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: var(--font-sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-optical-sizing: auto;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: rgba(0, 117, 169, .2); }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.shell-wide { width: min(1440px, 100%); margin-inline: auto; }
.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;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
h1, h2, h3, p { text-wrap: pretty; }
h1 { text-wrap: balance; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 480;
  letter-spacing: -.045em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, .95);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 78px;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}
.brand-primary {
  display: block;
  width: 255px;
  height: 67px;
}
.brand-symbol {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 58px;
  height: 58px;
  padding: 10px;
}
.brand-symbol i { border-radius: 3px; background: var(--ink); }
.brand-symbol i:nth-child(2) { background: var(--accent); }
.brand-compact .brand-primary { display: none; }
.brand-compact .brand-symbol { display: grid; }
.brand-edition {
  padding: 5px 0 5px 11px;
  border-left: 1px solid var(--line);
  color: var(--accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.15;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  color: #42534d;
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a { padding-block: 8px; transition: color .18s ease; }
.desktop-nav a:hover { color: var(--accent); }
.locale-switcher { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; padding: 4px 8px; border: 1px solid var(--line); background: transparent; color: var(--ink); }
.locale-switcher-mark { color: var(--accent); font-size: 15px; line-height: 1; }
.locale-switcher select { appearance: none; min-width: 72px; border: 0; outline: 0; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='m3 4 3 3 3-3' fill='none' stroke='%230c131f' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right center; color: inherit; cursor: pointer; font: 800 10px/1 var(--font-sans); letter-spacing: .06em; padding: 7px 17px 7px 0; text-transform: uppercase; }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 205px;
  padding: 12px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 780;
  transition: transform .18s ease, background .18s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--accent); }
.mobile-nav { display: none; margin-left: auto; }
.mobile-menu-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.mobile-menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: top .18s ease, transform .18s ease;
}
.mobile-menu-toggle span:first-child { top: 18px; }
.mobile-menu-toggle span:last-child { top: 27px; }
.mobile-menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-nav > nav {
  position: absolute;
  top: 79px;
  left: 0;
  right: 0;
  display: grid;
  padding: 18px 24px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 24px 50px rgba(18, 35, 31, .16);
}
.mobile-nav > nav > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.mobile-nav > nav > a::after { content: "→"; color: var(--accent); }
.mobile-nav > nav > .mobile-decision-link {
  margin-top: 12px;
  padding-inline: 14px;
  border: 0;
  background: var(--accent);
  color: #fff;
}
.mobile-nav > nav > .mobile-decision-link::after { color: #fff; }

.hero {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
  gap: 76px;
  min-height: 0;
  padding-block: var(--page-top-space) var(--page-bottom-space);
}
.eyebrow,
.kicker,
.micro-label {
  margin: 0 0 20px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #405049;
}
.eyebrow-node {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 117, 169, .12);
}
.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 430;
  letter-spacing: -.06em;
  line-height: .99;
}
.hero h1 em {
  position: relative;
  color: var(--accent);
  font-style: normal;
  font-weight: 520;
}
.hero-lede {
  max-width: 570px;
  margin: 30px 0 34px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.68;
}
.hero-actions,
.closing-cta > div:last-child {
  display: flex;
  align-items: center;
  gap: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 190px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 12px;
  font-weight: 780;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover { background: var(--accent-dark); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: #fff; }
.button-dark { background: var(--ink); color: #fff; }
.text-link {
  display: inline-flex;
  gap: 26px;
  padding: 9px 0;
  border-bottom: 1px solid #7e817b;
  font-size: 12px;
  font-weight: 760;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  color: #52615b;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-proof span { display: flex; align-items: center; gap: 7px; }
.hero-proof span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid #a3a79e;
  border-radius: 50%;
  color: var(--green);
  font-size: 8px;
}
.hero-decision-entries {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  background: var(--night);
  color: #fff;
  box-shadow: 20px 22px 0 #d8d0c2;
}
.hero-decision-entries::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255, 255, 255, .3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-decision-entries > * { position: relative; }
.hero-decision-entries .micro-label { margin-bottom: 12px; color: var(--aqua); }
.hero-decision-entries h2 { max-width: 470px; margin: 0 0 28px; font-size: clamp(31px, 3.2vw, 43px); line-height: 1.04; }
.hero-decision-entries > div { border-top: 1px solid #3b5264; }
.hero-decision-entries a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 22px;
  grid-template-rows: auto auto;
  gap: 5px 12px;
  padding: 18px 0;
  border-bottom: 1px solid #3b5264;
  transition: color .16s ease, padding .16s ease;
}
.hero-decision-entries a:hover { padding-inline: 8px; color: var(--aqua); }
.hero-decision-entries a > span { grid-row: 1 / 3; color: var(--aqua); font-size: 9px; font-weight: 820; }
.hero-decision-entries a > strong { font-family: var(--font-display); font-size: 19px; line-height: 1.2; }
.hero-decision-entries a > small { color: #aebdc8; font-size: 10px; line-height: 1.5; }
.hero-decision-entries a > b { grid-column: 3; grid-row: 1 / 3; align-self: center; color: var(--aqua); }

.usage-proof-section {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 110px;
}
.usage-proof-copy h2 { max-width: 570px; margin: 0; font-size: clamp(42px, 5vw, 64px); line-height: 1.02; }
.usage-proof-copy > p:last-of-type { margin: 28px 0 32px; color: var(--ink-soft); line-height: 1.7; }
.usage-proof-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.usage-proof-result { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); box-shadow: 18px 20px 0 var(--paper-deep); }
.usage-proof-result article { min-width: 0; min-height: 230px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.usage-proof-result article > span { color: var(--accent); font-size: 9px; font-weight: 820; letter-spacing: .1em; }
.usage-proof-result article > strong { display: block; margin: 24px 0; font-family: var(--font-display); font-size: clamp(53px, 6vw, 76px); font-weight: 520; letter-spacing: -.06em; line-height: .86; }
.usage-proof-result article > strong small { font-size: 14px; letter-spacing: 0; }
.usage-proof-result article > p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.usage-proof-result .usage-proof-decision { grid-column: 1 / -1; min-height: 190px; background: var(--night); color: #fff; }
.usage-proof-result .usage-proof-decision > span { color: var(--aqua); }
.usage-proof-result .usage-proof-decision > strong { margin: 18px 0; font-size: clamp(29px, 4vw, 44px); letter-spacing: -.04em; line-height: 1; }
.usage-proof-result .usage-proof-decision > p { color: #c6d2dc; }

.decision-lab {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: #fff;
  box-shadow: 20px 22px 0 #d8d0c2;
}
.decision-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .25) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.lab-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 15px 19px;
  border-bottom: 1px solid #345047;
  color: #aab7b2;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lab-head div { display: flex; align-items: center; gap: 9px; }
.live-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55d1aa;
  box-shadow: 0 0 0 4px rgba(85, 209, 170, .14);
}
.lab-body { position: relative; padding: 25px; }
.lab-label {
  margin: 0 0 10px;
  color: #7f9890;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: .11em;
}
.profile-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.profile-tabs button {
  min-height: 38px;
  border: 1px solid #36534a;
  background: #1a352f;
  color: #bdcbc6;
  cursor: pointer;
  font-size: 9px;
  font-weight: 720;
  transition: background .15s ease, border-color .15s ease;
}
.profile-tabs button:hover { border-color: #66857a; }
.profile-tabs button.selected { border-color: var(--accent); background: var(--accent); color: #fff; }
.range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 20px;
  margin-top: 24px;
}
.range-grid label > span {
  display: flex;
  justify-content: space-between;
  color: #91a59e;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.range-grid label b { color: #fff; font-size: 10px; }
.range-grid input { width: 100%; margin-top: 10px; accent-color: var(--accent); cursor: pointer; }
.score-plot { margin-top: 25px; }
.score-axis {
  display: flex;
  justify-content: space-between;
  color: #728a82;
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.score-track { position: relative; height: 8px; margin-top: 10px; background: #29463e; }
.score-track i {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: width .25s ease;
}
.score-track b {
  position: absolute;
  top: -12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--night);
  border-radius: 50%;
  background: #fff;
  color: var(--night);
  font-size: 9px;
  transform: translateX(-50%);
  transition: left .25s ease;
}
.lab-result {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
  align-items: center;
  margin-top: 27px;
  padding: 14px;
  border: 1px solid #37544b;
  border-left-width: 3px;
  background: rgba(255, 255, 255, .035);
}
.lab-result.ready { border-left-color: #55d1aa; }
.lab-result.conditional { border-left-color: var(--gold); }
.lab-result.blocked { border-left-color: var(--accent); }
.lab-result span {
  display: block;
  color: #788f87;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}
.lab-result strong { display: block; margin-top: 3px; font-family: var(--font-display); font-size: 16px; }
.lab-result p { margin: 0; color: #a6b6b0; font-size: 9px; line-height: 1.5; }
.lab-evidence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12px;
}
.lab-evidence span {
  padding: 11px;
  border: 1px solid #314c44;
  color: #889e96;
  font-size: 7px;
  text-transform: uppercase;
}
.lab-evidence b { display: block; color: #fff; font-family: var(--font-display); font-size: 17px; }
.decision-lab.compact { box-shadow: 14px 16px 0 #d8d0c2; }
.decision-lab.compact .lab-body { padding: 22px; }

.cycle-strip {
  overflow: hidden;
  border-block: 1px solid #c8bda9;
  background: #e8dfcf;
}
.cycle-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.cycle-step {
  min-width: 0;
  min-height: 98px;
  padding: 18px;
  border-right: 1px solid #cbbfaa;
  border-bottom: 1px solid #cbbfaa;
  color: #59625d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
  text-transform: uppercase;
}
.cycle-step span { display: block; margin-bottom: 9px; color: #777c75; font-size: 8px; }
.cycle-step.active { background: var(--accent); color: #fff; }
.cycle-step.active span { color: #d9f3ff; }

.position-section { padding-block: 128px 132px; }
.position-statement { max-width: 980px; }
.position-statement h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 450;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.position-statement h2 em { color: var(--accent); font-style: normal; font-weight: 520; }
.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.position-grid > p { max-width: 500px; margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.position-grid blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 4px solid var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.5;
}

.dark-section { padding-block: 122px; background: var(--night); color: #fff; }
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 68px;
  margin-bottom: 50px;
}
.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(43px, 5vw, 64px);
  font-weight: 450;
  letter-spacing: -.05em;
  line-height: 1.03;
}
.section-heading > p { max-width: 480px; margin: 0 0 5px; color: var(--ink-soft); line-height: 1.7; }
.section-heading.inverse > p { color: #9eb1aa; }
.dark-section .kicker { color: #54b8e4; }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #385148;
  border-left: 1px solid #385148;
}
.topic-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 26px;
  border-right: 1px solid #385148;
  border-bottom: 1px solid #385148;
  transition: background .2s ease, transform .2s ease;
}
.topic-card:hover { position: relative; z-index: 2; background: var(--accent); transform: translateY(-4px); }
.topic-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  color: #7f9a90;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topic-card:hover .topic-card-top { color: #d8f3ff; }
.topic-card-top span:nth-child(2) { text-align: center; }
.topic-card-top b { color: #fff; font-size: 14px; }
.topic-card h3 { margin: 52px 0 16px; font-size: 29px; font-weight: 600; line-height: 1.08; }
.topic-card > p { margin: 0; color: #9eb0aa; font-size: 13px; line-height: 1.65; }
.topic-card:hover > p { color: #edf9ff; }
.topic-asset {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
  color: #d6e0dc;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.signal-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.strategic-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #385148;
  border-left: 1px solid #385148;
}
.strategic-choice-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 430px;
  padding: 28px;
  border-right: 1px solid #385148;
  border-bottom: 1px solid #385148;
  background: rgba(255, 255, 255, .012);
}
.strategic-choice-card:nth-child(2),
.strategic-choice-card:nth-child(5) { background: rgba(255, 255, 255, .03); }
.strategic-choice-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #7f9a90;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .12em;
}
.strategic-choice-card-top > span { color: var(--gold); }
.strategic-choice-card h3 {
  margin: 42px 0 18px;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -.04em;
  line-height: 1.04;
}
.strategic-choice-card > strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.45;
}
.strategic-choice-card > p {
  margin: 14px 0 24px;
  color: #9eb0aa;
  font-size: 12px;
  line-height: 1.65;
}
.strategic-choice-deliverable {
  margin-top: auto;
  padding: 16px 0;
  border-block: 1px solid #385148;
  color: #d6e0dc;
  font-size: 11px;
  line-height: 1.5;
}
.strategic-choice-deliverable span {
  display: block;
  margin-bottom: 5px;
  color: #7f9a90;
  font-size: 7px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.strategic-choice-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  padding-top: 18px;
}
.strategic-choice-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 7px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.strategic-choice-links a:hover,
.strategic-choice-links a:focus-visible { color: #54b8e4; }
.strategic-choice-links span { color: var(--gold); }

.system-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 90px;
  padding-block: 136px;
}
.system-copy h2 { margin: 0; font-size: clamp(45px, 5vw, 65px); font-weight: 450; letter-spacing: -.055em; line-height: 1.02; }
.system-copy > p:not(.kicker) { margin: 27px 0 34px; color: var(--ink-soft); line-height: 1.7; }
.evidence-map {
  margin: 0;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid var(--line);
  background-color: var(--paper-light);
  background-image:
    linear-gradient(rgba(18, 35, 31, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 31, .045) 1px, transparent 1px);
  background-size: 34px 34px;
}
.evidence-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.evidence-map-head small { color: var(--accent); font: inherit; }
.evidence-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "source observation hypothesis"
    "decision option scenario";
  gap: 46px 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.proof-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 118px;
  padding: 17px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 7px 7px 0 rgba(18, 35, 31, .09);
}
.proof-step span { color: var(--accent); font-size: 8px; font-weight: 800; }
.proof-step strong { margin-top: 7px; font-family: var(--font-display); font-size: 18px; }
.proof-step small { margin-top: 6px; color: var(--ink-soft); font-size: 8px; line-height: 1.45; }
.proof-step::after {
  position: absolute;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-light);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.proof-step.source { grid-area: source; }
.proof-step.observation { grid-area: observation; }
.proof-step.hypothesis { grid-area: hypothesis; background: var(--accent); color: #fff; border-color: var(--accent); }
.proof-step.scenario { grid-area: scenario; }
.proof-step.option { grid-area: option; }
.proof-step.decision { grid-area: decision; background: var(--night); color: #fff; }
.proof-step.hypothesis span, .proof-step.hypothesis small { color: #d9f3ff; }
.proof-step.decision span { color: var(--gold); }
.proof-step.decision small { color: #b6c5c0; }
.proof-step.source::after,
.proof-step.observation::after { content: "→"; right: -40px; top: calc(50% - 12px); }
.proof-step.hypothesis::after { content: "↓"; right: calc(50% - 12px); bottom: -36px; }
.proof-step.scenario::after,
.proof-step.option::after { content: "←"; left: -40px; top: calc(50% - 12px); }
.evidence-revision {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  padding: 15px 17px;
  border-left: 3px solid var(--gold);
  background: var(--night);
  color: #d7e2de;
  font-size: 10px;
  line-height: 1.5;
}
.evidence-revision > b { color: var(--gold); font-size: 24px; line-height: 1; }
.evidence-revision strong { display: block; color: #fff; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.living-section { padding-block: 120px; background: #e9e1d4; }
.living-table { border-top: 2px solid var(--ink); }
.living-head, .living-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr .7fr;
  gap: 24px;
  align-items: center;
}
.living-head {
  padding: 12px 18px;
  border-bottom: 1px solid var(--ink);
  color: #6a706b;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.living-row { min-height: 76px; padding: 16px 18px; border-bottom: 1px solid #c8bdae; font-size: 12px; }
.living-row > span:first-child { display: flex; gap: 18px; align-items: center; font-family: var(--font-display); font-size: 18px; }
.living-row > span:first-child b { color: var(--accent); font-family: var(--font-sans); font-size: 8px; }
.living-row > span:not(:first-child) { color: var(--ink-soft); }
.living-row > span:last-child { display: flex; align-items: center; gap: 7px; font-size: 9px; font-weight: 780; text-transform: uppercase; }
.living-row i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.strategy-corpus-section { padding-block: 124px; }
.strategy-corpus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.strategy-corpus-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 580px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .16);
}
.strategy-corpus-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.strategy-corpus-card-top b { color: var(--ink-soft); }
.strategy-corpus-card h3 {
  max-width: 520px;
  margin: 34px 0 18px;
  font-size: clamp(27px, 3vw, 39px);
  letter-spacing: -.045em;
  line-height: 1.04;
}
.strategy-corpus-decision {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}
.strategy-corpus-decision strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.strategy-corpus-card dl { margin: 0; }
.strategy-corpus-card dl > div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.strategy-corpus-card dt {
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.strategy-corpus-card dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}
.strategy-corpus-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: auto;
  padding-top: 26px;
}
.strategy-corpus-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 7px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.strategy-corpus-links a:hover,
.strategy-corpus-links a:focus-visible { color: var(--ink); }

.editorial-section { padding-block: 126px; background: #e9e1d4; }
.editorial-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}
.editorial-doctrine { position: sticky; top: 110px; }
.editorial-doctrine h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 450;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.editorial-question {
  margin: 34px 0 0;
  padding: 24px 0 0 26px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
}
.editorial-facts { border-top: 2px solid var(--ink); }
.editorial-facts article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  min-height: 104px;
  padding: 23px 0;
  border-bottom: 1px solid #c8bdae;
}
.editorial-facts span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.editorial-facts strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
.editorial-facts p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }

.method-cycle-section { padding-top: 118px; }
.method-cycle-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 68px;
  padding-bottom: 48px;
}
.method-cycle-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(41px, 5vw, 64px);
  font-weight: 450;
  letter-spacing: -.05em;
  line-height: 1.04;
}
.method-cycle-heading > p { margin: 0 0 5px; color: var(--ink-soft); line-height: 1.7; }

.portal-section { padding-block: 120px 30px; }
.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.portal-grid > a {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.portal-grid > a:hover {
  z-index: 1;
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}
.portal-grid span { color: var(--accent); font-size: 8px; font-weight: 820; }
.portal-grid h3 { margin: 42px 0 12px; font-size: 29px; letter-spacing: -.035em; }
.portal-grid p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.portal-grid > a:hover p { color: #b9c6d0; }
.portal-grid b {
  margin-top: auto;
  padding-top: 24px;
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
}

.deliverables-section { padding-block: 126px; }
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.deliverable-grid > a {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .18s ease, color .18s ease;
}
.deliverable-grid > a:hover { background: var(--ink); color: #fff; }
.deliverable-grid span { color: var(--accent); font-size: 8px; font-weight: 850; }
.deliverable-grid h3 { margin: 28px 0 12px; font-size: 23px; line-height: 1.12; }
.deliverable-grid p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.deliverable-grid > a:hover p { color: #a9b9b3; }
.deliverable-grid b {
  display: block;
  margin-top: 25px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.blueprint-export {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding: 26px;
  background: #e8dfcf;
}
.blueprint-export p { margin-bottom: 8px; }
.blueprint-export strong { font-family: var(--font-display); font-size: 19px; }
.quality-strip { display: grid; grid-template-columns: repeat(4, 1fr); padding-bottom: 130px; }
.quality-strip > div { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-right: 0; }
.quality-strip > div:last-child { border-right: 1px solid var(--line); }
.quality-strip span { color: var(--accent); font-size: 8px; font-weight: 820; }
.quality-strip p { margin: 55px 0 0; font-family: var(--font-display); font-size: 20px; line-height: 1.3; }
.quality-strip .accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.quality-strip .accent span { color: #d9f3ff; }
.closing-cta { padding-block: 30px 130px; text-align: center; }
.closing-cta h2 { max-width: 920px; margin: 0 auto 40px; font-size: clamp(48px, 6vw, 76px); font-weight: 450; letter-spacing: -.06em; line-height: 1.02; }
.closing-cta > div:last-child { justify-content: center; }

.site-footer { padding-block: 68px 22px; background: var(--night); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 56px; }
.site-footer .brand-compact {
  width: fit-content;
  padding: 6px;
  background: var(--paper-light);
}
.site-footer .brand-symbol { width: 70px; height: 70px; }
.footer-grid > div:first-child p { max-width: 300px; margin-top: 24px; color: #91a59e; font-size: 12px; }
.preferred-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
.preferred-source-link:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, .05);
  color: var(--accent);
}
.preferred-source-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 11px; }
.footer-grid > div:not(:first-child) strong { margin-bottom: 8px; color: #7f968d; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { font-size: 12px; }
.footer-grid > div:not(:first-child) a:hover { color: var(--accent); }
.footer-protected-surface { color: #91a59e; font-size: 11px; line-height: 1.45; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 18px;
  border-top: 1px solid #304c43;
  color: #71877e;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Consentement et confidentialité */
.cookie-consent {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(820px, calc(100% - 24px));
  padding: 15px 16px;
  border: 1px solid #365363;
  background: var(--night);
  color: #fff;
  box-shadow: 0 18px 65px rgba(12, 19, 31, .3);
  transform: translateX(-50%);
}
.cookie-consent-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 2px 16px;
}
.cookie-consent h2 {
  grid-row: 1 / 3;
  margin: 0;
  font-size: 18px;
  font-weight: 560;
  letter-spacing: -.03em;
}
.cookie-consent-copy > p:not(.micro-label) {
  max-width: 390px;
  margin: 0;
  color: #bdc9d0;
  font-size: 11px;
  line-height: 1.45;
}
.cookie-consent-copy > a {
  border-bottom: 1px solid #81949f;
  color: #d7e5ec;
  justify-self: start;
  font-size: 10px;
}
.cookie-consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  min-width: 292px;
}
.cookie-consent-actions button {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #8ca2ae;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 760;
  transition: background .18s ease, border-color .18s ease;
}
.cookie-consent-actions button:hover {
  border-color: var(--aqua);
  background: #183349;
}
.cookie-settings-trigger {
  position: fixed;
  z-index: 90;
  left: 16px;
  bottom: var(--floating-control-bottom);
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #4d6878;
  background: var(--night);
  color: #fff;
  box-shadow: 0 8px 28px rgba(12, 19, 31, .22);
  cursor: pointer;
  font-size: 10px;
  font-weight: 720;
}
.cookie-settings-trigger:hover { background: var(--accent-dark); }

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 16px;
  bottom: var(--floating-control-bottom);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #4d6878;
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(12, 19, 31, .18);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .04em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease,
    background .18s ease,
    color .18s ease;
}
/* PRISME occupies the lower-right corner; keep the return control above it. */
body:has(#prisme-widget-root) .back-to-top {
  right: auto;
  bottom: 84px;
  left: clamp(18px, 3vw, 42px);
}
.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.back-to-top span {
  color: var(--accent);
  font-size: 17px;
  line-height: 1;
}
.back-to-top:hover span { color: #fff; }
main[tabindex="-1"]:focus { outline: none; }

.locale-status-page {
  max-width: 860px;
  min-height: 0;
  padding-block: var(--page-top-space) var(--page-bottom-space);
}
.locale-status-page h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
}
.locale-status-page > p:not(.eyebrow) { max-width: 62ch; color: var(--ink-soft); }
.locale-status-page > a {
  display: inline-block;
  margin-top: 24px;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-weight: 780;
}

.legal-page { padding-bottom: 128px; }
.legal-hero {
  max-width: 900px;
  padding-top: var(--page-top-space);
  padding-bottom: var(--page-bottom-space);
}
.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(55px, 7vw, 88px);
  font-weight: 430;
  line-height: .98;
}
.legal-hero > p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 90px;
  align-items: start;
}
.legal-layout > aside {
  position: sticky;
  top: 30px;
  display: grid;
  border-top: 3px solid var(--accent);
}
.legal-layout > aside strong {
  padding: 18px 0 12px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.legal-layout > aside a {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.legal-layout > aside a:hover { color: var(--accent); }
.legal-content section {
  scroll-margin-top: 25px;
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
}
.legal-content section:first-child { border-top: 3px solid var(--ink); }
.legal-content section > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .1em;
}
.legal-content h2 {
  margin: 18px 0 20px;
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.08;
}
.legal-content p {
  color: var(--ink-soft);
  line-height: 1.75;
}
.legal-content code {
  padding: 2px 5px;
  background: #e4e0d8;
  color: var(--ink);
  font-size: .9em;
}
.legal-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.legal-facts > div {
  min-height: 150px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}
.legal-facts b {
  color: var(--accent);
  font-size: 9px;
  text-transform: uppercase;
}
.legal-facts p { margin: 38px 0 0; font-size: 11px; line-height: 1.55; }
.legal-inline-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 760;
}
.legal-inline-link span { color: var(--accent); }
.cookie-table { margin-top: 28px; border: 1px solid var(--line); background: var(--paper-light); }
.cookie-table > div {
  display: grid;
  grid-template-columns: 1.05fr 1.7fr .55fr;
  align-items: center;
  gap: 20px;
  padding: 18px;
}
.cookie-table-head { border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.cookie-table-head b {
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cookie-table p { margin: 0; font-size: 11px; line-height: 1.55; }
.cookie-table strong { font-size: 12px; }
.legal-update {
  margin-top: 20px;
  color: #777f84;
  font-size: 10px;
  text-transform: uppercase;
}

/* Topic pages */
.page-hero {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 84px;
  min-height: 0;
  padding-block: var(--page-top-space) var(--page-bottom-space);
}
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(54px, 6.2vw, 78px);
  font-weight: 440;
  letter-spacing: -.06em;
  line-height: .99;
}
.page-hero-side { padding-top: 25px; border-top: 3px solid var(--accent); }
.page-hero-side > strong { display: block; font-family: var(--font-display); font-size: 22px; line-height: 1.35; }
.page-hero-side > p:last-child { margin: 22px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.page-hero-cadrage { min-height: 0; padding-bottom: 72px; }

/* Guided decision-cadrage experience */
.cadrage-experience {
  scroll-margin-top: 24px;
  padding-block: 92px;
  background: var(--night);
  color: #fff;
}
.cadrage-shell { display: grid; gap: 42px; }
.cadrage-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: clamp(38px, 8vw, 110px);
}
.cadrage-intro h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.01;
}
.cadrage-intro > p { margin: 0; color: #c8d2dc; line-height: 1.7; }
.cadrage-panel,
.cadrage-result {
  border: 1px solid #385064;
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 18px 20px 0 var(--night-2);
}
.cadrage-progress { padding: 22px clamp(22px, 4vw, 40px); border-bottom: 1px solid var(--line); }
.cadrage-progress > div { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 11px; }
.cadrage-progress span,
.cadrage-progress strong {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cadrage-progress progress { display: block; width: 100%; height: 5px; border: 0; background: var(--paper-deep); }
.cadrage-progress progress::-webkit-progress-bar { background: var(--paper-deep); }
.cadrage-progress progress::-webkit-progress-value { background: var(--accent); }
.cadrage-progress progress::-moz-progress-bar { background: var(--accent); }
.cadrage-question { min-width: 0; margin: 0; padding: clamp(28px, 5vw, 56px); border: 0; }
.cadrage-question legend {
  float: left;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 520;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.cadrage-question > p { clear: both; margin: 0 0 30px; color: var(--ink-soft); }
.cadrage-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cadrage-options-types { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cadrage-options label {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 156px;
  padding: 22px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.cadrage-options label::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-bottom: 25px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
}
.cadrage-options label:hover { background: #f1f7f9; }
.cadrage-options label.selected { z-index: 1; background: var(--accent); color: #fff; transform: translateY(-3px); }
.cadrage-options label.selected::before { background: #fff; border-color: #fff; box-shadow: inset 0 0 0 4px var(--accent); }
.cadrage-options input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cadrage-options label:focus-within { outline: 3px solid var(--gold); outline-offset: -3px; }
.cadrage-options label > span { font-family: var(--font-display); font-size: 18px; font-weight: 720; line-height: 1.15; }
.cadrage-options label > small { margin-top: 12px; color: var(--ink-soft); font-size: 11px; line-height: 1.55; }
.cadrage-options label.selected > small { color: #e2f1f7; }
.cadrage-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 clamp(28px, 5vw, 56px) 20px;
}
.cadrage-actions .button { min-width: 180px; }
.cadrage-actions .button:disabled { opacity: .38; cursor: not-allowed; transform: none; }
.cadrage-privacy { margin: 0; padding: 0 clamp(28px, 5vw, 56px) 32px; color: var(--ink-soft); font-size: 10px; text-align: right; }
.cadrage-result { display: grid; grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr); }
.cadrage-result:focus { outline: none; }
.cadrage-score { display: flex; min-height: 520px; padding: clamp(30px, 5vw, 52px); flex-direction: column; justify-content: center; background: var(--accent); color: #fff; }
.cadrage-score > span { color: #d9f1fa; font-size: 9px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.cadrage-score > strong { margin: 24px 0 14px; font-family: var(--font-display); font-size: clamp(72px, 9vw, 112px); font-weight: 500; letter-spacing: -.07em; line-height: .82; }
.cadrage-score > strong small { font-size: 18px; letter-spacing: 0; }
.cadrage-score > b { align-self: flex-start; padding: 8px 10px; background: var(--night); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.cadrage-score > p { margin: 30px 0 0; color: #e2f3f8; line-height: 1.65; }
.cadrage-result-body { padding: clamp(30px, 5vw, 56px); }
.cadrage-result-body h3 { margin: 8px 0 12px; font-size: clamp(31px, 4vw, 48px); line-height: 1.04; }
.cadrage-result-body > p:not(.micro-label) { max-width: 610px; color: var(--ink-soft); }
.cadrage-gaps { margin: 30px 0 36px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.cadrage-gaps li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cadrage-gaps li > span { color: var(--accent); font-size: 10px; font-weight: 820; }
.cadrage-gaps strong { display: block; font-size: 13px; line-height: 1.5; }
.cadrage-gaps small { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 9px; text-transform: uppercase; }
.cadrage-result-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cadrage-result-actions .button { flex: 1 1 210px; }
.cadrage-restart { padding: 10px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }
.decision-apply-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  margin-block: 68px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #fff;
}
.decision-apply-cta .micro-label { margin-bottom: 8px; }
.decision-apply-cta h2 { max-width: 760px; margin: 0; font-size: clamp(27px, 3.8vw, 42px); line-height: 1.05; }
.decision-apply-cta .button { min-width: 225px; }
.decision-apply-cta-closing { background: var(--night); color: #fff; }
.decision-apply-cta-closing .micro-label { color: #79c7e2; }
.page-tool {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 90px;
  padding-block: 30px 120px;
}
.page-tool-copy h2 { margin: 0; font-size: clamp(40px, 4vw, 58px); font-weight: 450; letter-spacing: -.05em; line-height: 1.03; }
.page-tool-copy > p:last-child { color: var(--ink-soft); line-height: 1.7; }
.decision-anatomy { padding-block: 110px; background: var(--night); color: #fff; }
.anatomy-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.anatomy-grid h2 { margin: 0; font-size: clamp(43px, 4.8vw, 64px); font-weight: 450; letter-spacing: -.05em; line-height: 1.03; }
.anatomy-grid ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid #3a564d; }
.anatomy-grid li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid #3a564d;
  font-family: var(--font-display);
  font-size: 20px;
}
.anatomy-grid li span { color: #79c7e2; font-family: var(--font-sans); font-size: 8px; font-weight: 820; }
.tool-spec {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  padding-block: 128px;
}
.tool-spec-main > h2 { margin: 0; font-size: clamp(48px, 5vw, 70px); font-weight: 450; letter-spacing: -.055em; }
.tool-spec-main > p { max-width: 700px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.tool-flow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: center; margin-top: 42px; }
.tool-flow > div { padding: 20px; border: 1px solid var(--line); background: var(--paper-light); }
.tool-flow > i { color: var(--accent); font-style: normal; font-size: 24px; }
.tool-flow span { display: block; margin-bottom: 13px; color: var(--accent); font-size: 8px; font-weight: 820; letter-spacing: .1em; }
.tool-flow b { display: block; padding: 8px 0; border-top: 1px solid var(--line); font-size: 11px; }
.tool-spec aside { align-self: start; padding: 25px; background: #e8dfcf; }
.tool-spec aside ul { margin: 0; padding: 0; list-style: none; }
.tool-spec aside li { padding: 15px 0; border-top: 1px solid #c7baa5; font-family: var(--font-display); font-size: 17px; }
.theme-section { padding-block: 120px; background: #e9e1d4; }
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #c4b9aa; border-left: 1px solid #c4b9aa; }
.theme-grid > div,
.theme-grid > a {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid #c4b9aa;
  border-bottom: 1px solid #c4b9aa;
}
.theme-grid > a { transition: background .18s ease, color .18s ease; }
.theme-grid > a:hover { background: var(--ink); color: #fff; }
.theme-grid > a:hover p { color: #b9c6d0; }
.theme-grid span { color: #005f89; font-size: 8px; font-weight: 820; }
.theme-grid h3 { margin: 35px 0 10px; font-size: 24px; }
.theme-grid p { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .04em; }
.quality-gate { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 120px; }
.quality-gate > div { padding: 22px; border-left: 1px solid var(--line); }
.quality-gate > div:last-child { border-right: 1px solid var(--line); }
.quality-gate span { color: #005f89; font-size: 8px; font-weight: 820; }
.quality-gate strong { display: block; margin-top: 45px; font-family: var(--font-display); font-size: 19px; }
.quality-gate p { margin: 8px 0 0; color: var(--ink-soft); font-size: 11px; }
.next-page { padding-bottom: 120px; }
.next-page > a {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 25px;
  padding: 26px 30px;
  border-block: 1px solid var(--ink);
  transition: background .18s ease, color .18s ease;
}
.next-page > a:hover { background: var(--ink); color: #fff; }
.next-page > a span { color: #005f89; font-size: 9px; font-weight: 820; text-transform: uppercase; }
.next-page > a strong { font-family: var(--font-display); font-size: 23px; }
.next-page > a b { text-align: right; font-size: 24px; }

/* Semantic cocoon pages */
.semantic-hero { padding-block: 24px var(--page-bottom-space); }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  color: var(--ink-soft);
  font-size: 10px;
}
.breadcrumbs a { border-bottom: 1px solid transparent; }
.breadcrumbs a:hover { color: var(--accent); border-color: currentColor; }
.breadcrumbs strong { color: var(--ink); font-weight: 760; }
.semantic-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: end;
  gap: 88px;
  min-height: 0;
  margin-top: var(--page-top-gap);
}
.semantic-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 440;
  letter-spacing: -.058em;
  line-height: .99;
}
.quick-answer { padding-top: 24px; border-top: 3px solid var(--accent); }
.quick-answer > strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
}
.quick-answer > p:last-child {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}
.semantic-definition { padding-block: 105px; background: var(--night); color: #fff; }
.semantic-definition-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}
.semantic-definition h2 {
  max-width: 490px;
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 450;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.semantic-definition ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #365064;
}
.semantic-definition li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #365064;
}
.semantic-definition li span { color: var(--accent); font-size: 9px; font-weight: 820; }
.semantic-definition li p {
  margin: 0;
  color: #d6e0e8;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.38;
}
.semantic-contract {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  padding-block: 105px;
}
.semantic-contract article { padding-right: 60px; border-right: 1px solid var(--line); }
.semantic-contract h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(37px, 4.5vw, 60px);
  font-weight: 450;
  letter-spacing: -.05em;
  line-height: 1.04;
}
.semantic-contract aside { align-self: start; padding: 25px; background: var(--paper-deep); }
.semantic-contract aside p:last-child {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
}
.decision-brief {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(34px, 7vw, 100px);
  padding-block: 0 105px;
}
.decision-brief-heading h2 {
  max-width: 450px;
  margin: 12px 0 0;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 450;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.decision-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.decision-brief-grid > article,
.decision-brief-next {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.decision-brief-grid > article > p:last-child {
  margin: 30px 0 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.42;
}
.decision-brief-next { background: var(--paper-deep); transition: background .18s ease, color .18s ease; }
.decision-brief-next:hover { background: var(--night); color: #fff; }
.decision-brief-next strong {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.24;
}
.decision-brief-next span {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 820;
  text-transform: uppercase;
}
.related-pages { padding-block: 35px 115px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.related-grid > a {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .18s ease, color .18s ease;
}
.related-grid > a:hover { background: var(--ink); color: #fff; }
.related-grid span { color: var(--accent); font-size: 8px; font-weight: 820; }
.related-grid h3 { margin: 38px 0 12px; font-size: 24px; }
.related-grid p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.6; }
.related-grid > a:hover p { color: #bac8d3; }
.related-grid b {
  margin-top: auto;
  padding-top: 20px;
  color: var(--accent);
  font-size: 9px;
  text-transform: uppercase;
}
.semantic-next { padding-bottom: 120px; }
.semantic-next > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
  border-block: 1px solid var(--ink);
}
.semantic-next strong { font-family: var(--font-display); font-size: 25px; }
.semantic-next span { color: var(--accent); font-size: 25px; }

/* Visible, corpus-verifiable evidence for the ten-page local correction lot. */
.lot33-evidence {
  margin-bottom: 115px;
  padding-block: 58px;
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid var(--ink);
}
.lot33-evidence-heading {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(340px, 1.18fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}
.lot33-evidence-heading h2 {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 450;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.lot33-evidence-heading > p,
.lot33-evidence-method,
.lot33-evidence-conclusion {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}
.lot33-evidence-method {
  max-width: 920px;
  margin-top: 34px;
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: var(--paper-deep);
}
.lot33-evidence-table-wrap { margin: 32px 0; overflow-x: auto; }
.lot33-evidence table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.55;
}
.lot33-evidence th,
.lot33-evidence td { padding: 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.lot33-evidence th { background: var(--ink); color: #fff; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.lot33-evidence td:first-child { width: 20%; font-weight: 800; }
.lot33-evidence-conclusion { max-width: 900px; }
.lot33-evidence > .button { margin-top: 24px; }
.lot33-evidence-figure { margin: 34px 0; }
.lot33-evidence-figure figcaption { margin-bottom: 12px; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.lot33-evidence-plot {
  position: relative;
  min-height: 360px;
  margin: 0 58px 44px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background-image: linear-gradient(to right, color-mix(in srgb, var(--line) 60%, transparent) 1px, transparent 1px), linear-gradient(to top, color-mix(in srgb, var(--line) 60%, transparent) 1px, transparent 1px);
  background-size: 25% 25%;
}
.lot33-axis { position: absolute; color: var(--ink-soft); font-size: 10px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.lot33-axis-x { right: 0; bottom: -34px; }
.lot33-axis-y { left: -53px; top: 0; writing-mode: vertical-rl; transform: rotate(180deg); }
.lot33-point {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 84px;
  padding: 8px 10px;
  transform: translate(-50%, 50%);
  border: 2px solid var(--accent);
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--paper-deep);
}
.lot33-point b { font-size: 11px; }
.lot33-point small { color: var(--ink-soft); font-size: 9px; }
@media (max-width: 760px) {
  .lot33-evidence { margin-bottom: 82px; padding-block: 42px; }
  .lot33-evidence-heading { grid-template-columns: 1fr; gap: 24px; }
  .lot33-evidence-method { padding: 18px; }
  .lot33-evidence-plot { min-height: 300px; margin-inline: 34px 18px; }
  .lot33-point { min-width: 66px; padding: 6px; }
}

/* Individually authored strategic assets */
.strategic-asset {
  margin-bottom: 115px;
  border-top: 4px solid var(--accent);
  background: var(--paper-light);
  box-shadow: 14px 16px 0 var(--paper-deep);
}

/* Les contrôles restent accessibles en mobile sans recouvrir les preuves. */
@media (max-width: 760px) {
  body:has(main.strategy-optimization-scope) { padding-bottom: 15px; }

  body:has(main.strategy-optimization-scope) .cookie-settings-trigger,
  body:has(main.strategy-optimization-scope) .back-to-top {
    position: static;
    width: calc(100% - 30px);
    min-height: 44px;
    margin: 12px 15px 0;
    justify-content: center;
    box-shadow: none;
  }

  body:has(main.strategy-optimization-scope) .back-to-top { display: none; }
  body:has(main.strategy-optimization-scope) .back-to-top.is-visible { display: inline-flex; }
}
.asset-heading {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 70px;
  padding: 42px;
  border-bottom: 1px solid var(--line);
}
.asset-heading h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(39px, 4.6vw, 62px);
  font-weight: 450;
  letter-spacing: -.05em;
  line-height: 1.02;
}
.asset-index {
  margin: 0;
  color: var(--accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
}
.asset-type {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.asset-heading > div:last-child > p {
  margin: 22px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}
.asset-download {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 230px;
  padding: 12px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 780;
}
.asset-download:hover { background: var(--accent); }
.asset-canvas { padding: 42px; }
.demo-notice {
  margin: 0;
  padding: 13px 42px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.formula-strip,
.causal-chain {
  display: flex;
  align-items: stretch;
  margin-bottom: 32px;
}
.formula-strip span,
.causal-chain span {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  text-align: center;
}
.formula-strip b,
.causal-chain b {
  display: grid;
  place-items: center;
  width: 56px;
  color: var(--accent);
  font-size: 22px;
}
.asset-table-wrap { overflow-x: auto; }
.asset-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 11px;
}
.asset-table caption {
  padding: 10px 12px;
  background: var(--night);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}
.asset-table th {
  padding: 12px;
  border: 1px solid #d8dfe3;
  background: #e9eff2;
  color: #40505d;
  font-size: 8px;
  letter-spacing: .06em;
  text-align: left;
  text-transform: uppercase;
}
.asset-table td {
  min-width: 90px;
  padding: 13px 12px;
  border: 1px solid #d8dfe3;
}
.asset-table td:nth-child(2) { min-width: 220px; }
.asset-table tfoot th { background: var(--night); color: #fff; }
.score-chip {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 28px;
  background: var(--accent);
  color: #fff;
}
.status-yes { background: #d8edf2; color: #005b84; font-weight: 800; }
.status-no { background: #e4e7e9; color: #52616d; font-weight: 800; }
.asset-insight {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: #e7eef1;
  font-size: 12px;
}
.calculator-grid,
.ranking-layout,
.source-layout,
.dependency-layout,
.signal-layout,
.position-map-layout,
.matrix-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 45px;
  align-items: start;
}
.calculator-controls {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--night);
  color: #fff;
}
.calculator-controls > label:not(.asset-range) {
  display: grid;
  grid-template-columns: 1fr 125px;
  align-items: center;
  gap: 16px;
  color: #c8d5dd;
  font-size: 10px;
  font-weight: 720;
}
.calculator-controls input[type="number"] {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid #3d5668;
  background: #162433;
  color: #fff;
}
.asset-range { display: grid; gap: 8px; }
.asset-range > span {
  display: flex;
  justify-content: space-between;
  color: #c8d5dd;
  font-size: 10px;
}
.asset-range b { color: var(--aqua); }
.asset-range input { width: 100%; accent-color: var(--accent); }
.metric-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.metric-stack > div {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 23px;
  background: #fff;
}
.metric-stack span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
}
.metric-stack strong {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 39px);
  letter-spacing: -.03em;
}
.metric-stack small { margin-top: 8px; color: var(--ink-soft); font-size: 9px; }
.metric-stack .accent-metric { background: var(--accent); color: #fff; }
.metric-stack .accent-metric span,
.metric-stack .accent-metric small { color: #d9f3ff; }
.score-result {
  min-height: 305px;
  padding: 30px;
  background: #e7eef1;
}
.score-result > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.score-result > strong {
  display: block;
  margin: 24px 0 35px;
  font-family: var(--font-display);
  font-size: 76px;
  line-height: 1;
}
.score-result > strong small { font-family: var(--font-sans); font-size: 15px; }
.score-result > p { margin: 25px 0 0; color: var(--ink-soft); font-size: 10px; }
.score-bar { display: grid; gap: 9px; }
.score-bar + .score-bar { margin-top: 18px; }
.score-bar > div { display: flex; justify-content: space-between; gap: 15px; font-size: 10px; }
.score-bar > div span { color: var(--ink-soft); }
.score-bar > i { display: block; height: 9px; overflow: hidden; background: #d5dde2; }
.score-bar > i b { display: block; height: 100%; background: var(--accent); }
.source-layout { grid-template-columns: 1.25fr .75fr; }
.source-bars {
  padding: 25px;
  border: 1px solid var(--line);
  background: #fff;
}
.gap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gap-grid article { padding: 20px; border: 1px solid var(--line); background: #fff; }
.gap-grid article > div:first-child { display: flex; justify-content: space-between; gap: 20px; }
.gap-grid article > div:first-child span { color: var(--accent); font-size: 9px; font-weight: 800; }
.dual-bar { position: relative; height: 20px; margin: 25px 0 12px; background: #e1e7ea; }
.dual-bar i,
.dual-bar b { position: absolute; left: 0; display: block; height: 8px; }
.dual-bar i { top: 0; background: #91a5b3; }
.dual-bar b { bottom: 0; background: var(--accent); }
.gap-grid small { display: flex; justify-content: space-between; gap: 12px; color: var(--ink-soft); font-size: 8px; }
.dependency-layout { grid-template-columns: 1.15fr .85fr; }
.dependency-network {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #30495a;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--night);
  background-size: 30px 30px;
}
.dependency-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 135px;
  padding: 13px;
  border: 1px solid #607789;
  background: #132231;
  color: #fff;
}
.dependency-node span { color: var(--aqua); font-size: 7px; text-transform: uppercase; }
.dependency-node strong { margin-top: 5px; font-family: var(--font-display); font-size: 16px; }
.node-core { left: 37%; top: 42%; border-color: var(--accent); background: var(--accent); }
.node-a { left: 8%; top: 10%; }
.node-b { right: 7%; top: 12%; }
.node-c { left: 7%; bottom: 10%; }
.node-d { right: 8%; bottom: 11%; }
.dependency-edge {
  position: absolute;
  z-index: 1;
  display: block;
  height: 1px;
  background: #85a6ba;
  transform-origin: left center;
}
.edge-a { left: 26%; top: 29%; width: 27%; transform: rotate(33deg); }
.edge-b { left: 52%; top: 48%; width: 28%; transform: rotate(-34deg); }
.edge-c { left: 24%; bottom: 27%; width: 27%; transform: rotate(-31deg); }
.edge-d { left: 52%; bottom: 42%; width: 27%; transform: rotate(35deg); }
.dependency-scores { padding: 26px; border: 1px solid var(--line); background: #fff; }
.dependency-scores > p { margin: 27px 0 0; color: var(--ink-soft); font-size: 10px; }
.signal-layout { grid-template-columns: 1fr 1fr; }
.signal-list { border-top: 1px solid var(--line); }
.signal-list article {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.signal-list article > span { color: var(--accent); font-size: 8px; font-weight: 820; }
.signal-list article > div { display: flex; flex-direction: column; }
.signal-list small { color: var(--ink-soft); font-size: 7px; text-transform: uppercase; }
.signal-list strong { font-family: var(--font-display); font-size: 15px; }
.signal-list article > b { color: var(--accent); font-size: 10px; }
.signal-chart { padding: 25px; background: #e7eef1; }
.fixed-weight {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #3b5364;
  color: #c8d5dd;
  font-size: 10px;
}
.fixed-weight b { color: var(--aqua); }
.ranking-bars { padding: 26px; border: 1px solid var(--line); background: #fff; }
.rank-row { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.rank-row + .rank-row { margin-top: 22px; }
.rank-row > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--night);
  color: #fff;
  font-size: 8px;
}
.rank-row .score-bar { width: 100%; }
.ranking-winner { margin: 30px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 11px; }
.position-map-layout { grid-template-columns: 1.35fr .65fr; }
.position-map,
.portfolio-matrix {
  position: relative;
  min-height: 510px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(rgba(12,19,31,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,19,31,.08) 1px, transparent 1px),
    #fff;
  background-size: 20% 20%;
}
.axis-label {
  position: absolute;
  z-index: 4;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.axis-y { left: -4px; top: -22px; }
.axis-x { right: 0; bottom: -26px; }
.credibility-zone {
  position: absolute;
  right: 8%;
  top: 10%;
  width: 36%;
  height: 34%;
  border: 2px dashed var(--accent);
  background: rgba(0,117,169,.08);
}
.credibility-zone span {
  position: absolute;
  right: 8px;
  top: 8px;
  color: var(--accent);
  font-size: 7px;
  font-weight: 820;
  text-transform: uppercase;
}
.map-point { position: absolute; z-index: 5; transform: translate(-50%, 50%); }
.map-point i {
  display: block;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #778a97;
  box-shadow: 0 0 0 1px var(--ink), 0 4px 12px rgba(12,19,31,.2);
}
.map-point span {
  position: absolute;
  left: 24px;
  top: 0;
  min-width: 100px;
  padding: 3px 5px;
  background: rgba(255,255,255,.86);
  font-size: 8px;
  font-weight: 780;
}
.map-point.map-point-edge-right span { right: 24px; left: auto; text-align: right; }
.map-point.point-accent i { width: 24px; height: 24px; background: var(--accent); box-shadow: 0 0 0 5px rgba(0,117,169,.18); }
.map-point.point-dark i { background: var(--night); }
.map-legend,
.critical-comparison { padding: 25px; background: var(--night); color: #fff; }
.map-legend > p { display: flex; gap: 10px; align-items: center; color: #d2dde3; font-size: 10px; }
.map-legend > p i { width: 12px; height: 12px; border-radius: 50%; background: #778a97; }
.map-legend > p .legend-target { background: var(--accent); }
.map-legend blockquote,
.critical-comparison blockquote {
  margin: 35px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #3b5364;
  color: var(--aqua);
  font-family: var(--font-display);
  font-size: 18px;
}
.gate-flow { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.gate-flow article {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.gate-flow article > span { color: var(--accent); font-size: 9px; font-weight: 820; }
.gate-flow h3 { margin: 28px 0 10px; font-size: 23px; }
.gate-flow p { color: var(--ink-soft); font-size: 11px; }
.gate-flow strong { margin-top: 18px; font-size: 11px; }
.gate-flow small { margin-top: auto; color: var(--ink-soft); font-size: 9px; }
.gate-flow article > b { margin-top: 14px; padding: 6px 8px; background: #dce9ed; color: var(--accent-dark); font-size: 8px; text-transform: uppercase; }
.compact-controls { gap: 13px; }
.portfolio-matrix {
  overflow: hidden;
  background-size: 50% 50%;
}
.quadrant {
  position: absolute;
  color: #667784;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.q1 { left: 10%; top: 7%; }
.q2 { right: 10%; top: 7%; }
.q3 { left: 10%; bottom: 7%; }
.q4 { right: 10%; bottom: 7%; }
.critical-comparison h3 { margin: 0 0 25px; font-size: 27px; }
.critical-comparison dl { margin: 0; }
.critical-comparison dl > div { padding: 17px 0; border-top: 1px solid #3b5364; }
.critical-comparison dt { color: var(--aqua); font-size: 9px; font-weight: 820; text-transform: uppercase; }
.critical-comparison dd { margin: 8px 0 0; color: #d2dde3; font-size: 11px; line-height: 1.6; }
.critical-comparison > p { padding: 15px 0; border-top: 1px solid #3b5364; color: #d2dde3; font-size: 11px; }
.ge-matrix {
  background:
    linear-gradient(rgba(12,19,31,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,19,31,.12) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0,117,169,.16), rgba(255,255,255,.2) 52%, rgba(12,19,31,.12));
  background-size: 33.333% 33.333%, 33.333% 33.333%, 100% 100%;
}
.ge-zone {
  position: absolute;
  padding: 5px 7px;
  background: rgba(255,255,255,.82);
  font-size: 8px;
  font-weight: 820;
  text-transform: uppercase;
}
.zone-invest { right: 5%; top: 5%; color: var(--accent); }
.zone-select { left: 42%; top: 46%; color: #536572; }
.zone-harvest { left: 5%; bottom: 5%; color: var(--ink); }
.allocation-bar {
  display: flex;
  height: 54px;
  margin-bottom: 28px;
  overflow: hidden;
  background: #dce4e8;
}
.allocation-bar i { display: block; height: 100%; border-right: 2px solid #fff; }
.allocation-1 { background: #0075a9; }
.allocation-2 { background: #2f8eb5; }
.allocation-3 { background: #0c131f; }
.allocation-4 { background: #76afc4; }
.allocation-5 { background: #91a5b3; }
.coherence-layout,
.barrier-layout,
.community-layout,
.differentiation-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}
.coherence-heatmap {
  display: grid;
  grid-template-columns: 92px repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}
.coherence-heatmap > * {
  display: grid;
  place-items: center;
  min-height: 54px;
  margin: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  font-style: normal;
  text-align: center;
}
.coherence-heatmap b { padding: 6px; color: #536572; text-transform: uppercase; }
.coherence-heatmap i { font-weight: 850; }
.heat-0 { background: #f1f3f4; color: #9aa6ae; }
.heat-1 { background: #d8edf2; color: #005b84; }
.heat-2 { background: #91c3d4; color: #0c3447; }
.heat-3 { background: var(--accent); color: #fff; }
.choice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.choice-cards article {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.choice-cards article > span { color: var(--accent); font-size: 8px; font-weight: 820; }
.choice-cards h3 { margin: 40px 0 25px; font-size: 27px; }
.choice-cards dl { margin: 0; }
.choice-cards dl > div { padding: 11px 0; border-top: 1px solid var(--line); }
.choice-cards dt { color: var(--ink-soft); font-size: 7px; text-transform: uppercase; }
.choice-cards dd { margin: 5px 0 0; font-size: 11px; }
.choice-cards article > b { margin-top: auto; padding: 9px; background: #e6ecef; color: var(--accent-dark); font-size: 9px; }
.choice-cards .selected-choice { background: var(--night); color: #fff; }
.choice-cards .selected-choice dt { color: #8fa2af; }
.choice-cards .selected-choice dl > div { border-color: #334a5c; }
.choice-cards .selected-choice > b { background: var(--accent); color: #fff; }
.boundary-equation {
  display: flex;
  align-items: stretch;
  margin-bottom: 28px;
}
.boundary-equation span {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  text-align: center;
}
.boundary-equation b { display: grid; place-items: center; width: 42px; color: var(--accent); font-size: 20px; }
.reconciliation-grid {
  display: grid;
  grid-template-columns: 1fr .55fr 1fr;
  gap: 1px;
  background: var(--line);
}
.reconciliation-method,
.reconciliation-gap { padding: 25px; background: #fff; }
.reconciliation-method h3 { margin: 0 0 24px; font-size: 27px; }
.reconciliation-method label {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 15px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 9px;
}
.number-input { display: flex; align-items: center; min-height: 38px; border: 1px solid var(--line); background: #fff; }
.number-input input { width: 100%; min-width: 0; padding: 8px; border: 0; background: transparent; }
.number-input b { padding-right: 8px; color: var(--accent); font-size: 9px; }
.calculator-controls .number-input { border-color: #3d5668; background: #162433; }
.calculator-controls .number-input input { color: #fff; }
.reconciliation-method > strong { display: block; margin-top: 32px; font-family: var(--font-display); font-size: 33px; }
.reconciliation-method > small { color: var(--ink-soft); font-size: 8px; }
.reconciliation-gap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--night);
  color: #fff;
  text-align: center;
}
.reconciliation-gap > span { color: var(--aqua); font-size: 8px; text-transform: uppercase; }
.reconciliation-gap > strong { margin: 22px 0; font-family: var(--font-display); font-size: 38px; }
.reconciliation-gap > i { height: 7px; overflow: hidden; background: #354b5b; }
.reconciliation-gap > i b { display: block; height: 100%; background: var(--accent); }
.reconciliation-gap > small { margin-top: 13px; color: #aebdc7; font-size: 8px; }
.barrier-layout { grid-template-columns: .65fr 1.35fr; }
.barrier-score {
  min-height: 330px;
  padding: 28px;
  background: var(--accent);
  color: #fff;
}
.barrier-score > span { color: #d8f2ff; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.barrier-score > strong { display: block; margin: 42px 0; font-family: var(--font-display); font-size: 76px; line-height: 1; }
.barrier-score > strong small { font-family: var(--font-sans); font-size: 14px; }
.barrier-score p { margin: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.35); font-size: 11px; line-height: 1.6; }
.barrier-bars { padding: 26px; border: 1px solid var(--line); background: #fff; }
.value-chain-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-chain-chart article {
  min-height: 300px;
  padding: 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.value-chain-chart h3 { min-height: 55px; margin: 20px 0 30px; font-size: 20px; }
.value-chain-chart article > div { margin-top: 18px; }
.value-chain-chart span { display: block; color: var(--ink-soft); font-size: 8px; }
.value-chain-chart i { display: block; height: 8px; margin-top: 5px; background: #e1e7ea; }
.value-chain-chart i b { display: block; height: 100%; background: var(--accent); }
.value-chain-chart i .cost-bar { background: #7f929f; }
.value-chain-chart article > strong { display: block; margin-top: 35px; font-family: var(--font-display); font-size: 25px; }
.positive-margin { color: var(--accent); }
.negative-margin { color: #697b87; }
.competitor-universe {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(0,117,169,.12) 0 13%, transparent 13.5% 24%, rgba(0,117,169,.08) 24.5% 36%, transparent 36.5% 48%, rgba(12,19,31,.07) 48.5% 61%, transparent 61.5%),
    #fff;
}
.competitor-center {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  width: 190px;
  padding: 18px;
  background: var(--accent);
  color: #fff;
  transform: translate(-50%, -50%);
  text-align: center;
}
.competitor-center span { color: #d8f2ff; font-size: 7px; text-transform: uppercase; }
.competitor-center strong { margin-top: 6px; font-family: var(--font-display); font-size: 17px; }
.competitor-layer {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: 210px;
  padding: 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.94);
}
.competitor-layer span { color: var(--accent); font-size: 8px; font-weight: 820; text-transform: uppercase; }
.competitor-layer strong { margin-top: 6px; font-family: var(--font-display); font-size: 15px; }
.competitor-layer small { margin-top: 8px; color: var(--ink-soft); font-size: 8px; }
.competitor-layer-1 { left: 7%; top: 8%; }
.competitor-layer-2 { right: 7%; top: 12%; }
.competitor-layer-3 { left: 9%; bottom: 10%; }
.competitor-layer-4 { right: 8%; bottom: 8%; }
.community-layout { grid-template-columns: 1.2fr .8fr; }
.community-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--night);
}
.community {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px dashed #7590a1;
  border-radius: 50%;
}
.community span {
  position: absolute;
  left: 50%;
  top: 12px;
  color: var(--aqua);
  font-size: 8px;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.community i {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--accent);
}
.community i:nth-of-type(1) { left: 28px; top: 75px; }
.community i:nth-of-type(2) { right: 30px; top: 58px; }
.community i:nth-of-type(3) { left: 76px; bottom: 22px; }
.community-a { left: 6%; top: 8%; }
.community-b { right: 7%; top: 13%; }
.community-c { left: 32%; bottom: 6%; }
.community-bridge {
  position: absolute;
  z-index: 5;
  padding: 6px 8px;
  background: #fff;
  color: var(--ink);
  font-size: 7px;
}
.bridge-ab { left: 46%; top: 29%; }
.bridge-bc { right: 28%; bottom: 34%; }
.bridge-ranking { padding: 25px; border: 1px solid var(--line); background: #fff; }
.bridge-ranking h3 { margin: 0 0 30px; font-size: 26px; }
.comparison-table td { min-width: 160px; }
.segmentation-quality {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.segmentation-quality article { padding: 22px; border: 1px solid var(--line); background: #fff; }
.segmentation-quality article > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-bottom: 28px; }
.segmentation-quality h3 { margin: 0; font-size: 23px; }
.segmentation-quality article > div:first-child strong { color: var(--accent); font-family: var(--font-display); font-size: 31px; }
.segmentation-quality article > div:first-child small { font-family: var(--font-sans); font-size: 8px; }
.economics-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.economics-results > div { display: flex; flex-direction: column; min-height: 190px; padding: 22px; background: #fff; }
.economics-results span { color: var(--accent); font-size: 8px; font-weight: 820; text-transform: uppercase; }
.economics-results strong { margin-top: auto; font-family: var(--font-display); font-size: 29px; }
.economics-results > p { grid-column: 1 / -1; margin: 0; padding: 14px; font-size: 9px; text-align: center; text-transform: uppercase; }
.differentiation-layout { grid-template-columns: 1.25fr .75fr; }
.differentiation-target {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 50%;
  height: 50%;
  background: rgba(0,117,169,.08);
  color: var(--accent);
  font-size: 8px;
  font-weight: 820;
  text-transform: uppercase;
}
.differentiation-map .map-point span { display: flex; flex-direction: column; }
.differentiation-map .map-point small { color: var(--accent); font-size: 6px; text-transform: uppercase; }
.proof-ladder { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.proof-ladder li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px 12px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.proof-ladder span { grid-row: 1 / 3; color: var(--accent); font-size: 8px; font-weight: 820; }
.proof-ladder strong { font-family: var(--font-display); font-size: 18px; }
.proof-ladder p { margin: 0; color: var(--ink-soft); font-size: 9px; }
.value-equation-result {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 8px;
}
.value-equation-result > p {
  display: flex;
  flex-direction: column;
  min-height: 135px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.value-equation-result > p span { color: var(--accent); font-size: 8px; text-transform: uppercase; }
.value-equation-result > p b { margin-top: auto; font-family: var(--font-display); font-size: 24px; }
.value-equation-result > i { display: grid; place-items: center; color: var(--accent); font-size: 22px; font-style: normal; }
.value-equation-result > strong {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  padding: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 47px;
}
.value-equation-result > strong small { margin-top: 6px; font-family: var(--font-sans); font-size: 9px; font-weight: 700; text-transform: uppercase; }

/* Deliverable pages */
.deliverable-hero {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 70px;
  align-items: start;
  min-height: 0;
  padding-block: var(--page-top-space) var(--page-bottom-space);
}
.deliverable-number {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(100px, 13vw, 170px);
  letter-spacing: -.08em;
  line-height: .8;
}
.deliverable-hero h1 { max-width: 930px; margin: 0; font-size: clamp(56px, 7vw, 92px); font-weight: 440; letter-spacing: -.06em; line-height: .99; }
.deliverable-hero > div:last-child > strong { display: block; max-width: 760px; margin-top: 34px; color: var(--accent); font-family: var(--font-display); font-size: 24px; font-style: normal; font-weight: 520; }
.deliverable-hero > div:last-child > p:last-child { max-width: 720px; margin: 24px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.deliverable-content { padding-block: 20px 120px; }
.deliverable-content article {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding-block: 55px;
  border-top: 1px solid var(--line);
}
.deliverable-content article:last-child { border-bottom: 1px solid var(--line); }
.deliverable-content article > div span { color: var(--accent); font-size: 8px; font-weight: 820; }
.deliverable-content h2 { margin: 18px 0 0; font-size: 38px; font-weight: 450; letter-spacing: -.04em; line-height: 1.05; }
.deliverable-content ul { margin: 0; padding: 0; list-style: none; }
.deliverable-content li { position: relative; padding: 17px 0 17px 29px; border-bottom: 1px solid var(--line); font-size: 15px; }
.deliverable-content li::before { content: "↳"; position: absolute; left: 0; color: var(--accent); }
.deliverable-standard { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; margin-bottom: 120px; padding: 50px; background: var(--night); color: #fff; }
.deliverable-standard h2 { margin: 0; font-size: 40px; font-weight: 450; letter-spacing: -.04em; line-height: 1.05; }
.standard-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #3a564d; border-left: 1px solid #3a564d; }
.standard-grid span { min-height: 100px; padding: 16px; border-right: 1px solid #3a564d; border-bottom: 1px solid #3a564d; font-size: 12px; }
.standard-grid b { display: block; margin-bottom: 20px; color: var(--accent); font-size: 8px; }
.explorer-wrap { padding-bottom: 100px; }
.explorer-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  min-height: 620px;
  background: var(--night);
  color: #fff;
}
.explorer-index { padding: 25px; border-right: 1px solid #3b554d; }
.explorer-list { display: grid; max-height: 550px; overflow-y: auto; border-top: 1px solid #3b554d; }
.explorer-list button {
  display: grid;
  grid-template-columns: 36px 1fr;
  min-height: 46px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #304b43;
  background: transparent;
  color: #b4c2bd;
  cursor: pointer;
  text-align: left;
  font-size: 10px;
}
.explorer-list button span { color: #718981; font-size: 7px; }
.explorer-list button:hover, .explorer-list button.selected { background: var(--accent); color: #fff; }
.explorer-detail { padding: 38px; }
.explorer-detail h2 { margin: 0 0 30px; font-size: 43px; }
.explorer-detail dl, .job-detail dl { margin: 0; }
.explorer-detail dl > div, .job-detail dl > div { display: grid; grid-template-columns: .65fr 1.35fr; gap: 25px; padding: 12px 0; border-top: 1px solid #3b554d; }
.explorer-detail dt, .job-detail dt { color: #779088; font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.explorer-detail dd, .job-detail dd { margin: 0; color: #d0dad6; font-size: 11px; }
.job-explorer { background: var(--night); color: #fff; }
.job-search { display: flex; align-items: end; justify-content: space-between; gap: 35px; padding: 32px; border-bottom: 1px solid #3b554d; }
.job-search h2 { max-width: 600px; margin: 0; font-size: 43px; }
.job-search input { width: min(360px, 100%); padding: 13px; border: 1px solid #49645b; outline: none; background: #18352e; color: #fff; }
.job-search input:focus { border-color: var(--accent); }
.job-layout { display: grid; grid-template-columns: .7fr 1.3fr; }
.job-list { max-height: 650px; overflow-y: auto; border-right: 1px solid #3b554d; }
.job-list button {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  width: 100%;
  min-height: 51px;
  padding-inline: 19px;
  border: 0;
  border-bottom: 1px solid #304b43;
  background: transparent;
  color: #b8c6c1;
  cursor: pointer;
  text-align: left;
  font-size: 10px;
}
.job-list button span { color: #718981; font-size: 7px; }
.job-list button:hover, .job-list button.selected { background: var(--accent); color: #fff; }
.job-detail { padding: 32px; }
.job-detail h3 { margin: 0 0 27px; font-size: 37px; }
.job-detail dl > div { padding: 10px 0; }
.not-found { min-height: 650px; padding-block: 100px; text-align: center; }
.not-found > span { color: var(--accent); font-family: var(--font-display); font-size: 130px; line-height: 1; }
.not-found h1 { max-width: 800px; margin: 20px auto; font-size: 60px; }
.not-found p { max-width: 570px; margin: 0 auto 35px; color: var(--ink-soft); }

/* System-level assets for the strategic pillars */
.integrity-layout,
.half-life-layout,
.portfolio-allocation-layout,
.root-network-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: stretch;
}
.integrity-score,
.readiness-gauge,
.half-life-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 28px;
  background: var(--night);
  color: #fff;
}
.integrity-score > span,
.readiness-gauge > span,
.half-life-score > span {
  color: var(--aqua);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.integrity-score strong,
.readiness-gauge strong,
.half-life-score strong {
  margin: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 82px);
  line-height: .9;
}
.integrity-score strong small { font-size: 17px; }
.integrity-score p,
.half-life-score small { margin: 0; color: #becbd2; font-size: 10px; line-height: 1.6; }
.integrity-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}
.readiness-grid {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 28px;
}
.readiness-gauge b { align-self: flex-start; padding: 7px 10px; background: var(--accent); font-size: 8px; text-transform: uppercase; }
.readiness-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.readiness-cards article {
  display: flex;
  flex-direction: column;
  min-height: 134px;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.readiness-cards span { color: var(--accent); font-size: 8px; font-weight: 820; }
.readiness-cards strong { margin: 17px 0; font-family: var(--font-display); font-size: 19px; }
.readiness-cards b { margin-top: auto; font-size: 10px; }
.market-comparison,
.credibility-gap-grid,
.tool-contract-grid,
.case-router {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.market-comparison article,
.credibility-gap-grid article,
.tool-contract-grid article,
.case-router article {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.market-comparison article > div:first-child,
.credibility-gap-grid article > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.market-comparison h3,
.credibility-gap-grid h3,
.tool-contract-grid h3,
.case-router h3 { margin: 0; font-size: 22px; }
.market-comparison article > div > strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 30px;
  text-align: right;
}
.market-comparison article > div > strong small { display: block; color: var(--ink-soft); font-family: var(--font-body); font-size: 7px; text-transform: uppercase; }
.market-comparison p,
.credibility-gap-grid p { margin: 24px 0 0; color: var(--ink-soft); font-size: 9px; line-height: 1.6; }
.root-network-layout { grid-template-columns: 1.1fr .9fr; }
.root-network {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(0,117,169,.12), transparent 35%),
    #e8eef1;
}
.root-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 122px;
  min-height: 70px;
  padding: 10px;
  border: 2px solid var(--ink);
  background: #fff;
  text-align: center;
}
.root-node b { font-family: var(--font-display); font-size: 15px; }
.root-node small { margin-top: 4px; color: var(--ink-soft); font-size: 7px; text-transform: uppercase; }
.rn-a { left: 7%; top: 9%; }
.rn-b { right: 7%; top: 13%; border-color: var(--accent); }
.rn-c { left: 37%; top: 41%; background: var(--night); color: #fff; }
.rn-c small { color: var(--aqua); }
.rn-d { left: 9%; bottom: 8%; }
.rn-e { right: 9%; bottom: 10%; border-color: var(--accent); }
.root-link {
  position: absolute;
  z-index: 1;
  left: 24%;
  top: 25%;
  width: 45%;
  height: 1px;
  transform-origin: left center;
  background: #7e929f;
}
.link-1 { transform: rotate(16deg); }
.link-2 { left: 27%; top: 70%; width: 42%; transform: rotate(-27deg); }
.link-3 { left: 48%; top: 50%; width: 34%; transform: rotate(-42deg); background: var(--accent); }
.link-4 { left: 48%; top: 53%; width: 34%; transform: rotate(36deg); background: var(--accent); }
.link-5 { left: 25%; top: 24%; width: 64%; transform: rotate(40deg); opacity: .55; }
.segmentation-tree {
  display: grid;
  gap: 24px;
  padding: 32px;
  background: #e7eef1;
}
.tree-level { display: grid; gap: 22px; }
.level-root { grid-template-columns: minmax(180px, 300px); justify-content: center; }
.level-two { grid-template-columns: repeat(2, 1fr); }
.level-three { grid-template-columns: repeat(4, 1fr); }
.tree-level span {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 14px;
  border-top: 3px solid var(--accent);
  background: #fff;
  box-shadow: 5px 6px 0 #ced9de;
  text-align: center;
}
.tree-level b { font-family: var(--font-display); font-size: 18px; }
.tree-level small { margin-top: 6px; color: var(--ink-soft); font-size: 8px; }
.tree-connector {
  width: 1px;
  height: 30px;
  margin: -15px auto;
  background: var(--ink);
}
.credibility-gap-grid { grid-template-columns: repeat(2, 1fr); }
.credibility-gap-grid article > div b {
  align-self: flex-start;
  padding: 5px 7px;
  background: var(--night);
  color: #fff;
  font-size: 8px;
}
.erosion-control,
.portfolio-budget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 24px;
  background: var(--night);
  color: #fff;
  font-size: 10px;
  font-weight: 760;
}
.erosion-control { grid-column: 1 / -1; }
.erosion-control span { min-width: 155px; }
.erosion-control input { width: 100%; accent-color: var(--aqua); }
.half-life-score { min-height: 260px; }
.half-life-score strong { font-size: 48px; }
.erosion-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  min-height: 260px;
  padding: 25px 20px 20px;
  border: 1px solid var(--line);
  background: #fff;
}
.erosion-chart article { display: grid; grid-template-rows: 180px auto auto; gap: 7px; justify-items: center; height: 100%; }
.erosion-chart i { align-self: end; width: 65%; min-height: 3px; background: var(--accent); }
.erosion-chart span { color: var(--ink-soft); font-size: 7px; }
.erosion-chart b { font-size: 8px; }
.growth-frontier { min-height: 560px; }
.growth-frontier .map-point span small { display: block; margin-top: 2px; color: var(--ink-soft); font-weight: 600; }
.frontier-line {
  position: absolute;
  left: 15%;
  bottom: 18%;
  width: 74%;
  height: 2px;
  transform: rotate(42deg);
  transform-origin: left center;
  border-top: 2px dashed var(--accent);
}
.portfolio-budget { margin-bottom: 28px; }
.portfolio-budget span { display: flex; align-items: center; gap: 8px; color: var(--aqua); }
.portfolio-budget input {
  width: 170px;
  padding: 10px;
  border: 1px solid #496071;
  background: #192636;
  color: #fff;
  font: inherit;
  text-align: right;
}
.portfolio-allocation-layout { grid-template-columns: .55fr 1.45fr; align-items: center; }
.allocation-donut {
  display: grid;
  place-items: center;
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
}
.allocation-donut > span {
  display: grid;
  place-items: center;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper-light);
}
.allocation-donut b { font-family: var(--font-display); font-size: 46px; }
.allocation-donut small { color: var(--ink-soft); font-size: 7px; text-transform: uppercase; }
.allocation-list article { padding: 14px 0; border-top: 1px solid var(--line); }
.allocation-list article > div { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 10px; }
.allocation-list article > div span { color: var(--ink-soft); font-size: 9px; }
.horizon-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.horizon-timeline article {
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.horizon-timeline article > span { color: var(--accent); font-size: 9px; font-weight: 820; }
.horizon-timeline h3 { margin: 25px 0 8px; font-size: 25px; }
.horizon-timeline strong { display: block; min-height: 36px; font-size: 10px; }
.horizon-timeline article > div { height: 11px; margin: 24px 0 8px; background: #d4dde2; }
.horizon-timeline i { display: block; max-width: 100%; height: 100%; background: var(--accent); }
.horizon-timeline b { font-size: 8px; }
.horizon-timeline p { margin: 22px 0 0; color: var(--ink-soft); font-size: 10px; }
.cross-impact-grid {
  display: grid;
  grid-template-columns: 130px repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}
.cross-impact-grid > * {
  display: grid;
  place-items: center;
  min-height: 70px;
  margin: 0;
  padding: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-style: normal;
  text-align: center;
}
.cross-impact-grid b { color: #4c5d69; text-transform: uppercase; }
.cross-impact-grid i { font-family: var(--font-display); font-size: 20px; }
.impact-neg { background: #dfe4e7; color: #263844; }
.impact-pos { background: #d8edf2; color: #005b84; }
.impact-zero { background: #f3f4f5; color: #a2abb1; }
.cross-impact-grid .strength-3 { background: var(--accent); color: #fff; }
.regret-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.method-selector-flow {
  display: flex;
  align-items: stretch;
  margin-bottom: 28px;
}
.method-selector-flow span {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  text-align: center;
}
.method-selector-flow b { display: grid; place-items: center; width: 48px; color: var(--accent); }
.tool-contract-grid { grid-template-columns: repeat(4, 1fr); }
.tool-contract-grid article { position: relative; padding-top: 55px; }
.tool-contract-grid article > span {
  position: absolute;
  left: 24px;
  top: 20px;
  color: var(--accent);
  font-size: 7px;
  font-weight: 820;
  text-transform: uppercase;
}
.tool-contract-grid article > b { display: block; margin-top: 24px; color: var(--accent); font-family: var(--font-display); font-size: 28px; }
.case-router { grid-template-columns: repeat(5, 1fr); }
.case-router article > span { color: var(--accent); font-size: 9px; font-weight: 820; }
.case-router h3 { min-height: 76px; margin-top: 24px; }
.case-router dl { margin: 0; }
.case-router dl > div { padding: 12px 0; border-top: 1px solid var(--line); }
.case-router dt { color: var(--ink-soft); font-size: 7px; text-transform: uppercase; }
.case-router dd { margin: 4px 0 0; font-size: 9px; line-height: 1.4; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .header-cta { margin-left: auto; }
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-decision-entries { width: min(720px, calc(100% - 20px)); }
  .usage-proof-section { grid-template-columns: 1fr; }
  .decision-lab { width: min(720px, calc(100% - 20px)); margin-inline: auto; }
  .topic-grid, .strategic-choice-grid, .deliverable-grid, .theme-grid, .portal-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-layout { grid-template-columns: 1fr; }
  .editorial-doctrine { position: static; max-width: 850px; }
  .system-section { grid-template-columns: 1fr; }
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-side { max-width: 700px; }
  .cadrage-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-tool { grid-template-columns: 1fr; }
  .page-tool .decision-lab { width: 100%; }
  .tool-spec { grid-template-columns: 1fr; }
  .tool-spec aside { max-width: 700px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
  .semantic-hero-grid { gap: 50px; }
  .decision-brief { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .asset-heading { grid-template-columns: 1fr 1fr; gap: 45px; }
  .metric-stack { grid-template-columns: 1fr; }
  .metric-stack > div { min-height: 140px; }
  .gate-flow { grid-template-columns: 1fr 1fr; }
  .value-chain-chart { grid-template-columns: repeat(3, 1fr); }
  .segmentation-quality { grid-template-columns: 1fr 1fr; }
  .market-comparison,
  .case-router { grid-template-columns: repeat(2, 1fr); }
  .tool-contract-grid { grid-template-columns: repeat(2, 1fr); }
  .root-network-layout,
  .regret-layout { grid-template-columns: 1fr; }
  .cycle-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cycle-step {
    border-bottom: 1px solid #cbbfaa;
    font-size: 8px;
  }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 30px, 1180px); }
  .cycle-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-inner { height: 68px; }
  .site-header .brand-primary { display: none; }
  .site-header .brand-symbol { display: grid; width: 54px; height: 54px; }
  .header-cta { display: none; }
  .mobile-nav > nav { top: 69px; }
  .hero { min-height: 0; padding-block: 60px 70px; }
  .hero h1 { font-size: clamp(44px, 13vw, 60px); }
  .hero-actions, .closing-cta > div:last-child { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .decision-lab { width: calc(100% - 10px); box-shadow: 10px 12px 0 #d8d0c2; }
  .lab-body { padding: 18px; }
  .profile-tabs { grid-template-columns: 1fr; }
  .range-grid { grid-template-columns: 1fr; }
  .lab-result { grid-template-columns: 1fr; }
  .position-section, .dark-section, .deliverables-section, .strategy-corpus-section, .editorial-section { padding-block: 88px; }
  .position-grid, .section-heading, .anatomy-grid { grid-template-columns: 1fr; gap: 30px; }
  .position-grid { gap: 35px; }
  .topic-grid, .strategic-choice-grid, .strategy-corpus-grid, .deliverable-grid, .theme-grid, .portal-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 310px; }
  .strategic-choice-card { min-height: 0; }
  .strategy-corpus-card { min-height: 0; }
  .strategy-corpus-card dl > div { grid-template-columns: 1fr; gap: 5px; }
  .editorial-layout { gap: 50px; }
  .editorial-facts article { grid-template-columns: 1fr; gap: 8px; }
  .method-cycle-section { padding-top: 86px; }
  .method-cycle-heading { grid-template-columns: 1fr; gap: 25px; padding-bottom: 36px; }
  .system-section { padding-block: 90px; gap: 55px; }
  .evidence-map { padding: 20px; }
  .evidence-map-head { margin-bottom: 22px; }
  .evidence-flow {
    grid-template-columns: 1fr;
    grid-template-areas: "source" "observation" "hypothesis" "scenario" "option" "decision";
    gap: 38px;
  }
  .proof-step { min-height: 104px; }
  .proof-step.source::after,
  .proof-step.observation::after,
  .proof-step.hypothesis::after,
  .proof-step.scenario::after,
  .proof-step.option::after {
    content: "↓";
    left: calc(50% - 12px);
    right: auto;
    top: auto;
    bottom: -32px;
  }
  .evidence-revision { align-items: flex-start; margin-top: 26px; }
  .living-section { padding-block: 85px; }
  .living-head { display: none; }
  .living-row { grid-template-columns: 1fr; gap: 8px; padding-block: 22px; }
  .quality-strip, .quality-gate { grid-template-columns: 1fr 1fr; }
  .quality-strip > div:nth-child(2), .quality-gate > div:nth-child(2) { border-right: 1px solid var(--line); }
  .quality-strip > div:nth-child(n+3), .quality-gate > div:nth-child(n+3) { border-top: 0; }
  .blueprint-export { align-items: stretch; flex-direction: column; }
  .closing-cta { padding-bottom: 90px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .cookie-consent {
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding: 15px;
  }
  .cookie-consent-copy { grid-template-columns: 1fr; gap: 3px; }
  .cookie-consent h2 { grid-row: auto; }
  .cookie-consent-actions { min-width: 0; }
  body:has(.cookie-consent) #prisme-widget-root {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .legal-page { padding-bottom: 85px; }
  .legal-hero { padding-block: 65px 70px; }
  .legal-hero h1 { font-size: clamp(42px, 12vw, 60px); }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-layout > aside { position: static; }
  .legal-facts { grid-template-columns: 1fr; }
  .legal-facts > div { min-height: 120px; }
  .legal-facts p { margin-top: 24px; }
  .cookie-table > div { grid-template-columns: 1fr; gap: 8px; }
  .cookie-table-head { display: none; }
  .page-hero { padding-block: 65px 75px; gap: 50px; }
  .page-hero h1 { overflow-wrap: normal; font-size: clamp(40px, 11vw, 52px); }
  .hero-decision-entries { width: calc(100% - 10px); padding: 25px 20px; box-shadow: 10px 12px 0 #d8d0c2; }
  .usage-proof-section { padding-block: 78px; }
  .usage-proof-actions { align-items: stretch; flex-direction: column; }
  .usage-proof-result { grid-template-columns: 1fr; box-shadow: 10px 12px 0 var(--paper-deep); }
  .usage-proof-result .usage-proof-decision { grid-column: auto; }
  .decision-apply-cta { grid-template-columns: 1fr; gap: 25px; margin-block: 48px; }
  .page-hero-cadrage { padding-bottom: 54px; }
  .cadrage-experience { padding-block: 70px; }
  .cadrage-intro,
  .cadrage-result { grid-template-columns: 1fr; }
  .cadrage-intro { gap: 24px; }
  .cadrage-intro h2 { font-size: clamp(37px, 11vw, 50px); }
  .cadrage-options,
  .cadrage-options-types { grid-template-columns: 1fr; }
  .cadrage-options label { min-height: 126px; }
  .cadrage-question { padding: 28px 20px; }
  .cadrage-question legend { font-size: clamp(29px, 9vw, 39px); }
  .cadrage-actions { display: grid; grid-template-columns: 1fr 1fr; padding-inline: 20px; }
  .cadrage-actions .button { min-width: 0; }
  .cadrage-privacy { padding-inline: 20px; text-align: left; }
  .cadrage-score { min-height: 380px; }
  .cadrage-result-actions { flex-direction: column; }
  .cadrage-result-actions .button { flex: none; }
  .page-tool { padding-bottom: 90px; }
  .decision-anatomy { padding-block: 80px; }
  .tool-spec { padding-block: 88px; gap: 50px; }
  .tool-flow { grid-template-columns: 1fr; }
  .tool-flow > i { transform: rotate(90deg); text-align: center; }
  .theme-section { padding-block: 85px; }
  .quality-gate { padding-block: 80px; }
  .quality-gate > div { min-height: 170px; border-bottom: 1px solid var(--line); }
  .next-page > a { grid-template-columns: 55px 1fr 30px; padding-inline: 10px; }
  .next-page > a strong { font-size: 18px; }
  .deliverable-hero { grid-template-columns: 1fr; gap: 25px; min-height: auto; padding-block: 65px 80px; }
  .deliverable-number { font-size: 90px; }
  .deliverable-hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .deliverable-content article, .deliverable-standard { grid-template-columns: 1fr; gap: 35px; }
  .deliverable-standard { padding: 30px; }
  .standard-grid { grid-template-columns: 1fr; }
  .explorer-card, .job-layout { grid-template-columns: 1fr; }
  .explorer-index { border-right: 0; border-bottom: 1px solid #3b554d; }
  .explorer-list { max-height: 330px; }
  .job-search { align-items: stretch; flex-direction: column; }
  .job-search input { width: 100%; }
  .job-list { max-height: 330px; border-right: 0; border-bottom: 1px solid #3b554d; }
  .explorer-detail dl > div, .job-detail dl > div { grid-template-columns: 1fr; gap: 4px; }
  .semantic-hero { padding-block: 15px 70px; }
  .semantic-hero-grid,
  .semantic-definition-grid,
  .semantic-contract,
  .decision-brief { grid-template-columns: 1fr; gap: 48px; }
  .semantic-hero-grid { min-height: auto; padding-top: 45px; }
  .semantic-hero h1 { overflow-wrap: normal; font-size: clamp(42px, 12vw, 60px); }
  .semantic-definition { padding-block: 80px; }
  .semantic-contract { padding-block: 80px; }
  .semantic-contract article {
    padding-right: 0;
    padding-bottom: 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .decision-brief { padding-bottom: 80px; }
  .decision-brief-grid { grid-template-columns: 1fr; }
  .decision-brief-grid > article,
  .decision-brief-next { min-height: 0; }
  .related-grid { grid-template-columns: 1fr; }
  .semantic-next strong { font-size: 19px; }
  .strategic-asset { margin-bottom: 85px; box-shadow: 7px 9px 0 var(--paper-deep); }
  .asset-heading,
  .calculator-grid,
  .ranking-layout,
  .source-layout,
  .dependency-layout,
  .signal-layout,
  .position-map-layout,
  .matrix-layout { grid-template-columns: 1fr; gap: 32px; }
  .asset-heading,
  .asset-canvas { padding: 26px; }
  .demo-notice { padding-inline: 26px; }
  .gap-grid { grid-template-columns: 1fr; }
  .position-map,
  .portfolio-matrix { min-height: 420px; }
  .map-legend,
  .critical-comparison { min-height: 250px; }
  .coherence-layout,
  .barrier-layout,
  .community-layout,
  .differentiation-layout { grid-template-columns: 1fr; gap: 30px; }
  .choice-cards { grid-template-columns: 1fr; }
  .choice-cards article { min-height: 330px; }
  .reconciliation-grid { grid-template-columns: 1fr; }
  .reconciliation-gap { min-height: 220px; }
  .value-chain-chart { grid-template-columns: 1fr 1fr; }
  .segmentation-quality { grid-template-columns: 1fr; }
  .economics-results { grid-template-columns: 1fr; }
  .economics-results > p { grid-column: auto; }
  .value-equation-result { grid-template-columns: 1fr; }
  .value-equation-result > i { height: 32px; }
  .value-equation-result > strong { grid-column: auto; }
  .integrity-layout,
  .readiness-grid,
  .half-life-layout,
  .portfolio-allocation-layout { grid-template-columns: 1fr; gap: 28px; }
  .readiness-cards,
  .market-comparison,
  .credibility-gap-grid,
  .horizon-timeline,
  .tool-contract-grid,
  .case-router { grid-template-columns: 1fr; }
  .level-three { grid-template-columns: repeat(2, 1fr); }
  .root-network { min-height: 500px; }
  .portfolio-budget { align-items: stretch; flex-direction: column; }
  .portfolio-budget span,
  .portfolio-budget input { width: 100%; }
  .cross-impact-grid { grid-template-columns: 92px repeat(4, minmax(75px, 1fr)); overflow-x: auto; }
  .method-selector-flow { flex-direction: column; }
  .method-selector-flow b { width: 100%; height: 35px; transform: rotate(90deg); }
  .case-router h3 { min-height: 0; }
}

/* Lot 3.5 — lisibilité et accessibilité, limitées aux pages Strategy auditées. */
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--night);
  color: #fff;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }
.strategy-optimization-scope,
.strategy-optimization-scope > *,
.strategy-optimization-scope .page-hero > *,
.strategy-optimization-scope .semantic-hero-grid > * { min-width: 0; }
.strategy-optimization-scope :is(p, li, td, th, figcaption, code, pre) {
  font-size: max(14px, 1em) !important;
  line-height: 1.5 !important;
}
.strategy-optimization-scope .cycle-step {
  font-size: 12px !important;
  line-height: 1.25 !important;
}
.strategy-optimization-scope .quality-strip p { font-size: 20px !important; }
.strategy-optimization-scope .anatomy-grid li { font-size: 20px !important; }
.strategy-optimization-scope .tool-spec aside li { font-size: 17px !important; }
.strategy-optimization-scope p { max-width: 65ch; }
.strategy-optimization-scope .legal-facts { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.strategy-optimization-scope :is(.kicker, .micro-label) { color: #005f89; }
.strategy-optimization-scope :is(.dark-section, .decision-anatomy, .semantic-definition, .strategic-asset-dark) :is(.kicker, .micro-label) { color: #79c7e2; }
.strategy-optimization-scope .decision-apply-cta-closing .micro-label { color: #79c7e2; }
.strategy-optimization-scope :is(.map-legend, .critical-comparison) p { color: #e1eaee; }
.strategy-optimization-scope :is(.map-legend, .critical-comparison) blockquote { color: #f3f7f9; }
.strategy-optimization-scope input[type="range"] { min-height: 24px; }
body:has(main.strategy-optimization-scope) .cookie-settings-trigger { left: 4px; }
body:has(main.strategy-optimization-scope) :is(.site-footer, .cookie-consent) :is(p, li) {
  font-size: 14px !important;
  line-height: 1.5 !important;
}
body:has(main.strategy-optimization-scope) .footer-grid > div:not(:first-child) a,
body:has(main.strategy-optimization-scope) .cookie-consent-copy > a,
body:has(main.strategy-optimization-scope) .breadcrumbs a,
body:has(main.strategy-optimization-scope) .family-door-breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

@media (max-width: 430px) {
  :root { --floating-control-bottom: 10px; }
  .cookie-consent-actions { grid-template-columns: 1fr 1fr; }
  .cookie-settings-trigger { left: 10px; }
  .back-to-top {
    right: 10px;
    width: 42px;
    padding-inline: 0;
    justify-content: center;
    font-size: 0;
  }
  .back-to-top span { font-size: 18px; }
  .hero-proof { flex-direction: column; }
  .lab-evidence { grid-template-columns: 1fr; }
  .quality-strip, .quality-gate { grid-template-columns: 1fr; }
  .quality-strip > div, .quality-strip > div:nth-child(2), .quality-gate > div, .quality-gate > div:nth-child(2) { border-right: 1px solid var(--line); }
  .quality-strip > div + div, .quality-gate > div + div { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div { grid-column: 1 !important; }
  .formula-strip,
  .causal-chain { flex-direction: column; }
  .formula-strip b,
  .causal-chain b { width: 100%; height: 38px; transform: rotate(90deg); }
  .metric-stack { grid-template-columns: 1fr; }
  .gate-flow { grid-template-columns: 1fr; }
  .gate-flow article { min-height: 250px; }
  .dependency-network { min-height: 520px; }
  .node-core { left: 26%; top: 42%; }
  .node-a { left: 5%; }
  .node-b { right: 5%; }
  .node-c { left: 4%; }
  .node-d { right: 4%; }
  .dependency-edge { display: none; }
  .boundary-equation { flex-direction: column; }
  .boundary-equation b { width: 100%; height: 35px; transform: rotate(90deg); }
  .value-chain-chart { grid-template-columns: 1fr; }
  .competitor-universe { min-height: 790px; }
  .competitor-center { top: 50%; }
  .competitor-layer { width: calc(100% - 34px); left: 17px !important; right: auto !important; }
  .competitor-layer-1 { top: 18px; }
  .competitor-layer-2 { top: 155px; }
  .competitor-layer-3 { bottom: 155px; }
  .competitor-layer-4 { bottom: 18px; }
  .community-map { min-height: 620px; }
  .community-a { left: 8%; }
  .community-b { right: 8%; top: 34%; }
  .community-c { left: 9%; bottom: 3%; }
  .community-bridge { display: none; }
  .readiness-cards,
  .level-two,
  .level-three { grid-template-columns: 1fr; }
  .segmentation-tree { padding: 20px; }
  .erosion-chart { grid-template-columns: repeat(3, 1fr); gap: 18px 0; }
  .erosion-chart article { grid-template-rows: 120px auto auto; }
  .allocation-list article > div { flex-direction: column; gap: 5px; }
  .root-node { width: 108px; }
  .rn-a { left: 3%; }
  .rn-b { right: 3%; }
  .rn-c { left: 32%; }
  .rn-d { left: 3%; }
  .rn-e { right: 3%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Observatoire stratégique — signaux générés par la chaîne Veille. */
.strategy-signal { background: var(--paper); }
.strategy-signal-reading { width: min(100% - 40px, 780px); margin-inline: auto; }
.strategy-signal-hero { padding: 46px 0 40px; border-bottom: 1px solid var(--line); background: var(--paper-light); }
.strategy-signal-breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; color: var(--ink-soft); font-size: 12px; }
.strategy-signal-breadcrumb a { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.strategy-signal-kicker,
.strategy-signal-index { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.strategy-signal-kicker { margin-top: 28px; }
.strategy-signal-hero h1 { max-width: 760px; margin: 16px 0 28px; font-size: clamp(42px, 7vw, 76px); line-height: .96; }
.strategy-signal-state { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--accent); background: #fff; }
.strategy-signal-state > * { padding: 12px 14px; border-right: 1px solid var(--accent); border-bottom: 1px solid var(--accent); font-size: 11px; }
.strategy-signal-state > *:nth-child(2n) { border-right: 0; }
.strategy-signal-state > *:nth-last-child(-n + 2) { border-bottom: 0; }
.strategy-signal-state strong { background: var(--accent); color: #fff; text-transform: uppercase; }
.registry-calendar-actions,
.registry-calendar-subscription { display: grid; gap: 18px; margin-top: 24px; padding: 22px; border: 1px solid var(--accent); background: #fff; }
.registry-calendar-actions h2,
.registry-calendar-subscription h2 { margin: 4px 0 0; font-size: clamp(22px, 3vw, 31px); line-height: 1.08; }
.registry-calendar-actions > p,
.registry-calendar-subscription p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.registry-calendar-label { color: var(--accent) !important; font-size: 10px !important; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.registry-calendar-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.registry-calendar-buttons a { display: inline-flex; align-items: center; min-height: 44px; padding: 11px 15px; border: 1px solid var(--ink); background: var(--ink); color: #fff; font-size: 12px; font-weight: 800; }
.registry-calendar-buttons a:hover { background: var(--accent); border-color: var(--accent); }
.registry-calendar-subscription { grid-template-columns: minmax(0, 1fr) auto; align-items: center; margin-block: 42px 70px; }
.strategy-signal-sections > section { padding: 50px 0; border-bottom: 1px solid var(--line); }
.strategy-signal-sections h2 { margin: 8px 0 24px; font-size: clamp(29px, 4.5vw, 44px); }
.strategy-signal-sections h3 { margin: 0 0 8px; font-size: 19px; }
.strategy-signal-sections p { max-width: 68ch; line-height: 1.72; }
.strategy-signal-audience,
.strategy-position-cases { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); background: #fff; }
.strategy-signal-audience article,
.strategy-position-cases article { padding: 20px; }
.strategy-signal-audience article + article,
.strategy-position-cases article + article { border-left: 1px solid var(--line); }
.strategy-signal-audience span,
.strategy-position-shift span,
.strategy-position-cases span,
.strategy-signal-correction article span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.strategy-position-shift { display: grid; grid-template-columns: 1fr 48px 1fr; align-items: stretch; margin-bottom: 28px; border: 1px solid var(--line); background: #fff; }
.strategy-position-shift article { padding: 22px; }
.strategy-position-shift b { display: grid; place-items: center; background: var(--night); color: #fff; }
.strategy-position-cases { margin-top: 26px; }
.strategy-arbitrations { margin: 0; padding: 0; border: 1px solid var(--line); background: #fff; list-style: none; }
.strategy-arbitrations li { display: grid; grid-template-columns: 66px 1fr; border-bottom: 1px solid var(--line); }
.strategy-arbitrations li:last-child { border-bottom: 0; }
.strategy-arbitrations li > span { display: grid; place-items: start center; padding-top: 22px; border-right: 1px solid var(--line); color: var(--accent); font-weight: 800; }
.strategy-arbitrations li > div { padding: 20px; }
.strategy-arbitrations dl { display: grid; grid-template-columns: 1fr 1fr; margin: 18px 0 0; border-top: 1px solid var(--line); }
.strategy-arbitrations dl div { padding: 12px 12px 0 0; }
.strategy-arbitrations dt { color: var(--ink-soft); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.strategy-arbitrations dd { margin: 4px 0 0; font-size: 12px; font-weight: 700; }
.strategy-signal-correction article { padding: 18px 20px; border: 1px solid var(--line); background: #fff; }
.strategy-signal-correction article + article { border-top: 0; border-left: 4px solid var(--accent); }
.strategy-signal-sources { padding-left: 20px; }
.strategy-signal-sources li { margin: 12px 0; }
.strategy-signal-sources a { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.strategy-signal-revisions { margin-bottom: 70px; padding: 0; list-style: none; }
.strategy-signal-revisions li { display: grid; grid-template-columns: 150px 1fr; padding: 14px 0; border-top: 1px solid var(--line); }
.strategy-signal-revisions time { color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.strategy-signal-revisions p { margin: 0; }

@media (max-width: 620px) {
  .registry-calendar-subscription { grid-template-columns: 1fr; }
  .registry-calendar-buttons { align-items: stretch; flex-direction: column; }
  .registry-calendar-buttons a { justify-content: center; }
  .strategy-signal-state,
  .strategy-signal-audience,
  .strategy-position-cases,
  .strategy-position-shift { grid-template-columns: 1fr; }
  .strategy-signal-state > *,
  .strategy-signal-state > *:nth-child(2n),
  .strategy-signal-state > *:nth-last-child(-n + 2) { border-right: 0; border-bottom: 1px solid var(--accent); }
  .strategy-signal-state > *:last-child { border-bottom: 0; }
  .strategy-signal-audience article + article,
  .strategy-position-cases article + article { border-left: 0; border-top: 1px solid var(--line); }
  .strategy-position-shift b { min-height: 36px; transform: none; }
  .strategy-arbitrations dl { grid-template-columns: 1fr; }
  .strategy-signal-revisions li { grid-template-columns: 1fr; gap: 6px; }
}

.cocoon-depth {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-block: 54px;
  padding: 1px;
  background: var(--line);
}

.cocoon-depth article {
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
}

.cocoon-depth h2 { margin: 0 0 14px; font-size: clamp(22px, 3vw, 31px); }
.cocoon-depth p, .cocoon-depth li { line-height: 1.65; }
.cocoon-depth ul { margin: 18px 0 0; padding-left: 19px; }

.cocoon-resources {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  margin-block: 54px;
  padding-block: 38px;
  border-block: 1px solid var(--line);
}

.cocoon-resources h2 { margin: 8px 0 22px; font-size: clamp(25px, 4vw, 39px); }
.cocoon-resources ul { margin: 0; padding: 0; list-style: none; }
.cocoon-resources li { padding: 14px 0; border-top: 1px solid var(--line); }
.cocoon-resources li:first-child { border-top: 0; }
.cocoon-resources a { font-weight: 800; text-underline-offset: 4px; }
.cocoon-resources li span { display: block; margin-top: 5px; color: var(--ink-soft); line-height: 1.5; }
.cocoon-download { display: inline-flex; padding: 12px 16px; border: 1px solid var(--night); text-decoration: none; }

.method-quality-framework { padding-block: 0 var(--page-bottom-space); }
.method-quality-framework-heading { max-width: 720px; margin-bottom: 28px; }
.method-quality-framework-heading h2 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 42px); }
.method-quality-framework-heading p:last-child { margin: 0; color: var(--ink-soft); }
.method-quality-framework-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.method-quality-framework-grid article { padding: 24px; border: 1px solid var(--line); background: #fffdf9; }
.method-quality-framework-grid h2 { margin: 0 0 10px; font-size: 20px; }
.method-quality-framework-grid p { margin: 0; color: var(--ink-soft); line-height: 1.65; }

.expansion-asset { margin-block: 50px; border: 1px solid var(--line); background: #fff; }
.expansion-asset header { padding: clamp(22px, 4vw, 38px); background: var(--night); color: #fff; }
.expansion-asset header p { max-width: 70ch; margin-bottom: 0; color: #d6deed; line-height: 1.6; }
.expansion-asset-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.expansion-asset-grid article { padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.expansion-asset-grid article:nth-child(2n) { border-right: 0; }
.expansion-asset-grid h3 { margin: 0 0 10px; font-size: 18px; }
.expansion-asset-grid dl { margin: 0; }
.expansion-asset-grid dt { margin-top: 12px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.expansion-asset-grid dd { margin: 4px 0 0; line-height: 1.55; }
.expansion-asset footer { padding: 22px 24px; }
.expansion-asset footer strong { display: block; margin-bottom: 6px; }

@media (max-width: 760px) {
  .cocoon-depth, .cocoon-resources, .expansion-asset-grid, .method-quality-framework-grid { grid-template-columns: 1fr; }
  .expansion-asset-grid article { border-right: 0; }
}

/* Analyse de la valeur 2026-08-22 : outils, cas, diagnostic et accueil. */
.homepage-diagnostic-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  margin-block: 70px 110px;
  padding-block: clamp(34px, 5vw, 58px);
  border-block: 1px solid var(--line);
}
.homepage-diagnostic-section h2 { max-width: 760px; margin: 8px 0 18px; font-size: clamp(34px, 5vw, 58px); line-height: 1.02; }
.homepage-diagnostic-section p { color: var(--ink-soft); line-height: 1.7; }
.homepage-diagnostic-priority { margin-block: clamp(42px, 6vw, 78px) clamp(64px, 8vw, 108px); }
.homepage-editorial-note { margin-top: 24px; font-size: 12px !important; }
.homepage-diagnostic-result { padding: clamp(22px, 3vw, 32px); background: var(--night); color: #fff; box-shadow: 14px 16px 0 #d8d0c2; }
.homepage-diagnostic-result .micro-label { margin: 0 0 18px; color: var(--aqua); }
.homepage-diagnostic-result ul { display: grid; gap: 0; margin: 0 0 24px; padding: 0; list-style: none; border-top: 1px solid #3b5264; }
.homepage-diagnostic-result li { display: grid; gap: 4px; padding: 13px 0; border-bottom: 1px solid #3b5264; }
.homepage-diagnostic-result strong { font-family: var(--font-display); font-size: 18px; line-height: 1.15; }
.homepage-diagnostic-result span { color: #c4d0d8; font-size: 12px; line-height: 1.45; }
.homepage-diagnostic-result .button { width: 100%; justify-content: space-between; }
.homepage-depth-section { margin-block: 0 var(--page-bottom-space); padding-top: clamp(48px, 7vw, 90px); border-top: 1px solid var(--line); }
.homepage-depth-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr); gap: 28px; align-items: end; margin-bottom: 28px; }
.homepage-depth-heading .kicker, .homepage-depth-heading h2 { grid-column: 1; }
.homepage-depth-heading h2 { max-width: 16ch; margin: 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.03; }
.homepage-depth-heading > p:last-child { grid-column: 2; grid-row: 1 / span 2; margin: 0; color: var(--ink-soft); line-height: 1.7; }
.homepage-depth-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.homepage-depth-card { display: grid; grid-template-rows: auto auto 1fr auto; min-height: 252px; padding: clamp(20px, 3vw, 30px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; color: var(--night); text-decoration: none; transition: background-color .2s ease, transform .2s ease; }
.homepage-depth-card:hover { background: #edf7fa; transform: translateY(-3px); }
.homepage-depth-card > span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.homepage-depth-card strong { margin-top: 28px; font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.08; }
.homepage-depth-card small { margin-top: 13px; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.homepage-depth-card b { margin-top: 22px; color: var(--accent); font-size: 20px; }
.tool-need-selector { margin: 0 0 22px; padding: 0; border: 0; }
.tool-need-selector legend { margin-bottom: 13px; font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.tool-need-selector > div { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-need-selector label { position: relative; display: inline-flex; min-height: 44px; align-items: center; padding: 10px 14px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.tool-need-selector label.selected { border-color: var(--accent); background: var(--accent); color: #fff; }
.tool-need-selector input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; }
.tool-need-selector label:has(input:focus-visible) { outline: 3px solid var(--aqua); outline-offset: 3px; }
.tool-need-selector span { font-size: 12px; font-weight: 800; }
.tool-recommendation { margin: 0 0 24px; padding: 14px 16px; border-left: 4px solid var(--accent); background: #edf7fa; }
.functional-tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.functional-tool-grid article { display: flex; min-width: 0; flex-direction: column; padding: clamp(20px, 3vw, 28px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.functional-tool-grid article.recommended { box-shadow: inset 0 5px 0 var(--accent); }
.functional-tool-card-head { display: flex; justify-content: space-between; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.functional-tool-grid h3 { margin: 28px 0 16px; font-size: clamp(22px, 3vw, 29px); line-height: 1.08; }
.functional-tool-grid dl { margin: 0 0 26px; }
.functional-tool-grid dl div { padding: 12px 0; border-top: 1px solid var(--line); }
.functional-tool-grid dt { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.functional-tool-grid dd { margin: 5px 0 0; line-height: 1.55; }
.functional-tool-actions { display: grid; gap: 9px; margin-top: auto; }
.functional-tool-actions .button { justify-content: space-between; }
.functional-tool-actions .text-link { display: inline-flex; min-height: 44px; align-items: center; justify-content: space-between; padding: 8px 2px; }
.complete-case-list { display: grid; gap: 30px; }
.complete-case { border: 1px solid var(--line); background: #fff; }
.complete-case > header { padding: clamp(22px, 4vw, 34px); background: var(--night); color: #fff; }
.complete-case > header span { color: var(--aqua); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.complete-case > header h3 { max-width: 760px; margin: 12px 0 0; font-size: clamp(26px, 4vw, 38px); line-height: 1.08; }
.complete-case dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; }
.complete-case dl > div { padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.complete-case dl > div:nth-child(2n) { border-right: 0; }
.complete-case dl > div:last-child { grid-column: 1 / -1; border-right: 0; }
.complete-case dt { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.complete-case dd { margin: 7px 0 0; line-height: 1.62; }
.complete-case .case-calculation { background: #edf7fa; }
.complete-case > .button { margin: 20px; }
.cadrage-action-status { min-height: 24px; margin: 12px 0 0; color: var(--ink-soft); font-size: 12px !important; }

@media (max-width: 760px) {
  .homepage-diagnostic-section, .homepage-depth-heading, .homepage-depth-grid, .functional-tool-grid, .complete-case dl { grid-template-columns: 1fr; }
  .homepage-depth-heading .kicker, .homepage-depth-heading h2, .homepage-depth-heading > p:last-child { grid-column: auto; grid-row: auto; }
  .homepage-depth-heading { gap: 16px; }
  .homepage-depth-card { min-height: 0; }
  .complete-case dl > div, .complete-case dl > div:nth-child(2n) { border-right: 0; }
  .complete-case dl > div:last-child { grid-column: auto; }
}

@media print {
  body.cadrage-printing * { visibility: hidden !important; }
  body.cadrage-printing .cadrage-result,
  body.cadrage-printing .cadrage-result * { visibility: visible !important; }
  body.cadrage-printing .cadrage-result {
    position: static;
    width: 100%;
    border: 0;
    color: #000;
    background: #fff;
    box-shadow: none;
    print-color-adjust: exact;
  }
  body.cadrage-printing .cadrage-score { color: #000; background: #fff; border-bottom: 2px solid #000; }
  body.cadrage-printing .cadrage-result-actions,
  body.cadrage-printing .cadrage-action-status { display: none !important; }
}
.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
}

.locale-switcher a {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  text-decoration: none;
}

.locale-switcher a[aria-current="page"] {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Align PRISME and the return control with Marketing Plan. */
body:has(#prisme-widget-root) .back-to-top {
  right: auto;
  bottom: 84px;
  left: clamp(18px, 3vw, 42px);
}

@media (max-width: 760px) {
  body:has(main.strategy-optimization-scope):has(#prisme-widget-root) .back-to-top {
    position: fixed;
    right: auto;
    bottom: 76px;
    left: 16px;
    display: none;
    width: 42px;
    min-height: 42px;
    margin: 0;
    padding: 0;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(12, 19, 31, .18);
  }

  body:has(main.strategy-optimization-scope):has(#prisme-widget-root) .back-to-top.is-visible {
    display: inline-flex;
  }
}
