:root {
  --ink: #14212b;
  --muted: #5b6b77;
  --line: #dfe5ea;
  --bg: #f6f8fa;
  --card: #ffffff;
  --brand: #0f6e4f;
  --brand-ink: #ffffff;
  --brand-soft: #e5f3ee;
  --warn: #9a5b00;
  --warn-soft: #fff4e0;
  --bad: #b3261e;
  --radius: 12px;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); line-height: 1.5; font-size: 16px; }
a { color: var(--brand); }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 16px; }
header.top { background: var(--card); border-bottom: 1px solid var(--line); }
header.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 60px; flex-wrap: wrap; }
.logo { font-weight: 800; font-size: 20px; letter-spacing: .5px; text-decoration: none; color: var(--ink); }
.logo span { color: var(--brand); }
nav.top a { margin-left: 16px; text-decoration: none; color: var(--muted); font-size: 15px; }
main { padding: 28px 0 64px; }
h1 { font-size: 30px; line-height: 1.2; margin: 0 0 12px; }
h2 { font-size: 21px; margin: 28px 0 10px; }
h3 { font-size: 17px; margin: 18px 0 8px; }
p.lead { font-size: 19px; color: var(--muted); max-width: 640px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin: 16px 0; }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.btn { display: inline-block; border: 1px solid var(--brand); background: var(--brand); color: var(--brand-ink); padding: 10px 16px; border-radius: 8px; font: inherit; font-weight: 600; cursor: pointer; text-decoration: none; }
.btn:disabled { opacity: .5; cursor: default; }
.btn.ghost { background: transparent; color: var(--brand); }
.btn.small { padding: 5px 10px; font-size: 14px; }
.btn.danger { background: transparent; border-color: var(--bad); color: var(--bad); }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
label { display: block; font-weight: 600; font-size: 14px; margin: 12px 0 4px; }
input, select, textarea { font: inherit; padding: 9px 11px; border: 1px solid var(--line); border-radius: 8px; width: 100%; background: #fff; color: var(--ink); }
input[type=radio] { width: auto; }
textarea { min-height: 110px; }
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: 15px; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
th { font-size: 13px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.tick { color: var(--brand); font-weight: 700; }
.pending { color: var(--muted); }
.notice { background: var(--brand-soft); border-radius: 8px; padding: 10px 14px; margin: 12px 0; }
.notice.warn { background: var(--warn-soft); color: var(--warn); }
.notice.bad { background: #fdecea; color: var(--bad); }
.pill { display: inline-block; font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 99px; background: var(--brand-soft); color: var(--brand); }
.pill.grey { background: #eceff2; color: var(--muted); }
.q { border-top: 1px solid var(--line); padding: 14px 0; }
.q:first-of-type { border-top: 0; }
.q .text { font-weight: 600; margin-bottom: 8px; }
.scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.scale label { margin: 0; font-weight: 400; font-size: 13px; text-align: center; border: 1px solid var(--line); border-radius: 8px; padding: 8px 4px; cursor: pointer; background: #fff; }
.scale input { display: block; margin: 0 auto 4px; }
.scale label:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.bar { height: 8px; background: #eceff2; border-radius: 99px; overflow: hidden; min-width: 60px; }
.bar > i { display: block; height: 100%; background: var(--brand); }
footer.bottom { border-top: 1px solid var(--line); padding: 20px 0 40px; color: var(--muted); font-size: 14px; }
footer.bottom a { color: var(--muted); margin-right: 14px; }
.steps { counter-reset: s; list-style: none; padding: 0; }
.steps li { counter-increment: s; position: relative; padding-left: 44px; margin: 14px 0; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: -2px; width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; }
.hidden { display: none !important; }
@media (max-width: 520px) {
  h1 { font-size: 25px; }
  .scale { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .scale label { font-size: 11px; padding: 6px 2px; }
  nav.top a { margin-left: 10px; }
}
.card > h1:first-child, .card > h2:first-child, .card > h3:first-child { margin-top: 0; }
