:root {
  --ink: #111b24;
  --charcoal: #18232e;
  --navy: #22313e;
  --teal: #315f64;
  --purple: #72569a;
  --purple-dark: #573f78;
  --blue: #e9eff1;
  --cream: #f5f1ea;
  --white: #fff;
  --muted: #64707c;
  --warm: #e6bd7c;
  --line: rgba(17, 27, 36, 0.14);
  --shadow: 0 22px 70px rgba(9, 18, 28, 0.18);
  --soft-shadow: 0 14px 42px rgba(9, 18, 28, 0.12);
  --radius: 8px;
  --max: 1200px;
  --font: Montserrat, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: linear-gradient(180deg, #f7f3ed 0%, #f0f5f4 44%, #f5f1ea 100%);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.52;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--warm);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(30, 43, 55, 0.92);
  color: var(--white);
  box-shadow: 0 10px 34px rgba(7, 14, 22, 0.14);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(132px, 14vw, 196px);
  height: auto;
  filter: invert(1);
}

.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 9px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.72rem, 0.86vw, 0.84rem);
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle {
  display: none;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  background: transparent;
  color: var(--white);
  padding: 0 16px;
  font-weight: 800;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--purple);
  border-radius: 5px;
  background: var(--purple);
  color: var(--white);
  padding: 12px 18px;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--purple-dark);
  background: var(--purple-dark);
  box-shadow: 0 12px 28px rgba(17, 27, 36, 0.14);
}

.button--ghost {
  background: transparent;
  color: var(--purple-dark);
}

.button--ghost:hover {
  background: rgba(114, 86, 154, 0.08);
  color: var(--ink);
}

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

.button--light:hover {
  border-color: var(--warm);
  background: var(--warm);
  color: var(--ink);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
}

.button--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-dark {
  background:
    linear-gradient(135deg, var(--navy), #19242f),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
  color: var(--white);
}

.section-soft {
  background: linear-gradient(135deg, #eaf0f1, #f7f2eb);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  min-height: calc(100svh - 76px);
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 86px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 189, 124, 0.72), transparent);
}

