:root {
  --forest: #124734;
  --deep: #08291f;
  --leaf: #2d7a4f;
  --water: #1f6f8b;
  --teal: #16756f;
  --solar: #f5b83b;
  --clay: #a85d35;
  --ink: #18312a;
  --muted: #5d7069;
  --line: #dce8e1;
  --paper: #f7faf7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 71, 52, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(247, 250, 247, 0.78), rgba(255, 255, 255, 0) 520px),
    var(--white);
}

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

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 232, 225, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(18, 71, 52, 0.04);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: cover;
  border: 1px solid rgba(18, 71, 52, 0.14);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(18, 71, 52, 0.12);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.03rem;
}

.brand small {
  color: var(--muted);
  max-width: 190px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-dropdown-toggle {
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  color: #314b43;
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown.is-current .nav-dropdown-toggle {
  background: #edf6f0;
  color: var(--forest);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.program-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 80;
  width: min(360px, calc(100vw - 40px));
  display: none;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.program-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-dropdown:hover .program-menu,
.nav-dropdown:focus-within .program-menu,
.nav-dropdown.is-open .program-menu {
  display: grid;
}

.program-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.program-menu a:hover,
.program-menu a:focus-visible {
  border-color: rgba(45, 122, 79, 0.14);
  background: #edf6f0;
  color: var(--forest);
  outline: 0;
}

.program-menu a::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px #dff1e6;
}

.nav-links .nav-cta {
  margin-left: 6px;
  background: var(--forest);
  color: var(--white);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  background: #0d3728;
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 38, 28, 0.9), rgba(7, 38, 28, 0.58) 48%, rgba(7, 38, 28, 0.16)),
    linear-gradient(0deg, rgba(7, 38, 28, 0.62), rgba(7, 38, 28, 0.02) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 110px;
}

.hero-content h1,
.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero-proof,
.hero-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 840px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(245, 184, 59, 0.38);
  border-radius: 999px;
  color: #fff5d6;
  background: rgba(8, 41, 31, 0.48);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-signal {
  max-width: 560px;
  margin-top: 34px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 5px solid var(--solar);
  border-radius: var(--radius);
  background: rgba(7, 38, 28, 0.56);
  backdrop-filter: blur(12px);
}

.hero-signal strong,
.hero-signal span {
  display: block;
}

.hero-signal strong {
  color: var(--white);
  font-size: 1.05rem;
}

.hero-signal span {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 4px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--solar);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 690px;
  margin-top: 24px;
}

.hero-topics button {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.hero-topics button.is-active {
  border-color: rgba(245, 184, 59, 0.95);
  color: #2b1d05;
  background: var(--solar);
}

.hero-topics button:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.nav-links a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(245, 184, 59, 0.86);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18, 71, 52, 0.16);
}

.button.primary {
  background: var(--solar);
  color: #302006;
}

.button.secondary {
  background: var(--forest);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 2px;
  margin-left: 10px;
  background: var(--solar);
}

.signal-strip {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(220, 232, 225, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-grid div {
  padding: 26px;
}

.signal-grid div + div {
  border-left: 1px solid var(--line);
}

.signal-grid span,
.dashboard-top span,
.initiative-card span,
.model-track span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 1.2rem;
}

.signal-grid p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.muted {
  background: var(--paper);
}

.intro-band {
  background: var(--forest);
  color: var(--white);
}

.intro-band .eyebrow {
  color: var(--solar);
}

.intro-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.two-column,
.page-hero-grid,
.split-visual,
.intelligence-grid,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: center;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.1;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

p {
  margin: 0 0 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid,
.initiative-grid,
.info-grid,
.program-grid,
.project-grid,
.partner-grid,
.tool-grid,
.process-grid,
.values-grid,
.aims-promise-grid,
.hub-grid,
.mission-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.initiative-card,
.info-card,
.project-card,
.program-card,
.partner-grid article,
.tool-grid article,
.process-grid article,
.values-grid article,
.aims-promise-grid article,
.hub-card,
.mission-grid article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(18, 71, 52, 0.06);
}

.feature-card,
.initiative-card {
  overflow: hidden;
}

.feature-card img,
.initiative-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.feature-card div,
.initiative-card div,
.project-card div {
  padding: 22px;
}

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

.info-card {
  padding: 24px;
}

.info-card,
.program-card,
.project-card,
.partner-grid article,
.tool-grid article,
.contact-panel {
  position: relative;
  border-top: 8px solid var(--leaf);
  background:
    linear-gradient(180deg, rgba(236, 246, 240, 0.82), rgba(255, 255, 255, 0.96) 110px),
    var(--white);
  box-shadow: 0 16px 44px rgba(18, 71, 52, 0.09);
}

.info-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.info-card h2 {
  margin-bottom: 12px;
  color: var(--leaf);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.14;
}

.info-card p {
  margin-bottom: 0;
  color: #526762;
  font-weight: 650;
  line-height: 1.55;
}

.info-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.info-card li + li {
  margin-top: 6px;
}

.feature-card,
.info-card,
.program-card,
.project-card,
.partner-grid article,
.tool-grid article,
.contact-panel,
.hub-card,
.initiative-card,
.metrics div,
.model-track article {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover,
.info-card:hover,
.program-card:hover,
.project-card:hover,
.partner-grid article:hover,
.tool-grid article:hover,
.hub-card:hover,
.initiative-card:hover,
.metrics div:hover,
.model-track article:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 122, 79, 0.34);
  box-shadow: 0 18px 44px rgba(18, 71, 52, 0.12);
}

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

