@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --forest-950: #07110d;
  --forest-900: #0c1c15;
  --forest-850: #11271d;
  --green: #0b8f4d;
  --green-bright: #13a95e;
  --sun: #f3d447;
  --sun-deep: #d5b72f;
  --mineral: #f3f5ef;
  --steel: #a8b7af;
  --line: rgba(168, 183, 175, 0.22);
  --line-strong: rgba(168, 183, 175, 0.38);
  --danger: #ff8b7c;
  --container: min(100% - 48px, 1360px);
  --section-space: clamp(96px, 11vw, 176px);
  --radius: 2px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-base: 0;
  --z-header: 40;
  --z-menu: 45;
  --z-intro: 100;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--forest-950); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--forest-950);
  color: var(--mineral);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.intro-active { overflow: hidden; }
body.menu-open { overflow: hidden; }
img, video, object { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { letter-spacing: -0.045em; line-height: 0.98; }
h3 { letter-spacing: -0.025em; line-height: 1.15; }
p { max-width: 68ch; }
::selection { background: var(--sun); color: var(--forest-950); }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding-block: var(--section-space); }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--sun);
  color: var(--forest-950);
  font-weight: 750;
}
.skip-link:focus { transform: translateY(0); }

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

.intro {
  position: fixed;
  inset: 0;
  z-index: var(--z-intro);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020806;
}
.intro[hidden] { display: none; }
.intro__video, .intro__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.intro__video { object-fit: cover; opacity: 0; transform: scale(1.02); }
.intro__veil { background: radial-gradient(circle at 50% 52%, transparent 0, rgba(2, 8, 6, 0.18) 30%, rgba(2, 8, 6, 0.78) 100%); }
.intro__mark { position: relative; z-index: 2; display: grid; place-items: center; gap: 18px; }
.intro__mark img { width: clamp(90px, 11vw, 148px); aspect-ratio: 1; border-radius: 50%; box-shadow: 0 0 0 1px rgba(243, 212, 71, 0.3); }
.intro__mark p { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.intro__pulse { position: absolute; width: 22px; aspect-ratio: 1; border: 2px solid var(--sun); border-radius: 50%; opacity: 0; }
.intro__skip { position: absolute; right: 22px; bottom: 22px; z-index: 3; min-height: 44px; padding: 8px 4px; border: 0; border-bottom: 1px solid var(--line-strong); background: transparent; color: var(--mineral); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - 1360px) / 2));
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  will-change: transform;
  transition: transform 260ms var(--ease-out), background 240ms ease, border-color 240ms ease;
}
.site-header[data-scrolled="true"], .site-header[data-open="true"] { background: rgba(7, 17, 13, 0.94); border-color: var(--line); backdrop-filter: blur(16px); }
.site-header[data-hidden="true"]:not([data-open="true"]) { transform: translateY(calc(-100% - 2px)); }
.brand { display: inline-flex; align-items: center; gap: 11px; min-height: 48px; font-size: 15px; letter-spacing: -0.02em; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.brand span { white-space: nowrap; }
.brand b { font-weight: 780; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(20px, 2.2vw, 38px); }
.desktop-nav a, .language-link { position: relative; padding-block: 12px; color: var(--mineral); font-size: 14px; font-weight: 570; }
.desktop-nav a::after, .language-link::after { content: ""; position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; background: var(--sun); transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease-out); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .language-link:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 18px; border: 1px solid rgba(243, 245, 239, 0.55); font-size: 14px; font-weight: 700; transition: color 180ms ease, background 180ms ease, border-color 180ms ease; }
.header-cta:hover { background: var(--mineral); color: var(--forest-950); border-color: var(--mineral); }
.menu-toggle { position: relative; display: none; width: 48px; height: 48px; border: 1px solid var(--line-strong); background: transparent; }
.menu-toggle span { position: absolute; top: 50%; left: 50%; display: block; width: 20px; height: 1px; background: var(--mineral); transition: transform 180ms ease; }
.menu-toggle span:first-child { transform: translate(-50%, -4px); }
.menu-toggle span:last-child { transform: translate(-50%, 4px); }
.site-header[data-open="true"] .menu-toggle span:first-child { transform: translate(-50%, 0) rotate(45deg); }
.site-header[data-open="true"] .menu-toggle span:last-child { transform: translate(-50%, 0) rotate(-45deg); }
.mobile-menu { position: absolute; top: 100%; right: 0; left: 0; z-index: var(--z-menu); height: calc(100dvh - 72px); align-content: start; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; padding: clamp(32px, 6vw, 72px) max(24px, calc((100vw - 900px) / 2)); overflow-y: auto; overscroll-behavior: contain; background: rgba(7, 17, 13, 0.99); border-top: 1px solid var(--line); }
.mobile-menu:not([hidden]) { display: grid; }
.mobile-menu a { display: flex; align-items: center; min-height: 64px; border-bottom: 1px solid var(--line); font-size: clamp(18px, 2.6vw, 25px); font-weight: 620; }

