:root {
  --navy: #061927;
  --navy-panel: #0d3048;
  --navy-line: #2c4055;
  --orange: #f58a1f;
  --orange-dark: #ac5000;
  --off-white: #f7f9fa;
  --surface: #ffffff;
  --surface-soft: #f4f6f7;
  --ink: #243442;
  --steel-200: #d5dde5;
  --steel-500: #aeb9c4;
  --danger: #8f241d;
  --success: #0b6b45;
  --warning: #825000;
  --container: 1200px;
  --gutter: 32px;
  --radius: 6px;
  --header-height: 84px;
  --sans: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Aptos Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--orange);
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.03;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.6vw, 2.5rem);
  line-height: 1.16;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.2vw, 1.625rem);
  line-height: 1.24;
}

h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.3;
}

p {
  margin-bottom: 24px;
}

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

.narrow {
  width: min(100%, 760px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--orange);
}

.lede {
  max-width: 68ch;
  font-size: clamp(1.125rem, 1.7vw, 1.25rem);
  line-height: 1.5;
}

.micro {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(213, 221, 229, 0.16);
  background: rgba(6, 25, 39, 0.97);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-width: 250px;
  align-items: center;
  gap: 13px;
  color: var(--off-white);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 38px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.93rem;
  letter-spacing: 0.045em;
}

.brand-copy span {
  color: var(--steel-500);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  color: var(--steel-200);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  content: "";
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 48px;
  padding: 12px 20px !important;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--navy) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: #ff9b36;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--off-white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #ff9b36;
  text-decoration: none;
}

.button--secondary {
  border-color: var(--steel-500);
  background: transparent;
  color: var(--off-white);
}

.button--secondary:hover {
  border-color: var(--off-white);
  background: rgba(247, 249, 250, 0.08);
}

.button--dark-secondary {
  border-color: var(--navy-line);
  background: transparent;
  color: var(--navy);
}

.button--dark-secondary:hover {
  border-color: var(--navy);
  background: var(--surface-soft);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 700;
  text-decoration-color: var(--orange);
}

.text-link::after {
  content: "→";
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-line);
  background: var(--navy);
  color: var(--steel-200);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(44, 64, 85, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 64, 85, 0.15) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, black 0%, transparent 76%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: calc(100vh - var(--header-height));
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: 64px;
  align-items: center;
  padding-block: 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--off-white);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 5.35vw, 4.35rem);
}

.hero .lede {
  max-width: 720px;
  color: var(--steel-200);
}

.trust-line {
  display: flex;
  margin: 34px 0 0;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--steel-500);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.trust-line li {
  position: relative;
}

.trust-line li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.decision-console {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--navy-line);
  background: rgba(13, 48, 72, 0.6);
}

.decision-console::before,
.decision-console::after {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--orange);
  border-style: solid;
  content: "";
}

.decision-console::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.decision-console::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.console-head {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--navy-line);
  color: var(--steel-500);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
}

.console-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.console-mark {
  position: absolute;
  top: 96px;
  right: 38px;
  width: 72%;
  max-height: 250px;
  object-fit: contain;
  opacity: 0.12;
}

.console-chain {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.console-chain li {
  display: grid;
  min-height: 72px;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--navy-line);
  color: var(--off-white);
}

.console-chain .index {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.console-chain strong {
  font-size: 1rem;
}

.console-chain small {
  color: var(--steel-500);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding-block: 104px;
}

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

.section--soft {
  background: var(--surface-soft);
}

.section--navy {
  background: var(--navy);
  color: var(--steel-200);
}

.section--panel {
  background: var(--navy-panel);
  color: var(--steel-200);
}

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

.section-head {
  display: grid;
  margin-bottom: 56px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 72px;
  align-items: end;
}

.section-head > *:last-child {
  margin-bottom: 0;
}

.section-head--stack {
  display: block;
  max-width: 820px;
}

.section-head--stack p:last-child {
  margin-bottom: 0;
}

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

.trigger-item {
  display: grid;
  min-height: 132px;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--steel-200);
}

.trigger-item:nth-child(odd) {
  border-right: 1px solid var(--steel-200);
}

.trigger-item:nth-child(even) {
  padding-left: 32px;
}

.trigger-item:last-child {
  grid-column: 1 / -1;
  border-right: 0;
}

