@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Public+Sans:wght@700;800;900&display=swap");

:root {
  --navy: #0b1f3a;
  --navy-2: #12345b;
  --blue: #24486f;
  --red: #b31942;
  --red-dark: #861633;
  --paper: #f4f7fa;
  --light-gray: #eef3f7;
  --white: #ffffff;
  --ink: #0b1f3a;
  --muted: #556477;
  --line: #d9e0e8;
  --shadow: 0 16px 42px rgba(11, 31, 58, 0.14);
  --focus: #d49442;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--navy);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: min-height 180ms ease, padding 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  padding-block: 8px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.16);
}

.brand,
.nav-links a,
.pillar-grid a,
.state-example-list a,
.site-footer a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: clamp(260px, 25vw, 340px);
  height: auto;
  object-fit: contain;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: clamp(238px, 22vw, 306px);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.12), transparent 34%),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.16);
  font-size: 0;
  overflow: hidden;
  transition: width 180ms ease, height 180ms ease;
}

.brand-mark::before {
  content: "R";
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 7px;
  height: 20px;
  background: var(--red);
  border-radius: 1px;
  transform: rotate(-34deg);
  transform-origin: bottom center;
}

.site-header.is-scrolled .brand-mark {
  width: 40px;
  height: 40px;
}

.site-header.is-scrolled .brand-mark::before {
  font-size: 26px;
}

.site-header.is-scrolled .brand-mark::after {
  right: 8px;
  bottom: 7px;
  width: 6px;
  height: 17px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.12;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
  transition: opacity 180ms ease;
}

.site-header.is-scrolled .brand small {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.nav-links a {
  white-space: nowrap;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 60;
  display: grid;
  min-width: 238px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-submenu a {
  padding: 9px 10px;
  border-radius: 3px;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.nav-submenu a:hover {
  color: var(--white);
  background: var(--navy);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a:hover,
.site-footer a:hover,
.pillar-grid a:hover,
.state-example-list a:hover {
  color: var(--red-dark);
}

.nav-give {
  padding: 9px 13px;
  color: var(--white);
  background: var(--red);
  border-radius: 3px;
}

.nav-give:hover {
  color: var(--white) !important;
  background: var(--red-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 3px;
  font: inherit;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

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

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

.button-secondary {
  color: var(--white);
  background: rgba(11, 31, 58, 0.18);
  border-color: rgba(255, 255, 255, 0.82);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.landing-page .hero {
  min-height: calc(100vh - 82px);
}

.landing-page .hero-content {
  padding-bottom: 120px;
}

.scroll-home .hero {
  min-height: calc(100vh - 82px);
}

.home-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: 72vh;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 86px;
}

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

.home-section-light:nth-of-type(odd) {
  background: var(--paper);
}

.home-section-navy {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    var(--navy);
}

.home-section-copy {
  max-width: 820px;
}

.home-section-copy h2 {
  margin-bottom: 18px;
}

.home-section-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
}

.home-section-navy .home-section-copy p,
.home-section-navy .home-section-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.home-section-navy .eyebrow {
  color: #ffffff;
}

.home-section-panel {
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 16px 38px rgba(11, 31, 58, 0.1);
}

.home-section-navy .home-section-panel {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: var(--red);
}

.home-section-panel span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-section-panel h3 {
  font-size: clamp(26px, 3vw, 40px);
}

.home-section-panel p {
  color: var(--muted);
  font-size: 17px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.88;
  filter: saturate(1.12) contrast(1.08) brightness(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.93) 0%, rgba(11, 31, 58, 0.68) 48%, rgba(11, 31, 58, 0.08) 100%),
    linear-gradient(0deg, rgba(11, 31, 58, 0.28), rgba(36, 72, 111, 0.02));
}

.hero-content {
  position: relative;
  width: min(920px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding: 82px 0;
}

.hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.94;
}

.hero-kicker {
  display: inline-block;
  max-width: none !important;
  margin: 0 0 18px;
  padding: 9px 12px;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--red);
  font-size: 13px !important;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 2vw, 24px);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 20px;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(68px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-intro {
  max-width: 920px;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.18;
}

.section-intro h2::after,
.page-hero h1::after,
.chapter-page-hero h1::after,
.final-cta h2::after,
.state-preview h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 18px;
  background: var(--red);
}

.section-intro p,
.what-section p,
.pillar-grid span,
.resource-grid p,
.three-card-grid p {
  color: var(--muted);
  font-size: 18px;
}

.what-section,
.resource-section {
  background: var(--white);
}

.pillars-section {
  background: var(--paper);
}

.three-card-grid,
.pillar-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

.three-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pillar-grid {
  grid-template-columns: repeat(3, 1fr);
}

.resource-grid {
  grid-template-columns: repeat(5, 1fr);
}

.three-card-grid article,
.resource-grid article,
.pillar-grid a {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.06);
}

.pillar-grid a {
  display: grid;
  align-content: start;
  gap: 8px;
}

.pillar-grid strong {
  color: var(--navy);
  font-size: 22px;
}

.state-preview,
.final-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(68px, 9vw, 112px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.08), transparent 22%),
    var(--navy);
}