.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; overflow: hidden; background: var(--forest-950); }
.hero__image, .hero__scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: 58% center; }
.hero__scrim { background: linear-gradient(90deg, rgba(4, 12, 9, 0.94) 0%, rgba(4, 12, 9, 0.74) 31%, rgba(4, 12, 9, 0.2) 58%, rgba(4, 12, 9, 0.12) 100%), linear-gradient(0deg, rgba(4, 12, 9, 0.78) 0%, transparent 45%); }
.hero__content { position: relative; z-index: 2; padding-bottom: clamp(70px, 8vw, 120px); padding-top: 112px; }
.hero h1 { max-width: 950px; margin-bottom: 24px; font-size: clamp(46px, 5.2vw, 88px); font-weight: 540; }
.hero p { max-width: 600px; margin-bottom: 30px; color: #d7ded9; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 22px; border: 1px solid transparent; font-weight: 750; line-height: 1; white-space: nowrap; transition: transform 160ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease; }
.button:active { transform: translateY(1px); }
.button--primary { background: var(--sun); color: var(--forest-950); }
.button--primary:hover { background: var(--mineral); }
.button--ghost { border-color: rgba(243, 245, 239, 0.6); background: rgba(7, 17, 13, 0.2); color: var(--mineral); }
.button--ghost:hover { background: var(--mineral); color: var(--forest-950); }
.hero__network { position: absolute; right: 9vw; bottom: 12vh; z-index: 2; width: 210px; height: 130px; opacity: 0.5; pointer-events: none; }
.hero__network::before, .hero__network::after { content: ""; position: absolute; height: 1px; background: linear-gradient(90deg, transparent, var(--sun), transparent); transform-origin: left; }
.hero__network::before { width: 190px; transform: rotate(-24deg); }
.hero__network::after { top: 65px; left: 25px; width: 150px; transform: rotate(17deg); }
.hero__network i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 8px rgba(243, 212, 71, 0.12); }
.hero__network i:nth-child(1) { left: 3px; top: -3px; }.hero__network i:nth-child(2) { right: 8px; top: -78px; }.hero__network i:nth-child(3) { right: 22px; bottom: 30px; }

