:root {
  --navy: #0b2038;
  --navy-soft: #243b57;
  --green: #15803d;
  --green-dark: #166534;
  --green-soft: #dcfce7;
  --green-pale: #f0fdf4;
  --white: #ffffff;
  --off-white: #f7fcf8;
  --gray: #52667f;
  --gray-strong: #3f536b;
  --line: #cfe7d7;
  --shadow: 0 24px 70px rgba(8, 31, 58, 0.12);
  --shadow-soft: 0 16px 42px rgba(8, 31, 58, 0.08);
  --radius: 22px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--navy);
  background:
    linear-gradient(180deg, var(--off-white) 0%, #ffffff 42%, #f4fbf6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

:focus-visible {
  outline: 3px solid rgba(21, 128, 61, 0.32);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(207, 231, 215, 0.86);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.1);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(8, 31, 58, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(135deg, #166534 0%, #22c55e 100%);
  box-shadow: 0 12px 26px rgba(21, 128, 61, 0.22);
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--green);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: var(--green);
  background: rgba(240, 253, 244, 0.78);
}

.nav-links a.is-active {
  color: var(--green-dark);
  background: transparent;
}

.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(240, 253, 244, 0.94), rgba(255, 255, 255, 0.98) 48%, rgba(220, 252, 231, 0.82)),
    radial-gradient(circle at 79% 38%, rgba(134, 239, 172, 0.24), transparent 28rem);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(450px, 0.78fr);
  gap: clamp(44px, 5vw, 70px);
  align-items: center;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 108px;
}

.hero-copy {
  max-width: 760px;
}

.accent-line {
  display: block;
  width: 64px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--green);
  transform-origin: left center;
  animation: line-reveal 680ms ease-out both;
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.lede {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--gray-strong);
  font-size: 1.15rem;
  line-height: 1.7;
}

.cta-note {
  max-width: 660px;
  margin-bottom: 26px;
  color: var(--navy-soft);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: auto;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  min-width: 232px;
  min-height: 54px;
  padding: 13px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #16a34a);
  box-shadow: 0 18px 38px rgba(21, 128, 61, 0.28);
}

.project-cta {
  font-size: 0.98rem;
}

.button-icon,
.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.button-arrow {
  transition: transform 180ms ease;
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(21, 128, 61, 0.16);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--green-dark), #15803d);
  box-shadow: 0 22px 46px rgba(21, 128, 61, 0.34);
  transform: translateY(-3px);
}

.button.primary:hover .button-arrow {
  transform: translateX(4px);
}

.button.secondary:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: auto;
}

.portrait-stack {
  position: relative;
  width: min(100%, 680px);
  padding-bottom: 270px;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 560px;
  margin: 0;
}

.hero-portrait::after {
  position: absolute;
  right: 50%;
  bottom: 76px;
  z-index: 0;
  width: min(620px, 96%);
  height: 430px;
  border: 1px solid rgba(187, 224, 199, 0.72);
  border-radius: 46px;
  content: "";
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(220, 252, 231, 0.46)),
    radial-gradient(circle at 50% 16%, rgba(187, 247, 208, 0.88), transparent 58%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 34px 90px rgba(8, 31, 58, 0.08);
  transform: translateX(50%);
}

.hero-portrait::before {
  position: absolute;
  right: 50%;
  bottom: 76px;
  z-index: 0;
  width: min(700px, 118%);
  height: 455px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(220, 252, 231, 0.96), rgba(240, 253, 244, 0.38) 64%, transparent 74%);
  transform: translateX(50%);
  pointer-events: none;
  animation: portrait-glow 900ms ease-out 120ms both;
  z-index: 1;
}

.hero-portrait img {
  position: relative;
  z-index: 2;
  width: 760px;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 50px rgba(15, 35, 75, 0.18));
  transform: scale(1.18);
  transform-origin: center bottom;
}

.impact-card {
  position: absolute;
  right: -18px;
  bottom: 0;
  z-index: 2;
  width: min(420px, 100%);
  padding: 20px;
  border: 1px solid rgba(205, 230, 213, 0.9);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 254, 251, 0.82));
  box-shadow: 0 24px 64px rgba(8, 31, 58, 0.16);
  backdrop-filter: blur(18px) saturate(1.08);
}

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