.hero__intro {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero__intro .eyebrow {
  color: var(--warm);
}

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

h1,
h2,
h3 {
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(2.05rem, 4.3vw, 4.25rem);
  line-height: 1.02;
}

h2 {
  max-width: 24ch;
  font-size: clamp(1.5rem, 2.25vw, 2.35rem);
}

h3 {
  font-size: clamp(1.06rem, 1.35vw, 1.36rem);
}

p + p {
  margin-top: 9px;
}

.lead {
  max-width: 46ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.58;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-moments {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: stretch;
  min-height: clamp(520px, calc(100svh - 150px), 650px);
}

.hero-moment {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-moment--community {
  transform: none;
}

.hero-moment figure,
.image-card,
.wide-image {
  margin: 0;
}

.hero-moment img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.hero-moment:first-child img {
  object-position: center 46%;
}

.hero-moment--community img {
  object-position: 49% 48%;
}

.hero-moment > div {
  min-height: 188px;
  padding: clamp(18px, 2.4vw, 28px);
}

.hero-moment span {
  color: var(--purple-dark);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-moment h2 {
  max-width: 16ch;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.05vw, 2.2rem);
  line-height: 1.08;
}

.hero-moment p {
  max-width: 38ch;
  margin-top: 12px;
  color: rgba(17, 27, 36, 0.72);
  font-size: 0.92rem;
}

.hero-stat-grid,
.evidence-grid,
.reality-grid,
.proof-grid,
.story-grid,
.partner-grid,
.vote-logo-grid,
.contact-grid {
  display: grid;
  gap: 12px;
}

.hero-stat-grid {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: clamp(26px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--soft-shadow);
}

.hero-stat-grid article {
  min-height: 0;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.hero-stat-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(1rem, 1.3vw, 1.24rem);
}

.hero-stat-grid article > span {
  display: block;
  max-width: 42ch;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.42;
}

.attention {
  padding-top: clamp(24px, 4vw, 44px);
  padding-bottom: clamp(24px, 4vw, 44px);
  background: #f5f1ea;
}

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

.attention-grid article {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17, 27, 36, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(18px, 2.5vw, 28px);
  box-shadow: var(--soft-shadow);
}

.attention-grid article > span {
  color: var(--purple-dark);
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  font-weight: 680;
  line-height: 0.9;
}

.attention-grid p {
  max-width: 25ch;
  color: rgba(17, 27, 36, 0.76);
  font-weight: 720;
}

.count-up {
  display: inline-block;
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
}

.section-heading + .section-copy {
  margin-top: 18px;
}

.section-heading,
.section-copy {
  max-width: 760px;
}

.section-heading {
  margin-left: auto;
  margin-right: auto;
}

.section-copy {
  color: rgba(17, 27, 36, 0.74);
  font-size: clamp(0.98rem, 1.04vw, 1.05rem);
  line-height: 1.54;
}

.section-copy > p {
  max-width: 68ch;
}

.section-copy > .button {
  margin-top: 20px;
}

.section-dark .section-copy,
.section-dark .ed__intro {
  color: rgba(255, 255, 255, 0.76);
}

.statement {
  max-width: 720px;
  margin-top: 16px !important;
  border-left: 4px solid var(--purple);
  padding: 14px 0 14px 18px;
  color: var(--ink);
  font-weight: 780;
}

.section-dark .statement {
  border-left-color: var(--warm);
  color: var(--white);
}

.stat-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  max-width: 900px;
  margin-top: 28px;
  border: 1px solid rgba(114, 86, 154, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--soft-shadow);
}

.stat-callout strong {
  color: var(--purple-dark);
  font-size: clamp(3rem, 9vw, 6.8rem);
  font-weight: 680;
  line-height: 0.88;
}

.stat-callout h3 {
  max-width: 24ch;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
}

.stat-callout p {
  max-width: 58ch;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-callout a {
  color: var(--purple-dark);
  font-weight: 800;
}

.evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(24px, 4vw, 38px);
}

.metric-card {
  border: 1px solid rgba(17, 27, 36, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(18px, 2.4vw, 28px);
  box-shadow: var(--soft-shadow);
}

.metric-card > span {
  display: block;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  color: var(--purple-dark);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 680;
  line-height: 0.9;
}

.metric-card p {
  margin-top: 12px;
  color: var(--muted);
}

.metric-card--wide p {
  color: rgba(17, 27, 36, 0.78);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  font-weight: 650;
}

.source-note {
  max-width: 980px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.52;
}

.source-note a {
  color: var(--purple-dark);
  font-weight: 850;
}

.section-cta-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  border: 1px solid rgba(49, 95, 100, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: clamp(16px, 2.4vw, 24px);
  box-shadow: var(--soft-shadow);
}

.section-cta-strip p {
  max-width: 38ch;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 780;
}

.section-cta-strip .button-row {
  margin-top: 0;
}

.reality-grid,
.proof-grid,
.story-grid,
.partner-grid,
.vote-logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 40px);
}

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

.reality-grid article,
.proof-grid article,
.partner-card,
.story-card,
.contact-card,
.vote-card,
.vote-login,
.vote-summary,
.fund-scale {
  border: 1px solid rgba(17, 27, 36, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(18px, 2.2vw, 24px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.reality-grid p,
.proof-grid p,
.story-card p,
.contact-card p {
  margin-top: 10px;
  color: var(--muted);
}

.proof-grid span,
.story-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--purple-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.story-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.story-card p {
  color: rgba(255, 255, 255, 0.72);
}

.story-card span {
  color: var(--warm);
}

.split-media {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.66fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.split-media .section-heading,
.split-media .section-copy {
  display: block;
  max-width: 760px;
  margin-left: 0;
}

.split-media .image-card {
  align-self: stretch;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.image-card,
.wide-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 440px;
  object-fit: cover;
}

.image-card--tight img {
  object-position: 50% 36%;
}

.founder .image-card {
  max-width: 460px;
}

.clothing .image-card img {
  object-position: 50% 45%;
}

.ed {
  background: linear-gradient(180deg, #f5f1ea, #e9eff1);
}

.ed__intro {
  display: block;
  max-width: 760px;
  margin-bottom: 34px;
}

.ed__intro p {
  max-width: 68ch;
  margin-top: 16px;
  color: rgba(17, 27, 36, 0.74);
}

.ed__intro h2 {
  max-width: 18ch;
}

.privacy-line {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.privacy-line--ed {
  color: var(--teal);
  font-weight: 750;
}

.reassurance-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.reassurance-list li {
  position: relative;
  padding-left: 28px;
}

.reassurance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
}

.ed-form {
  padding: clamp(20px, 3.5vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #22313e, #18232e),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.form-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--purple);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-step h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.form-step .helper {
  max-width: 78ch;
  color: rgba(255, 255, 255, 0.76);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.field,
.check-field,
.radio-group {
  display: grid;
  gap: 8px;
}

.field label,
.radio-group legend {
  color: var(--white);
  font-weight: 800;
}

.field small,
.small-print {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 12px 14px;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

select option {
  color: var(--ink);
}

.field--light label {
  color: var(--ink);
}

.field--light input {
  border-color: rgba(17, 27, 36, 0.22);
  background: var(--white);
  color: var(--ink);
}

.check-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
}

.check-field input {
  width: 22px;
  min-height: 22px;
  margin-top: 2px;
}

.radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.radio-options label {
  min-height: 44px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
}

.radio-options input {
  width: 18px;
  min-height: 18px;
}

.form-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.form-alert {
  margin-bottom: 18px;
  border-radius: 4px;
  background: #ffe9c5;
  color: #2f2108;
  padding: 12px 14px;
  font-weight: 800;
}

.review-box,
.confirmation-box {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  padding: 18px;
}

.ed-form .review-box .reassurance-list li::before {
  background: var(--warm);
}

.review-box dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.review-box dt {
  color: var(--warm);
  font-weight: 900;
}

.review-box dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  white-space: pre-wrap;
}

.charities {
  background: linear-gradient(135deg, #f5f1ea, #e9eff1);
}

.vote-summary,
.vote-login {
  max-width: 620px;
  margin: 24px auto 0;
}

.vote-summary {
  display: flex;
  gap: 12px;
  align-items: baseline;
  width: fit-content;
}

.vote-summary strong {
  color: var(--purple-dark);
  font-size: 2rem;
  line-height: 1;
}

.vote-summary span {
  color: var(--muted);
  font-weight: 800;
}

.vote-logo-grid {
  margin-top: 28px;
}

.vote-card {
  display: grid;
  gap: 14px;
  width: 100%;
  min-height: 0;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.vote-card:hover,
.vote-card:focus-visible {
  border-color: rgba(114, 86, 154, 0.62);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.vote-card.is-selected {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(114, 86, 154, 0.18), var(--soft-shadow);
}

.charity-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 78px;
  border: 1px solid rgba(17, 27, 36, 0.1);
  border-radius: 6px;
  background: #fff;
}

.charity-logo img {
  max-width: min(220px, 100%);
  max-height: 58px;
  object-fit: contain;
}

.vote-card__copy {
  display: grid;
  gap: 7px;
}

.vote-card__title {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 800;
}

.vote-card__text {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.46;
}

.vote-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 27, 36, 0.12);
}

.vote-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.vote-card__footer {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.vote-card__footer > strong,
.vote-card__footer > span {
  color: var(--purple-dark);
  font-weight: 900;
}

.vote-card__footer > span {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.vote-note {
  max-width: var(--max);
  margin-top: 18px;
  color: var(--muted);
}

.donate {
  background:
    linear-gradient(135deg, #21303d, #17212b),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
}

.partner-grid {
  max-width: var(--max);
}

.partner-card {
  min-height: 120px;
}

.fund-scale {
  margin-top: 0;
  box-shadow: var(--soft-shadow);
}

.fund-scale__top {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.fund-scale__top > span {
  color: var(--muted);
  font-weight: 800;
}

.fund-scale__top > span:last-child {
  color: var(--ink);
}

.fund-scale__top strong {
  color: var(--purple-dark);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 680;
  line-height: 0.95;
}

.fund-scale__track {
  height: 18px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(49, 95, 100, 0.16), rgba(114, 86, 154, 0.22));
}

.fund-scale__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.fund-scale__labels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.fund-scale__labels span:nth-child(n + 2) {
  text-align: center;
}

.fund-scale__labels span:last-child {
  text-align: right;
}

.movement-image {
  padding-top: clamp(34px, 4vw, 54px);
  padding-bottom: clamp(34px, 4vw, 54px);
}

.wide-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center 47%;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.contact-card a {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--purple-dark);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.legal {
  padding-top: clamp(30px, 4vw, 46px);
  padding-bottom: clamp(30px, 4vw, 46px);
}

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

.legal-grid article {
  border: 1px solid rgba(17, 27, 36, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.legal-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
}

.site-footer .privacy-line {
  grid-column: 1 / -1;
  margin: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    right: 14px;
    left: 14px;
    z-index: 22;
    display: none;
    border: 1px solid rgba(17, 27, 36, 0.16);
    border-radius: var(--radius);
    background: rgba(245, 241, 234, 0.98);
    color: var(--ink);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  body.nav-open .site-nav a {
    min-height: 42px;
    justify-content: flex-start;
    border-radius: 4px;
    color: var(--ink);
  }

  body.nav-open .site-nav a:hover {
    background: rgba(49, 95, 100, 0.1);
  }

  .hero,
  .section-heading,
  .section-copy,
  .ed__intro,
  .split-media,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__intro h1 {
    max-width: 15ch;
  }

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

  .hero-moment {
    min-height: 520px;
  }

  .hero-moment--community {
    transform: none;
  }

  .split-media .image-card {
    grid-column: auto;
    grid-row: auto;
    width: min(100%, 620px);
  }

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

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

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 138px;
  }

  .site-nav {
    top: 78px;
  }

  .hero {
    padding-top: 48px;
  }

  h1,
  .hero__intro h1 {
    max-width: 16ch;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7.2vw, 2.2rem);
  }

  .hero__actions,
  .button-row,
  .form-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-moments,
  .hero-stat-grid,
  .attention-grid,
  .evidence-grid,
  .reality-grid,
  .proof-grid,
  .story-grid,
  .partner-grid,
  .vote-logo-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-moment,
  .hero-moment--community {
    min-height: 0;
    transform: none;
  }

  .hero-moment img {
    min-height: 250px;
  }

  .hero-moment > div {
    min-height: 0;
  }

  .section-cta-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .stat-callout {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .fund-scale__top {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .fund-scale__labels {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    font-size: 0.72rem;
  }
}

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