.metrics div {
  padding: 28px;
  border-left: 5px solid var(--solar);
  background: var(--white);
  border-radius: var(--radius);
}

.metrics strong {
  display: block;
  color: var(--forest);
  font-size: 2.35rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.intelligence-section {
  background:
    linear-gradient(135deg, rgba(18, 71, 52, 0.98), rgba(22, 117, 111, 0.96)),
    var(--forest);
  color: var(--white);
}

.intelligence-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.intelligence-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.intelligence-section .text-link {
  color: var(--white);
}

.dashboard-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(4, 22, 17, 0.3);
  backdrop-filter: blur(14px);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.dashboard-top strong {
  display: block;
  font-size: 1.35rem;
}

.status-pill {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(245, 184, 59, 0.36);
  border-radius: 999px;
  color: #fff2c6 !important;
  background: rgba(245, 184, 59, 0.12);
  font-size: 0.78rem !important;
  font-weight: 900;
  white-space: nowrap;
}

.field-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 14px;
  margin: 26px 0;
}

.field-map {
  position: relative;
  min-height: 292px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.085) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.085) 1px, transparent 1px),
    radial-gradient(circle at 22% 28%, rgba(245, 184, 59, 0.18), transparent 25%),
    radial-gradient(circle at 76% 22%, rgba(31, 111, 139, 0.26), transparent 31%),
    linear-gradient(135deg, rgba(245, 184, 59, 0.1), rgba(31, 111, 139, 0.24));
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
  overflow: hidden;
}

.field-zone,
.field-node,
.flow-line {
  position: absolute;
  display: block;
}

.field-zone {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(8, 41, 31, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
}

.zone-farm {
  left: 8%;
  top: 12%;
}

.zone-water {
  right: 8%;
  top: 17%;
}

.zone-solar {
  left: 15%;
  bottom: 15%;
}

.zone-forest {
  right: 10%;
  bottom: 13%;
}

.field-node {
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--solar);
  box-shadow: 0 0 0 10px rgba(245, 184, 59, 0.18);
}

.field-node::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(245, 184, 59, 0.35);
  border-radius: 50%;
}

.node-soil {
  left: 27%;
  top: 34%;
}

.node-water {
  right: 23%;
  top: 35%;
}

.node-energy {
  left: 31%;
  bottom: 27%;
}

.node-ai {
  right: 32%;
  bottom: 31%;
  background: var(--water);
}

.flow-line {
  height: 3px;
  background: rgba(255, 255, 255, 0.58);
  transform-origin: left;
}

.flow-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 3px solid rgba(255, 255, 255, 0.58);
  border-right: 3px solid rgba(255, 255, 255, 0.58);
  transform: rotate(45deg);
}

.flow-a {
  left: 31%;
  top: 38%;
  width: 41%;
  transform: rotate(2deg);
}

.flow-b {
  left: 34%;
  bottom: 31%;
  width: 30%;
  transform: rotate(-12deg);
}

.flow-c {
  right: 24%;
  top: 44%;
  width: 29%;
  transform: rotate(119deg);
}

.dashboard-feed {
  display: grid;
  gap: 10px;
}

.dashboard-feed div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 41, 31, 0.34);
}

.dashboard-feed span,
.dashboard-feed strong {
  display: block;
}

