:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --text: #172033;
  --muted: #5d677a;
  --line: #dbe2ea;
  --brand: #17395f;
  --brand-2: #245b8d;
  --accent: #9a4d30;
  --shadow: 0 18px 50px rgba(23, 32, 51, 0.08);
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--brand-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand); }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--brand); color: #fff; font-weight: 900; letter-spacing: -.05em; }
.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 650; font-size: .94rem; }
.nav-links a:hover { color: var(--brand); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 12px 18px; font-weight: 750; text-decoration: none; border: 1px solid transparent; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #102f51; color: #fff; }
.btn-secondary { background: #fff; border-color: var(--line); color: var(--text); }
.hero { padding: 92px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--accent); font-weight: 850; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); line-height: .98; letter-spacing: -.055em; margin: 18px 0 26px; max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; letter-spacing: -.04em; margin: 0 0 18px; }
h3 { font-size: 1.2rem; margin: 0 0 10px; }
.lead { font-size: 1.24rem; color: var(--muted); max-width: 760px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-card { background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: 26px; box-shadow: var(--shadow); }
.status-row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: 0; }
.status-row span { color: var(--muted); }
.status-row strong { text-align: right; }
.section { padding: 76px 0; }
.section-alt { background: #edf2f7; border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 8px 28px rgba(23,32,51,.05); }
.card p { color: var(--muted); margin-bottom: 0; }
.kicker { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: #e7eef6; color: var(--brand); font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.callout { background: var(--brand); color: #fff; border-radius: 28px; padding: 36px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.callout p { color: #dce7f2; margin: 0; max-width: 720px; }
.callout .btn { background: #fff; color: var(--brand); white-space: nowrap; }
.legal-hero { padding: 70px 0 38px; }
.legal-shell { display: grid; grid-template-columns: 250px 1fr; gap: 34px; align-items: start; }
.legal-nav { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.legal-nav a { display: block; padding: 8px 0; text-decoration: none; font-weight: 650; color: var(--muted); }
.legal-content { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px, 4vw, 50px); }
.legal-content h2 { font-size: 1.6rem; margin-top: 42px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 28px; }
.legal-content p, .legal-content li { color: #3d4759; }
.legal-content li { margin: 8px 0; }
.note { border-left: 4px solid var(--accent); background: #fff8f5; padding: 16px 18px; border-radius: 0 12px 12px 0; margin: 24px 0; }
.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; }
.small { color: var(--muted); font-size: .9rem; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--brand); font-size: .86rem; text-transform: uppercase; letter-spacing: .05em; }
code { background: #edf2f7; border-radius: 6px; padding: 2px 6px; }
@media (max-width: 860px) {
  .hero-grid, .grid-3, .legal-shell, .callout { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .legal-nav { position: static; }
  .nav { align-items: flex-start; padding: 16px 0; }
  .nav-links { justify-content: flex-end; gap: 14px; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1160px); }
  .nav-links a:nth-child(1), .nav-links a:nth-child(2) { display: none; }
  .hero { padding-top: 48px; }
  .section { padding: 58px 0; }
}
