:root {
  --forest-950: #071f1e;
  --forest-900: #0b2c2f;
  --forest-800: #123832;
  --forest-700: #1e4f42;
  --leaf: #9bd65c;
  --leaf-dark: #73ad3e;
  --gold: #f3c65b;
  --cream: #f5f3e9;
  --paper: #fbfaf5;
  --ink: #162521;
  --muted: #5c6b65;
  --line: #d9ded5;
  --white: #ffffff;
  --container: 1180px;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(7, 31, 30, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest-950);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.funding-banner {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid #e8e8e4;
}

.funding-banner__inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 94px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 230px minmax(260px, 1fr) 235px;
  align-items: center;
  gap: 36px;
}

.funding-banner p {
  margin: 0;
  color: #3c4742;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.funding-banner strong {
  color: var(--ink);
  font-weight: 700;
}

.funding-logo {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.funding-logo--ps {
  object-position: left center;
}

.funding-logo--eu {
  object-position: right center;
}

.site-header {
  position: sticky;
  z-index: 15;
  top: 0;
  height: 78px;
  color: var(--white);
  background: rgba(7, 31, 30, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(155, 214, 92, 0.12);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand-mark path {
  fill: var(--leaf);
}

.brand-mark .brand-mark__line {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-width: 3;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: -2px;
  color: #b7c8c0;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
}

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

nav a {
  position: relative;
  color: #d5dfdb;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--leaf);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

nav a:hover {
  color: var(--white);
}

nav a:hover::after {
  transform: scaleX(1);
}

.nav-contact {
  padding: 10px 17px;
  color: var(--forest-950);
  background: var(--leaf);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.hero-media,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(120deg, rgba(7, 31, 30, 0.16), rgba(7, 31, 30, 0.08)),
    url("assets/hero.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 25, 24, 0.98) 0%, rgba(5, 25, 24, 0.91) 35%, rgba(5, 25, 24, 0.32) 72%, rgba(5, 25, 24, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 25, 24, 0.74) 0%, transparent 42%);
}

.hero-inner {
  min-height: 720px;
  padding-block: 96px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 82px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d4e0d9;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--leaf);
}

.eyebrow--dark {
  color: var(--forest-700);
}

.eyebrow--light {
  color: #d4e0d9;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(3.8rem, 7.1vw, 6.7rem);
  text-wrap: balance;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #dbe5e0;
  font-size: 1.18rem;
  line-height: 1.6;
}

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

.button {
  min-height: 51px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  color: var(--forest-950);
  background: var(--leaf);
}

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

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

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.tech-pills {
  margin: 35px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tech-pills li {
  padding: 7px 12px;
  color: #d4e0d9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.project-card {
  align-self: center;
  padding: 30px;
  background: rgba(11, 44, 47, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.project-card__label {
  display: inline-block;
  padding: 6px 10px;
  color: var(--forest-950);
  background: var(--gold);
  border-radius: 7px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card dl {
  margin: 26px 0 20px;
}

.project-card dl > div,
.project-card__split > div {
  padding-block: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.project-card__split {
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: 0 !important;
}

.project-card dt {
  color: #aebfba;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card dd {
  margin: 4px 0 0;
  font-size: 1.03rem;
  font-weight: 750;
  line-height: 1.3;
}

.project-card > p {
  margin: 0;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 28px;
  height: 42px;
  display: grid;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  margin-top: 8px;
  background: var(--leaf);
  border-radius: 99px;
  animation: scroll 1.8s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(15px); opacity: 1; }
}

.section {
  padding-block: 120px;
}

.intro {
  background:
    radial-gradient(circle at 90% 18%, rgba(155, 214, 92, 0.1), transparent 24%),
    var(--paper);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 90px;
}

.section h2,
.contact h2 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  color: var(--forest-950);
}

.section h2 em {
  color: var(--leaf-dark);
  font-weight: inherit;
}

.intro-text {
  padding-top: 42px;
}

.lead {
  margin: 0;
  color: var(--forest-800);
  font-size: 1.18rem;
  font-weight: 640;
  line-height: 1.55;
}

.intro-text p:not(.lead) {
  margin: 22px 0 0;
  color: var(--muted);
}

.systems-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 45px rgba(11, 44, 47, 0.06);
}

.system-card {
  min-height: 300px;
  padding: 28px;
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  border-right: 1px solid var(--line);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.system-card:last-child {
  border-right: 0;
}

.system-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--forest-800);
  transform: translateY(-8px);
}

.system-number {
  color: #91a198;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.system-icon {
  width: 66px;
  height: 66px;
  margin-top: 48px;
  display: grid;
  place-items: center;
  color: var(--forest-800);
  background: rgba(155, 214, 92, 0.28);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.system-card:hover .system-icon {
  color: var(--forest-950);
  background: var(--leaf);
}

.system-card h3 {
  margin: 26px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.system-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.system-card:hover p,
.system-card:hover .system-number {
  color: #c7d7d0;
}

.goal-panel {
  margin-top: 32px;
  padding: 45px 54px;
  display: grid;
  grid-template-columns: 0.5fr 1.3fr 1.25fr;
  align-items: center;
  gap: 48px;
  color: var(--white);
  background: var(--forest-800);
  border-radius: var(--radius);
  overflow: hidden;
}

.goal-panel__number {
  color: var(--leaf);
  font-family: Georgia, serif;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.goal-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.18;
}

.goal-panel > p {
  margin: 0;
  color: #c8d6d1;
  font-size: 0.92rem;
}

.actions {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(7, 31, 30, 0.94), rgba(7, 31, 30, 0.97)),
    repeating-linear-gradient(105deg, transparent 0 64px, rgba(255, 255, 255, 0.05) 65px 66px),
    var(--forest-950);
}

.section-heading--light {
  max-width: 780px;
}

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

.section-heading--light > p:last-child {
  max-width: 660px;
  margin: 27px 0 0;
  color: #b9cbc4;
  font-size: 1.04rem;
}

.action-list {
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.action-list li {
  min-height: 102px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, padding 0.2s ease;
}

.action-list li:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.action-list__index {
  color: var(--leaf);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.action-list strong,
.action-list small {
  display: block;
}

.action-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.action-list small {
  margin-top: 2px;
  color: #9db1aa;
  font-size: 0.8rem;
}

.impact-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.impact-grid article {
  padding: 34px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.impact-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--forest-950);
  background: var(--gold);
  border-radius: 12px;
  font-size: 1.35rem;
}

.impact-grid h3 {
  margin: 25px 0 10px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.impact-grid p {
  margin: 0;
  color: #afc1ba;
  font-size: 0.87rem;
}

.consortium {
  background: var(--cream);
}

.section-heading--centered {
  align-items: end;
}

.section-heading--centered > .lead {
  padding-bottom: 6px;
}

.members-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.member-card {
  grid-column: span 6;
  min-height: 280px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e0e2dc;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 44, 47, 0.09);
}

.member-card--leader {
  grid-column: span 6;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(155, 214, 92, 0.22), transparent 35%),
    var(--forest-800);
  border-color: var(--forest-800);
}

.member-card:nth-child(2) {
  grid-column: span 6;
}

.member-role {
  align-self: flex-start;
  padding: 5px 9px;
  color: var(--forest-700);
  background: rgba(155, 214, 92, 0.2);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.member-card--leader .member-role {
  color: var(--forest-950);
  background: var(--leaf);
}

.member-card h3 {
  margin: auto 0 14px;
  padding-top: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
}

.member-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.member-card--leader p {
  color: #c8d6d1;
}

.funding {
  background:
    radial-gradient(circle at 5% 30%, rgba(243, 198, 91, 0.13), transparent 25%),
    var(--paper);
}

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

.funding-note {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
}

.funding-breakdown {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(11, 44, 47, 0.07);
}

.funding-minimal {
  margin: 0;
}

.funding-minimal > div {
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #eceee9;
}

.funding-minimal > div:first-child {
  padding-top: 0;
}

.funding-minimal > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.funding-minimal dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.funding-minimal dd {
  margin: 0;
  flex-shrink: 0;
  color: var(--forest-800);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.timeline {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.timeline__line {
  position: absolute;
  top: 8px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: var(--line);
}

.timeline__item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timeline__item > span {
  width: 18px;
  height: 18px;
  margin: 0 auto 20px;
  display: block;
  background: var(--paper);
  border: 5px solid var(--forest-700);
  border-radius: 50%;
}

.timeline__item--active > span {
  border-color: var(--leaf-dark);
  box-shadow: 0 0 0 7px rgba(155, 214, 92, 0.17);
}

.timeline__item strong,
.timeline__item small {
  display: block;
}

.timeline__item strong {
  color: var(--forest-800);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.timeline__item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.75rem;
}

.contact {
  padding-block: 90px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(11, 44, 47, 0.98), rgba(11, 44, 47, 0.86)),
    var(--forest-800);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 90px;
}

.contact h2 {
  color: var(--white);
}

.contact-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.contact-card > span,
.contact-card > strong {
  display: block;
}

.contact-card > span {
  color: #a9bdb5;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card > strong {
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.contact-card p {
  margin: 6px 0 24px;
  color: #c0d0ca;
  font-size: 0.88rem;
}

.contact-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  color: var(--leaf);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1rem;
  font-weight: 750;
}

.site-footer {
  padding-block: 48px 25px;
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) 1fr;
  align-items: center;
  gap: 80px;
}

.footer-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
}

.footer-logos img {
  width: 100%;
  height: 62px;
  object-fit: contain;
}

.footer-top > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #738079;
  border-top: 1px solid #e8ebe6;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  nav {
    gap: 18px;
  }

  nav a {
    font-size: 0.75rem;
  }

  .hero-inner {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 45px;
  }

  .section-heading--split {
    gap: 55px;
  }

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

  .system-card {
    border-bottom: 1px solid var(--line);
  }

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

  .system-card:nth-child(n+3) {
    border-bottom: 0;
  }

  .goal-panel {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .goal-panel > p {
    grid-column: 1 / -1;
  }

  .member-card {
    grid-column: span 6;
  }

  .funding-grid {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .funding-banner__inner {
    grid-template-columns: 1fr 1fr;
    gap: 15px 32px;
    padding-block: 18px;
  }

  .funding-banner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-header {
    height: auto;
    min-height: 78px;
  }

  .header-inner {
    padding-block: 13px;
    align-items: flex-start;
  }

  nav {
    max-width: 470px;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  nav a {
    padding-block: 5px;
  }

  .nav-contact {
    padding-inline: 13px;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    padding-block: 80px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 11vw, 5.2rem);
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 25, 24, 0.96), rgba(5, 25, 24, 0.6));
  }

  .project-card {
    max-width: 520px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-block: 90px;
  }

  .section-heading--split,
  .funding-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-text {
    padding-top: 0;
  }

  .goal-panel {
    padding: 38px;
  }

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

  .member-card,
  .member-card--leader,
  .member-card:nth-child(2) {
    grid-column: span 6;
  }

  .funding-grid,
  .contact-inner {
    gap: 55px;
  }

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

@media (max-width: 620px) {
  .container,
  .funding-banner__inner {
    width: min(100% - 30px, var(--container));
  }

  .funding-banner__inner {
    gap: 12px 20px;
  }

  .funding-logo {
    height: 48px;
  }

  .funding-banner p {
    font-size: 0.72rem;
  }

  .header-inner {
    display: block;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  nav {
    margin-top: 11px;
    max-width: none;
    justify-content: center;
    gap: 4px 14px;
  }

  nav a {
    font-size: 0.69rem;
  }

  nav a:nth-child(2),
  nav a:nth-child(4) {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 790px;
  }

  .hero-inner {
    padding-block: 68px 55px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .project-card {
    padding: 24px;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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

  .system-card,
  .system-card:nth-child(n+3) {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .system-card:last-child {
    border-bottom: 0;
  }

  .system-icon {
    margin-top: 30px;
  }

  .goal-panel {
    padding: 30px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .goal-panel > p {
    grid-column: auto;
  }

  .action-list li {
    padding-block: 20px;
    grid-template-columns: 45px 1fr;
    gap: 12px;
  }

  .action-list li:hover {
    padding-inline: 8px;
  }

  .impact-grid {
    margin-top: 55px;
  }

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

  .member-card,
  .member-card--leader,
  .member-card:nth-child(2) {
    grid-column: auto;
    min-height: 245px;
  }

  .funding-breakdown {
    padding: 27px;
  }

  .funding-minimal > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .timeline {
    display: block;
  }

  .timeline__line {
    top: 0;
    bottom: 0;
    left: 8px;
    width: 2px;
    height: auto;
  }

  .timeline__item {
    min-height: 102px;
    padding-left: 40px;
    text-align: left;
  }

  .timeline__item > span {
    position: absolute;
    top: 0;
    left: 0;
  }

  .contact {
    padding-block: 75px;
  }

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

  .footer-logos img {
    height: 58px;
    object-position: left center;
  }

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

  .footer-bottom div {
    flex-direction: column;
    gap: 7px;
  }
}

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

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