.kicker { margin-bottom: 22px; color: var(--sun); font-size: 13px; font-weight: 720; letter-spacing: 0.04em; }
.positioning { background: var(--forest-950); }
.positioning__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr); gap: clamp(48px, 8vw, 140px); align-items: start; }
.positioning h2 { max-width: 860px; margin: 0; font-size: clamp(42px, 6vw, 88px); font-weight: 500; }
.positioning__copy { padding-top: 44px; }
.positioning__copy p { color: var(--steel); font-size: 17px; }
.positioning__copy p + p { margin-top: 22px; }
.ecosystem-shell { margin-top: clamp(70px, 9vw, 130px); padding: clamp(16px, 3vw, 36px); overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at center, rgba(11, 143, 77, 0.13), transparent 58%); }
.ecosystem-diagram { width: 100%; aspect-ratio: 5 / 3; min-height: 420px; }
.ecosystem-diagram svg { display: block; width: 100%; height: 100%; overflow: visible; }
.ecosystem-link { fill: none; stroke: rgba(168, 183, 175, 0.23); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.ecosystem-signal { fill: var(--sun); filter: drop-shadow(0 0 8px rgba(243, 212, 71, 0.8)); }
.ecosystem-node { cursor: default; outline: none; }
.ecosystem-node circle { fill: var(--forest-950); stroke: var(--green); stroke-width: 1.6; vector-effect: non-scaling-stroke; transition: fill 180ms ease, stroke 180ms ease; }
.ecosystem-node text { fill: var(--mineral); font-family: "Manrope", "Segoe UI", sans-serif; font-size: 14px; font-weight: 690; text-anchor: middle; pointer-events: none; }
.ecosystem-node:hover circle, .ecosystem-node:focus-visible circle, .ecosystem-node.is-active circle { fill: rgba(11, 143, 77, 0.24); stroke: var(--sun); }
.ecosystem-node--core circle { fill: var(--green); stroke: var(--green-bright); }
.ecosystem-node--core text { fill: #fff; font-size: 19px; font-weight: 780; }
.ecosystem-core-ring { fill: none; stroke: var(--sun); stroke-width: 1.5; opacity: 0; vector-effect: non-scaling-stroke; }
.ecosystem-link.is-active { stroke: var(--sun); stroke-opacity: 0.8; }

.sectors { background: var(--forest-900); }
.section-heading { display: grid; gap: 18px; max-width: 900px; margin-bottom: clamp(48px, 6vw, 86px); }
.section-heading h2, .presence__header h2, .impact h2, .contact h2 { margin-bottom: 0; font-size: clamp(40px, 5.3vw, 76px); font-weight: 520; }
.section-heading p, .presence__header > p:last-child, .news__heading > p { color: var(--steel); font-size: 17px; }
.sector-stage { display: grid; grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr); min-height: 670px; border: 1px solid var(--line); }
.sector-stage__media { position: relative; margin: 0; overflow: hidden; background: var(--forest-950); }
.sector-stage__media img { width: 100%; height: 100%; object-fit: cover; transition: opacity 220ms ease, transform 800ms var(--ease-out); }
.sector-stage__media[data-changing="true"] img { opacity: 0.25; transform: scale(1.02); }
.sector-stage__media::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent, rgba(7, 17, 13, 0.72)); pointer-events: none; }
.sector-stage figcaption { position: absolute; right: 28px; bottom: 24px; left: 28px; z-index: 2; font-size: 14px; font-weight: 670; }
.sector-stage__panel { display: flex; flex-direction: column; padding: clamp(24px, 3vw, 44px); background: var(--forest-950); }
.sector-tabs { display: grid; }
.sector-tabs button { min-height: 56px; padding: 13px 4px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--steel); text-align: left; font-weight: 620; transition: color 160ms ease, padding-left 240ms var(--ease-out); }
.sector-tabs button[aria-selected="true"] { padding-left: 18px; color: var(--mineral); border-left: 3px solid var(--sun); }
.sector-tabs button:hover { color: var(--mineral); }
.sector-detail { margin-top: auto; padding-top: 42px; }
.sector-detail h3 { margin-bottom: 14px; font-size: clamp(26px, 3vw, 38px); font-weight: 560; }
.sector-detail p { margin-bottom: 0; color: var(--steel); }
.noscript-note { margin-top: 24px; color: var(--steel); }