.dashboard-feed span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-feed strong {
  margin-top: 5px;
  color: var(--white);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dashboard-stats div {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.dashboard-stats strong,
.dashboard-stats span {
  display: block;
}

.dashboard-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.split-visual img,
.story-grid img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reverse img {
  order: -1;
}

.home-hero {
  min-height: 650px;
}

.home-hero .hero-content {
  padding: 118px 0 82px;
}

.home-hero + .signal-strip {
  margin-top: -36px;
}

.home-hero + .signal-strip .signal-grid div {
  padding: 20px;
}

.home-hero ~ .section {
  padding: 58px 0;
}

.home-hero ~ .section .section-heading {
  margin-bottom: 22px;
}

.home-hero ~ .section h2 {
  margin-bottom: 12px;
}

.home-hero ~ .section p {
  margin-bottom: 12px;
}

.home-hero ~ .section .feature-grid,
.home-hero ~ .section .initiative-grid,
.home-hero ~ .section .hub-grid,
.home-hero ~ .section .model-track,
.home-hero ~ .section .metrics {
  gap: 16px;
}

.home-hero ~ .section .feature-card img {
  height: 190px;
}

.home-hero ~ .section .feature-card div,
.home-hero ~ .section .initiative-card div {
  padding: 18px;
}

.home-hero ~ .intelligence-section .intelligence-grid,
.home-hero ~ .section .split-visual {
  gap: 34px;
}

.home-hero ~ .intelligence-section .intelligence-actions {
  margin-top: 18px;
}

.home-hero ~ .intelligence-section .dashboard-card {
  padding: 20px;
}

.home-hero ~ .intelligence-section .field-dashboard {
  margin: 18px 0;
}

.home-hero ~ .intelligence-section .field-map {
  min-height: 238px;
}

.home-hero ~ .intelligence-section .dashboard-feed {
  gap: 8px;
}

.home-hero ~ .intelligence-section .dashboard-feed div,
.home-hero ~ .intelligence-section .dashboard-stats div {
  padding: 12px;
}

.home-hero ~ .section .hub-card,
.home-hero ~ .section .model-track article {
  padding: 20px;
}

.home-hero ~ .section .hub-card span,
.home-hero ~ .section .initiative-card span,
.home-hero ~ .section .model-track span {
  margin-bottom: 8px;
}

.home-hero ~ .section .initiative-card img {
  height: 210px;
}

.home-hero ~ .section .initiative-card.large-card img {
  min-height: 305px;
}

.home-hero ~ .section .metrics div {
  padding: 22px;
}

.home-hero ~ .section .metrics strong {
  font-size: 2rem;
}

.home-hero ~ .section .check-list {
  margin: 16px 0 20px;
}

.home-hero ~ .section .check-list li {
  margin-bottom: 8px;
}

.home-hero ~ .section .split-visual img {
  min-height: 335px;
}

.check-list {
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: inset 0 0 0 4px #dff1e6;
}

.cta-band {
  padding: 86px 0;
  background: linear-gradient(135deg, var(--forest), #175f66);
  color: var(--white);
}

.cta-band h2 {
  max-width: 860px;
}

.page-hero {
  --page-accent: var(--leaf);
  --page-accent-soft: rgba(45, 122, 79, 0.13);
  padding: 58px 0 46px;
  background:
    linear-gradient(135deg, rgba(242, 248, 244, 0.96), rgba(233, 243, 245, 0.92)),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow {
  color: var(--page-accent);
}

.page-hero p {
  color: var(--muted);
  font-size: 1rem;
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(1.55rem, 2.45vw, 2.25rem);
}

.page-hero-grid {
  gap: 36px;
}

.first-screen-block {
  margin-top: 24px;
}

.first-screen-block .section-heading {
  max-width: none;
  margin-bottom: 16px;
}

.first-screen-block .section-heading h2 {
  margin-bottom: 0;
  color: var(--page-accent);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.page-hero .info-grid {
  gap: 14px;
}

.page-hero .info-card {
  padding: 16px;
  border-top-width: 5px;
  border-top-color: var(--page-accent);
  box-shadow: 0 8px 24px rgba(18, 71, 52, 0.07);
}

.page-hero .info-card span {
  margin-bottom: 8px;
  font-size: 1rem;
}

.page-hero .info-card h2 {
  margin-bottom: 7px;
  color: var(--page-accent);
  font-size: 0.9rem;
}

.page-hero .info-card p {
  font-size: 0.86rem;
  line-height: 1.42;
}

.partners-hero {
  padding-bottom: 46px;
}

.program-hero {
  --page-accent: #2d7a4f;
  background:
    linear-gradient(135deg, rgba(239, 249, 241, 0.95), rgba(251, 255, 244, 0.94)),
    linear-gradient(90deg, rgba(45, 122, 79, 0.1), transparent);
}

.research-hero {
  --page-accent: #1f6f8b;
  background:
    linear-gradient(135deg, rgba(235, 247, 250, 0.95), rgba(242, 248, 244, 0.94)),
    linear-gradient(90deg, rgba(31, 111, 139, 0.12), transparent);
}

.projects-hero {
  --page-accent: #a85d35;
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.95), rgba(242, 248, 244, 0.94)),
    linear-gradient(90deg, rgba(168, 93, 53, 0.12), transparent);
}

.partners-hero {
  --page-accent: #16756f;
  background:
    linear-gradient(135deg, rgba(232, 247, 245, 0.95), rgba(246, 251, 248, 0.94)),
    linear-gradient(90deg, rgba(22, 117, 111, 0.13), transparent);
}

.contact-hero {
  --page-accent: #8b6a16;
  background:
    linear-gradient(135deg, rgba(255, 250, 235, 0.95), rgba(242, 248, 244, 0.94)),
    linear-gradient(90deg, rgba(245, 184, 59, 0.18), transparent);
}

.partners-hero h1 {
  max-width: 780px;
  font-size: clamp(1.55rem, 2.45vw, 2.25rem);
  line-height: 1.04;
}

.partners-hero .page-hero-grid {
  align-items: start;
}

.partner-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.partner-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.partner-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: #526762;
  font-size: 1rem;
  font-weight: 650;
}

.partner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.partner-hero-actions .text-link {
  color: var(--page-accent);
}

.partner-ecosystem-card {
  padding: 22px;
  border: 1px solid rgba(22, 117, 111, 0.18);
  border-top: 7px solid var(--page-accent);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(232, 247, 245, 0.86), rgba(255, 255, 255, 0.96) 112px),
    var(--white);
  box-shadow: 0 16px 44px rgba(18, 71, 52, 0.09);
}

.partner-ecosystem-card h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 850;
}

