:root {
  --ink: #18202a;
  --muted: #5b6675;
  --line: #d9dee6;
  --paper: #f8fafc;
  --accent: #1f7a6d;
  --accent-2: #b45309;
  --white: #ffffff;
  --soft: #eef4f3;
}
* { box-sizing: border-box; }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); }
body { margin: 0; line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header { background: var(--white); border-bottom: 1px solid var(--line); }
.wrap { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0; color: var(--ink); }
.brand-mark { width: 34px; height: 34px; border-radius: 6px; display: grid; place-items: center; color: white; background: var(--accent); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: 14px; }
.hero { background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%); border-bottom: 1px solid var(--line); }
.hero-inner { min-height: 420px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 54px 0; }
h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.04; margin: 0 0 20px; letter-spacing: 0; }
.lead { font-size: 19px; color: var(--muted); max-width: 680px; margin: 0; }
.hero-panel { border-left: 4px solid var(--accent); padding: 24px; background: rgba(255,255,255,0.72); }
.hero-panel p { color: var(--muted); margin: 8px 0 0; }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.metric { border-top: 1px solid var(--line); padding-top: 14px; }
.metric strong { display: block; font-size: 24px; }
.metric span { color: var(--muted); font-size: 13px; }
section { padding: 52px 0; }
.section-title { font-size: 28px; margin: 0 0 24px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.card h3 { margin: 0 0 10px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
.band { background: #24313d; color: white; }
.band .section-title, .band a { color: white; }
.band p { color: #d9e0e8; max-width: 760px; }
.footer { padding: 30px 0; color: var(--muted); border-top: 1px solid var(--line); background: var(--white); font-size: 14px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.page-main { padding: 48px 0 72px; }
.page-main article { max-width: 780px; }
.page-main h1 { font-size: 42px; }
.page-main p, .page-main li { color: var(--muted); }
.notice { border-left: 4px solid var(--accent-2); background: #fff7ed; padding: 16px 18px; color: #6b3a08; }
.table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.table th, .table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.table th { font-size: 13px; color: var(--muted); background: #f3f6f8; }
.table tr:last-child td { border-bottom: 0; }
.badge { display: inline-flex; align-items: center; min-height: 24px; padding: 2px 9px; border-radius: 999px; background: #e8f5f1; color: #116354; font-size: 13px; font-weight: 650; }
.error-box { max-width: 680px; padding: 56px 0 72px; }
.error-code { font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { flex-wrap: wrap; gap: 14px; }
  .hero-inner { grid-template-columns: 1fr; gap: 26px; min-height: 0; }
  .grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .table { display: block; overflow-x: auto; }
}