.process { overflow: hidden; background: var(--forest-950); }
.process::before { content: ""; position: absolute; inset: 0; background: url("assets/svg/patterns/technical-grid.svg") repeat; opacity: 0.65; pointer-events: none; }
.process__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(52px, 7vw, 90px); }
.process__intro { max-width: 760px; }
.process h2 { margin-bottom: 26px; font-size: clamp(42px, 5vw, 72px); font-weight: 520; }
.process__intro > p:last-child { color: var(--steel); }
.process-stage { position: relative; min-width: 0; border: 1px solid var(--line); background: rgba(7, 17, 13, 0.78); }
.process-visual { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.process-visual svg { display: block; width: 100%; height: 100%; overflow: visible; }
.process-rail { fill: none; stroke: rgba(168, 183, 175, 0.22); stroke-width: 2; vector-effect: non-scaling-stroke; }
.process-progress { fill: none; stroke: var(--green-bright); stroke-width: 2.5; vector-effect: non-scaling-stroke; }
.process-point { fill: var(--forest-950); stroke: var(--green-bright); stroke-width: 2; vector-effect: non-scaling-stroke; }
.process-signal { fill: var(--sun); filter: drop-shadow(0 0 9px rgba(243, 212, 71, 0.9)); }
.process__steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process__steps li { position: relative; display: flex; min-width: 0; min-height: 300px; flex-direction: column; gap: 14px; padding: 112px clamp(20px, 2.5vw, 38px) 34px; border-right: 1px solid var(--line); counter-increment: process; }
.process__steps li:last-child { border-right: 0; }
.process__steps li::before { content: counter(process, decimal-leading-zero); position: absolute; top: 78px; left: clamp(20px, 2.5vw, 38px); color: var(--steel); font-variant-numeric: tabular-nums; font-size: 12px; transition: color 200ms ease; }
.process__steps b { font-size: clamp(20px, 2vw, 26px); font-weight: 690; transition: color 200ms ease; }
.process__steps span { color: var(--steel); }
.process__steps li.is-active::before, .process__steps li.is-active b { color: var(--sun); }

.presence { background: var(--forest-900); }
.presence__header { max-width: 850px; margin-bottom: 68px; }
.presence__header h2 { margin-bottom: 24px; }
.map-shell { position: relative; min-height: 520px; padding: 30px; border: 1px solid var(--line); background: radial-gradient(circle at 56% 50%, rgba(11, 143, 77, 0.13), transparent 42%); }
.map-shell object { width: 100%; min-height: 500px; }
.map-legend { position: absolute; right: 28px; bottom: 22px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: var(--steel); font-size: 12px; }

.opportunities { background: var(--forest-950); }
.section-heading--narrow { max-width: 800px; }
.opportunities__layout { display: grid; grid-template-columns: 5fr 7fr; gap: 24px; align-items: start; }
.opportunity { display: grid; margin: 0; border: 1px solid var(--line); overflow: hidden; background: var(--forest-900); }
.opportunity > div { padding: clamp(28px, 4vw, 58px); }
.opportunity img { width: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.05); }
.opportunity--drc { margin-top: 90px; }
.opportunity--drc img { aspect-ratio: 4 / 3; }
.opportunity--mozambique img { aspect-ratio: 16 / 10; }
.opportunity__place { margin-bottom: 22px; color: var(--sun); font-size: 13px; font-weight: 700; }
.opportunity h3 { margin-bottom: 18px; font-size: clamp(28px, 3.2vw, 46px); font-weight: 560; }
.opportunity p:last-child { margin-bottom: 0; color: var(--steel); }

.impact { background: var(--forest-900); }
.impact__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.impact h2 { margin-bottom: 30px; }
.impact__copy > p:not(.kicker) { color: var(--steel); }
.impact__media { position: relative; margin: 0; }
.impact__media::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; border: 1px solid rgba(243, 212, 71, 0.35); pointer-events: none; }
.impact__media img { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(0.84); }

.news { background: var(--forest-950); }
.news__heading { display: grid; grid-template-columns: minmax(0, 1fr); margin-bottom: 54px; }
.news__heading h2 { margin: 0; font-size: clamp(40px, 5vw, 70px); font-weight: 520; }
.news__heading > p { margin: 0; }
.news-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.news-empty { grid-column: 1 / -1; min-height: 280px; display: grid; place-content: center; justify-items: center; padding: 36px; border: 1px solid var(--line); text-align: center; }
.news-empty h3 { margin-bottom: 8px; font-size: 24px; }
.news-empty p { margin: 0; color: var(--steel); }
.news-card { grid-column: span 4; border-top: 1px solid var(--line-strong); padding-top: 18px; }
.news-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; margin-bottom: 22px; }
.news-card time, .news-card__category { color: var(--steel); font-size: 12px; }
.news-card h3 { margin: 14px 0 12px; font-size: 23px; }
.news-card p { color: var(--steel); }

