:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #eef2f7;
}

* { box-sizing: border-box; }
body { margin: 0; line-height: 1.65; }
a { color: #b45309; }
header { background: #172033; color: #fff; }
.nav, main, footer { width: min(920px, calc(100% - 32px)); margin: 0 auto; }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { color: #fff; text-decoration: none; font-size: 1.25rem; font-weight: 900; }
.nav-links { display: flex; flex-wrap: wrap; gap: 14px; }
.nav-links a { color: #cbd5e1; text-decoration: none; font-size: .9rem; font-weight: 700; }
main { background: #fff; margin-top: 28px; margin-bottom: 28px; padding: clamp(24px, 5vw, 54px); border: 1px solid #e2e8f0; border-radius: 24px; box-shadow: 0 12px 32px rgba(15, 23, 42, .08); }
h1 { margin-top: 0; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.12; }
h2 { margin-top: 2rem; line-height: 1.25; }
h3 { margin-top: 1.4rem; }
.eyebrow { color: #d97706; text-transform: uppercase; letter-spacing: .09em; font-size: .75rem; font-weight: 900; }
.lead { color: #475569; font-size: 1.08rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 28px; }
.card { display: block; padding: 18px; border: 1px solid #e2e8f0; border-radius: 16px; color: #172033; text-decoration: none; background: #f8fafc; }
.card strong { display: block; margin-bottom: 4px; }
.notice { padding: 14px 16px; border-left: 4px solid #d97706; background: #fff7ed; border-radius: 8px; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; }
th, td { border: 1px solid #e2e8f0; padding: 10px; text-align: left; vertical-align: top; }
th { background: #f8fafc; }
footer { padding: 0 0 32px; color: #64748b; font-size: .85rem; }
@media (max-width: 700px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex: 0 0 auto; }
  main { margin-top: 16px; padding: 24px 18px; }
}
