/* ========================================
   SOCIAL HUB DEMOCRACY — Main Stylesheet
   ======================================== */

/* ── Reset & Base ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --navy-light: #1a3558;
  --blue:       #1e56d4;
  --blue-light: #3b82f6;
  --blue-pale:  #dbeafe;
  --accent:     #e63946;
  --gold:       #f0a500;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --gray-light: #eef1f6;
  --gray:       #94a3b8;
  --text:       #0f1c30;
  --text-mid:   #2d4068;
  --text-muted: #64748b;
  --border:     #d5dce8;
  --shadow-sm:  0 2px 8px rgba(10,22,40,.08);
  --shadow-md:  0 6px 24px rgba(10,22,40,.12);
  --shadow-lg:  0 16px 48px rgba(10,22,40,.18);
  --radius:     8px;
  --radius-lg:  14px;
  --transition: 0.26s ease;
  --max-w:      1180px;
  --font:       'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }
ul { list-style: none; }

/* ── Typography ───────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Containers ───────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #174bb5;
  border-color: #174bb5;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Section Layout ───────────────────── */
section { padding: 5rem 0; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 99px;
  padding: .3rem .85rem;
  margin-bottom: 1rem;
}
.section-label.light {
  color: #93c5fd;
  background: rgba(59,130,246,.18);
}

.section-intro {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: .75rem;
}

/* ── Header / Nav ─────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-name {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.logo-sub {
  display: block;
  font-size: .68rem;
  color: var(--gray);
  letter-spacing: .04em;
  margin-top: 1px;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: .15rem; }
.site-nav a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .75rem;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.site-nav a.nav-cta {
  background: var(--blue);
  color: var(--white);
  margin-left: .5rem;
  padding: .45rem 1rem;
}
.site-nav a.nav-cta:hover {
  background: var(--blue-light);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ─────────────────────────────── */
#hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2a55 55%, #1a3a6e 100%);
  color: var(--white);
  padding: 6.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 110% -10%, rgba(30,86,212,.35) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at -10% 110%, rgba(230,57,70,.15) 0%, transparent 60%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #93c5fd;
  border-radius: 2px;
}
#hero h1 { color: var(--white); max-width: 780px; margin-bottom: 1.25rem; }
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.hero-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hero-badge strong { display: block; color: var(--white); font-size: .92rem; }

/* ── Highlight Cards Strip ────────────── */
#highlights {
  background: var(--navy-mid);
  padding: 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--blue);
}
.highlight-card {
  padding: 2.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.highlight-card:last-child { border-right: none; }
.highlight-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}
.highlight-card h3 { color: var(--white); font-size: 1rem; margin-bottom: .4rem; }
.highlight-card p { color: var(--gray); font-size: .88rem; margin: 0; }

/* ── Featured Campaign ────────────────── */
#campaign {
  background: var(--off-white);
}
.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  background: rgba(230,57,70,.1);
  border-radius: 99px;
  padding: .3rem .85rem;
  margin-bottom: 1rem;
}
.campaign-badge::before { content: '●'; font-size: .5rem; }
.campaign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.community-list { display: flex; flex-direction: column; gap: .6rem; }
.community-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .93rem;
  color: var(--text-mid);
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.community-list li:last-child { border-bottom: none; }
.community-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.vision-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  margin-top: 1.5rem;
}
.vision-box h3 { color: var(--white); margin-bottom: .75rem; }
.vision-box p { color: rgba(255,255,255,.72); font-size: .93rem; margin: 0; }

/* ── Mission ──────────────────────────── */
#mission { background: var(--white); }
.mission-lead {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1rem;
  margin-top: .75rem;
  margin-bottom: 3rem;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.mission-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.mission-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-pale);
}
.mission-icon {
  font-size: 1.5rem;
  margin-bottom: .9rem;
}
.mission-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.mission-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ── Topics Section ───────────────────── */
#topics {
  background: linear-gradient(180deg, #f0f4f9 0%, #e8eef8 100%);
  padding: 5rem 0 6rem;
}
.topics-header { text-align: center; margin-bottom: 3.25rem; }
.topics-header h2 { color: var(--navy); }
.topics-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: .75rem auto 0;
}
.topics-count {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 99px;
  padding: .35rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-top: 1rem;
}

/* Accordion */
.topics-accordion { display: flex; flex-direction: column; gap: .9rem; }
.topic-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.topic-item:hover { box-shadow: var(--shadow-md); }
.topic-item.open { border-color: var(--blue); }

.topic-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.topic-trigger:hover { background: rgba(30,86,212,.04); }
.topic-item.open .topic-trigger { background: rgba(30,86,212,.06); }

.topic-trigger-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topic-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.topic-item.open .topic-num { background: var(--blue); }

.topic-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.topic-badge {
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 99px;
  padding: .2rem .7rem;
  white-space: nowrap;
}
.topic-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: .75rem;
  color: var(--text-muted);
}
.topic-item.open .topic-chevron {
  background: var(--blue);
  color: var(--white);
  transform: rotate(180deg);
}

