:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #56616a;
  --line: #d9e1e5;
  --surface: #ffffff;
  --band: #f5f8f7;
  --accent: #0f766e;
  --accent-strong: #134e4a;
  --warn: #8a4b0f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}
a { color: var(--accent-strong); }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
}
nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
nav a {
  color: var(--muted);
  text-decoration: none;
}
.hero {
  padding: clamp(44px, 8vw, 92px) clamp(18px, 5vw, 56px);
  background: linear-gradient(120deg, #eef7f4, #fff8ea);
}
.hero.compact {
  padding-block: clamp(34px, 6vw, 62px);
}
.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.02;
}
.hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}
.eyebrow {
  color: var(--accent-strong);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
.button {
  color: #fff;
  background: var(--accent);
}
.secondary-button {
  color: var(--accent-strong);
  border: 1px solid var(--accent);
}
.status-band {
  padding: 16px clamp(18px, 5vw, 56px);
  color: var(--warn);
  background: #fff6e7;
  border-block: 1px solid #eed7b7;
}
.guide-grid,
.recommendation-grid,
.candidate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding: clamp(24px, 5vw, 56px);
}
.category-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.category-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--accent-strong);
  background: #fff;
}
.guide-card,
.recommendation,
.candidate-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}
.guide-card h2,
.recommendation h3,
.candidate-card h2 {
  margin-top: 0;
}
.candidate-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.content,
.band {
  padding: clamp(24px, 5vw, 56px);
}
.content {
  max-width: 920px;
}
.band {
  background: var(--band);
  border-block: 1px solid var(--line);
}
.section-heading h2 {
  margin-top: 0;
}
.disclosure-inline,
.fine-print,
.source-list {
  color: var(--muted);
  font-size: .95rem;
}
.recommendation {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.tool label {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
}
input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
}
output {
  display: block;
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 800;
}
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
footer {
  padding: 28px clamp(18px, 5vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
@media (max-width: 680px) {
  .site-header,
  .recommendation {
    display: block;
  }
  nav { margin-top: 12px; }
  .button,
  .secondary-button {
    width: 100%;
  }
}