:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #6d727b;
  --paper: #f5f3ef;
  --soft: #e8e3dc;
  --line: rgba(17, 17, 17, 0.14);
  --dark: #030303;
  --charcoal: #0b1013;
  --panel: #11171b;
  --coral: #d97759;
  --coral-dark: #bf6045;
  --blue: #5c6f95;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(3, 3, 3, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 18px clamp(20px, 4vw, 60px);
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.button-row,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 45%, var(--white) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, var(--white) 45% 55%, transparent 55%),
    #52607c;
}

.nav-links {
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  padding: 8px 2px;
}

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

.nav-cta {
  min-width: 176px;
  padding: 14px 28px !important;
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  text-align: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle,
.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 42px;
  padding: 4px;
  font-size: 0.78rem;
  font-weight: 850;
}

.language-toggle span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.58);
}

html[lang="en"] [data-lang-en],
html[lang="es"] [data-lang-es] {
  background: var(--coral);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span + span {
  margin-top: 6px;
}

main > section,
.site-footer {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 88px);
}

main > section {
  scroll-margin-top: 96px;
}

.section-dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 119, 89, 0.18), transparent 31%),
    linear-gradient(135deg, #050505 0%, #0b1013 58%, #050505 100%);
  color: var(--white);
}

.section-soft {
  background: var(--soft);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 96px);
  padding-top: clamp(84px, 10vw, 132px);
  padding-bottom: clamp(72px, 9vw, 128px);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.38) 72%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.78) 100%),
    url("../assets/DTKHero.jpg");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero-copy {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--coral);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.4vw, 7.1rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 900px;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.15;
}

.hero-lede,
.section-lede {
  max-width: 760px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
}

.section-lede {
  color: var(--muted);
}

.button-row {
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}

.button {
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  font-weight: 800;
}

.button-primary {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--white);
}

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

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

.help-link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--white);
  font-weight: 850;
}

.help-link span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.86rem;
  font-weight: 650;
}

.system-map {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.map-ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 50%;
}

.ring-two {
  inset: 22%;
  border-color: rgba(217, 119, 89, 0.48);
}

.map-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 164px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.1);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.map-node span {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.75rem;
  font-weight: 780;
  text-transform: uppercase;
}

.map-node strong {
  margin-top: 4px;
  font-size: 1.2rem;
  line-height: 1.12;
}

.map-node-core {
  top: 50%;
  left: 50%;
  z-index: 2;
  min-width: 212px;
  min-height: 150px;
  background: var(--white);
  color: var(--ink);
  transform: translate(-50%, -50%);
}

.map-node-core span {
  color: var(--coral);
}

.node-top {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.node-left {
  top: 42%;
  left: -5%;
}

.node-right {
  top: 42%;
  right: -5%;
}

.node-bottom {
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.stacked-copy,
.split p {
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-grid,
.systems-grid,
.audience-grid,
.trust-grid,
.action-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

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

.problem-grid div,
.systems-grid article,
.audience-grid article,
.trust-grid div,
.action-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.62);
}

.problem-grid div {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

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

.systems-grid article {
  background: var(--white);
  box-shadow: var(--shadow);
}

.systems-grid p,
.audience-grid p,
.trust-grid p,
.action-card p,
.deployment-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.system-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 850;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: 18px;
}

.image-story {
  position: relative;
  min-height: 360px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.2);
}

.image-story.large {
  grid-row: span 2;
  min-height: 740px;
}

.image-story img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}

.image-story.large img {
  object-position: center 58%;
}

.image-story:not(.large) img {
  object-position: center;
}

.image-story::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.04), rgba(3, 3, 3, 0.74));
}

.image-story div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: var(--white);
}

.image-story h2,
.image-story h3 {
  margin-bottom: 0;
  max-width: 760px;
}

.image-story p:not(.card-label) {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.05rem;
  line-height: 1.55;
}

.image-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  font-weight: 850;
}

.deployment-list {
  display: grid;
  gap: 16px;
  margin-top: 44px;
}

.deployment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.7);
}

.deployment-card.active {
  background: var(--white);
  box-shadow: var(--shadow);
}