.contact { background: var(--forest-900); }
.contact__grid { display: grid; grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr); gap: clamp(50px, 9vw, 150px); align-items: start; }
.contact h2 { margin-bottom: 28px; }
.contact__details > p:not(.kicker) { color: var(--steel); }
.contact dl { margin: 50px 0 0; }
.contact dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact dt { color: var(--steel); font-size: 13px; }
.contact dd { margin: 0; overflow-wrap: anywhere; }
.contact dd a { text-decoration: underline; text-decoration-color: rgba(243, 212, 71, 0.45); text-underline-offset: 4px; }
.contact-form { padding: clamp(28px, 4vw, 56px); border: 1px solid var(--line); background: var(--forest-950); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 14px; font-weight: 680; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 13px 14px; border: 1px solid var(--line-strong); border-radius: 0; background: var(--forest-900); color: var(--mineral); transition: border-color 160ms ease, box-shadow 160ms ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sun); box-shadow: 0 0 0 1px var(--sun); outline: 0; }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field-error { margin: 0; color: var(--danger); font-size: 13px; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; margin: 8px 0 24px; color: var(--steel); font-size: 14px; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--sun); }
.form-submit { width: 100%; }
.form-note { margin: 14px 0 0; color: var(--steel); font-size: 12px; }
.form-summary { margin-bottom: 20px; padding: 14px 16px; border: 1px solid var(--danger); color: var(--mineral); }
.honeypot { position: absolute; left: -9999px; }

.site-footer { padding: 60px 0 30px; border-top: 1px solid var(--line); background: #050d09; }
.footer__top { display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; padding-bottom: 44px; }
.footer__top p { margin: 0; color: var(--steel); }
.brand--footer img { width: 54px; height: 54px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--steel); font-size: 12px; }

