@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Montserrat-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
}

:root {
  --blue: #0DAEEF;
  --red: #ED1C24;
  --green: #00AA7F;
  --yellow: #F2BE09;
  --dark: #111827;
  --text: #1f2937;
  --muted: #6b7280;
  --light: #f5f8fb;
  --white: #ffffff;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: auto;
}



body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.container--narrow {
  width: min(860px, calc(100% - 40px));
}

.section {
  padding: 90px 0;
}

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

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

.section--green-grad {
  background: linear-gradient(to right, #006b4f 0%, #00f0b0 100%);
  color: var(--white);
}

.section--green-grad .eyebrow {
  text-shadow: 2px 2px 4px rgba(28, 72, 139, 0.2)
}

.section--green-grad .card {
  color: var(--text);
}

.section--green-grad .priority-box {
  color: var(--text);
}

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

h1 {
  font-size: clamp(30px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

p {
  font-size: 18px;
  line-height: 1.6;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow--light {
  color: var(--white);
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

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

.button--red:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

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

.button--green:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
}

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

.button--blue:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

/* STRIPES */

.color-stripes {
  display: flex;
  width: 100%;
  height: 10px;
}

.stripe {
  flex: 1;
}

.stripe--red {
  background: var(--red);
}

.stripe--green {
  background: var(--green);
}

.stripe--blue {
  background: var(--blue);
}

.stripe--yellow {
  background: var(--yellow);
}

/* NAV */

.site-nav {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 4;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2.875rem;
  height: 60px;
}

.site-nav a {
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

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

.site-nav__cta {
  margin-left: auto;
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 999px !important;
  padding: 8px 20px !important;
}

.site-nav__cta:hover {
  opacity: 0.88;
}

/* BURGER */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* MOBILE MENU */

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.mobile-backdrop.mobile-backdrop--open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right:0;
  z-index: 200;
  width: min(300px, calc(100vw - 32px));
  background: var(--green);
  flex-direction: column;
  align-items: flex-start;
  padding: 56px 32px 36px;
  transform: translateX(calc(100% + 16px));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom-left-radius: 20px;
}

.mobile-menu.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu__link {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  transition: opacity 0.2s ease;
}

.mobile-menu__link:last-child {
  border-bottom: none;
}

.mobile-menu__link:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .site-nav a:not(.site-nav__cta) {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .mobile-menu,
  .mobile-backdrop {
    display: flex;
  }
}

/* HERO */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  padding: 130px 0 80px;
  border-radius: 0;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.hero__stripes {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
}

.hero__text {
  max-width: 720px;
}

.hero__text p {
  max-width: 640px;
  margin-bottom: 32px;
  font-size: 22px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  margin-top: 22px;
  font-weight: 700;
}
.hero__text .hero__disclaimer {
  max-width: 760px;
  margin-top: 32px;

  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  
}

@media (max-width: 768px) {
 .hero__text .hero__disclaimer {
    font-size: 16px;
  } 
}
/* PROGRAM SECTION */

.program-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at top left, rgba(13,174,239,.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0,170,127,.08), transparent 30%),
    var(--light);

  text-align: center;
}

.program-hero {
  padding: 0 0 56px;
}

.program-hero h2 {
  max-width: 920px;
  margin: 0 auto;

  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
  font-weight: 800;

  color: var(--dark);
}

.color-bars {
  display: flex;
  gap: 6px;

  width: min(220px, 100%);
  margin: 0 auto 32px;
}

.color-bars .bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
}

.color-bars .blue {
  background: var(--blue);
}

.color-bars .green {
  background: var(--green);
}

.color-bars .red {
  background: var(--red);
}


/* PARTNERS STRIP*/

.partners-strip {
  padding: 0 10px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.partners-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 32px;
}

.partners-strip__logos a {
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.partners-strip__logos img {
  height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.25s ease;
}

.partners-strip__logos a:hover img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .partners-strip__logos {
    gap: 16px;
  }

  .partners-strip__logos img {
    height: 60px;
  }
}

@media (max-width: 560px) {
  .partners-strip__logos {
    gap: 10px;
  }

  .partners-strip__logos img {
    height: 40px;
  }
}
/* INTRO */

.intro {
  text-align: center;
  background: var(--light);
}

.intro h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.intro__stripes {
  display: flex;
  width: 100%;
  height: 12px;
  margin: 28px 0 40px;
  border-radius: 4px;
  overflow: hidden;
}

.intro__format-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 28px;
}

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

.intro__summary {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    max-width: 570px;
    margin-inline: auto;
}

/* MINI CARD */