.impact-stat {
  display: grid;
  gap: 8px;
  min-height: 146px;
  padding: 16px;
  border: 1px solid rgba(207, 231, 215, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.impact-stat strong {
  color: var(--navy);
  font-size: 2.08rem;
  line-height: 0.95;
}

.impact-stat span:not(.impact-icon) {
  color: var(--gray-strong);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.impact-metric {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.impact-icon,
.row-icon,
.feature-icon,
.expertise-icon {
  display: inline-grid;
  place-items: center;
  color: var(--green);
  background: var(--green-pale);
}

.impact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(21, 128, 61, 0.08);
}

.impact-icon svg,
.row-icon svg,
.feature-icon svg,
.expertise-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-metric strong {
  display: block;
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.1;
}

.impact-metric span:not(.impact-icon) {
  color: var(--gray-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.glance-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.glance-list div {
  display: grid;
  grid-template-columns: minmax(104px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(207, 231, 215, 0.74);
}

.glance-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.glance-list dt {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gray-strong);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.glance-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.row-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  flex: 0 0 auto;
}

.row-icon svg {
  width: 14px;
  height: 14px;
}

.featured-section,
.expertise-section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.featured-section {
  padding: 132px 0 42px;
}

.scholarship-heading {
  display: grid;
  max-width: 760px;
  gap: 8px;
  margin-bottom: 30px;
}

.scholarship-heading p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--gray-strong);
  font-size: 1.04rem;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 15px;
  min-height: 268px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 254, 251, 0.98)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green), rgba(34, 197, 94, 0.32));
  opacity: 0.78;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(21, 128, 61, 0.08);
}

.feature-card h3 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.48rem;
  line-height: 1.12;
}

.feature-card p {
  margin: 0;
  color: var(--gray-strong);
}

.feature-card a {
  align-self: end;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
  text-underline-offset: 5px;
}

.feature-card a:hover {
  text-decoration: underline;
}

.expertise-section {
  padding: 66px 0 108px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.9rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 254, 251, 0.98)),
    var(--white);
  box-shadow: var(--shadow);
}

.expertise-item {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border-radius: 22px;
  background: #f8fcf9;
}

.expertise-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.expertise-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.18;
}

.expertise-item p {
  margin: 0;
  color: var(--gray-strong);
  font-size: 0.96rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr;
  gap: 42px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 34px;
}

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

.footer-brand p {
  max-width: 360px;
  margin-bottom: 6px;
}

.footer-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav a,
.footer-contact a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
  font-style: normal;
}

.footer-bottom {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes line-reveal {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes portrait-glow {
  from {
    opacity: 0;
    transform: translateX(50%) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateX(50%) scale(1);
  }
}

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

@media (max-width: 1050px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 72px 0 118px;
  }

  .hero-copy {
    max-width: 850px;
  }

  h1 {
    max-width: 850px;
    font-size: 4.25rem;
  }

  .hero-visual {
    width: min(100%, 760px);
    min-height: auto;
    justify-self: center;
  }

  .portrait-stack {
    width: min(100%, 620px);
    padding-bottom: 0;
  }

  .hero-portrait img {
    width: 680px;
    transform: scale(1.1);
  }

  .impact-card {
    position: static;
    width: min(100%, 560px);
    margin: 22px auto 0;
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 132px;
  }

  .nav {
    flex-wrap: wrap;
    align-content: center;
    gap: 10px;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 4px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 6px 9px;
  }

  .hero-inner {
    padding: 56px 0 104px;
  }

  h1 {
    font-size: 3.55rem;
  }

  .section-heading h2 {
    font-size: 2.45rem;
  }

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

  .feature-card {
    min-height: 230px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero-inner,
  .featured-section,
  .expertise-section,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand-lockup {
    font-size: 1.02rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  h1 {
    font-size: 2.58rem;
    line-height: 1;
  }

  .lede {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
  }

  .hero-visual {
    display: grid;
    min-height: auto;
    margin-top: 2px;
  }

  .portrait-stack {
    width: 100%;
    padding-bottom: 0;
  }

  .hero-portrait::after {
    bottom: 50px;
    width: min(348px, 100%);
    height: 236px;
    border-radius: 34px;
  }

  .hero-portrait {
    min-height: 322px;
  }

  .hero-portrait::before {
    bottom: 42px;
    width: min(372px, 100%);
    height: 252px;
  }

  .hero-portrait img {
    width: min(384px, 112%);
    transform: none;
  }

  .impact-card {
    position: static;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
    padding: 18px;
  }

  .glance-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .glance-list dt {
    font-size: 0.74rem;
  }

  .featured-section {
    padding-top: 72px;
  }

  .scholarship-heading {
    margin-bottom: 22px;
  }

  .feature-card {
    min-height: auto;
    padding: 24px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 24px;
  }

  .expertise-item {
    min-height: auto;
  }

  .expertise-section {
    padding: 52px 0 78px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.35rem;
  }

  .nav-links {
    font-size: 0.92rem;
  }

  .impact-metric strong {
    font-size: 1.28rem;
  }
}
