:root {
  --color-primary: #0f5ef0;
  --color-primary-dark: #0c4cc5;
  --color-accent: #f4f7ff;
  --color-highlight: #fef2cc;
  --color-text: #1b1f29;
  --color-muted: #5b6473;
  --color-background: #ffffff;
  --font-family-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  --max-width: 1120px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-soft: 0 20px 45px rgba(15, 94, 240, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(15, 94, 240, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.5rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 94, 240, 0.2);
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__line:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__line:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--color-primary);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-background);
  background: var(--color-primary);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover,
.header-cta:focus {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.hero {
  padding: clamp(6rem, 12vw, 8rem) 0 5rem;
  background: radial-gradient(circle at top right, rgba(15, 94, 240, 0.08), transparent 55%);
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 3rem;
}

.hero__text h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin: 0.5rem 0 1rem;
}

.hero__text p {
  color: var(--color-muted);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  font-weight: 600;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.section--accent {
  background: linear-gradient(135deg, rgba(15, 94, 240, 0.08), rgba(15, 94, 240, 0.14));
}

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

.section__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section__intro h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.section__intro p {
  color: var(--color-muted);
  margin: 0 auto;
}

.mission-highlights,
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.statute-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 18px 35px rgba(18, 44, 90, 0.08);
}

.card--statute {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.statute-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
  display: grid;
  gap: 0.65rem;
}

.statute-list ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.statute-list p {
  margin: 0;
  line-height: 1.5;
}

.statute-list li {
  line-height: 1.5;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.stat {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat dt {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.stat dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
}

.stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.story {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 18px 35px rgba(18, 44, 90, 0.08);
}

.story blockquote {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text);
}

.story__author {
  margin-top: 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
}

.section--accent .involve__content,
.section--highlight .involve__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.involve__list {
  padding-left: 1rem;
  color: var(--color-muted);
}

.involve__list li {
  margin-bottom: 0.75rem;
}

.interest-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
}

.interest-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.interest-form legend {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.interest-form p {
  margin-top: 0;
  color: var(--color-muted);
}

.interest-form label {
  display: block;
  margin-top: 1.2rem;
  font-weight: 600;
}

.interest-form input,
.interest-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 94, 240, 0.25);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.interest-form input:focus,
.interest-form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 94, 240, 0.2);
}

.form-message {
  min-height: 1.5rem;
  font-size: 0.95rem;
  margin-top: 1rem;
  font-weight: 600;
}

.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.1s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:focus {
  outline: 3px solid rgba(15, 94, 240, 0.35);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-background);
  box-shadow: 0 15px 35px rgba(15, 94, 240, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 94, 240, 0.3);
}

.btn--ghost {
  background: rgba(15, 94, 240, 0.08);
  color: var(--color-primary);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(15, 94, 240, 0.12);
}

.site-footer {
  background: #090c16;
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.85);
}

.footer__cta .btn {
  margin-top: 0.75rem;
}

.footer__note {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    inset: 0 0 0 40%;
    padding: 5rem 2rem;
    background: rgba(9, 12, 22, 0.92);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .site-nav[aria-expanded='true'] {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-container {
    padding: 0.75rem 0.5rem;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero__content {
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .interest-form {
    padding: 2rem 1.5rem;
  }

  .site-nav {
    inset: 0 0 0 25%;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 5rem;
  }

  .nav-container {
    gap: 0.5rem;
  }

  .section__intro {
    text-align: left;
  }
}