.deployment-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.deployment-card > span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.44fr) minmax(260px, 0.58fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.platform-image {
  width: 100%;
  height: clamp(300px, 34vw, 480px);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 70px rgba(3, 3, 3, 0.18);
}

.feature-panel p {
  color: var(--muted);
  font-size: 1.1rem;
}

.platform-links {
  margin-bottom: 0;
}

.flow {
  display: grid;
  gap: 14px;
}

.flow span {
  position: relative;
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--coral);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
}

.flow span:nth-child(2) {
  border-left-color: var(--blue);
}

.flow span:nth-child(3) {
  border-left-color: var(--coral-dark);
}

.funding-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.funding-header p,
.funding-note p {
  color: var(--muted);
  font-size: 1.08rem;
}

.funding-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 44px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(232, 227, 220, 0.86)),
    radial-gradient(circle at 92% 8%, rgba(217, 119, 89, 0.2), transparent 28%);
  box-shadow: 0 24px 80px rgba(3, 3, 3, 0.09);
}

.funding-visual h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.funding-visual p {
  max-width: 740px;
  color: var(--muted);
}

.funding-total {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(10, 42, 85, 0.08), rgba(217, 119, 89, 0.1)),
    rgba(255, 253, 248, 0.84);
}

.funding-total span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.funding-total strong {
  color: var(--coral-dark);
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1;
}

.funding-total p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.status-pill,
.stage-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.status-pill {
  padding: 7px 12px;
  background: var(--dark);
  color: var(--white);
}

.funding-meter {
  position: relative;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.1);
}

.funding-meter span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--coral-dark));
}

.stage-note {
  margin: 0;
  color: var(--ink) !important;
  font-size: 0.92rem !important;
  font-weight: 850;
  white-space: nowrap;
}

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

.stage-card {
  position: relative;
  min-height: 100%;
  padding: 72px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.stage-card::before {
  position: absolute;
  top: 43px;
  left: 24px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.stage-card::after {
  position: absolute;
  top: 48px;
  left: 36px;
  right: -16px;
  height: 2px;
  background: var(--line);
  content: "";
}

.stage-card:last-child::after {
  display: none;
}

.stage-active {
  border-color: rgba(217, 119, 89, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.86)),
    radial-gradient(circle at 18% 8%, rgba(217, 119, 89, 0.18), transparent 38%);
  box-shadow: 0 18px 60px rgba(3, 3, 3, 0.08);
  transform: translateY(-6px);
}

.stage-active::before {
  border-color: var(--coral);
  background: var(--coral);
}

.stage-status {
  position: absolute;
  top: 24px;
  left: 24px;
  min-height: 30px;
  padding: 7px 12px 7px 28px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--ink);
}

.stage-active .stage-status {
  background: rgba(217, 119, 89, 0.16);
  color: var(--coral-dark);
}

.funding-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 2vw, 1.52rem);
}

.funding-goal {
  display: block;
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-size: 0.92rem;
}

.funding-grid p {
  color: var(--muted);
}

.funding-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.replication-note {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(232, 227, 220, 0.72)),
    radial-gradient(circle at 100% 0%, rgba(10, 42, 85, 0.12), transparent 34%);
}

.replication-note h3 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.replication-note p {
  max-width: 880px;
  color: var(--muted);
  font-size: 1.05rem;
}

.replication-note p:last-child {
  margin-bottom: 0;
}

.button-outline-dark {
  border-color: rgba(17, 17, 17, 0.26);
  background: transparent;
  color: var(--ink);
}

.donation {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.donation-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.impact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.impact-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-list div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-list strong {
  color: var(--coral);
  font-size: 1.45rem;
}

.impact-list span {
  color: rgba(255, 255, 255, 0.76);
}

.donation-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.2);
}

.donation-form fieldset {
  min-width: 0;
  margin: 26px 0;
  padding: 0;
  border: 0;
}

.donation-form legend,
.custom-amount > span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.monthly-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--white);
  font-weight: 800;
}

.monthly-toggle input {
  width: 20px;
  height: 20px;
  accent-color: var(--coral);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
}

.amount-grid label {
  cursor: pointer;
}

.amount-grid input {
  position: absolute;
  opacity: 0;
}

.amount-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 850;
}

.amount-grid input:checked + span,
.amount-grid span:hover {
  border-color: var(--coral);
  background: var(--coral);
}