.partner-ecosystem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partner-ecosystem-list li {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(22, 117, 111, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.partner-ecosystem-list span,
.partner-collaboration-lanes span {
  display: block;
  margin-bottom: 6px;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.partner-ecosystem-list strong {
  display: block;
  color: #3f5851;
  font-size: 0.9rem;
  line-height: 1.22;
}

.partner-collaboration-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.partner-collaboration-lanes article {
  padding: 16px;
  border: 1px solid rgba(22, 117, 111, 0.16);
  border-top: 5px solid var(--page-accent);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(18, 71, 52, 0.06);
}

.partner-collaboration-lanes h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.partner-collaboration-lanes p {
  margin-bottom: 0;
  color: #526762;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.42;
}

.about-hero {
  padding: 48px 0 42px;
}

.about-hero-grid,
.about-first-screen-grid {
  display: grid;
  gap: 18px;
}

.about-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.about-hero h1 {
  max-width: 780px;
  font-size: clamp(1.65rem, 2.7vw, 2.8rem);
  line-height: 1.03;
}

.about-hero-intro p:not(.eyebrow) {
  max-width: 780px;
}

.about-first-screen-grid {
  margin-top: 18px;
}

.about-foundation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-summary-card,
.about-aims-card,
.about-promise-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 28px rgba(18, 71, 52, 0.06);
}

.about-summary-card,
.about-promise-card {
  border-top: 8px solid var(--leaf);
  background:
    linear-gradient(180deg, rgba(236, 246, 240, 0.82), rgba(255, 255, 255, 0.95) 110px),
    var(--white);
  box-shadow: 0 16px 44px rgba(18, 71, 52, 0.09);
}

.about-aims-card {
  border-top: 6px solid var(--leaf);
  background:
    linear-gradient(180deg, rgba(236, 246, 240, 0.78), rgba(255, 255, 255, 0.96) 92px),
    var(--white);
  box-shadow: 0 8px 28px rgba(18, 71, 52, 0.06);
}

.about-summary-card {
  padding: 20px;
}

.about-summary-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.about-aims-card > .eyebrow,
.about-promise-card > .eyebrow {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.06;
  text-transform: none;
}

.about-summary-card p,
.about-promise-card p {
  margin-bottom: 0;
}

.about-aims-card,
.about-promise-card {
  padding: 24px;
}

.about-aims-card h2,
.about-promise-card h2,
.about-summary-card h2 {
  display: block;
  margin-bottom: 14px;
  padding: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  color: var(--leaf);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.12;
}

.about-summary-card p,
.about-promise-card p {
  color: #526762;
  font-weight: 650;
  line-height: 1.55;
}

.about-promise-card p + p {
  margin-top: 14px;
}

.compact-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compact-check-list li {
  position: relative;
  padding-left: 26px;
  color: #526762;
  font-size: 0.98rem;
  font-weight: 780;
  line-height: 1.35;
}

.compact-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px #dff1e6, inset 0 0 0 3px rgba(255, 255, 255, 0.56);
}

.partner-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  gap: 14px;
}