.mini-card {
  padding: 36px 24px;
  border-radius: 24px;
  background: var(--white);
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.mini-card__icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mini-card__icon-wrap--blue {
  background: radial-gradient(circle at 35% 30%, #5dd5ff 0%, #0DAEEF 50%, #0090cc 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(13, 174, 239, 0.45), inset 0 -4px 8px rgba(0, 0, 0, 0.15);
}

.mini-card__icon-wrap--green {
  background: radial-gradient(circle at 35% 30%, #00e8a8 0%, #00AA7F 50%, #007a5c 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 170, 127, 0.45), inset 0 -4px 8px rgba(0, 0, 0, 0.15);
}

.mini-card__icon-wrap--red {
  background: radial-gradient(circle at 35% 30%, #ff6f74 0%, #ED1C24 50%, #b81019 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(237, 28, 36, 0.4), inset 0 -4px 8px rgba(0, 0, 0, 0.15);
}

.mini-card__title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.mini-card__title--blue { color: var(--blue); }
.mini-card__title--green { color: var(--green); }
.mini-card__title--red { color: var(--red); }

.mini-card__sep {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  margin: 0 auto 16px;
}

.mini-card__sep--blue { background: var(--blue); }
.mini-card__sep--green { background: var(--green); }
.mini-card__sep--red { background: var(--red); }

.mini-card__desc {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 768px) {
  .intro__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* RESULT */

.section.result{
  padding-top:0;
}
.grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.grid--result {
  grid-template-columns: 1fr 0.9fr;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.image-card {
  overflow: hidden;
  min-height: 460px;
  border-radius: 30px;
}

.image-card:hover img {
  transform: scale(1.06);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.card {
  min-height: 190px;
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.card__marker {
  display: block;
  width: 44px;
  height: 8px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--red);
}

.card__marker--blue {
  background: var(--blue);
}

.card__marker--green {
  background: var(--green);
}

.card__marker--yellow {
  background: var(--yellow);
}

.priority-box {
  margin-top: 34px;
  padding: 24px 28px;
  border-left: 8px solid var(--yellow);
  border-radius: 18px;
  background: var(--white);
  font-size: 18px;
  line-height: 1.55;
}



/* TIMELINE */

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 90px 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.timeline__item span {
  font-size: 34px;
  font-weight: 800;
  color: var(--yellow);
}

.timeline__item h3,
.timeline__item p {
  margin: 0;
}

.timeline__item p {
  font-size: 16px;
}

/* FUNDING */

.funding-box {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 38px;
  border-radius: 28px;
  background: #fff7d6;
  border: 1px solid rgba(242, 190, 9, 0.5);
}
.funding-box {
  font-weight: 600;
}


.funding-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: 24px;
}


/* CTA */

.cta-section {
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  background: var(--green);
}

.cta-section h2 {
  margin-bottom: 28px;
}

/* FORM CTA */

.form-section {
  background: var(--white);
}

.form-section__inner {
  text-align: center;
}

.form-section__text {
  max-width: 680px;
  margin: 0 auto 34px;

  color: var(--muted);
}

/* FAQ */

.faq {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 28px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-align: left;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--white);
  transition: transform 0.35s ease;
}

.faq-item--open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item--open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
  background: rgba(0, 133, 170, 0.08);
}

.faq-answer__inner p {
  margin: 0;
  padding: 20px 28px 24px;

}

/* FINAL CTA */

.final-cta {
  text-align: center;
  color: var(--white);
  background: var(--green);
  background: linear-gradient(to right, #006b4f 0%, #00f0b0 100%);
}

.final-cta .container {
  padding: 90px 0;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto 30px;
}

.final-cta p {
  margin-bottom: 32px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  

  .timeline__item {
    grid-template-columns: 70px 1fr;
  }

  .timeline__item p {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero__text p {
    font-size: 16px;
  }

  .intro__cards,
  .grid--result,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card img {
    min-height: 320px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline__item p {
    grid-column: auto;
  }

  .funding-box {
    grid-template-columns: 1fr;
  }
}

.district-map {
  width: 100%;
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.button.reveal,
.button.revealed {
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

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

/* BACK TO TOP */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green);
  color: var(--white);
}

/* ── Footer ── */
/* FOOTER */

.site-footer {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at top left, rgba(13,174,239,.06), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,170,127,.06), transparent 32%),
    var(--white);

  color: var(--dark);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;

  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
}

.site-footer__logo img {
  width: clamp(180px, 25vw, 300px);
  height: auto;

  transition: transform .3s ease;
}

.site-footer__logo:hover img {
  transform: translateY(-2px);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 18px 72px;
}

.site-footer__nav a {
  position: relative;
  justify-self: start;

  color: var(--dark);

  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;

  transition: color .25s ease;
}

.site-footer__nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: var(--blue);

  transition: width .25s ease;
}

.site-footer__nav a:hover {
  color: var(--blue);
}

.site-footer__nav a:hover::after {
  width: 100%;
}

.site-footer__bottom {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.site-footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;
  padding-bottom: 22px;

  font-size: 14px;
  line-height: 1.5;
}

/* OPTIONAL SOCIALS */

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;
  border: 1px solid rgba(17,24,39,.12);

  color: var(--dark);

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.site-footer__socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);

  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 900px) {
  .site-footer__inner {
    gap: 48px;
  }

  .site-footer__nav {
    gap: 16px 42px;
  }
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;

    gap: 40px;

    text-align: center;

    padding-top: 48px;
    padding-bottom: 48px;
  }

  .site-footer__logo {
    justify-content: center;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;

    justify-items: center;

    gap: 18px;
  }

  .site-footer__bottom .container {
    flex-direction: column;

    text-align: center;
  }

  .site-footer__socials {
    justify-content: center;
  }
}