.confirmation-page { min-height: 100dvh; display: grid; place-items: center; padding: 24px; background: var(--forest-950); }
.confirmation-card { width: min(100%, 680px); padding: clamp(36px, 7vw, 80px); border: 1px solid var(--line); background: var(--forest-900); }
.confirmation-card h1 { margin-bottom: 24px; font-size: clamp(42px, 7vw, 72px); font-weight: 560; }
.confirmation-card p { color: var(--steel); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .header-actions { justify-self: end; }
  .menu-toggle { display: grid; }
  .positioning__grid, .impact__grid, .contact__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .sector-stage { grid-template-columns: 1.15fr 0.85fr; }
  .opportunities__layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root { --container: min(100% - 32px, 680px); --section-space: 88px; }
  .site-header { min-height: 68px; padding-inline: 16px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 13px; }
  .header-cta { display: none; }
  .header-actions { gap: 12px; }
  .mobile-menu { height: calc(100dvh - 68px); grid-template-columns: 1fr; padding: 28px 16px 40px; }
  .intro__skip { right: 16px; bottom: 16px; }
  .hero { min-height: 100dvh; align-items: flex-end; }
  .hero__image { object-position: 66% center; }
  .hero__scrim { background: linear-gradient(0deg, rgba(4, 12, 9, 0.96) 0%, rgba(4, 12, 9, 0.7) 55%, rgba(4, 12, 9, 0.18) 100%); }
  .hero__content { padding-top: 100px; padding-bottom: 56px; }
  .hero h1 { max-width: 10ch; font-size: clamp(42px, 13vw, 64px); }
  .hero p { max-width: 34ch; font-size: 16px; }
  .hero__actions { align-items: stretch; }
  .hero__actions .button { flex: 1 1 100%; }
  .hero__network { right: -50px; top: 21%; bottom: auto; transform: scale(0.75); opacity: 0.28; }
  .positioning__grid, .sector-stage, .impact__grid, .contact__grid, .news__heading, .opportunities__layout, .footer__top { grid-template-columns: 1fr; }
  .positioning__grid, .impact__grid, .contact__grid { gap: 50px; }
  .positioning h2, .section-heading h2, .presence__header h2, .impact h2, .contact h2 { font-size: clamp(38px, 11vw, 58px); }
  .positioning__copy { padding-top: 0; }
  .ecosystem-shell { padding: 12px; }
  .ecosystem-diagram { min-height: 0; aspect-ratio: 360 / 720; }
  .section-heading { margin-bottom: 40px; }
  .sector-stage { min-height: 0; }
  .sector-stage__media { aspect-ratio: 4 / 3; }
  .sector-stage__panel { padding: 24px 20px 30px; }
  .sector-detail { padding-top: 38px; }
  .process__steps { grid-template-columns: minmax(0, 1fr); }
  .process__steps li { min-height: 176px; gap: 8px; padding: 32px 18px 32px 80px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process__steps li:last-child { border-bottom: 0; }
  .process__steps li::before { top: 34px; left: 51px; }
  .map-shell { min-height: 390px; padding: 8px; overflow: hidden; }
  .map-shell object { width: 140%; max-width: none; min-height: 390px; transform: translateX(-14%); }
  .map-legend { right: 14px; bottom: 10px; left: 14px; justify-content: center; gap: 10px 16px; }
  .opportunity--drc { margin-top: 0; }
  .opportunity--mozambique img { order: 2; }
  .impact__media { margin-left: 16px; }
  .news__heading { gap: 16px; }
  .news-card { grid-column: 1 / -1; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .contact dl > div { grid-template-columns: 98px 1fr; gap: 14px; }
  .footer__top { justify-items: start; }
}

@media (min-width: 1920px) {
  :root { --container: min(100% - 120px, 1560px); }
  .hero h1 { max-width: 900px; }
}

/* Public article pages */
.article-page { min-height:100vh; background:var(--ink,#07110d); color:var(--paper,#f3f5ef); }
.article-header { min-height:76px; display:flex; align-items:center; padding:12px max(24px,calc((100vw - 1180px)/2)); border-bottom:1px solid rgba(168,183,175,.25); }
.article-shell { width:min(100% - 40px,920px); margin:0 auto; padding:72px 0 110px; }
.article-detail { min-width:0; }
.article-back { display:inline-block; margin-bottom:40px; color:var(--sun,#f3d447); font-weight:700; }
.article-detail__meta { display:flex; flex-wrap:wrap; gap:10px 18px; margin-bottom:24px; color:var(--sun,#f3d447); font-size:14px; }
.article-detail h1 { max-width:850px; margin-bottom:24px; font-size:clamp(40px,7vw,82px); line-height:1.02; overflow-wrap:anywhere; }
.article-detail__excerpt { max-width:760px; color:var(--paper,#f3f5ef); font-size:clamp(19px,2.2vw,25px); line-height:1.5; }
.article-detail__cover { width:100%; margin:48px 0; aspect-ratio:16/9; object-fit:cover; }
.article-detail__body { max-width:760px; color:var(--muted,#a8b7af); font-size:18px; line-height:1.75; }
.article-detail__body h2,.article-detail__body h3 { margin-top:44px; color:var(--paper,#f3f5ef); }
.article-detail__body a { color:var(--sun,#f3d447); text-decoration:underline; }
.article-detail__body blockquote { margin:32px 0; padding-left:24px; border-left:2px solid var(--green,#0b8f4d); }
@media(max-width:650px){.article-shell{width:min(100% - 28px,920px);padding-top:48px}.article-detail__body{font-size:16px}.article-detail__cover{margin:32px 0}}

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

@media (prefers-reduced-transparency: reduce) {
  .site-header[data-scrolled="true"], .site-header[data-open="true"] { background: var(--forest-950); backdrop-filter: none; }
}

@media (forced-colors: active) {
  .button, .header-cta, .menu-toggle, .sector-stage, .contact-form { border: 1px solid ButtonText; }
}