.partner-list-panel {
  display: block;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(22, 117, 111, 0.18);
  border-top: 5px solid var(--page-accent);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(232, 247, 245, 0.84), rgba(255, 255, 255, 0.96) 96px),
    var(--white);
  box-shadow: 0 8px 24px rgba(18, 71, 52, 0.07);
}

.partner-list-panel .eyebrow {
  margin-bottom: 8px;
}

.partner-list-panel h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 850;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partner-list li {
  position: relative;
  padding-left: 20px;
  color: #526762;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
}

.partner-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--page-accent, var(--teal));
  box-shadow: 0 0 0 4px rgba(22, 117, 111, 0.12);
}

.partner-grid-compact article {
  padding: 18px;
  border-top: 5px solid var(--page-accent);
}

.partner-grid-compact h2 {
  font-size: 1rem;
}

.partner-grid-compact p {
  font-size: 0.88rem;
  line-height: 1.45;
}

.mini-list {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 18px;
  color: #526762;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--page-accent, var(--leaf));
}

.partner-opportunities {
  background: linear-gradient(180deg, var(--white), #f4faf8);
}

.partner-opportunity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.partner-opportunity-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--teal);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(232, 247, 245, 0.8), rgba(255, 255, 255, 0.96) 105px),
    var(--white);
  box-shadow: 0 12px 34px rgba(18, 71, 52, 0.08);
}

.partner-opportunity-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.partner-opportunity-grid h3 {
  color: var(--ink);
  font-size: 1.2rem;
}

.partner-opportunity-grid p {
  margin-bottom: 0;
  color: #526762;
  font-weight: 650;
}

.partner-opportunity-grid .mini-list {
  margin-top: 14px;
}

.partner-shared-section {
  padding-top: 72px;
}

.shared-implementation-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 8px solid var(--teal);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(232, 247, 245, 0.82), rgba(255, 255, 255, 0.96) 120px),
    var(--white);
  box-shadow: 0 16px 44px rgba(18, 71, 52, 0.09);
}

.shared-implementation-card h2 {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
}

.shared-implementation-card p {
  color: #526762;
  font-weight: 650;
}

.shared-implementation-photo {
  width: 100%;
  height: 230px;
  margin-top: 8px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(18, 71, 52, 0.12);
}

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

.shared-implementation-grid article {
  padding: 18px;
  border: 1px solid rgba(22, 117, 111, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.shared-implementation-grid span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shared-implementation-grid h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

.shared-implementation-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.about-detail-section {
  padding: 52px 0;
}

.about-detail-section + .about-detail-section {
  padding-top: 18px;
}

.about-detail-section .story-grid {
  gap: 34px;
}

.about-detail-section .story-grid img {
  min-height: 320px;
}

.about-detail-section .section-heading {
  margin-bottom: 20px;
}

.about-detail-section h2 {
  margin-bottom: 12px;
}

.about-detail-section p {
  margin-bottom: 12px;
}

.about-detail-section .values-grid,
.about-detail-section .process-grid {
  gap: 14px;
}

.about-detail-section .values-grid article,
.about-detail-section .process-grid article {
  padding: 20px;
}

.about-detail-section .values-grid span,
.about-detail-section .process-grid span {
  margin-bottom: 8px;
}

.about-model-section {
  padding-bottom: 58px;
}

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

.mission-grid article,
.partner-grid article,
.tool-grid article,
.process-grid article,
.values-grid article,
.aims-promise-grid article,
.hub-card {
  padding: 28px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid span,
.values-grid span,
.program-card span,
.project-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.aims-promise-grid {
  grid-template-columns: 1.18fr 0.82fr;
  align-items: start;
}

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

.hub-card {
  position: relative;
  overflow: hidden;
}

.hub-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--leaf), var(--water));
}

.hub-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-grid,
.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.initiative-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  align-items: stretch;
}

.initiative-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.initiative-card img {
  height: 255px;
}

