:root {
  --bg: #fafbfc; --panel: #ffffff; --text: #1a2230; --muted: #5b6675;
  --accent: #2563eb; --accent-ink: #ffffff; --border: #e3e7ee;
  --good: #059669; --new: #d97706;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
main { max-width: 1080px; margin: 0 auto; padding: 0 20px 64px; }
.site-header { background: var(--panel); border-bottom: 1px solid var(--border); }
.site-header nav { max-width: 1080px; margin: 0 auto; padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.brand { font-weight: 800; font-size: 20px; color: var(--text); }
.brand span { color: var(--accent); }
.links a { margin-left: 18px; color: var(--muted); font-size: 15px; }
.links a:hover { color: var(--text); }
h1 { font-size: 34px; line-height: 1.2; margin: 36px 0 8px; }
.lede { color: var(--muted); font-size: 18px; max-width: 720px; }
h2 { margin-top: 40px; font-size: 24px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 22px; margin: 18px 0; box-shadow: 0 1px 2px rgba(16,24,40,.04); }
label { display: block; margin: 12px 0 4px; color: var(--muted); font-size: 14px; }
textarea, input[type=text], input[type=number], select {
  width: 100%; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border);
  background: #fff; color: var(--text); font-size: 15px; font-family: inherit; }
textarea { min-height: 180px; resize: vertical; }
.btn { display: inline-block; background: var(--accent); color: var(--accent-ink);
  font-weight: 700; padding: 10px 22px; border-radius: 8px; border: none;
  font-size: 16px; cursor: pointer; }
.btn:hover { filter: brightness(1.08); text-decoration: none; }
.stats { display: flex; gap: 24px; flex-wrap: wrap; margin: 16px 0; }
.stat { background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 20px; min-width: 150px; }
.stat .num { font-size: 28px; font-weight: 800; }
.stat .lab { color: var(--muted); font-size: 13px; }
.tablewrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 14px;
  background: var(--panel); }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border);
  white-space: nowrap; }
th { color: var(--muted); font-weight: 600; position: sticky; top: 0; background: var(--panel); }
th.sortable { cursor: pointer; }
th.sortable:hover { color: var(--text); }
td.name { white-space: normal; min-width: 220px; }
.badge-new { display: inline-block; background: rgba(217,119,6,.12); color: var(--new);
  font-size: 11px; font-weight: 800; border-radius: 8px; padding: 1px 7px; margin-left: 6px; }
.filters { display: flex; gap: 12px; flex-wrap: wrap; align-items: end; margin: 14px 0; }
.filters > div { flex: 1 1 180px; }
.muted { color: var(--muted); font-size: 14px; }
.faq h3 { margin-bottom: 4px; }
.notice { background: rgba(37,99,235,.06); border: 1px solid rgba(37,99,235,.25);
  border-radius: 8px; padding: 10px 14px; font-size: 14px; color: var(--muted); }
.site-footer { border-top: 1px solid var(--border); margin-top: 48px; background: var(--panel); }
.site-footer p { max-width: 1080px; margin: 14px auto; padding: 0 20px;
  color: var(--muted); font-size: 13px; }