.custom-amount input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.donation-submit {
  width: 100%;
  margin-top: 18px;
  font: inherit;
  cursor: pointer;
}

.secure-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.institutional-support {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(232, 227, 220, 0.72)),
    var(--paper);
}

.institutional-intro {
  max-width: 1040px;
}

.institutional-intro p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.institutional-intro h2 {
  max-width: 920px;
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
}

.collaboration-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(26px, 4vw, 54px);
  margin-top: 42px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 60px rgba(3, 3, 3, 0.06);
}

.collaboration-panel h3,
.strategic-collaboration h3 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

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

.collaboration-grid span {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.collaboration-grid span:nth-child(2n) {
  border-left-color: var(--blue);
}

.partner-callout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
}

.partner-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.partner-callout .button {
  justify-content: center;
  border-color: var(--coral);
  background: var(--coral);
  color: var(--white);
}

.strategic-collaboration {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 22px 34px;
  align-items: start;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.strategic-collaboration h3 {
  margin-bottom: 0;
}

.strategic-collaboration ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strategic-collaboration li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 750;
}

.strategic-collaboration li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.strategic-collaboration p {
  grid-column: 2;
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
}

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

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

.manifesto {
  text-align: center;
}

.manifesto p {
  max-width: 880px;
  margin: 0 auto 22px;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.manifesto h2 {
  max-width: 1000px;
  margin: 0 auto;
}

.action-card {
  background: var(--dark);
  color: var(--white);
}

.action-card p {
  color: rgba(255, 253, 248, 0.76);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.newsletter-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
}

.newsletter-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.2);
}

.newsletter-form label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hidden-field {
  display: none;
}

.newsletter-input-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr) auto;
  gap: 12px;
}

.newsletter-input-row input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  font-weight: 760;
}

.newsletter-input-row .button {
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
}

.privacy-note,
.newsletter-status {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.newsletter-status {
  color: var(--white);
  font-weight: 750;
}

.newsletter-local-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.newsletter-local-list[hidden] {
  display: none;
}

.newsletter-local-list button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  background: var(--dark);
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand h2 {
  margin-bottom: 0;
}

.site-footer p {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.66);
}

.footer-links {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 253, 248, 0.78);
  font-weight: 720;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 78px;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
  }

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

  .nav-links a {
    padding: 12px 0;
  }

  .nav-cta {
    min-width: 0;
  }

  .stage-note {
    white-space: normal;
  }

  .stage-card::after {
    top: auto;
    right: auto;
    bottom: -16px;
    left: 29px;
    width: 2px;
    height: 16px;
  }

  .funding-total {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .institutional-intro,
  .collaboration-panel,
  .strategic-collaboration {
    grid-template-columns: 1fr;
  }

  .strategic-collaboration p {
    grid-column: auto;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero,
  .split,
  .feature-panel,
  .image-band,
  .funding-header,
  .funding-visual,
  .funding-note,
  .donation,
  .newsletter,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .system-map {
    min-height: 520px;
  }

  .image-story.large {
    min-height: 520px;
  }

  .problem-grid,
  .systems-grid,
  .funding-grid,
  .audience-grid,
  .trust-grid,
  .action-grid,
  .strategic-collaboration ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  main > section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.8rem);
  }

  .button,
  .button-row,
  .deployment-card {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  .system-map {
    min-height: 640px;
  }

  .image-story,
  .image-story.large {
    min-height: 420px;
  }

  .image-story div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .map-ring {
    inset: 8%;
  }

  .ring-two {
    inset: 18%;
  }

  .map-node {
    min-width: 152px;
    min-height: 98px;
    padding: 16px;
  }

  .map-node-core {
    min-width: 198px;
  }

  .node-left,
  .node-right {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .node-left {
    top: 30%;
  }

  .node-right {
    top: 59%;
  }

  .node-bottom {
    bottom: 0;
  }

  .problem-grid,
  .systems-grid,
  .funding-grid,
  .audience-grid,
  .trust-grid,
  .action-grid,
  .collaboration-grid,
  .strategic-collaboration ul,
  .amount-grid,
  .newsletter-input-row {
    grid-template-columns: 1fr;
  }

  .deployment-card {
    grid-template-columns: 1fr;
  }
}
