:root {
  --bg: #f7f9fc; --surface: #fff; --text: #172033; --muted: #5f6b7a;
  --primary: #2563eb; --border: #e2e8f0; --max: 1080px;
}
* { 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; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--border); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--text); font-weight: 750; letter-spacing: -.02em; font-size: 1.08rem; }
.nav-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: .94rem; }
.nav-links a { color: var(--muted); }
.hero { padding: 96px 0 88px; background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.hero-inner { max-width: 760px; }
.eyebrow { display: inline-block; margin-bottom: 18px; color: var(--primary); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 0 0 20px; font-size: clamp(2.3rem, 6vw, 4.25rem); line-height: 1.02; letter-spacing: -.045em; }
h2 { margin: 0 0 14px; font-size: 1.7rem; letter-spacing: -.025em; }
.lead { margin: 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 680px; }
.section { padding: 72px 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.card { padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; }
.card p { margin: 8px 0 0; color: var(--muted); }
.legal { padding: 64px 0 80px; background: var(--surface); }
.legal article { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); }
.legal h2 { margin-top: 38px; font-size: 1.35rem; }
.legal p, .legal li { color: #3f4b5c; }
.site-footer { border-top: 1px solid var(--border); padding: 28px 0; background: #fff; color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav { align-items: flex-start; padding: 18px 0; flex-direction: column; }
  .hero { padding: 70px 0 64px; }
  .cards { grid-template-columns: 1fr; }
}