@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./assets/fonts/poppins-300.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/poppins-400.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/poppins-700.woff2") format("woff2");
}

:root {
  --blue: #1470af;
  --blue-dark: #075f99;
  --blue-soft: #8eb6dc;
  --pale-blue: #eef8fe;
  --card-blue: #f3f7fc;
  --gray: #555;
  --white: #fff;
  --header-height: clamp(92px, 8vw, 112px);
  --page-gutter: clamp(1.25rem, 3vw, 3.5rem);
  --page-max: 1520px;
  --heading-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body-font: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--gray);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
.button {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  color: var(--blue);
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1.23;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.15rem, 3.2vw, 3.15rem);
}

h3 {
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
}

h4 {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
}

p {
  margin-bottom: 1.15rem;
}

:where(a, button, summary):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.page-width {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(3.75rem, 5vw, 6rem);
}

.section-blue {
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.section-blue h1,
.section-blue h2,
.section-blue h3,
.section-blue h4 {
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  border-radius: 0.25rem;
  background: var(--blue);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(7, 95, 153, 0.08);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(7, 47, 75, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 6vw), var(--page-max));
  min-height: var(--header-height);
  margin-inline: auto;
  gap: 2rem;
}

.brand {
  display: block;
  width: clamp(300px, 32vw, 420px);
  flex: 0 1 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--blue);
}

.social-links a:hover {
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(7, 47, 75, 0.14);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue);
}

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

.menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.hero {
  min-height: 650px;
  padding-top: clamp(1.75rem, 2.5vw, 2.75rem);
  padding-bottom: 0;
}

.hero-inner {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(2.25rem, 4vw, 4.5rem);
}

.hero-art {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-art img {
  width: 110%;
  max-width: none;
  max-height: 620px;
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
}

.hero-panel {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  padding: clamp(2.25rem, 3vw, 3.5rem);
  background: var(--pale-blue);
}

.hero-panel h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 3.7vw, 3.45rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-panel h1 strong {
  display: block;
  font-size: 0.95em;
  font-weight: 700;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.hero-panel h1 span {
  font-weight: 400;
}

.hero-tagline {
  max-width: 680px;
  margin-bottom: 1.5rem;
  color: var(--blue);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.introduction {
  padding-block: clamp(3.75rem, 4.5vw, 4.75rem);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 6rem);
}

.text-columns p,
.lead {
  font-size: 1rem;
}

.section-intro {
  max-width: 1150px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro p {
  color: var(--blue);
  font-size: 1rem;
}

.trend-grid {
  display: grid;
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem 4.25rem;
}

.icon-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
}

.icon-row img {
  width: 112px;
  aspect-ratio: 1;
  object-fit: contain;
}

.icon-row h3 {
  margin: 0;
  font-family: var(--body-font);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
}

.patterned .page-width {
  position: relative;
  z-index: 2;
}

.pattern-layer {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
}

.contours .pattern-layer {
  opacity: 0.11;
  background:
    radial-gradient(ellipse at 12% 18%, transparent 0 24%, rgba(255, 255, 255, 0.5) 24.5% 25.5%, transparent 26% 36%, rgba(255, 255, 255, 0.28) 36.5% 37.2%, transparent 38%),
    radial-gradient(ellipse at 82% 72%, transparent 0 18%, rgba(255, 255, 255, 0.48) 18.5% 19.5%, transparent 20% 32%, rgba(255, 255, 255, 0.28) 32.5% 33.5%, transparent 34%),
    radial-gradient(ellipse at 58% 12%, transparent 0 15%, rgba(255, 255, 255, 0.32) 15.5% 16.3%, transparent 17% 26%, rgba(255, 255, 255, 0.22) 26.5% 27.3%, transparent 28%);
  animation: contour-drift 44s ease-in-out infinite alternate;
}

@keyframes contour-drift {
  to { transform: translate3d(0.8%, -0.5%, 0) scale(1.012); }
}

.comparative .lead {
  max-width: 980px;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

.advantage-grid {
  display: block;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
  list-style: none;
}

.advantage-grid li {
  position: relative;
  margin: 0 0 1.35rem;
  padding-left: 1.25rem;
  break-inside: avoid;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.58;
}

.advantage-grid li:nth-child(4) {
  break-before: column;
}

.advantage-grid li:nth-child(3),
.advantage-grid li:last-child {
  margin-bottom: 0;
}

.advantage-grid li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.vision-values {
  padding-bottom: clamp(4rem, 5.5vw, 6.5rem);
}

.centered-copy {
  max-width: 1160px;
  margin-inline: auto;
  text-align: center;
}

.centered-copy h3 {
  margin: 2.5rem 0 1.15rem;
}

.centered-copy h3:first-child {
  margin-top: 0;
}

.centered-copy p {
  font-size: 1rem;
}

.values-intro {
  max-width: 760px;
  margin: 3.75rem auto 2.5rem;
  text-align: center;
}

.values-intro h3 {
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  max-width: 1020px;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.25rem 2rem;
}

.value {
  text-align: center;
}

.value img {
  width: min(100%, 120px);
  margin: 0 auto 1rem;
  aspect-ratio: 1;
  object-fit: contain;
}

.value h4 {
  margin: 0;
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 700;
}

.cross-cutting .pattern-layer {
  inset: 0;
  opacity: 0.08;
  background-color: #0f5d99;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.42) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.42) 87.5%, rgba(255, 255, 255, 0.42)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.42) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.42) 87.5%, rgba(255, 255, 255, 0.42)),
    linear-gradient(30deg, rgba(255, 255, 255, 0.42) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.42) 87.5%, rgba(255, 255, 255, 0.42)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.42) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.42) 87.5%, rgba(255, 255, 255, 0.42));
  background-position: 0 0, 0 0, 54px 96px, 54px 96px;
  background-size: 108px 192px;
  animation: isometric-drift 52s ease-in-out infinite alternate;
}