.state-preview h2,
.final-cta h2 {
  color: var(--white);
}

.state-preview p,
.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.state-preview .eyebrow,
.final-cta .eyebrow {
  color: #ffffff;
}

.state-example-list {
  display: grid;
  gap: 12px;
}

.state-example-list a {
  padding: 24px;
  color: var(--navy);
  background: var(--white);
  border-left: 6px solid var(--red);
  border-radius: 4px;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
}

.final-cta {
  background: var(--navy-2);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(170px, auto) minmax(170px, auto);
  gap: clamp(24px, 5vw, 68px);
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.footer-brand {
  max-width: 720px;
}

.footer-logo {
  display: block;
  width: min(280px, 80vw);
  height: auto;
  margin-bottom: 10px;
}

.site-footer p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.footer-relationship {
  max-width: 680px;
  font-size: 13px;
  line-height: 1.55;
}

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

.footer-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Shared styles for the simple subpages and chapter templates. */
.page-hero,
.chapter-page-hero {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 84px);
  color: var(--white);
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(11, 31, 58, 0.94), rgba(36, 72, 111, 0.76)),
    var(--hero-bg, url("assets/hero-mission-cnc.jpg"));
  background-position: var(--hero-position, center);
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero h1,
.chapter-page-hero h1 {
  max-width: 880px;
  margin: 0 0 20px;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
}

.page-hero p,
.chapter-page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.simple-grid,
.chapter-detail-grid,
.who-joins-grid,
.state-directory-grid,
.state-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.all-states-grid {
  grid-template-columns: repeat(4, 1fr);
}

.simple-grid article,
.chapter-detail-grid article,
.who-joins-grid article,
.state-card,
.chapter-cta-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.06);
}

.simple-grid article.photo-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
  background-image:
    linear-gradient(180deg, rgba(11, 31, 58, 0.1), rgba(11, 31, 58, 0.92)),
    var(--card-bg);
  background-position: var(--card-position, center);
  background-repeat: no-repeat;
  background-size: cover;
  border-color: rgba(11, 31, 58, 0.22);
}

.photo-card h3,
.photo-card p,
.photo-card .text-link {
  position: relative;
  z-index: 1;
}

.photo-card h3 {
  color: var(--white);
}

.photo-card p {
  color: rgba(255, 255, 255, 0.9);
}

.photo-card .text-link {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.state-card {
  display: grid;
  gap: 12px;
  min-height: 230px;
}

.state-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}

.text-link {
  color: var(--red-dark);
  font-weight: 900;
}

.technology-process-grid {
  align-items: stretch;
}

.technology-step-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.technology-step-card .process-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.technology-step-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.02;
}

.technology-step-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
}

.technology-step-card li + li {
  margin-top: 9px;
}

.technology-assist {
  padding: 16px;
  background: var(--light-gray);
  border-left: 3px solid var(--red);
  border-radius: 3px;
}