/* Topic panel */
.topic-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, opacity .28s ease;
  opacity: 0;
}
.topic-item.open .topic-panel {
  max-height: 2000px;
  opacity: 1;
}
.topic-panel-inner {
  padding: 0 1.75rem 1.75rem;
  border-top: 1px solid var(--gray-light);
}
.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.subcategory {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
}
.subcategory h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue);
  margin-bottom: .7rem;
}
.subcategory ul { display: flex; flex-direction: column; gap: .35rem; }
.subcategory ul li {
  font-size: .85rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.subcategory ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-weight: 700;
}

/* Overreach special style */
.topic-item.overreach { border-left: 4px solid var(--accent); }
.topic-item.overreach .topic-trigger-left .topic-num { background: var(--accent); }
.topic-item.overreach.open .topic-num { background: #b91c1c; }
.topic-item.overreach .topic-badge { color: var(--accent); background: rgba(230,57,70,.1); }

/* ── How It Works ─────────────────────── */
#how-it-works { background: var(--navy); padding: 5rem 0; }
#how-it-works .section-label { color: #93c5fd; background: rgba(59,130,246,.18); }
#how-it-works h2 { color: var(--white); }
#how-it-works .section-intro { color: rgba(255,255,255,.6); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
}
.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.08);
  line-height: 1;
  margin-bottom: .75rem;
}
.step-card h3 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.step-card p { color: rgba(255,255,255,.55); font-size: .88rem; margin: 0; }

/* ── Get Involved ─────────────────────── */
#get-involved { background: var(--off-white); }
.involved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.involved-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.involve-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.involve-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  transition: all var(--transition);
}
.involve-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-pale);
}
.involve-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.involve-card h3 { font-size: .95rem; margin-bottom: .35rem; }
.involve-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ── Footer ───────────────────────────── */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.75rem;
}
.footer-logo .logo-name { color: var(--white); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ── Inner Page Styles ────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-inner h1 { color: var(--white); }
.page-hero-inner .breadcrumb {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-hero-inner .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero-inner .breadcrumb a:hover { color: var(--white); }
.page-hero-inner .lead {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin-top: .75rem;
}

.page-section { padding: 4rem 0; }
.page-section:nth-child(even) { background: var(--off-white); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}
.content-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.content-card h3 { margin-bottom: .5rem; }
.content-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

/* FAQ specific */
.faq-list { display: flex; flex-direction: column; gap: 1.25rem; max-width: 800px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.faq-item h3 {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: .6rem;
}
.faq-item p {
  color: var(--text-muted);
  font-size: .93rem;
  margin: 0;
}

/* Contact form */
.contact-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--text-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,86,212,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Community page */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--blue);
}
.audience-card h3 { margin-bottom: .5rem; }
.audience-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

.engagement-list { display: flex; flex-direction: column; gap: .75rem; }
.engagement-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  color: var(--text-mid);
}
.engagement-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* How-it-works page */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 680px;
}
.flow-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.flow-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-step-body h3 { margin-bottom: .35rem; }
.flow-step-body p { color: var(--text-muted); font-size: .93rem; margin: 0; }

.ux-list { display: flex; flex-direction: column; gap: .6rem; }
.ux-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .93rem;
  color: var(--text-mid);
}
.ux-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Mission page specific */
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--blue);
}
.pillar-card h3 { margin-bottom: .5rem; }
.pillar-card p { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* Get involved specific */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.path-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}
.path-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-pale);
  transform: translateY(-2px);
}
.path-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.path-card h3 { margin-bottom: .5rem; }
.path-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }

.conversion-list { display: flex; flex-direction: column; gap: .5rem; }
.conversion-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .93rem;
  color: var(--text-mid);
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.conversion-list li:last-child { border-bottom: none; }
.conversion-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* Resources page */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}
.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.resource-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.resource-card p { color: var(--text-muted); font-size: .91rem; margin: 0; }
.resource-icon { font-size: 1.5rem; margin-bottom: .85rem; }

.suggested-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.suggested-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.suggested-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
}
.suggested-item::before { display: block; font-size: 1.2rem; margin-bottom: .4rem; }

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    padding: 1rem;
    gap: .3rem;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    z-index: 99;
  }
  .site-nav.open a {
    padding: .7rem 1rem;
    font-size: .95rem;
  }
  .site-nav.open a.nav-cta { margin-left: 0; margin-top: .35rem; text-align: center; }

  #site-header { position: relative; }
  .header-inner { position: relative; }

  .nav-toggle { display: flex; }

  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .highlight-card:last-child { border-bottom: none; }

  .campaign-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .involved-grid { grid-template-columns: 1fr; gap: 2rem; }
  .involve-cards { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .mission-pillars { grid-template-columns: 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .suggested-grid { grid-template-columns: repeat(2, 1fr); }

  .subcategories-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  #hero { padding: 4rem 0 3.5rem; }
  .hero-badges { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .involved-actions { flex-direction: column; }
  .suggested-grid { grid-template-columns: 1fr; }
}
