:root {
  --accent: #45b802;
  --accent-dark: #173126;
  --bg: #eff4f1;
  --text: #111111;
  --muted: #4f6258;
  --soft: #f9f9f7;
  --border: #dfe9e2;
  --card: #ffffff;
  --danger-bg: #fff5f5;
  --shadow: 0 18px 42px rgba(23, 49, 38, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(69, 184, 2, 0.1), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-dark);
}

.site-shell {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}

.site-shell-wide {
  max-width: min(90vw, 1600px);
}

.site-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.site-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex: 0 0 auto;
}

.site-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: sitePulse 2s ease-in-out infinite;
}

@keyframes sitePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(3);
    opacity: 0;
  }
}

.site-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px 24px 30px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 7vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--accent-dark);
}

.lead {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.body-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.body-copy p {
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.cta-row-split {
  width: 100%;
  align-items: center;
}

.cta-row-split .button:last-child {
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.button:hover,
.button:focus-visible {
  opacity: 0.9;
}

.button-primary {
  background: var(--accent-dark);
  color: #ffffff;
}

.button-secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--accent-dark);
}

.callout {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--danger-bg);
  color: var(--accent-dark);
  font-size: 14px;
  line-height: 1.6;
}

.muted-note {
  margin-top: 16px;
  color: #607068;
  font-size: 13px;
  line-height: 1.6;
}

.footer {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 10px 20px;
  color: #73847b;
  font-size: 12px;
}

.footer-item {
  min-width: 0;
}

.footer-item-left {
  text-align: left;
}

.footer-item-center {
  text-align: center;
}

.footer-item-right {
  text-align: right;
}

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

.bullet-list {
  margin: 20px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.75;
}

.bullet-list li + li {
  margin-top: 10px;
}

.table-wrap {
  width: 90%;
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.public-works-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px 0;
  table-layout: fixed;
}

.public-works-table th,
.public-works-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  color: var(--muted);
  line-height: 1.55;
  background: #ffffff;
}

.public-works-table th {
  background: #f4f8f5;
  color: var(--accent-dark);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.public-works-table tbody tr:last-child td {
  border-bottom: none;
}

.public-works-table td:nth-child(1),
.public-works-table td:nth-child(2),
.public-works-table td:nth-child(3) {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.public-works-table td:nth-child(4) {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.public-works-table th:nth-child(1),
.public-works-table td:nth-child(1) {
  width: 20%;
}

.public-works-table th:nth-child(2),
.public-works-table td:nth-child(2) {
  width: 14%;
}

.public-works-table th:nth-child(3),
.public-works-table td:nth-child(3) {
  width: 18%;
}

.public-works-table th:nth-child(4),
.public-works-table td:nth-child(4) {
  width: 48%;
}

.redirect-card {
  max-width: 560px;
  margin: 72px auto;
  padding: 24px 22px;
  text-align: center;
}

@media (max-width: 640px) {
  .site-shell {
    padding: 24px 16px 40px;
  }

  .site-shell-wide {
    max-width: 100%;
  }

  .hero-card {
    padding: 22px 18px 24px;
  }

  .body-copy {
    gap: 14px;
    font-size: 15px;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row-split .button:last-child {
    margin-left: 0;
  }

  .button {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-item-left,
  .footer-item-center,
  .footer-item-right {
    text-align: center;
  }

  .table-wrap {
    width: 100%;
  }
}