.initiative-card.large-card img {
  height: 100%;
  min-height: 365px;
}

.initiative-card.large-card {
  display: grid;
  grid-template-rows: 1fr auto;
}

.initiative-card h3 {
  font-size: 1.45rem;
}

.partner-model {
  overflow: hidden;
}

.model-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(18, 71, 52, 0.06);
}

.model-track article {
  position: relative;
  padding: 30px;
}

.model-track article + article {
  border-left: 1px solid var(--line);
}

.model-track article::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 36px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--white);
  transform: rotate(45deg);
}

.model-track article:last-child::after {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.program-card {
  padding: 30px;
}

a.program-card {
  color: inherit;
  text-decoration: none;
}

a.program-card:focus-visible {
  outline: 3px solid rgba(245, 184, 59, 0.86);
  outline-offset: 4px;
}

.program-card span,
.project-card span {
  color: var(--clay);
}

.program-card h2,
.project-card h2,
.partner-grid h2 {
  color: var(--ink);
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  font-weight: 850;
  line-height: 1.12;
}

.program-card p,
.project-card p,
.partner-grid article p,
.tool-grid article p,
.contact-panel p {
  color: #526762;
  font-weight: 650;
  line-height: 1.55;
}

.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-card img.soil-intelligence-photo {
  object-position: center 45%;
}

.project-card div {
  display: grid;
  gap: 12px;
}

.project-card p {
  margin-bottom: 0;
}

.project-details {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.project-details li {
  position: relative;
  padding-left: 22px;
  color: #526762;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.4;
}

.project-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px #dff1e6;
}

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

.tool-grid article h3,
.contact-panel h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  font-weight: 850;
  line-height: 1.12;
}

.tool-grid article h3::after,
.contact-panel h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--leaf);
}

.contact-panel a,
.site-footer a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c8d9d0;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-panel {
  padding: 30px;
  position: sticky;
  top: 100px;
}

.contact-photo {
  width: 100%;
  height: 210px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  object-fit: cover;
}

.note {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--solar);
  background: #fff9ea;
  border-radius: var(--radius);
  color: #604711;
  font-weight: 700;
}

.site-footer {
  padding: 48px 0 26px;
  color: rgba(255, 255, 255, 0.8);
  background: #0b2b20;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 34px;
}

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

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .program-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
    background: #f7faf7;
  }

  .program-menu::before {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .two-column,
  .page-hero-grid,
  .partner-hero-layout,
  .about-hero-grid,
  .about-first-screen-grid,
  .shared-implementation-card,
  .partner-list-panel,
  .split-visual,
  .intelligence-grid,
  .story-grid,
  .contact-grid,
  .aims-promise-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .initiative-grid,
  .info-grid,
  .partner-collaboration-lanes,
  .partner-opportunity-grid,
  .shared-implementation-grid,
  .model-track {
    grid-template-columns: 1fr 1fr;
  }

  .field-dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard-feed {
    grid-template-columns: repeat(3, 1fr);
  }

  .signal-grid div + div,
  .model-track article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .signal-grid div:nth-child(2),
  .model-track article:nth-child(2) {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .model-track article::after {
    display: none;
  }

  .compact-check-list {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .program-grid,
  .project-grid,
  .process-grid,
  .values-grid,
  .hub-grid,
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .reverse img {
    order: 0;
  }

  .contact-panel {
    position: static;
  }
}

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

  .brand small {
    display: none !important;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .hero {
    min-height: 610px;
  }

  .hero-proof,
  .hero-topics {
    display: none;
  }

  .hero-signal {
    padding: 16px;
  }

  .dashboard-top {
    display: grid;
  }

  .field-map {
    min-height: 250px;
  }

  .dashboard-feed,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 90px 0 74px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .section,
  .cta-band {
    padding: 60px 0;
  }

  .page-hero {
    padding: 74px 0 54px;
  }

  .about-hero {
    padding: 46px 0 42px;
  }

  .about-summary-card,
  .about-aims-card,
  .about-promise-card {
    padding: 24px;
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .signal-grid,
  .initiative-grid,
  .info-grid,
  .partner-ecosystem-list,
  .partner-collaboration-lanes,
  .partner-opportunity-grid,
  .shared-implementation-grid,
  .model-track,
  .program-grid,
  .project-grid,
  .process-grid,
  .values-grid,
  .hub-grid,
  .metrics,
  .tool-grid,
  .partner-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .split-visual img,
  .story-grid img {
    min-height: 290px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
