:root {
  --ink: #101615;
  --ink-soft: #27312f;
  --forest: #103d34;
  --forest-deep: #09251f;
  --green: #157966;
  --green-light: #d9eee8;
  --cobalt: #2450d8;
  --cobalt-soft: #dfe6ff;
  --gold: #f2c34f;
  --coral: #ca5c47;
  --paper: #f5f7f3;
  --surface: #ffffff;
  --line: #d8dfdb;
  --muted: #66716e;
  --white: #ffffff;
  --header-height: 74px;
  --shell: 1180px;
  --shadow-sm: 0 8px 24px rgb(16 22 21 / 8%);
  --shadow-lg: 0 22px 60px rgb(5 20 17 / 18%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
blockquote,
dl,
dd {
  margin-top: 0;
}

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

h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  text-wrap: pretty;
}

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

.section-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section-heading {
  max-width: 720px;
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading.wide {
  max-width: 820px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.inverse {
  color: var(--white);
}

.section-heading.inverse > p:last-child {
  color: rgb(255 255 255 / 76%);
}

.eyebrow,
.hero-kicker {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  font-size: 21px;
  line-height: 1.55;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translate(2px, -2px);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 30px rgb(0 0 0 / 18%);
}

.button-primary:hover {
  background: #ffd667;
}

.button-ghost-light {
  border-color: rgb(255 255 255 / 48%);
  background: rgb(6 25 21 / 42%);
  color: var(--white);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgb(6 25 21 / 74%);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--forest);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgb(9 24 21 / 96%);
  box-shadow: 0 8px 26px rgb(0 0 0 / 18%);
}

.header-inner {
  width: min(calc(100% - 40px), 1320px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 6px;
  background: var(--forest);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 5px;
  color: rgb(255 255 255 / 62%);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="true"] {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 5px;
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.header-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.header-cta svg,
.menu-toggle svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 5px;
  background: rgb(6 25 21 / 42%);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 28px 24px 48px;
  overflow-y: auto;
  background: var(--forest-deep);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  text-decoration: none;
}

.hero {
  position: relative;
  height: calc(100svh - 36px);
  min-height: 600px;
  max-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-deep);
  color: var(--white);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-settle 1.4s ease both;
}

.hero-scrim {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgb(3 13 11 / 56%);
}

.hero-inner {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
  padding-top: var(--header-height);
}

.hero-inner > * {
  max-width: 680px;
}

.hero-kicker {
  color: var(--gold);
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-role {
  margin-bottom: 16px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgb(255 255 255 / 82%);
  font-size: 17px;
}

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

.dossier-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: rgb(255 255 255 / 74%);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.dossier-link:hover {
  color: var(--gold);
}

.dossier-link svg {
  width: 17px;
  height: 17px;
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgb(255 255 255 / 64%);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 20px;
  animation: cue-motion 1.8s ease-in-out infinite;
}

.impact-band {
  padding-block: 86px;
  background: var(--surface);
}

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

.metric {
  min-width: 0;
  padding: 28px 24px 28px 0;
}

.metric + .metric {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.metric dt {
  display: grid;
  gap: 6px;
}

.metric strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
  word-break: break-word;
}

.metric dt span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric dd {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.data-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 850px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.data-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--cobalt);
}

.story-section {
  padding-block: 112px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 84px;
}

.story-visual {
  position: relative;
}

.story-visual img {
  width: 100%;
  max-height: 670px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.story-visual blockquote {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: min(330px, 84%);
  margin: 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.story-visual blockquote p {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.story-visual blockquote cite {
  color: rgb(255 255 255 / 66%);
  font-size: 11px;
  font-style: normal;
}

.story-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-block: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-facts > div {
  min-width: 0;
  display: flex;
  gap: 13px;
  padding: 20px 14px 20px 0;
}

.story-facts > div:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.story-facts > div:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.story-facts svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.story-facts span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 12px;
}

.story-facts strong {
  color: var(--ink);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

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

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

.identity-section {
  padding-block: 112px;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.identity-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.identity-intro .eyebrow {
  color: var(--gold);
}

.identity-intro .lead {
  margin-bottom: 20px;
  color: rgb(255 255 255 / 76%);
}

.identity-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(255 255 255 / 16%);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.identity-steps li {
  position: relative;
  min-height: 320px;
  padding: 42px 36px;
  overflow: hidden;
}

.identity-steps li + li {
  border-left: 1px solid rgb(255 255 255 / 16%);
}

.identity-steps .step-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgb(255 255 255 / 18%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: 1;
}

.identity-steps svg {
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  color: var(--gold);
  transition: transform 300ms ease;
}

.identity-steps li:hover svg {
  transform: rotate(-6deg) scale(1.08);
}

.identity-steps h3 {
  margin-bottom: 8px;
  font-size: 38px;
}

.identity-steps p {
  max-width: 270px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
}

.identity-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
}

.identity-foundations span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgb(255 255 255 / 68%);
  font-size: 12px;
  font-weight: 700;
}

.identity-foundations svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.projects-section {
  padding-block: 112px;
  background: var(--surface);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 18px;
  margin-top: 50px;
}

.project-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 12px 34px rgb(16 22 21 / 5%);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card > img {
  width: 100%;
  height: 260px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card:nth-child(3) > img {
  object-position: center 34%;
}

.project-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.project-index {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 4px;
  color: var(--forest);
  font-size: 30px;
}

.project-subtitle {
  min-height: 48px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.project-content > p:not(.project-subtitle) {
  color: var(--ink-soft);
  font-size: 14px;
}

.project-content dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 26px;
  padding-block: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-content dl div {
  min-width: 0;
}

.project-content dt {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.project-content dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.project-content .button {
  align-self: flex-start;
  margin-top: auto;
}

.global-section {
  padding-block: 112px;
  background: var(--cobalt);
  color: var(--white);
}

.global-heading {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: end;
  gap: 80px;
}

.global-heading .eyebrow {
  color: var(--gold);
}

.global-heading > p {
  margin-bottom: 20px;
  color: rgb(255 255 255 / 74%);
  font-size: 18px;
}

.country-list {
  margin-top: 56px;
  border-top: 1px solid rgb(255 255 255 / 26%);
}

.country-list article {
  display: grid;
  grid-template-columns: 78px 1fr 34px;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  border-bottom: 1px solid rgb(255 255 255 / 26%);
  transition: background-color 180ms ease;
}

.country-list article:hover {
  background: rgb(255 255 255 / 7%);
}

.country-code {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 700;
}

.country-list h3 {
  margin-bottom: 3px;
  font-size: 26px;
}

.country-list p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 13px;
}

.country-list > article > svg {
  width: 24px;
  height: 24px;
  color: rgb(255 255 255 / 55%);
}

.africa-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
  margin-top: 84px;
  padding: 0;
}

.africa-feature img {
  width: 100%;
  height: clamp(280px, 36vw, 440px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.africa-feature .eyebrow {
  color: var(--gold);
}

.africa-feature h3 {
  margin-bottom: 18px;
  font-size: 40px;
}

.africa-feature p:not(.eyebrow) {
  color: rgb(255 255 255 / 76%);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.feature-tags span {
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 4px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.timeline-section {
  padding-block: 112px;
}

.timeline {
  max-width: 930px;
  margin: 62px 0 0 auto;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 34px;
  min-height: 150px;
  padding-bottom: 34px;
}

.timeline li::before {
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 147px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline li::after {
  position: absolute;
  top: 8px;
  left: 141px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
  content: "";
}

.timeline time {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline li > div {
  padding-left: 30px;
}

.timeline h3 {
  margin-bottom: 7px;
  font-size: 25px;
}

.timeline p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.philosophy-section {
  padding-block: 112px;
  background: var(--green-light);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 90px;
}

.philosophy-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.philosophy-copy blockquote {
  margin: 40px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgb(16 61 52 / 28%);
}

.philosophy-copy blockquote p {
  margin-bottom: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
}

.philosophy-principles {
  border-top: 1px solid rgb(16 61 52 / 28%);
}

.philosophy-principles article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding-block: 22px;
  border-bottom: 1px solid rgb(16 61 52 / 28%);
}

.philosophy-principles article > span {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
}

.philosophy-principles h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.philosophy-principles p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.pillars-section {
  padding-block: 112px;
  background: var(--surface);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pillars-grid li {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  min-height: 126px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.pillars-grid li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--forest);
  border-radius: 4px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
}

.pillars-grid h3 {
  margin-bottom: 5px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
}

.pillars-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.app-section {
  padding-block: 112px;
  background: var(--ink);
  color: var(--white);
}

.app-heading {
  max-width: 760px;
}

.app-heading .eyebrow {
  color: var(--gold);
}

.app-heading h2 {
  margin-bottom: 18px;
}

.app-heading > p:last-child {
  color: rgb(255 255 255 / 70%);
  font-size: 18px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.download-option {
  min-width: 0;
  padding: 34px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: #17201e;
}

.download-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.download-brand span {
  display: block;
  margin-bottom: 3px;
  color: rgb(255 255 255 / 54%);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.download-brand h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 28px;
}

.download-option > p {
  min-height: 78px;
  margin: 28px 0 22px;
  color: rgb(255 255 255 / 68%);
  font-size: 14px;
}

.download-option dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 28px;
  padding-block: 18px;
  border-top: 1px solid rgb(255 255 255 / 13%);
  border-bottom: 1px solid rgb(255 255 255 / 13%);
}

.download-option dl div {
  min-width: 0;
}

.download-option dt {
  color: rgb(255 255 255 / 48%);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-option dd {
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--white);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-option code {
  font-size: 11px;
}

.button-android {
  background: #3ddc84;
  color: #09251f;
}

.button-ios {
  background: var(--white);
  color: var(--ink);
}

.button-android:hover,
.button-ios:hover {
  box-shadow: 0 12px 30px rgb(0 0 0 / 26%);
}

.web-app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 6px;
}

.web-app-row > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.web-app-row > div > svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--gold);
}

.web-app-row span {
  display: grid;
  color: rgb(255 255 255 / 58%);
  font-size: 12px;
}

.web-app-row strong {
  color: var(--white);
  font-size: 14px;
}

.app-disclaimer {
  max-width: 860px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 48%);
  font-size: 11px;
}

.contact-section {
  padding-block: 112px 80px;
}

.contact-intro {
  max-width: 800px;
}

.contact-intro h2 {
  margin-bottom: 18px;
}

.contact-intro > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.contact-paths > a {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    padding 180ms ease;
}

.contact-paths > a:hover {
  padding-inline: 12px;
  background: var(--green-light);
}

.contact-paths > a > svg:first-child {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.contact-paths > a > svg:last-child {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.contact-paths span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
}

.contact-paths strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 28px;
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-direct p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-direct a,
.contact-direct span {
  overflow-wrap: anywhere;
  color: var(--forest);
  font-size: 13px;
  font-weight: 750;
}

.copy-email {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.copy-email:hover {
  border-color: var(--forest);
}

.copy-email svg {
  width: 16px;
  height: 16px;
}

.site-footer {
  padding: 44px max(24px, calc((100% - var(--shell)) / 2));
  background: var(--forest-deep);
  color: var(--white);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.footer-links a {
  color: rgb(255 255 255 / 66%);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 45%);
  font-size: 10px;
}

.footer-legal p {
  max-width: 800px;
  margin-bottom: 0;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 12px 16px;
  border-radius: 5px;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
}

.toast[hidden] {
  display: none;
}

.noscript-banner {
  position: fixed;
  z-index: 300;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--forest-deep);
  color: var(--white);
}

.error-page main {
  width: min(100%, 680px);
}

.error-page main > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.error-page h1 {
  margin: 18px 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
}

.error-page p {
  color: rgb(255 255 255 / 68%);
}

.error-page a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from {
    opacity: 0.6;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cue-motion {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@media (max-width: 1100px) {
  h2 {
    font-size: 42px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .story-grid {
    gap: 54px;
  }

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

  .project-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .project-card:first-child > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .philosophy-layout {
    gap: 56px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero h1 {
    font-size: 60px;
  }

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

  .metric:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .story-grid {
    grid-template-columns: 0.78fr 1fr;
    gap: 42px;
  }

  .story-visual blockquote {
    right: 0;
  }

  .identity-intro,
  .global-heading,
  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .identity-steps li {
    padding-inline: 26px;
  }

  .africa-feature {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
  }

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

  .copy-email {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .hero-inner {
    width: min(calc(100% - 32px), var(--shell));
  }

  h2 {
    font-size: 36px;
  }

  .lead {
    font-size: 18px;
  }

  .site-header .brand-copy strong {
    max-width: 210px;
  }

  .hero {
    height: calc(100svh - 24px);
    min-height: 610px;
    max-height: 760px;
    align-items: end;
  }

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

  .hero-scrim {
    background: rgb(3 13 11 / 64%);
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-role {
    font-size: 17px;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .impact-band,
  .story-section,
  .identity-section,
  .projects-section,
  .global-section,
  .timeline-section,
  .philosophy-section,
  .pillars-section,
  .app-section {
    padding-block: 84px;
  }

  .contact-section {
    padding-block: 84px 68px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    max-width: 520px;
  }

  .story-visual img {
    max-height: 570px;
  }

  .story-visual blockquote {
    right: 14px;
    bottom: 14px;
  }

  .identity-steps {
    grid-template-columns: 1fr;
  }

  .identity-steps li {
    min-height: 240px;
  }

  .identity-steps li + li {
    border-top: 1px solid rgb(255 255 255 / 16%);
    border-left: 0;
  }

  .identity-steps svg {
    margin-bottom: 34px;
  }

  .project-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .project-card:first-child {
    grid-column: auto;
    display: flex;
  }

  .project-card:first-child > img {
    height: 220px;
    aspect-ratio: 16 / 10;
  }

  .africa-feature {
    grid-template-columns: 1fr;
  }

  .timeline {
    margin-left: 0;
  }

  .timeline li {
    grid-template-columns: 88px 1fr;
    gap: 18px;
  }

  .timeline li::before {
    left: 99px;
  }

  .timeline li::after {
    left: 93px;
  }

  .timeline li > div {
    padding-left: 23px;
  }

  .pillars-grid,
  .contact-paths {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .download-option > p {
    min-height: 0;
  }

  .web-app-row {
    align-items: stretch;
    flex-direction: column;
  }

  .web-app-row .button {
    width: 100%;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .site-header .brand-copy strong {
    max-width: 165px;
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-role {
    font-size: 15px;
  }

  .hero-intro {
    margin-bottom: 20px;
  }

  .dossier-link {
    margin-top: 18px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric + .metric,
  .metric:nth-child(3) {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric:first-child {
    border-top: 0;
  }

  .metric strong {
    font-size: 40px;
  }

  .story-facts {
    grid-template-columns: 1fr;
  }

  .story-facts > div,
  .story-facts > div:nth-child(even) {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .story-facts > div:first-child {
    border-top: 0;
  }

  .identity-steps h3 {
    font-size: 34px;
  }

  .project-content {
    padding: 24px 20px;
  }

  .project-card > img {
    height: 220px;
  }

  .project-content dl,
  .download-option dl {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .country-list article {
    grid-template-columns: 56px 1fr 24px;
    gap: 14px;
  }

  .country-code {
    font-size: 30px;
  }

  .africa-feature h3 {
    font-size: 32px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 24px;
  }

  .timeline li::before {
    left: 4px;
  }

  .timeline li::after {
    left: -2px;
  }

  .timeline li > div {
    padding-left: 0;
  }

  .philosophy-principles article {
    grid-template-columns: 36px 1fr;
  }

  .pillars-grid li {
    grid-template-columns: 46px 1fr;
    gap: 13px;
  }

  .download-option {
    padding: 26px 20px;
  }

  .download-brand h3 {
    font-size: 25px;
  }

  .contact-direct {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 20px;
  }
}

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .scroll-cue,
  .hero-actions,
  .dossier-link,
  .app-section,
  .copy-email,
  .toast {
    display: none !important;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding: 80px 0;
  }

  .hero-media {
    opacity: 0.18;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
