
:root {
  --blue: #184d96;
  --blue-dark: #003a8b;
  --blue-light: #e8f1fb;
  --green: #208816;
  --green-dark: #0c7902;
  --gold: #e29e0b;
  --red: #dd0d10;
  --purple: #552986;
  --brown: #72380b;
  --ink: #17314f;
  --muted: #5f6f7d;
  --surface: #f6f9fc;
  --surface-alt: #eef4f7;
  --line: #d8e1ea;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 49, 79, .12);
  --shadow-small: 0 8px 24px rgba(23, 49, 79, .10);
  --radius: 24px;
  --radius-small: 14px;
  --shell: 1180px;
  --header-height: 100px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--blue-dark); text-decoration-thickness: .09em; text-underline-offset: .18em; }
a:hover { color: var(--green-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .75rem; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 5vw, 4.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1.25rem; padding-left: 1.25rem; }
li + li { margin-top: .4rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-shell {
  width: min(calc(100% - 2.2rem), var(--shell));
  margin-inline: auto;
}

.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: .9rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar p { margin: 0; }
.topbar a { color: var(--white); font-weight: 800; white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(216,225,234,.85);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 260px;
}
.brand img { width: 78px; height: 78px; object-fit: contain; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: 1rem; color: var(--blue-dark); }
.brand-text span { color: var(--green-dark); font-size: .95rem; margin-top: .2rem; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav li { margin: 0; }
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .6rem .55rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 750;
}
.primary-nav a:hover,
.primary-nav a.nav-current {
  color: var(--blue-dark);
  background: var(--blue-light);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
}
.menu-button-lines,
.menu-button-lines::before,
.menu-button-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: auto;
  position: relative;
  transition: transform .2s ease;
}
.menu-button-lines::before,
.menu-button-lines::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-button-lines::before { top: -7px; }
.menu-button-lines::after { top: 7px; }
.menu-button[aria-expanded="true"] .menu-button-lines { background: transparent; }
.menu-button[aria-expanded="true"] .menu-button-lines::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-button-lines::after { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--blue-dark);
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,58,139,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12,121,2,.2);
}
.button-secondary {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: none;
}
.button-secondary:hover { color: var(--white); }
.button-small { padding: .62rem .95rem; font-size: .88rem; white-space: nowrap; }
.button-gold { background: var(--gold); border-color: var(--gold); color: #2d2100; }
.button-gold:hover { background: #bf8200; border-color: #bf8200; color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(32,136,22,.13), transparent 30%),
    radial-gradient(circle at 5% 90%, rgba(226,158,11,.13), transparent 32%),
    linear-gradient(135deg, #f6fbff 0%, #ffffff 55%, #f6faf3 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -180px;
  bottom: -230px;
  border: 55px solid rgba(24,77,150,.06);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
}
.hero h1 span { color: var(--blue-dark); }
.hero h1 em { color: var(--green-dark); font-style: normal; }
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: #40566d;
  max-width: 690px;
}
.hero-logo {
  width: min(100%, 520px);
  margin-inline: auto;
  filter: drop-shadow(0 20px 30px rgba(23,49,79,.12));
}

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-alt { background: var(--surface); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(32,136,22,.34), transparent 30%),
    linear-gradient(125deg, var(--blue-dark), #143c6c);
}
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.86); }
.section-header { max-width: 790px; margin-bottom: 2.1rem; }
.section-header.center { text-align: center; margin-inline: auto; }
.section-header p { color: var(--muted); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,.82); }

.page-hero {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(32,136,22,.12), transparent 28%),
    linear-gradient(135deg, #eef6ff, #fff);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 900px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero p { font-size: 1.15rem; color: #40566d; max-width: 780px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.35rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.15rem; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 1.45rem;
  box-shadow: var(--shadow-small);
}
.card h3 { color: var(--blue-dark); }
.card p:last-child { margin-bottom: 0; }
.card-flat { box-shadow: none; }
.card-accent {
  position: relative;
  overflow: hidden;
}
.card-accent::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent, var(--blue));
}
.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent, var(--blue)) 13%, white);
  color: var(--accent, var(--blue));
  margin-bottom: 1rem;
}
.card-icon svg { width: 28px; height: 28px; }
.accent-green { --accent: var(--green); }
.accent-gold { --accent: var(--gold); }
.accent-red { --accent: var(--red); }
.accent-purple { --accent: var(--purple); }
.accent-brown { --accent: var(--brown); }
.accent-blue { --accent: var(--blue); }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 1rem;
}
.pillar {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}
.pillar .number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 auto .8rem;
  font-weight: 900;
  color: var(--white);
  background: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split-reverse > :first-child { order: 2; }
