/* ============================================================
   FINANCIAL LITERACY ADVOCACY — SHARED STYLES
   ============================================================ */

:root {
  --red:       #d62828;
  --red-dark:  #a01010;
  --orange:    #f4a261;
  --navy:      #0d1b2a;
  --navy-mid:  #1b2d42;
  --white:     #ffffff;
  --off-white: #f5f5f0;
  --light-gray:#e8e8e0;
  --text:      #1a1a1a;
  --text-muted:#555555;
  --green:     #2a9d4e;
  --green-dark:#1e7a3c;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: clamp(1rem, 1.5vw, 1.1rem); }

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.nav-logo {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px !important;
}

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

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem 2rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
}

/* ── HERO ── */
.hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(27,45,66,0.80) 50%, rgba(42,26,13,0.88) 100%),
    var(--hero-photo, none);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 860px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero p {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(214,40,40,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-green {
  background: var(--green);
  color: var(--white);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(42,157,78,0.4); }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--red);
  color: var(--white);
  padding: 2.5rem 2rem;
}

.stat-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-block .number {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  display: block;
  line-height: 1;
}

.stat-block .label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner.narrow { max-width: 780px; }

.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }
.section-intro { color: var(--text-muted); font-size: 1.1rem; max-width: 680px; margin-bottom: 3rem; }

.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-label { color: var(--orange); }
.bg-navy h2 { color: var(--white); }
.bg-navy p, .bg-navy li { color: rgba(255,255,255,0.85); }

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 { margin-bottom: 0.5rem; color: var(--navy); }
.card p { color: var(--text-muted); font-size: 0.95rem; }

.card.card-red { border-top: 4px solid var(--red); }
.card.card-orange { border-top: 4px solid var(--orange); }
.card.card-navy { border-top: 4px solid var(--navy); }
.card.card-green { border-top: 4px solid var(--green); }

/* ── CALLOUT QUOTE ── */
.pullquote {
  border-left: 5px solid var(--red);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--off-white);
  border-radius: 0 10px 10px 0;
}

.pullquote p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.pullquote cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ── FACT BOX ── */
.fact-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.fact-box .fact-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
}

.fact-box .fact-text h4 { color: var(--white); margin-bottom: 0.4rem; }
.fact-box .fact-text p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin: 0; }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TIMELINE ── */
.timeline { list-style: none; position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
}

.timeline li {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}

.timeline li h4 { color: var(--navy); margin-bottom: 0.3rem; }
.timeline li p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(to bottom, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.90) 100%),
    var(--hero-photo, none);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

/* ── PETITION FORM ── */
.petition-wrap {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
  padding: 3rem;
  max-width: 620px;
  margin: 0 auto;
}

