:root {
      --ink: #0d1b2a;
      --ink-2: #1f2a3a;
      --muted: #5e6c7f;
      --paper: #f5f2ee;
      --cream: #fdfbf8;
      --sun: #f9b267;
      --sage: #c7d9b9;
      --ocean: #2b78c5;
      --accent: #eb5a3c;
      --radius: 24px;
      --shadow: 0 18px 45px rgba(15, 24, 38, 0.12);
      --shadow-soft: 0 10px 30px rgba(15, 24, 38, 0.08);
    }

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

    body {
      font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
      background: var(--paper);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: "Fraunces", "Times New Roman", serif;
      color: var(--ink);
    }

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

    .aurora {
      position: fixed;
      inset: -20% 0 auto 0;
      height: 60vh;
      background: radial-gradient(circle at 20% 30%, rgba(249, 178, 103, 0.35), transparent 55%),
                  radial-gradient(circle at 80% 10%, rgba(43, 120, 197, 0.35), transparent 55%),
                  radial-gradient(circle at 60% 80%, rgba(199, 217, 185, 0.4), transparent 50%);
      filter: blur(40px);
      z-index: -1;
    }

    .container {
      width: min(1140px, 92vw);
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(20px);
      background: rgba(253, 251, 248, 0.75);
      border-bottom: 1px solid rgba(31, 42, 58, 0.08);
    }

    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 0;
    }

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean), var(--sun));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: white;
  border-radius: 14px;
  padding: 4px;
  box-shadow: var(--shadow-soft);
}

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-title {
      font-weight: 700;
    }

    .brand-subtitle {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .nav {
      display: flex;
      gap: 18px;
      font-size: 0.95rem;
      color: var(--muted);
    }

    .nav a {
      position: relative;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.2s ease;
    }

    .nav a:hover::after {
      transform: scaleX(1);
    }

    .cta {
      padding: 10px 18px;
      border-radius: 999px;
      background: var(--ink);
      color: white;
      font-weight: 600;
    }

    .hero {
      padding: 70px 0 40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      align-items: center;
    }

    .hero-copy h1 {
      font-size: clamp(2.2rem, 2vw + 2rem, 3.6rem);
      margin-bottom: 16px;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: 700;
      font-size: 0.75rem;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .lede {
      font-size: 1.1rem;
      color: var(--ink-2);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      margin: 24px 0;
      flex-wrap: wrap;
    }

    .primary {
      background: var(--accent);
      color: white;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 600;
      box-shadow: var(--shadow-soft);
    }

    .ghost {
      border: 1px solid rgba(31, 42, 58, 0.2);
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 600;
      background: white;
    }

    .info-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin-top: 24px;
      background: white;
      padding: 18px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .info-strip .label {
      font-size: 0.8rem;
      color: var(--muted);
      display: block;
    }

    .info-strip .value {
      font-weight: 700;
    }

    .hero-panel {
      display: grid;
      gap: 20px;
    }

    .panel-card {
      background: white;
      padding: 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

.panel-card.highlight {
  border: 1px solid rgba(235, 90, 60, 0.2);
  background: linear-gradient(145deg, rgba(235, 90, 60, 0.08), rgba(255, 255, 255, 0.9));
}

.checklist-section {
  background: linear-gradient(120deg, rgba(43, 120, 197, 0.12), rgba(235, 90, 60, 0.08));
}

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

.callout {
  margin-top: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 27, 42, 0.04);
}

.callout h4 {
  margin-bottom: 8px;
}

.meeting {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid rgba(31, 42, 58, 0.08);
}

.meeting:first-of-type {
  border-top: none;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 14px;
}

.checklist li {
  display: block;
}

.check-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  border-radius: 14px;
  padding: 10px 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.check-item:hover {
  background: rgba(31, 42, 58, 0.04);
  transform: translateY(-1px);
}

.check-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checklist .check {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid rgba(31, 42, 58, 0.25);
  background: white;
  margin-top: 4px;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.check-item input:checked + .check {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 16px rgba(235, 90, 60, 0.25);
}

.check-item input:checked + .check::after {
  content: "";
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-bottom: 2px;
}

.check-item input:checked ~ .check-copy strong {
  color: var(--accent);
}

.checklist p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

    .section {
      padding: 70px 0;
    }

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

    .section-title {
      margin-bottom: 30px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .card {
      background: white;
      padding: 26px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .card.media {
      display: grid;
      gap: 16px;
    }

    .media-block {
      height: 200px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(43, 120, 197, 0.2), rgba(249, 178, 103, 0.35));
      display: grid;
      place-items: center;
      color: var(--ink-2);
      font-weight: 600;
    }

    .timeline {
      display: grid;
      gap: 18px;
    }

    .timeline-step {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      align-items: start;
      background: white;
      padding: 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .timeline-step span {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: var(--sage);
      display: grid;
      place-items: center;
      font-weight: 700;
    }

    .stat {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid rgba(31, 42, 58, 0.08);
    }

    .stat:last-child {
      border-bottom: none;
    }

    .stat-label {
      color: var(--muted);
    }

    .stat-value {
      font-weight: 700;
    }

    .simple-list {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .faq {
      display: grid;
      gap: 12px;
    }

    .faq details {
      background: white;
      padding: 18px 22px;
      border-radius: 18px;
      box-shadow: var(--shadow-soft);
    }

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq details {
  border: 1px solid rgba(31, 42, 58, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq details[open] {
  box-shadow: 0 16px 40px rgba(15, 24, 38, 0.12);
  transform: translateY(-1px);
}

.faq details p {
  margin-top: 10px;
  color: var(--muted);
}

.faq summary::marker {
  color: var(--accent);
}

.cost-summary {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.cost-summary h3 {
  margin-bottom: 12px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.summary-grid .label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.purpose-section {
  background: linear-gradient(180deg, rgba(253, 251, 248, 0.9), rgba(245, 242, 238, 0.9));
}

.purpose-card {
  display: grid;
  gap: 16px;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.icon-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.icon-list .icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(43, 120, 197, 0.12);
  color: var(--ocean);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-top: 4px;
}

.icon-list li strong {
  display: block;
}

.icon-list li p {
  color: var(--muted);
  margin-top: 4px;
}

.rationale {
  background: var(--cream);
}

.rationale-intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.highlight-stat {
  background: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 6px;
}

.highlight-stat strong {
  font-size: 1.4rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.project-card {
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
}

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

.funding {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: start;
  margin-bottom: 32px;
}

.funding-callout {
  background: linear-gradient(135deg, rgba(43, 120, 197, 0.12), rgba(235, 90, 60, 0.12));
  padding: 20px;
  border-radius: 20px;
  display: grid;
  gap: 10px;
}

.funding-callout strong {
  font-size: 1.1rem;
}

.table-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

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

th, td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(31, 42, 58, 0.08);
  font-size: 0.95rem;
}

thead th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

tfoot th {
  font-weight: 700;
}

    .doc-card {
      background: white;
      padding: 18px;
      border-radius: 18px;
      box-shadow: var(--shadow-soft);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .doc-meta {
      color: var(--muted);
      font-size: 0.85rem;
    }

    .vote {
      background: linear-gradient(120deg, rgba(43, 120, 197, 0.15), rgba(235, 90, 60, 0.15));
    }

    .vote-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      align-items: center;
    }

    .vote-card {
      background: white;
      padding: 24px;
      border-radius: 22px;
      box-shadow: var(--shadow);
      display: grid;
      gap: 12px;
    }

    .text-link {
      color: var(--ocean);
      font-weight: 600;
    }

    .site-footer {
      padding: 40px 0 60px;
      background: #111827;
      color: #f8fafc;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }

    .footer-note {
      color: rgba(248, 250, 252, 0.7);
      margin-top: 12px;
    }

    @media (max-width: 900px) {
      .nav {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .site-header .container {
        flex-wrap: wrap;
        justify-content: center;
      }
      .info-strip {
        padding: 16px;
      }
    }