.trigger-index {
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.trigger-item p {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
}

.decision-strip {
  display: flex;
  margin-top: 36px;
  padding: 18px 24px;
  flex-wrap: wrap;
  gap: 10px 28px;
  border-left: 3px solid var(--orange);
  background: var(--navy);
  color: var(--steel-200);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.decision-strip span::before {
  margin-right: 10px;
  color: var(--orange);
  content: "/";
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pillar-card {
  display: flex;
  min-height: 500px;
  padding: 36px;
  flex-direction: column;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  background: var(--navy-panel);
  color: var(--steel-200);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  text-decoration: none;
}

.pillar-card h3 {
  margin-top: 32px;
  color: var(--off-white);
}

.pillar-card > p {
  flex: 1;
}

.pillar-number {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.pillar-result {
  display: block;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
  color: var(--off-white);
  font-weight: 700;
  line-height: 1.45;
}

.pillar-link {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
}

.pillar-link::after {
  content: "→";
}

.mandate-rail {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
}

.mandate-rail a {
  min-height: 96px;
  padding: 22px 20px;
  border-right: 1px solid var(--navy-line);
  color: var(--steel-200);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.mandate-rail a:last-child {
  border-right: 0;
}

.mandate-rail a:hover {
  background: rgba(245, 138, 31, 0.08);
  color: var(--off-white);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.evidence-card {
  display: flex;
  min-height: 480px;
  padding: 32px;
  flex-direction: column;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: var(--surface);
}

.evidence-card .evidence-tag {
  margin-bottom: 24px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-card dl {
  margin: 0;
}

.evidence-card dt {
  margin-top: 18px;
  color: #5d6c79;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.evidence-card dd {
  margin: 5px 0 0;
  line-height: 1.5;
}

.evidence-card .evidence-outcome {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--steel-200);
  color: var(--navy);
  font-weight: 700;
}

.method-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start;
}

.method-graphic {
  padding: 28px;
  border: 1px solid var(--navy-line);
  background: var(--navy-panel);
}

.method-graphic img {
  width: 100%;
  height: auto;
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--navy-line);
  list-style: none;
}

.method-list li {
  display: grid;
  min-height: 118px;
  grid-template-columns: 58px minmax(130px, 0.45fr) 1fr;
  gap: 22px;
  align-items: start;
  padding-block: 26px;
  border-bottom: 1px solid var(--navy-line);
}

.method-list .method-index {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.method-list strong {
  color: var(--off-white);
  font-size: 1.1rem;
}

.method-list p {
  margin: 0;
  color: var(--steel-500);
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.entry-card {
  display: flex;
  min-height: 520px;
  padding: 34px;
  flex-direction: column;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: var(--surface);
}

.entry-card ul {
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.entry-card li {
  position: relative;
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--steel-200);
}

.entry-card li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--orange);
  content: "";
}

.continuation {
  margin-top: auto;
  padding: 20px;
  border-left: 3px solid var(--orange);
  background: var(--surface-soft);
}

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

.continuation p {
  margin: 0;
  font-size: 0.92rem;
}

.founder-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
}

.founder-shell > *,
.contact-shell > *,
.article-body > * {
  min-width: 0;
}

.founder-panel {
  padding: 40px;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  background: var(--navy-panel);
}

.founder-monogram {
  display: grid;
  width: 116px;
  height: 116px;
  margin-bottom: 48px;
  place-items: center;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.founder-panel h3 {
  color: var(--off-white);
}

.founder-panel p {
  color: var(--steel-500);
}

.founder-links {
  display: grid;
  gap: 6px;
  color: var(--steel-200);
}

.founder-links a,
.contact-details a,
.legal-copy a,
.footer-links a {
  overflow-wrap: anywhere;
}

.founder-facts {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.founder-facts li {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 24px;
  padding-block: 18px;
  border-top: 1px solid var(--navy-line);
}

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

.founder-facts span {
  color: var(--steel-500);
}

.insight-feature {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: stretch;
}

.insight-diagram {
  display: grid;
  min-height: 420px;
  padding: 34px;
  place-content: center;
  border: 1px solid var(--navy-line);
  background: var(--navy);
}

.insight-diagram ol {
  width: min(100%, 320px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-diagram li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding-block: 15px;
  border-bottom: 1px solid var(--navy-line);
  color: var(--steel-200);
  font-weight: 600;
}

.insight-diagram li span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.insight-copy {
  padding-block: 24px;
}

.cta-band {
  padding-block: 88px;
  background: var(--orange);
  color: var(--navy);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}

.cta-band h2,
.cta-band h3 {
  color: var(--navy);
}

.cta-band .button {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--off-white);
}

.cta-band .button:hover {
  background: var(--navy-panel);
}

.cta-band .button--dark-secondary {
  background: transparent;
  color: var(--navy);
}

.cta-band .button--dark-secondary:hover {
  background: rgba(6, 25, 39, 0.08);
}

.boundary-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 3px solid currentColor;
  background: rgba(6, 25, 39, 0.08);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 88px 96px;
  border-bottom: 1px solid var(--navy-line);
  background: var(--navy);
  color: var(--steel-200);
}

.page-hero::after {
  position: absolute;
  top: -160px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid var(--navy-line);
  border-radius: 50%;
  content: "";
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: var(--off-white);
}

.page-hero .lede {
  color: var(--steel-200);
}

.page-intro {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.breadcrumb {
  display: flex;
  margin-bottom: 38px;
  flex-wrap: wrap;
  gap: 7px 11px;
  color: var(--steel-500);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--steel-200);
}

.answer-block {
  display: grid;
  padding: 28px 32px;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  border-left: 3px solid var(--orange);
  background: var(--surface-soft);
}

.answer-block strong {
  color: var(--navy);
}

.answer-block p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start;
}

.trigger-list,
.deliverable-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trigger-list li,
.check-list li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid var(--steel-200);
}

.section--navy .trigger-list li,
.section--navy .check-list li,
.section--panel .trigger-list li,
.section--panel .check-list li {
  border-color: var(--navy-line);
}

.trigger-list li::before,
.check-list li::before {
  position: absolute;
  top: 24px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
}

.work-table {
  border-top: 1px solid var(--navy-line);
}

.work-row {
  display: grid;
  min-height: 92px;
  grid-template-columns: minmax(170px, 0.34fr) 1fr;
  gap: 32px;
  align-items: start;
  padding-block: 24px;
  border-bottom: 1px solid var(--navy-line);
}

.work-row strong {
  color: var(--off-white);
}

.work-row span {
  color: var(--steel-500);
}

.deliverable-list li {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) 1fr;
  gap: 26px;
  padding-block: 20px;
  border-bottom: 1px solid var(--steel-200);
}

.deliverable-list strong {
  color: var(--navy);
}

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

.programme-card {
  padding: 28px;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: var(--surface);
}

.section--navy .programme-card,
.section--panel .programme-card {
  border-color: var(--navy-line);
  background: var(--navy-panel);
}

.programme-card p:last-child {
  margin-bottom: 0;
}

.boundary-box {
  margin-top: 28px;
  padding: 24px;
  border-left: 3px solid var(--orange);
  background: var(--surface-soft);
}

.section--navy .boundary-box,
.section--panel .boundary-box {
  background: var(--navy-panel);
}

.boundary-box h2,
.boundary-box h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.boundary-box p:last-child {
  margin-bottom: 0;
}

.entry-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--steel-200);
}