.visual-panel {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.95) 0 30%, transparent 31%),
    conic-gradient(from 20deg, var(--green), var(--gold), var(--red), var(--brown), var(--purple), var(--blue), var(--green));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  padding: 2rem;
}
.visual-panel .inner {
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 8px solid rgba(24,77,150,.15);
}
.visual-panel strong { color: var(--blue-dark); font-size: clamp(1.25rem, 3vw, 2rem); }

.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 1.85rem; margin-bottom: .65rem; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 900;
}
.tag-list { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; }
.tag-list li {
  margin: 0;
  padding: .5rem .8rem;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 750;
  font-size: .9rem;
}

.callout {
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--blue-dark), #1e5daf);
  color: var(--white);
  box-shadow: var(--shadow);
}
.callout h2, .callout h3 { color: var(--white); }
.callout p { color: rgba(255,255,255,.88); }
.callout .button-secondary { border-color: var(--white); }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat {
  border-radius: 18px;
  padding: 1.35rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
}
.stat strong { display: block; font-size: 1.35rem; color: var(--white); }
.stat span { color: rgba(255,255,255,.76); }

.steps { counter-reset: step; display: grid; gap: 1rem; }
.step {
  counter-increment: step;
  position: relative;
  padding: 1.35rem 1.35rem 1.35rem 4.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 1.15rem;
  top: 1.1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 900;
}

.details-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 1.1rem;
}
.details-list details + details { margin-top: .75rem; }
.details-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 2rem 1rem 0;
  font-weight: 850;
  color: var(--blue-dark);
  position: relative;
}
.details-list summary::-webkit-details-marker { display: none; }
.details-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: .75rem;
  font-size: 1.5rem;
  color: var(--green-dark);
}
.details-list details[open] summary::after { content: "–"; }
.details-list details > div { padding-bottom: 1rem; }

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr);
  gap: 2rem;
}
.contact-panel {
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-dark), #1d5aa4);
}
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-panel p, .contact-panel li { color: rgba(255,255,255,.86); }

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow-small);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-group { display: grid; gap: .35rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1px solid #b9c8d7;
  border-radius: 10px;
  padding: .78rem .85rem;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(32,136,22,.2);
  border-color: var(--green-dark);
}
.honeypot { position: absolute; left: -9999px; }
.form-note { color: var(--muted); font-size: .88rem; }
.alert {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  border: 1px solid #c5daf0;
}
.alert-error { background: #fff0f0; border-color: #f2b9b9; color: #8c0d0d; }

.site-footer {
  padding: 3.5rem 0 1.2rem;
  background: #102c49;
  color: rgba(255,255,255,.82);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 2rem;
}
.footer-brand img {
  width: 130px;
  border-radius: 16px;
  background: var(--white);
  margin-bottom: .75rem;
}
.site-footer h2 { font-size: 1rem; color: var(--white); letter-spacing: .02em; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin: .35rem 0; }
.site-footer a { color: rgba(255,255,255,.84); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: .82rem;
}
.footer-bottom p { margin: 0; max-width: 650px; }

.prose { max-width: 780px; }
.prose h2 { margin-top: 2.4rem; font-size: 1.65rem; color: var(--blue-dark); }
.prose h3 { margin-top: 1.5rem; color: var(--green-dark); }
.prose a { font-weight: 750; }

@media (max-width: 1080px) {
  .menu-button { display: inline-grid; place-items: center; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 1rem max(1rem, calc((100% - var(--shell))/2));
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-small);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .primary-nav a { padding: .75rem; }
  .primary-nav .button { justify-self: start; }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 780px) {
  :root { --header-height: 84px; }
  .topbar-inner { padding: .5rem 0; align-items: flex-start; }
  .topbar a { display: none; }
  .brand img { width: 60px; height: 60px; }
  .brand-text strong { font-size: .88rem; }
  .brand-text span { font-size: .82rem; }
  .hero-grid, .split, .form-wrap { grid-template-columns: 1fr; }
  .hero-logo { max-width: 430px; }
  .split-reverse > :first-child { order: initial; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
}

@media (max-width: 520px) {
  .site-shell { width: min(calc(100% - 1.3rem), var(--shell)); }
  .brand { min-width: 0; }
  .brand-text { display: none; }
  .primary-nav ul { grid-template-columns: 1fr; }
  .pillar-grid, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .button-row .button { width: 100%; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media print {
  .topbar, .site-header, .site-footer, .button, .menu-button { display: none !important; }
  body { color: #000; }
  .section, .page-hero { padding: 1rem 0; background: #fff; }
  .card, .callout { box-shadow: none; border: 1px solid #bbb; }
}

header a.button.button-small[href="get-involved.php"],
header a.button.button-small[href="get-involved.php"]:link,
header a.button.button-small[href="get-involved.php"]:visited,
header a.button.button-small[href="get-involved.php"]:hover,
header a.button.button-small[href="get-involved.php"]:focus,
header a.button.button-small[href="get-involved.php"]:active {
    color: #ffffff !important;
}