:root {
  --blue-900: #0f2f57;
  --blue-800: #123c71;
  --blue-700: #19508f;
  --blue-600: #2667b2;
  --blue-100: #eaf2fb;
  --blue-50: #f6f9fe;
  --white: #ffffff;
  --text: #18324d;
  --muted: #55708c;
  --border: #dce7f5;
  --shadow-sm: 0 10px 25px rgba(15, 47, 87, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 47, 87, 0.1);
  --shadow-lg: 0 30px 60px rgba(15, 47, 87, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --transition: 220ms ease;
}

* {
  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(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-alt {
  background: var(--blue-50);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head-compact {
  margin-bottom: 1.5rem;
}

.section-head-tight {
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--blue-900);
}

.section-head p {
  margin: 0;
  font-size: 1.04rem;
  color: var(--muted);
}

.page-hero {
  padding: 64px 0 24px;
  background: linear-gradient(180deg, var(--white), #fbfdff);
}

.page-title {
  margin: 0 0 14px;
  max-width: 920px;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--blue-900);
}

.page-lead {
  margin: 0;
  max-width: 760px;
  font-size: 1.08rem;
  color: var(--muted);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: 38px;
  align-items: end;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card,
.panel {
  background: var(--white);
  border: 1px solid rgba(38, 103, 178, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(38, 103, 178, 0.25);
}

.action-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.action-card .btn-text {
  margin-top: auto;
}

.stacked-panel {
  margin-top: 1.5rem;
}

.stacked-panel-lg {
  margin-top: 2rem;
}

.card h3,
.card h4,
.panel h3 {
  margin-top: 0;
  color: var(--blue-900);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.card p,
.card li,
.panel p,
.panel li,
small {
  color: var(--muted);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

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

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(25, 80, 143, 0.22);
}

.btn-primary:hover {
  background: var(--blue-800);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-800);
  border-color: rgba(18, 60, 113, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: rgba(18, 60, 113, 0.35);
  box-shadow: var(--shadow-md);
  color: var(--blue-900);
}

.btn-outline {
  background: transparent;
  color: var(--blue-800);
  border-color: rgba(18, 60, 113, 0.2);
}

.btn-outline:hover {
  background: var(--blue-50);
  border-color: rgba(18, 60, 113, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-text {
  color: var(--blue-700);
  font-weight: 700;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 47, 87, 0.08);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 8px 18px rgba(15, 47, 87, 0.08);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-full {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.05;
}

.brand-subtitle {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.1;
}

.brand-logo-img {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo-header {
  width: 52px;
  height: 52px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 0.98rem;
  font-weight: 700;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: var(--blue-50);
  color: var(--blue-800);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-actions .btn {
  min-height: 44px;
  padding: 0 18px;
}

.active-btn {
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
  box-shadow: 0 12px 26px rgba(25, 80, 143, 0.18);
}

.btn-secondary.active-btn:hover {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(15, 47, 87, 0.1);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.mobile-menu-btn span,
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 999px;
  position: relative;
  transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
  content: "";
}

.mobile-menu-btn span::before {
  position: absolute;
  top: -6px;
}

.mobile-menu-btn span::after {
  position: absolute;
  top: 6px;
}

.mobile-menu-btn.active span {
  background: transparent;
}

.mobile-menu-btn.active span::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(15, 47, 87, 0.08);
  background: var(--white);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  padding: 10px 0 22px;
}

.mobile-nav a {
  display: block;
  width: 100%;
  padding: 14px 0;
  color: var(--blue-900);
  font-weight: 700;
  border-bottom: 1px solid rgba(15, 47, 87, 0.06);
}

.mobile-nav a.active {
  color: var(--blue-700);
}

.mobile-donate-link {
  margin-top: 8px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 64px;
  background:
    radial-gradient(circle at top right, rgba(63, 127, 197, 0.12), transparent 36%),
    linear-gradient(180deg, var(--white), #fbfdff);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--blue-900);
  max-width: 720px;
}

.hero p {
  margin: 0;
  max-width: 640px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero .hero-note {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  max-width: 38rem;
  padding: 10px 14px;
  border: 1px solid rgba(38, 103, 178, 0.14);
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-800);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-highlights span {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-800);
  background: var(--blue-50);
  border: 1px solid rgba(38, 103, 178, 0.12);
}

.hero-panel {
  background: var(--white);
  border: 1px solid rgba(15, 47, 87, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-photo {
  min-height: 300px;
  background:
    linear-gradient(160deg, rgba(15, 47, 87, 0.12), rgba(15, 47, 87, 0.04)),
    url("../images/home-picture.jpg") center center / cover no-repeat;
}

.hero-panel-body {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.hero-panel h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--blue-900);
}

.hero-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.hero-list i {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--blue-100);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-list i::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: var(--blue-700);
}

.stats-grid .card {
  padding: 26px;
}

.stat-value {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 6px;
}

.stat-note {
  font-size: 0.94rem;
  color: var(--muted);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-100);
  display: inline-grid;
  place-items: center;
  color: var(--blue-800);
  font-weight: 800;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 34px;
  align-items: start;
}

.split-center {
  align-items: center;
}

.feature-list,
.simple-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.feature-list li,
.simple-list li {
  margin: 8px 0;
}

.quote-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--blue-900), var(--blue-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  opacity: 0.28;
  margin-bottom: 8px;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.7;
}

.quote-card footer {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

/* Our Work */
.work-hero {
  padding-bottom: 48px;
}

.work-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 38px;
  align-items: end;
}

.work-hero-note,
.human-stakes-card {
  border: 1px solid rgba(15, 47, 87, 0.08);
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  box-shadow: var(--shadow-md);
  padding: 30px;
}

.work-hero-note p,
.human-stakes-card p {
  margin: 0;
  color: var(--muted);
}

.work-note-kicker {
  margin-bottom: 10px !important;
  color: var(--blue-800) !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.barrier-list {
  display: grid;
  gap: 14px;
}

.barrier-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(15, 47, 87, 0.1);
}

.barrier-item:last-child {
  border-bottom: 1px solid rgba(15, 47, 87, 0.1);
}

.barrier-item span {
  color: var(--blue-900);
  font-weight: 800;
}

.barrier-item p {
  margin: 0;
  color: var(--muted);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(15, 47, 87, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.use-card {
  padding: 26px;
  border-right: 1px solid rgba(15, 47, 87, 0.08);
}

.use-card:last-child {
  border-right: 0;
}

.use-card h3,
.human-stakes-card h3 {
  margin: 0 0 12px;
  color: var(--blue-900);
  line-height: 1.2;
}

.use-card .simple-list {
  margin-top: 0;
}

.human-stakes-card {
  background: linear-gradient(180deg, #ffffff, var(--blue-50));
}

.barrier-list-card {
  padding: 8px 24px;
  border: 1px solid rgba(15, 47, 87, 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.timeline-step {
  padding: 26px;
  border: 1px solid rgba(15, 47, 87, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-sm);
}

.timeline-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-weight: 800;
}

.timeline-step h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.event-title {
  margin: 18px 0 4px;
  color: var(--blue-900);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.mini-grid {
  gap: 18px;
}

.mini-grid p {
  margin: 0;
}

.contact-reasons-panel h3 {
  margin-bottom: 20px;
}

.contact-reasons-grid {
  gap: 0;
}

.contact-reasons-grid p {
  min-height: 100%;
  padding: 2px 26px;
  border-left: 1px solid rgba(15, 47, 87, 0.1);
}

.contact-reasons-grid p:first-child {
  padding-left: 0;
  border-left: 0;
}

.contact-reasons-grid p:last-child {
  padding-right: 0;
}

/* Table */
.table-wrap {
  overflow: auto;
  border: 1px solid rgba(15, 47, 87, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 47, 87, 0.08);
}

th {
  background: var(--blue-50);
  color: var(--blue-800);
  font-size: 0.88rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(15, 47, 87, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: var(--white);
  padding: 20px 22px;
  font-weight: 700;
  color: var(--blue-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.sponsor-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.sponsor-chip {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 47, 87, 0.08);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  font-weight: 800;
  color: var(--blue-800);
}

/* CTA band */
.cta-band {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--blue-900), var(--blue-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--blue-800);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.cta-band .btn-primary:hover {
  background: var(--white);
  color: var(--blue-900);
  box-shadow: var(--shadow-md);
}

.cta-band .btn-row,
.cta-deep .btn-row {
  margin-top: 0;
}

.cta-band .btn-secondary,
.cta-band .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.cta-band .btn-secondary:hover,
.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 0 24px;
  margin-top: 72px;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.footer-cta h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
  max-width: 700px;
}

.footer-cta-copy {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-lockup {
  align-items: flex-start;
  gap: 14px;
}

.footer-brand-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.footer-brand-lockup > div:last-child {
  min-width: 0;
}

.site-footer h4,
.footer-brand .brand-title {
  color: var(--white);
}

.site-footer h4 {
  margin: 0 0 14px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer .btn-secondary {
  background: var(--white);
  color: var(--blue-800);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-sm);
}

.site-footer .btn-secondary:hover {
  background: var(--white);
  color: var(--blue-900);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow-md);
}

.site-footer .btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-footer .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  z-index: 2000;
  box-shadow: var(--shadow-md);
}

/* Contact */
.contact-head {
  max-width: 780px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

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

.contact-item + .contact-item {
  padding-top: 18px;
  border-top: 1px solid rgba(15, 47, 87, 0.08);
}

.contact-item h4 {
  margin: 0 0 6px;
  color: var(--blue-900);
}

.contact-item p {
  margin: 0;
}

.contact-item p + p {
  margin-top: 6px;
}

.contact-item a {
  color: var(--blue-700);
  font-weight: 700;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(15, 47, 87, 0.12);
  border-radius: 14px;
  background: var(--white);
  padding: 14px 16px;
  font: inherit;
  color: var(--blue-900);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(25, 80, 143, 0.45);
  box-shadow: 0 0 0 4px rgba(25, 80, 143, 0.08);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
}

/* Donate */
.donate-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.4fr);
  gap: 1.5rem;
  align-items: start;
}

.donate-sidebar {
  display: grid;
  gap: 1.5rem;
}

.donate-heading {
  margin: 0 0 1rem;
}

.donate-embed-card {
  padding: 0.75rem;
}

.donate-embed-frame {
  position: relative;
  overflow: hidden;
  height: 650px;
  width: 100%;
  border-radius: 16px;
}

.donate-embed-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid,
  .split,
  .footer-grid,
  .grid-4,
  .use-grid,
  .timeline-lite,
  .event-feature,
  .sponsor-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-card:nth-child(2) {
    border-right: 0;
  }

  .use-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(15, 47, 87, 0.08);
  }

  .grid-2,
  .grid-3,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
  }

  .hero-grid,
  .page-hero-grid,
  .work-hero-grid,
  .split,
  .footer-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .use-grid,
  .timeline-lite,
  .event-feature,
  .sponsor-strip,
  .donate-layout {
    grid-template-columns: 1fr;
  }

  .use-card,
  .use-card:nth-child(2) {
    border-right: 0;
  }

  .use-card:not(:last-child) {
    border-bottom: 1px solid rgba(15, 47, 87, 0.08);
  }

  .cta-band,
  .footer-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .donate-embed-frame {
    height: 600px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 48px 0 20px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }

  .brand-subtitle {
    display: none;
  }

  .card,
  .panel,
  .quote-card,
  .work-hero-note,
  .human-stakes-card,
  .use-card,
  .timeline-step,
  .cta-band,
  .hero-panel-body {
    padding: 22px;
  }

  .barrier-list-card {
    padding: 4px 18px;
  }

  .barrier-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-reasons-grid p {
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid rgba(15, 47, 87, 0.1);
  }

  .contact-reasons-grid p:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .contact-reasons-grid p:last-child {
    padding-bottom: 0;
  }

  .btn,
  .footer-cta-actions .btn {
    width: 100%;
  }

  .btn-row {
    width: 100%;
  }

  .footer-bottom {
    gap: 8px;
  }
}


/* Events page */
.events-shell {
  background: #f7f9fc;
}

.events-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.4fr);
  gap: 24px;
  align-items: stretch;
}

.ghost-pill,
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.command-panel {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.command-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.command-head h2 {
  margin: 0;
  font-size: 1.7rem;
  color: var(--blue-900);
}

.ghost-pill {
  padding: 8px 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.85rem;
}

.tracking-grid {
  display: grid;
  gap: 14px;
}

.tracking-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(29, 78, 216, 0.10);
  border-radius: 18px;
  padding: 18px;
}

.tracking-label {
  font-size: 0.86rem;
  color: var(--blue-700);
  margin-bottom: 10px;
}

.tracking-title {
  margin: 0 0 10px;
  font-size: 1.18rem;
  color: var(--blue-900);
}

.tracking-meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.events-section {
  padding: 16px 0 80px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-label {
  font-size: 0.92rem;
  color: var(--muted);
  margin-right: 4px;
}

.filter-btn {
  padding: 10px 14px;
  background: var(--blue-50);
  color: var(--blue-800);
  border: 1px solid rgba(29, 78, 216, 0.08);
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue-700);
  color: #ffffff;
  border-color: var(--blue-700);
}

/* Events content */
.events-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.events-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
  color: var(--blue-900);
}

.events-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid,
.timeline-grid {
  display: grid;
  gap: 22px;
}

.feature-grid,
.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.timeline-card,
.cta-deep {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.feature-card,
.timeline-card {
  border-radius: 24px;
  padding: 24px;
}

.timeline-wrap {
  display: grid;
  gap: 22px;
}

.timeline-group {
  display: grid;
  gap: 16px;
}

.timeline-group-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  padding: 0 2px;
}

.timeline-group-head h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--blue-900);
}

.timeline-group-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px;
}

.feature-card,
.timeline-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-title,
.timeline-title,
.cta-deep h3 {
  margin: 0;
  color: var(--blue-900);
}

.feature-title {
  font-size: 1.32rem;
}

.feature-date {
  color: var(--blue-700);
  font-weight: 700;
}

.feature-desc,
.cta-deep p,
.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.timeline-pill,
.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
}

.timeline-pill {
  padding: 8px 12px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 0.82rem;
  font-weight: 700;
}

.timeline-time {
  color: var(--blue-700);
  font-weight: 700;
}

.tag-row,
.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-pill {
  padding: 8px 11px;
  background: #eef2ff;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.10);
}

.cta-deep {
  border-radius: 24px;
  padding: 28px;
}

.cta-deep {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #0f3c78 0%, #1d4e89 100%);
  color: #ffffff;
}

.cta-deep h3,
.cta-deep p {
  color: #ffffff;
}

.cta-deep .btn-primary {
  background: #ffffff;
  color: var(--blue-800);
}

.cta-deep .btn-primary:hover {
  background: #ffffff;
  color: var(--blue-900);
}

.cta-deep .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}

.cta-deep .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .feature-grid,
  .timeline-grid,
  .events-overview-grid {
    grid-template-columns: 1fr;
  }

  .cta-deep,
  .timeline-group-head {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .feature-card,
  .timeline-card,
  .command-panel,
  .cta-deep {
    padding: 20px;
    border-radius: 20px;
  }

  .filter-bar {
    padding: 16px;
  }
}