.entry-path article {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid var(--steel-200);
}

.entry-path article:last-child {
  border-right: 0;
}

.entry-path span {
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.entry-path p:last-child {
  margin-bottom: 0;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--steel-200);
}

.data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--steel-200);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--navy);
  color: var(--off-white);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.article-meta {
  display: grid;
  margin: 32px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy-line);
  border: 1px solid var(--navy-line);
}

.article-meta div {
  padding: 18px;
  background: var(--navy-panel);
}

.article-meta span {
  display: block;
  color: var(--steel-500);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-meta strong {
  color: var(--off-white);
}

.article-body {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 72px;
  justify-content: start;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  padding-left: 18px;
  border-left: 2px solid var(--orange);
}

.article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc li {
  margin-bottom: 10px;
}

.article-toc a {
  color: #5d6c79;
  font-size: 0.86rem;
  font-weight: 600;
}

.article-content h2 {
  margin-top: 64px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--orange);
  background: var(--surface-soft);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 72px;
  align-items: start;
}

.contact-details {
  padding: 32px;
  border: 1px solid var(--steel-200);
  background: var(--surface-soft);
}

.contact-details dl {
  margin: 0;
}

.contact-details dt {
  margin-top: 18px;
  color: #5d6c79;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
  font-weight: 600;
}

