:root {
  color-scheme: light;
  --bg: #f7f8f4;
  --surface: #ffffff;
  --text: #1f2a1d;
  --muted: #5f6b5c;
  --accent: #4f8f4a;
  --border: #e3e8df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #eef4ea 0%, var(--bg) 220px);
  color: var(--text);
  line-height: 1.6;
}

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

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.hero h1,
header h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin: 0.25rem 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}

.lede,
.meta {
  color: var(--muted);
  font-size: 1.05rem;
}

section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  margin-top: 20px;
}

section h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f3f6ef;
}

ul {
  padding-left: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  padding-top: 8px;
}

.footer-links a {
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  th {
    display: none;
  }

  td {
    border: none;
    border-bottom: 1px solid var(--border);
    padding-left: 0;
  }

  td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--muted);
  }
}