.technology-assist h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.technology-assist ul {
  margin: 0;
}

.technology-step-card .button {
  width: fit-content;
  margin-top: 6px;
}

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

.partner-benefit-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.06);
}

.partner-benefit-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.04;
}

.partner-role {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.partner-benefit-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
}

.partner-benefit-card li + li {
  margin-top: 9px;
}

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

.quote-card blockquote {
  position: relative;
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1.14;
}

.quote-card blockquote::before {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 16px;
  background: var(--red);
}

.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.summit-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.summit-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.98;
}

.summit-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.summit-action-card {
  display: grid;
  gap: 18px;
}

.summit-action-card article {
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.summit-action-card span,
.sponsor-tier span {
  display: block;
  margin-bottom: 14px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summit-action-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.04;
}

.summit-action-card p {
  color: var(--muted);
}

.summit-form,
.sponsor-form {
  max-width: 980px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
}

.summit-form label,
.sponsor-form label {
  color: var(--navy);
}

.summit-form input,
.summit-form select,
.summit-form textarea,
.sponsor-form input,
.sponsor-form select,
.sponsor-form textarea {
  border-color: var(--line);
}

.summit-form .form-note,
.sponsor-form .form-note {
  color: var(--muted);
}

.sponsor-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.sponsor-tier {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.06);
}

.sponsor-tier.featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  border-top-color: var(--red);
}

.sponsor-tier strong {
  display: block;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.sponsor-tier.featured strong,
.sponsor-tier.featured h3,
.sponsor-tier.featured span {
  color: var(--white);
}

.sponsor-tier ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.sponsor-tier.featured ul {
  color: rgba(255, 255, 255, 0.82);
}

.sponsor-tier li + li {
  margin-top: 8px;
}

.state-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.state-invitation-letter {
  margin-top: 30px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.state-invitation-letter h3 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.02;
}

.letter-copy {
  max-width: 940px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
}

.letter-copy p {
  margin: 0 0 16px;
}

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

.state-package-grid article {
  display: grid;
  gap: 8px;
  min-height: 210px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.05);
}

.state-package-grid span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-package-grid h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.12;
}

.state-package-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.state-package-grid .text-link {
  margin-top: auto;
}

.state-package-grid article.state-package-redeemed {
  color: #5f6b78;
  background: #eef2f5;
  border-color: #d5dde5;
  border-top-color: #8d99a6;
  box-shadow: none;
}

.state-package-grid article.state-package-redeemed span,
.state-package-grid article.state-package-redeemed h3,
.state-package-grid article.state-package-redeemed p {
  color: #5f6b78;
}

.redeemed-status {
  align-self: end;
  margin-top: auto;
  padding: 10px 12px;
  color: var(--navy);
  background: #dde5ec;
  border: 1px solid #c7d1da;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.delegation-form {
  gap: 24px;
}

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

.delegation-summary article {
  padding: 18px;
  background: var(--light-gray);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 4px;
}

.delegation-summary span,
.attendee-list-header p {
  color: var(--muted);
}

.delegation-summary span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delegation-summary strong {
  display: block;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.delegation-summary small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.attendee-list-header {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.attendee-list-header h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.attendee-list-header p {
  margin: 0;
}

.attendee-list {
  display: grid;
  gap: 10px;
}

.attendee-row {
  display: grid;
  grid-template-columns: 38px 1.15fr 1fr 1fr;
  gap: 10px;
  align-items: end;
  padding: 12px;
  background: var(--light-gray);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.attendee-row > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.attendee-row label {
  display: grid;
  gap: 6px;
}

.attendee-row label strong {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.agenda-day {
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.agenda-day h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.agenda-list {
  display: grid;
  gap: 16px;
}

.agenda-list div {
  padding-left: 16px;
  border-left: 3px solid var(--line);
}

.agenda-list time {
  display: block;
  margin-bottom: 4px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.agenda-list strong {
  display: block;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.12;
}

.agenda-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.donate-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.94), rgba(36, 72, 111, 0.62)),
    url("assets/hero-give-energy-equipment.jpg?v=20260624-soft-launch") center / cover no-repeat;
}

.donate-hero > * {
  min-width: 0;
}

.donate-hero-copy {
  position: sticky;
  top: 104px;
  color: var(--white);
}

.donate-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.94;
}

.donate-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 2vw, 24px);
}