.issue-form {
  padding: 38px;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full,
.form-actions,
.form-status,
.form-boundary,
.form-honeypot {
  grid-column: 1 / -1;
}

.field label,
.fieldset-label {
  color: var(--navy);
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #83909c;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

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

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field small {
  color: #5d6c79;
  font-size: 0.84rem;
}

.evidence-options {
  display: grid;
  margin: 4px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.check-option {
  display: grid;
  min-height: 44px;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 500;
}

.check-option input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--orange-dark);
}

.form-boundary {
  padding: 20px;
  border-left: 3px solid var(--orange);
  background: var(--surface-soft);
}

.form-boundary p {
  margin: 0 0 14px;
}

.form-boundary .check-option {
  min-height: 0;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.turnstile-shell {
  grid-column: 1 / -1;
  min-height: 70px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.form-status {
  min-height: 48px;
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--steel-500);
  background: var(--surface-soft);
  font-size: 0.92rem;
}

.form-status.is-success {
  border-color: var(--success);
  color: var(--success);
}

.form-status.is-error {
  border-color: var(--danger);
  color: var(--danger);
}

.form-status.is-warning {
  border-color: var(--warning);
  color: var(--warning);
}

.summary-fallback {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 180px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 56px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy .legal-data {
  padding: 26px;
  border-left: 3px solid var(--orange);
  background: var(--surface-soft);
}

.site-footer {
  padding-block: 72px 28px;
  border-top: 1px solid var(--navy-line);
  background: var(--navy);
  color: var(--steel-500);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr 0.75fr;
  gap: 48px;
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0 0;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links h3 {
  margin: 0 0 12px;
  color: var(--off-white);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.footer-links a {
  color: var(--steel-200);
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  margin-top: 56px;
  padding-top: 24px;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--navy-line);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --gutter: 24px;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(88vw, 420px);
    padding: 28px;
    transform: translateX(105%);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-left: 1px solid var(--navy-line);
    background: var(--navy);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 12px 8px;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 88px;
  }

  .decision-console {
    min-height: 520px;
  }

  .console-mark {
    width: 50%;
  }

  .pillar-grid,
  .evidence-grid,
  .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-card:last-child,
  .entry-card:last-child {
    grid-column: 1 / -1;
    min-height: 420px;
  }

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

  .mandate-rail a:nth-child(2) {
    border-right: 0;
  }

  .mandate-rail a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--navy-line);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

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

@media (max-width: 992px) {
  .section {
    padding-block: 88px;
  }

  .section-head,
  .method-shell,
  .founder-shell,
  .insight-feature,
  .split,
  .contact-shell,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-head {
    align-items: start;
  }

  .method-graphic {
    max-width: 600px;
  }

  .founder-panel {
    max-width: 560px;
  }

  .article-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-toc {
    position: static;
  }

  .entry-path {
    grid-template-columns: 1fr;
  }

  .entry-path article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--steel-200);
  }

  .entry-path article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --header-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 0.8rem;
  }

  .brand-copy span {
    font-size: 0.64rem;
  }

  .hero-grid {
    padding-block: 72px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.15rem);
    line-height: 1.04;
  }

  .section,
  .page-hero {
    padding-block: 72px;
  }

  .button-row,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .form-actions .button {
    width: 100%;
  }

  .decision-console {
    min-height: 510px;
  }

  .console-mark {
    top: 94px;
    right: 16px;
    width: 70%;
  }

  .console-chain li {
    grid-template-columns: 38px 1fr;
  }

  .console-chain small {
    display: none;
  }

  .trust-line li::after {
    display: none;
  }

  .trigger-grid,
  .pillar-grid,
  .evidence-grid,
  .entry-grid,
  .programme-grid,
  .form-grid,
  .article-meta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trigger-item,
  .trigger-item:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }

  .trigger-item:last-child {
    grid-column: auto;
  }

  .pillar-card,
  .pillar-card:last-child,
  .evidence-card,
  .entry-card,
  .entry-card:last-child {
    min-height: 0;
    grid-column: auto;
  }

  .mandate-rail {
    grid-template-columns: 1fr;
  }

  .mandate-rail a,
  .mandate-rail a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--navy-line);
  }

  .mandate-rail a:last-child {
    border-bottom: 0;
  }

  .method-list li {
    grid-template-columns: 44px 1fr;
  }

  .method-list p {
    grid-column: 2;
  }

  .founder-facts li,
  .work-row,
  .deliverable-list li,
  .answer-block {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .insight-diagram {
    min-height: 360px;
  }

  .issue-form {
    padding: 26px 20px;
  }

  .evidence-options {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand-copy span {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.75rem;
  }

  .hero-grid {
    gap: 44px;
  }

  .decision-console {
    min-height: 470px;
  }

  .console-head span:first-child {
    display: none;
  }

  .console-chain {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .pillar-card,
  .evidence-card,
  .entry-card,
  .founder-panel,
  .programme-card {
    padding: 26px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .nav-toggle,
  .button-row,
  .site-footer,
  .cta-band,
  .issue-form,
  .article-toc {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section,
  .page-hero,
  .hero {
    padding-block: 32px;
    background: #fff !important;
    color: #000 !important;
  }

  h1,
  h2,
  h3,
  h4,
  .page-hero h1,
  .hero h1 {
    color: #000 !important;
  }

  a {
    text-decoration: underline;
  }
}