.petition-wrap h2 { color: var(--navy); margin-bottom: 0.5rem; }
.petition-wrap .subtext { color: var(--text-muted); margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.counter-badge {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: 10px;
}

.counter-badge .sig-count {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  display: block;
}

.counter-badge .sig-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.progress-bar-wrap {
  background: var(--light-gray);
  border-radius: 20px;
  height: 8px;
  margin-top: 0.75rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--red);
  border-radius: 20px;
  transition: width 1.5s ease;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.success-msg .check { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.success-msg h3 { color: var(--green); margin-bottom: 0.5rem; }
.success-msg p { color: var(--text-muted); }

/* ── REP SECTION ── */
.rep-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.rep-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 4px solid var(--navy);
  text-align: center;
}

.rep-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.rep-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

.rep-card .btn-contact {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.rep-card .btn-contact:hover { background: #0a1520; }

/* ── SHARE SECTION ── */
.share-strip {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}
.share-strip h3 { color: var(--white); margin-bottom: 0.5rem; }
.share-strip p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

.share-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-btn.twitter  { background: #1DA1F2; color: #fff; }
.share-btn.facebook { background: #1877F2; color: #fff; }
.share-btn.copy     { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); cursor: pointer; }

/* ── FOOTER ── */
footer {
  background: #080f18;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

footer a { color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── TAKE ACTION GRID ── */
@media (max-width: 768px) {
  .take-action-grid { grid-template-columns: 1fr !important; }
}

/* ── CARD ICON SVG ── */
.card-icon-svg {
  display: block;
  margin-bottom: 1rem;
  width: 44px;
  height: 44px;
}

.card-icon-svg svg { width: 100%; height: 100%; }

/* ── CARD DARK (navy bg cards) ── */
.card.card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── COMPARISON INFOGRAPHIC ── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-col {
  border-radius: 12px;
  overflow: hidden;
}

.comparison-header {
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.3px;
}

.comparison-col-left .comparison-header {
  background: var(--navy);
  color: var(--white);
}

.comparison-col-right .comparison-header {
  background: var(--red);
  color: var(--white);
}

.comparison-list {
  list-style: none;
  border: 2px solid var(--light-gray);
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.comparison-col-left .comparison-list { border-color: var(--navy); }
.comparison-col-right .comparison-list { border-color: var(--red); }

.comparison-list li {
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.comparison-list li:last-child { border-bottom: none; }

.comparison-col-left .comparison-list li { text-decoration: line-through; color: #aaa; }
.comparison-col-right .comparison-list li { color: var(--text); font-weight: 500; }

.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-muted);
}

@media (max-width: 680px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-vs { padding: 1rem 0; }
}

/* ── PROBLEM PAGE VISUAL ── */
.problem-visual {
  background: var(--white);
  border-radius: 14px;
  border: 2px solid var(--light-gray);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.problem-visual-header {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.problem-visual-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
}

.pv-col { padding: 1.5rem; }

.pv-col-label {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pv-knows .pv-col-label { color: var(--text-muted); }
.pv-faces .pv-col-label { color: var(--red); }

.pv-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

.pv-knows .pv-item {
  color: #bbb;
  text-decoration: line-through;
}

.pv-faces .pv-item {
  color: var(--text);
  font-weight: 500;
}

.pv-item:last-child { border-bottom: none; }

.pv-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  min-width: 60px;
}

@media (max-width: 600px) {
  .problem-visual-cols { grid-template-columns: 1fr; }
  .pv-arrow { min-width: 100%; padding: 0.5rem; }
}

/* ── BAR CHART ── */
.chart-container {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--light-gray);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legend-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.legend-yes { background: var(--green); }
.legend-no  { background: var(--red); }

.bar-chart { display: flex; flex-direction: column; gap: 0.6rem; }

.bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 50px;
  align-items: center;
  gap: 0.75rem;
}

.bar-label { font-size: 0.85rem; color: var(--text-muted); text-align: right; }

.bar-wrap { height: 28px; position: relative; }

.bar {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
  justify-content: flex-end;
  min-width: 60px;
  transition: width 1.2s ease;
}

.bar span { font-size: 0.78rem; font-weight: 700; color: var(--white); white-space: nowrap; }

.bar-yes { background: var(--green); }
.bar-no  { background: var(--red); }
.bar-avg { background: var(--navy); }

.bar-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}

.yes-tag { background: #d4f0de; color: var(--green-dark); }
.no-tag  { background: #fde0e0; color: var(--red-dark); }
.avg-tag { background: #dce4f0; color: var(--navy); }

.chart-divider .bar-label { font-weight: 700; color: var(--navy); }
.chart-divider { margin: 0.4rem 0; }

.chart-source { font-size: 0.78rem; color: var(--text-muted); margin-top: 1.25rem; }

/* ── GENERATIONAL CYCLE DIAGRAM ── */
.cycle-diagram {
  background: var(--white);
  border-radius: 14px;
  border: 2px solid var(--light-gray);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.cycle-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 1.5rem;
  text-align: center;
}

.cycle-nodes { display: flex; flex-direction: column; align-items: center; }

.cycle-node {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
}

.cycle-arrow-down { margin: 0.2rem 0; display: flex; justify-content: center; }

.cycle-break {
  margin-top: 1.5rem;
  background: #d4f0de;
  color: var(--green-dark);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid #a8ddb8;
}

/* ── RIPPLE CHAIN ── */
.ripple-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.ripple-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 130px;
  max-width: 150px;
  padding: 1.25rem 0.75rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.ripple-start { background: var(--navy); }
.ripple-mid   { background: var(--navy-mid); }
.ripple-bad   { background: var(--red-dark); }

.ripple-icon { margin-bottom: 0.75rem; }

.ripple-label {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.ripple-connector {
  width: 36px;
  height: 2px;
  background: var(--light-gray);
  flex-shrink: 0;
  position: relative;
}

.ripple-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -5px;
  border: 6px solid transparent;
  border-left-color: var(--light-gray);
}

@media (max-width: 860px) {
  .ripple-chain { flex-direction: column; gap: 0.5rem; }
  .ripple-connector { width: 2px; height: 28px; }
  .ripple-connector::after {
    right: -5px;
    top: auto;
    bottom: -1px;
    border-left-color: transparent;
    border-top-color: var(--light-gray);
  }
  .ripple-node { min-width: 220px; max-width: 280px; flex-direction: row; gap: 1rem; text-align: left; }
  .ripple-icon { flex-shrink: 0; }
}

/* ── MENTAL HEALTH VISUAL ── */
.mh-visual {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--light-gray);
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.mh-visual-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.mh-bar-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mh-condition { font-size: 0.85rem; color: var(--text-muted); }

.mh-bar-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 22px;
}

.mh-bar {
  height: 100%;
  background: var(--red);
  border-radius: 4px;
  transition: width 1.2s ease;
}

.mh-bar-wrap span { font-size: 0.8rem; font-weight: 700; color: var(--red); }

.mh-source { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }

/* ── STATES VISUAL ── */
.states-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.states-col-header {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.states-have .states-col-header { color: var(--green-dark); }
.states-havenot .states-col-header { color: var(--red-dark); }

.states-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }

.state-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.state-yes { background: #d4f0de; color: var(--green-dark); }
.state-no  { background: #fde0e0; color: var(--red-dark); }

.states-count { font-size: 0.85rem; font-weight: 700; color: var(--green-dark); }
.states-count-no { color: var(--red-dark); }

.states-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.states-vs-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.states-vs-num { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.states-vs-sub { font-size: 0.65rem; line-height: 1.3; opacity: 0.9; }

@media (max-width: 768px) {
  .states-visual { grid-template-columns: 1fr; }
  .states-vs { justify-content: flex-start; }
}

/* ── ALERT BANNER ── */
.alert-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.alert-banner a { color: var(--white); text-decoration: underline; }