.donate-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.donate-trust-row span {
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.donation-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: var(--white);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.donation-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.donation-step span {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.donation-step h2 {
  margin: 0;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.segmented-field,
.amount-field {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.segmented-field {
  grid-template-columns: repeat(2, 1fr);
}

.amount-field {
  grid-template-columns: repeat(3, 1fr);
}

.segmented-field legend,
.amount-field legend {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.segmented-field input,
.amount-field input {
  position: absolute;
  opacity: 0;
}

.segmented-field span,
.amount-field span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 3px;
  font-weight: 900;
  cursor: pointer;
}

.segmented-field input:checked + span,
.amount-field input:checked + span {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.field-label {
  color: var(--navy);
  font-weight: 900;
}

.donation-form input,
.donation-form select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 2px;
  font: inherit;
}

.currency-field {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 2px;
}

.currency-field span {
  padding-left: 14px;
  color: var(--muted);
  font-weight: 900;
}

.currency-field input {
  border: 0;
}

.form-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.payment-placeholder {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 4px;
}

.payment-placeholder p {
  margin: 6px 0 0;
  color: var(--muted);
}

.contact-card {
  gap: 16px;
}

.contact-card h2,
.contact-card h3,
.donation-contact-card h2 {
  margin: 0;
  color: var(--navy);
}

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

.contact-card .form-note {
  color: var(--muted);
  font-size: 14px;
}

.contact-card .button {
  width: fit-content;
}

.contact-list {
  display: grid;
  gap: 8px;
}

.contact-list span {
  padding: 12px 14px;
  color: var(--navy);
  background: var(--paper);
  border-left: 3px solid var(--red);
  border-radius: 3px;
  font-weight: 900;
}

.donation-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--navy);
  border-radius: 4px;
  color: var(--white);
}

.donation-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.donation-summary strong {
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 22px;
}

.state-data-band {
  background: var(--paper);
}

.mission-map-section {
  background: var(--paper);
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 22px;
  align-items: stretch;
}

.map-visual,
.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.06);
}

.map-visual {
  min-width: 0;
  padding: clamp(12px, 2vw, 24px);
}

.mission-map {
  width: 100%;
  min-height: clamp(420px, 48vw, 620px);
}

.map-load-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.map-load-controls p,
.map-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.map-fallback {
  margin-top: 10px;
}

.map-fallback a {
  color: var(--blue);
  font-weight: 800;
}

.map-loading {
  display: grid;
  min-height: 420px;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.map-source {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.map-panel {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.map-panel h3 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.map-panel p {
  color: var(--muted);
}

.map-metrics {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.map-metrics div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.map-metrics dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-metrics dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.08;
}

.map-panel .button {
  margin-top: auto;
}

.state-stat-grid {
  margin-top: 28px;
}

.state-stat {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.06);
}

.state-stat span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-stat strong {
  display: block;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
}

.state-stat small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.chapter-join-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.chapter-status {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  color: var(--navy);
  background: var(--paper);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.chapter-status.active {
  color: var(--white);
  background: var(--navy);
}

.chapter-status.building {
  color: var(--white);
  background: var(--red);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(68px, 9vw, 112px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.08), transparent 20%),
    var(--navy);
}

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

.form-section .chapter-cta-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 260px;
  color: var(--ink);
}

.form-section .chapter-cta-panel h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.02;
}

.form-section .chapter-cta-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.form-section .chapter-cta-panel .button {
  width: fit-content;
  margin-top: 8px;
}

.interest-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

.interest-form label {
  font-weight: 900;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 2px;
  font: inherit;
}

