:root {
  --bg: #f6f7f4;
  --ink: #17201b;
  --muted: #647067;
  --line: #d7ddd5;
  --panel: #ffffff;
  --panel-2: #eef3ee;
  --accent: #0b6b5b;
  --accent-2: #bf8a18;
  --danger: #9f2f35;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}
a { color: inherit; }
.site-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 0 28px;
  background: rgba(255,255,255,0.88);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}
nav a { text-decoration: none; }
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 60px;
}
.narrow { width: min(760px, calc(100% - 32px)); }
.hero {
  padding: 42px 0 34px;
  border-bottom: 1px solid var(--line);
}
.hero.compact { padding: 32px 0 26px; }
.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  margin: 10px 0 16px;
  max-width: 920px;
  letter-spacing: 0;
}
h2 {
  font-size: 22px;
  margin: 0 0 14px;
}
p {
  color: var(--muted);
  line-height: 1.65;
}
.hero p { max-width: 780px; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  background: #fff;
}
.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.risk-note {
  color: var(--danger);
  font-size: 14px;
}
.card-grid, .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.card, article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.link-card {
  display: block;
  text-decoration: none;
}
.link-card span {
  display: block;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.link-card strong {
  display: block;
  font-size: 18px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.metric {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.metric b {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}
.metric span { color: var(--muted); font-size: 13px; }
.table-section, .faq-section {
  margin: 24px 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
}
th, td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
th { color: var(--accent); background: var(--panel-2); }
details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
summary {
  cursor: pointer;
  font-weight: 700;
}
.check-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #e7f4ef;
  color: var(--accent);
}
footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 40px;
  font-size: 13px;
}
@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 16px;
  }
  main { width: min(100% - 20px, 1180px); }
  h1 { font-size: 34px; }
}