@keyframes isometric-drift {
  to { transform: translate3d(12px, -6px, 0); }
}

.cross-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.cross-grid h2 {
  margin: 0;
  font-family: var(--body-font);
  font-size: clamp(2.15rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
}

.cross-copy p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cross-copy p:last-child {
  margin-bottom: 0;
}

.cross-copy strong {
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.plan-overview {
  overflow: hidden;
  background: #f5f7fa url("./assets/plan-background.webp") center / cover no-repeat;
  text-align: center;
}

.plan-overview h2 {
  margin-bottom: 2.5rem;
}

.plan-diagram {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.levers-heading {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}

.levers-heading h2 {
  margin-bottom: 1.1rem;
}

.levers-heading p {
  color: var(--blue);
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 2.25vw, 2rem);
  line-height: 1.4;
}

.levers-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(500px, 1.35fr);
  align-items: start;
  gap: clamp(3rem, 5vw, 5rem);
}

.levers-copy article {
  margin-bottom: clamp(2.75rem, 4vw, 4rem);
}

.levers-copy article:last-child {
  margin-bottom: 0;
}

.levers-copy h3 {
  margin-bottom: 0.35rem;
  font-family: var(--body-font);
  font-size: 1.35rem;
  font-weight: 700;
}

.levers-copy p {
  font-size: 0.98rem;
}

.levers-visual {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.levers-visual img {
  width: 100%;
}

.strategic-goal {
  padding-bottom: 2.5rem;
  text-align: center;
}

.strategic-goal h2 {
  margin-bottom: 1.2rem;
}

.goal-statement {
  max-width: 1000px;
  margin: 0 auto 3rem;
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.4;
}

.strategic-goal img {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.outcomes-section {
  padding-top: 4rem;
}

.outcomes-wrap {
  max-width: 1060px;
}

.outcomes-wrap > h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.outcome-item {
  margin-bottom: 1.4rem;
}

.outcome-item:last-child {
  margin-bottom: 0;
}

.outcome-disclosure {
  overflow: hidden;
  border: 1px solid rgba(7, 95, 153, 0.16);
  border-radius: 0.4rem;
  background: var(--white);
  color: var(--gray);
  box-shadow: 0 6px 20px rgba(7, 47, 75, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.outcome-disclosure[open] {
  border-color: rgba(7, 95, 153, 0.28);
  box-shadow: 0 10px 28px rgba(7, 47, 75, 0.1);
}

.outcome-trigger {
  display: block;
  padding: 0;
  list-style: none;
  cursor: pointer;
}

.outcome-trigger::marker {
  content: "";
}

.outcome-trigger::-webkit-details-marker {
  display: none;
}

.outcome-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.outcome-banner {
  width: 100%;
  height: auto;
}

.outcome-title-row {
  display: grid;
  min-height: 60px;
  padding: 1rem 1.35rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(7, 95, 153, 0.1);
  transition: background-color 180ms ease;
}

.outcome-title {
  color: #3f4f5b;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 400;
  line-height: 1.4;
}

.outcome-chevron {
  width: 0.75rem;
  height: 0.75rem;
  transform: translateY(-0.15rem) rotate(45deg);
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transition: transform 180ms ease;
}

.outcome-trigger:hover .outcome-title-row,
.outcome-disclosure[open] .outcome-title-row {
  background: #f6f9fc;
}

.outcome-disclosure[open] .outcome-chevron {
  transform: translateY(0.15rem) rotate(225deg);
}

.outcome-panel {
  padding: 1.3rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(7, 95, 153, 0.1);
  background: #f9fbfd;
}

.outcome-panel p {
  max-width: 76ch;
  margin: 0;
  line-height: 1.7;
}

.outcome-disclosure[open] .outcome-panel {
  animation: outcome-panel-in 220ms ease-out;
}

@keyframes outcome-panel-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
}

.mobilizing-intro {
  max-width: 1180px;
  margin-bottom: 3rem;
}

.mobilizing-intro p {
  font-size: 1rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.75rem 4.25rem;
}

.support-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

.support-item img {
  width: 116px;
}

.support-item p {
  margin: 0;
}

.organization-heading {
  display: grid;
  margin-bottom: 3rem;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  gap: 2rem;
}

.organization-heading h2 {
  margin: 0;
}

.organization-heading p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.4;
}

.organization-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
}

.organization-card {
  padding: clamp(2.25rem, 3vw, 3rem) clamp(1.75rem, 2.5vw, 2.5rem);
  border: 1px solid rgba(7, 95, 153, 0.1);
  border-top: 3px solid rgba(20, 112, 175, 0.38);
  border-radius: 0.25rem;
  background: var(--card-blue);
  box-shadow: 0 8px 24px rgba(7, 47, 75, 0.04);
}

.organization-card img {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}

.organization-card h3 {
  min-height: 2.5em;
  margin-bottom: 1.75rem;
  font-size: clamp(1.65rem, 2vw, 2rem);
  text-align: center;
}

.organization-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.organization-card li {
  margin-bottom: 0.75rem;
}

.organization-card li:last-child {
  margin-bottom: 0;
}

.organization-card li::marker {
  color: var(--blue);
}

.site-footer {
  background: var(--blue);
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 3rem 2.5rem;
  gap: 3rem;
}

.footer-top > a {
  width: min(48vw, 530px);
}

.footer-top img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 1.4rem;
}

.footer-links > a,
.footer-bottom a {
  text-decoration: none;
}

.footer-links > a:hover,
.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-socials a {
  color: var(--white);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 2rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  gap: 2rem;
}

.footer-bottom p {
  margin: 0;
}

.portfolio-return {
  position: fixed;
  z-index: 450;
  bottom: max(12px, calc(env(safe-area-inset-bottom) + 8px));
  left: max(12px, calc(env(safe-area-inset-left) + 8px));
  display: inline-flex;
  max-width: calc(100vw - 24px);
  min-height: 38px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2px;
  background: #0a2540;
  box-shadow: 0 3px 12px rgba(4, 27, 47, 0.2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.portfolio-return span[aria-hidden="true"] {
  font-size: 1rem;
  line-height: 0.75;
}

.portfolio-return:hover,
.portfolio-return:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: #123a5d;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(4, 27, 47, 0.28);
}

.portfolio-return:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-ready .reveal-image {
  clip-path: inset(0 0 4% 0);
  transition: opacity 0.5s ease, transform 0.5s ease, clip-path 0.55s ease;
}

.reveal-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal-image.in-view {
  clip-path: inset(0);
}

@media (max-width: 1100px) {
  .brand {
    width: clamp(280px, 34vw, 360px);
  }

  .header-download {
    padding-inline: 1.4rem;
  }

  .trend-grid,
  .support-grid {
    column-gap: 3rem;
  }

  .levers-grid {
    grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
    gap: 3rem;
  }

  .organization-card {
    padding-inline: 2rem;
  }
}

@media (max-width: 799px) {
  :root {
    --header-height: 78px;
    --page-gutter: 6vw;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 3.5rem;
  }

  .header-inner {
    width: calc(100% - 12vw);
  }

  .brand {
    width: min(68vw, 250px);
  }

  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 104;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 7px;
    display: block;
    width: 28px;
    height: 1px;
    background: var(--blue);
    transition: transform 220ms ease, top 220ms ease;
  }

  .menu-toggle span:first-child { top: 15px; }
  .menu-toggle span:last-child { top: 27px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 102;
    display: grid;
    padding: 10vw 6vw;
    place-items: start center;
    background: var(--blue);
    color: var(--white);
  }

  .mobile-menu nav {
    display: grid;
    width: min(100%, 430px);
    justify-items: center;
    gap: 2.25rem;
  }

  .mobile-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 2rem;
  }

  .mobile-socials a {
    text-decoration: none;
  }

  .hero {
    min-height: 0;
    padding: 1.75rem 0 0;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-art img {
    width: min(100%, 440px);
    max-width: 100%;
    min-height: 0;
    max-height: 420px;
  }

  .hero-panel {
    min-height: 0;
    padding: 2.75rem 7vw;
  }

  .hero-panel h1 {
    font-size: clamp(2.25rem, 9.5vw, 3rem);
  }

  h2 {
    font-size: clamp(2rem, 7vw, 2.4rem);
  }

  .hero-panel h1 strong {
    font-size: 1em;
    letter-spacing: 0;
    white-space: normal;
  }

  .text-columns,
  .trend-grid,
  .advantage-grid,
  .cross-grid,
  .levers-grid,
  .support-grid,
  .organization-heading,
  .organization-grid {
    grid-template-columns: 1fr;
  }

  .text-columns,
  .cross-grid,
  .organization-heading {
    gap: 2rem;
  }

  .section-intro {
    margin-bottom: 2.5rem;
  }

  .trend-grid {
    gap: 1.8rem;
  }

  .icon-row {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .icon-row img {
    width: 96px;
  }

  .comparative .lead {
    margin-bottom: 2rem;
  }

  .advantage-grid {
    columns: 1;
  }

  .advantage-grid li,
  .advantage-grid li:nth-child(3) {
    margin-bottom: 1.25rem;
  }

  .advantage-grid li:nth-child(4) {
    break-before: auto;
  }

  .advantage-grid li:last-child {
    margin-bottom: 0;
  }

  .centered-copy h3 {
    margin-top: 2.4rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 1.5rem;
  }

  .cross-grid h2 {
    margin-bottom: 1.5rem;
  }

  .plan-overview h2 {
    margin-bottom: 2.5rem;
  }

  .levers-heading {
    margin-bottom: 2.5rem;
  }

  .levers-visual {
    position: static;
    order: -1;
    margin-bottom: 2rem;
  }

  .levers-copy article {
    margin-bottom: 2.5rem;
  }

  .goal-statement {
    margin-bottom: 2.25rem;
  }

  .outcomes-wrap > h2 {
    margin-bottom: 2.5rem;
  }

  .outcome-item {
    margin-bottom: 1.25rem;
  }

  .outcome-title-row {
    min-height: 56px;
    padding: 0.9rem 1rem;
    gap: 1rem;
  }

  .outcome-panel {
    padding: 1.1rem 1rem 1.25rem;
  }

  .support-grid {
    gap: 2.5rem;
  }

  .support-item {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .support-item img {
    width: 104px;
  }

  .organization-heading {
    margin-bottom: 2.5rem;
  }

  .organization-grid {
    gap: 2rem;
  }

  .organization-card {
    min-height: 0;
  }

  .organization-card h3 {
    min-height: 0;
  }

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

  .footer-top > a {
    width: min(100%, 480px);
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 2rem;
  }

  .hero-panel {
    min-height: 0;
  }

  .hero-panel h1 {
    font-size: 2.25rem;
  }

  .support-item {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .support-item img {
    width: 80px;
  }

  .outcome-title {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .value img {
    width: 88px;
    margin: 0;
  }
}

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

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

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-ready .reveal-image {
    clip-path: none;
  }

  .portfolio-return {
    transition: none;
  }
}