.form-note {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.button:focus,
.nav-toggle:focus,
.nav-links a:focus,
.nav-group:focus-within > a,
.pillar-grid a:focus,
.state-example-list a:focus,
.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus,
.donation-form input:focus,
.donation-form select:focus,
a:focus {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .site-header.nav-enhanced .nav-links {
    display: none;
  }

  .site-header.nav-enhanced.nav-open .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-height: calc(100dvh - 100px);
    padding: 12px 0 4px;
    overflow-x: visible;
    overflow-y: auto;
  }

  .nav-toggle {
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 8px;
    min-width: 82px;
    min-height: 44px;
    margin-left: auto;
    padding: 9px 11px;
    color: var(--navy);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 3px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .nav-toggle-icon {
    display: grid;
    gap: 4px;
    width: 18px;
  }

  .nav-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-open .nav-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-open .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-group {
    display: contents;
  }

  .nav-links a,
  .nav-group > a {
    min-height: 44px;
    padding: 11px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 3px;
    white-space: normal;
  }

  .nav-submenu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    margin-top: 0;
    padding: 8px;
    background: var(--paper);
    border-top-width: 2px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-give {
    display: grid;
    place-items: center;
    color: var(--white) !important;
    background: var(--red) !important;
    border-color: var(--red) !important;
  }

  .nav-submenu {
    top: calc(100% + 6px);
  }

  .three-card-grid,
  .pillar-grid,
  .resource-grid,
  .simple-grid,
  .chapter-detail-grid,
  .who-joins-grid,
  .state-directory-grid,
  .partner-benefit-grid,
  .sponsor-tier-grid,
  .state-package-grid,
  .agenda-grid,
  .state-stat-grid,
  .all-states-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .state-preview,
  .final-cta,
  .summit-feature,
  .donate-hero,
  .form-section,
  .map-shell,
  .delegation-summary,
  .home-section {
    grid-template-columns: 1fr;
  }

  .map-load-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .attendee-row {
    grid-template-columns: 36px 1fr;
    align-items: start;
  }

  .attendee-row label {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(230px, 68vw);
  }

  .site-header.is-scrolled .brand-logo {
    width: min(218px, 64vw);
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow: visible;
    font-size: 12px;
  }

  .site-header.nav-enhanced.nav-open .nav-links {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .nav-group {
    display: contents;
  }

  .nav-links a,
  .nav-group > a {
    min-height: 42px;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 3px;
  }

  .nav-give {
    display: grid;
    place-items: center;
    color: var(--white) !important;
    background: var(--red) !important;
    border-color: var(--red);
  }

  .nav-submenu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    margin-top: 6px;
    padding: 8px;
    background: var(--paper);
    border-top-width: 2px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .page-hero h1,
  .chapter-page-hero h1 {
    font-size: clamp(34px, 11vw, 44px);
    overflow-wrap: anywhere;
  }

  .landing-page .hero,
  .scroll-home .hero {
    min-height: calc(100svh - 73px);
  }

  .landing-page .hero-content {
    padding-bottom: 64px;
  }

  .mission-map {
    min-height: 340px;
  }

  .site-footer nav a,
  .state-card-actions .text-link {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .attendee-row {
    grid-template-columns: 1fr;
  }

  .attendee-row > span,
  .attendee-row label {
    grid-column: auto;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    margin-inline: auto;
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .donate-hero-copy {
    position: static;
  }

  .donate-hero-copy h1 {
    font-size: clamp(36px, 11vw, 42px);
    overflow-wrap: anywhere;
  }

  .segmented-field,
  .amount-field,
  .form-two-column {
    grid-template-columns: 1fr;
  }

  .three-card-grid,
  .pillar-grid,
  .resource-grid,
  .simple-grid,
  .chapter-detail-grid,
  .who-joins-grid,
  .state-directory-grid,
  .partner-benefit-grid,
  .sponsor-tier-grid,
  .state-package-grid,
  .agenda-grid,
  .state-stat-grid,
  .all-states-grid {
    grid-template-columns: 1fr;
  }

  .three-card-grid article,
  .resource-grid article,
  .pillar-grid a,
  .simple-grid article {
    min-height: auto;
    padding: 22px;
  }
}
