:root {
  --ink: #14332f;
  --ink-soft: #244b46;
  --cream: #f5f1e8;
  --paper: #fffdf7;
  --white: #ffffff;
  --lime: #d9ef45;
  --lime-soft: #edf6ac;
  --mint: #8ed8bf;
  --sky: #8fcde3;
  --orange: #ff7555;
  --line: rgba(20, 51, 47, 0.18);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  transform: translateY(-150%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.brand-dot {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 7px -5px 0 var(--orange);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -6px;
  background: var(--ink);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  box-shadow: none;
}

.button-small:hover,
.button-small:focus-visible {
  transform: none;
  box-shadow: inset 0 0 0 2px rgba(20, 51, 47, 0.25);
}

.hero {
  padding: 78px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 62px;
  align-items: center;
  min-height: 610px;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 9px;
  background: var(--orange);
  border-radius: 999px;
}

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

h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.4vw, 86px);
}

h2 {
  font-size: clamp(40px, 5vw, 66px);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-lead em {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 38px;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 2px solid var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-meta span {
  display: flex;
  gap: 8px;
}

.hero-meta strong {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.thinking-map {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.thinking-map::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  left: 50%;
  top: 50%;
  z-index: -2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  border: 1px dashed rgba(20, 51, 47, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 430px;
  height: 250px;
  rotate: 18deg;
}

.orbit-two {
  width: 280px;
  height: 450px;
  rotate: -26deg;
}

.map-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 205px;
  height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 10px 10px 0 var(--lime);
  color: var(--white);
  transform: translate(-50%, -50%);
}

.map-core span {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.map-core strong {
  font-size: 26px;
  line-height: 1.04;
  letter-spacing: -1px;
}

.map-node {
  position: absolute;
  width: 148px;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.map-node span {
  margin-bottom: auto;
  font-size: 12px;
  font-weight: 900;
}

.map-node strong {
  font-size: 17px;
  line-height: 1.1;
}

.map-node small {
  font-size: 12px;
}

.node-one {
  top: 28px;
  right: 45px;
  background: var(--lime);
  rotate: 4deg;
}

.node-two {
  left: 8px;
  top: 185px;
  background: var(--mint);
  rotate: -5deg;
}

.node-three {
  right: 28px;
  bottom: 27px;
  background: var(--sky);
  rotate: 3deg;
}

.spark {
  position: absolute;
  color: var(--orange);
  font-size: 36px;
}

.spark-one {
  left: 78px;
  bottom: 70px;
}

.spark-two {
  right: 10px;
  top: 184px;
  font-size: 22px;
}

.partner-bar {
  min-height: 110px;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr 1.5fr;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.partner-label,
.funding {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.partner-name {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.funding {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.section {
  padding: 120px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: start;
}

.why-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.why-section h2 {
  max-width: 690px;
  margin-bottom: 0;
}

.why-copy {
  padding-top: 34px;
}

.lead-paragraph {
  margin-bottom: 22px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.42;
}

.why-copy > p:not(.lead-paragraph) {
  color: var(--ink-soft);
  font-size: 17px;
}

.fact-card {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  padding: 25px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.fact-card strong {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 42px;
  letter-spacing: -2px;
}

.fact-card span {
  max-width: 330px;
  font-size: 13px;
  font-weight: 700;
}

.themes-section {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 18px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.theme-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 2px solid var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 var(--ink);
}

.theme-card.lime { background: var(--lime-soft); }
.theme-card.mint { background: #c9eedf; }
.theme-card.sky { background: #d0eaf3; }

.theme-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 75px;
}

.theme-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.theme-tag {
  padding: 6px 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.theme-card h3 {
  max-width: 300px;
  margin-bottom: 18px;
  font-size: 29px;
  letter-spacing: -1.3px;
  line-height: 1.04;
}

.theme-card p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 15px;
}

.theme-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

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

.approach-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 80px;
}

.kicker.light {
  color: var(--lime);
}

.approach-intro h2 {
  margin-bottom: 0;
}

.approach-lead {
  max-width: 460px;
  margin-bottom: 26px;
  color: #d2e0dc;
  font-size: 21px;
}

.cadence {
  display: inline-flex;
  padding: 9px 14px;
  background: var(--lime);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.journey {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 20px;
  padding-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.journey-step {
  min-height: 210px;
}

.step-mark {
  display: block;
  margin-bottom: 50px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.journey-step h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.journey-step p {
  margin: 0;
  color: #b9ceca;
  font-size: 14px;
}

.journey-arrow {
  padding-top: 61px;
  color: var(--mint);
  font-size: 27px;
}

.impact-section {
  background: var(--lime);
}

.impact-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.impact-head h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.impact-head > p {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 700;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.metric {
  grid-column: span 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--ink);
}

.metric:nth-child(1),
.metric:nth-child(2),
.metric:nth-child(3) {
  grid-column: span 1;
}

.metric-wide {
  grid-column: span 3;
  border-right: 0;
}

.metric strong {
  font-size: clamp(55px, 6vw, 82px);
  letter-spacing: -4px;
  line-height: 1;
}

.metric span {
  max-width: 210px;
  font-size: 14px;
  font-weight: 800;
}

.metric-wide span {
  max-width: 390px;
}

.phases-section {
  background: var(--paper);
}

.phases-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.phases-title {
  position: sticky;
  top: 125px;
  align-self: start;
}

.phases-title h2 {
  margin-bottom: 28px;
}

.phases-title > p:last-child {
  max-width: 460px;
  color: var(--ink-soft);
  font-size: 17px;
}

.phase-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.phase-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 25px;
  padding: 32px 0 34px;
  border-bottom: 1px solid var(--line);
}

.phase-list > li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.phase-list li:nth-child(2) > span { background: var(--sky); }
.phase-list li:nth-child(3) > span { background: var(--lime); }

.phase-list h3 {
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -0.7px;
}

.phase-list p {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
}

.quote-section {
  padding: 110px 0;
  background: var(--orange);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 90px;
  align-items: end;
}

blockquote {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.quote-source {
  display: flex;
  gap: 14px;
  align-items: center;
}

.initials {
  width: 54px;
  height: 54px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.quote-source p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.people-section {
  background: var(--cream);
}

.people-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.people-grid h2 {
  margin-bottom: 0;
}

.people-list {
  border-top: 2px solid var(--ink);
}

.people-list > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.people-list strong {
  font-size: 17px;
}

.people-list span {
  color: var(--ink-soft);
  font-size: 13px;
  text-align: right;
}

.contact-section {
  padding: 0 0 100px;
  background: var(--cream);
}

.contact-card {
  min-height: 420px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  padding: 62px;
  background: var(--sky);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.contact-card > div {
  max-width: 740px;
}

.contact-card h2 {
  margin-bottom: 22px;
}

.contact-card p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 18px;
}

.button-dark {
  flex: 0 0 auto;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--white);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  box-shadow: 2px 2px 0 var(--white);
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 65px;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-grid > div:first-child p {
  max-width: 250px;
  color: #b9ceca;
  font-size: 13px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #c8d9d5;
  font-size: 12px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #9cb6b1;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .thinking-map {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .partner-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 45px;
    padding: 28px 0;
  }

  .partner-label,
  .funding {
    grid-column: span 2;
  }

  .funding {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .split,
  .section-heading,
  .approach-intro,
  .impact-head,
  .phases-layout,
  .people-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .theme-card {
    min-height: 360px;
  }

  .theme-topline {
    margin-bottom: 45px;
  }

  .journey {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .journey-arrow {
    display: none;
  }

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

  .metric:nth-child(1),
  .metric:nth-child(2),
  .metric:nth-child(3),
  .metric-wide {
    grid-column: span 1;
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n+2) {
    border-bottom: 1px solid var(--ink);
  }

  .metric-wide {
    border-right: 0;
  }

  .phases-title {
    position: static;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    font-size: 21px;
  }

  .button-small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 30px;
  }

  h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .thinking-map {
    min-height: 440px;
    scale: 0.8;
    margin-block: -38px;
  }

  .thinking-map::before {
    width: 350px;
    height: 350px;
  }

  .node-one {
    right: -5px;
  }

  .node-two {
    left: -28px;
  }

  .node-three {
    right: -8px;
  }

  .partner-bar {
    margin-top: 10px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .lead-paragraph {
    font-size: 20px;
  }

  .fact-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .journey-step {
    min-height: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .step-mark {
    margin-bottom: 20px;
  }

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

  .metric:nth-child(1),
  .metric:nth-child(2),
  .metric:nth-child(3),
  .metric-wide {
    grid-column: span 1;
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .phase-list li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .people-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .people-list span {
    text-align: left;
  }

  .contact-section {
    padding-bottom: 75px;
  }

  .contact-card {
    min-height: auto;
    padding: 36px 26px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .contact-card .button {
    width: 100%;
  }

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

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
