:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #172033;
  --muted: #5d6b7d;
  --line: #d9e1eb;
  --accent: #176b5d;
  --accent-2: #2f5f9f;
  --warn: #b7791f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .04em; }
.mark { width: 30px; height: 30px; border-radius: 7px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: inline-block; }
.nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 48px; align-items: center; padding: 70px 0 34px; }
.eyebrow { color: var(--accent); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
h1 { margin: 14px 0 0; font-size: clamp(42px, 6vw, 76px); line-height: .96; letter-spacing: 0; }
.lead { margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 650px; }
.actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 8px; padding: 0 18px; font-weight: 750; background: #152034; color: #fff; }
.button.secondary { background: #e6edf3; color: #1d2735; }
.panel, .card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 18px 60px rgba(23, 32, 51, .08); }
.panel { padding: 24px; }
.panel-title { margin: 0 0 8px; font-size: 15px; color: var(--muted); }
.status-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 17px 0; border-bottom: 1px solid #edf1f6; }
.status-row:last-child { border-bottom: 0; }
.label { color: var(--muted); }
.value { font-weight: 800; color: var(--ink); }
.ok { color: var(--accent); }
.section { padding: 54px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 18px; }
.section h2 { margin: 0; font-size: clamp(26px, 4vw, 40px); line-height: 1.05; }
.section p { color: var(--muted); line-height: 1.65; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { padding: 22px; box-shadow: none; }
.card h3 { margin: 0 0 10px; font-size: 18px; }
.card p { margin: 0; }
.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 28px; align-items: start; }
.list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.list li { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; }
.table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.table th, .table td { padding: 14px 16px; border-bottom: 1px solid #edf1f6; text-align: left; }
.table th { color: var(--muted); font-size: 13px; font-weight: 750; }
.table tr:last-child td { border-bottom: 0; }
.footer { margin-top: 42px; padding: 28px 0 38px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; display: flex; justify-content: space-between; gap: 16px; }
@media (max-width: 820px) {
  .site-header, .hero, .split, .section-head, .footer { display: block; }
  .nav { margin-top: 14px; flex-wrap: wrap; }
  .hero { padding-top: 46px; }
  .panel { margin-top: 28px; }
  .grid { grid-template-columns: 1fr; }
}
