:root {
  --ink: #071a45;
  --text: #25324a;
  --muted: #68738a;
  --accent: #1769e0;
  --line: #dfe5ef;
}

* { box-sizing: border-box; }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: #fff; }
body { margin: 0; min-height: 100vh; }
a { color: inherit; }

.topbar, main, footer { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.topbar { min-height: 74px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.name { color: var(--ink); font-weight: 750; text-decoration: none; letter-spacing: .02em; }

.hero { padding: 110px 0 90px; max-width: 850px; }
.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 0; color: var(--ink); font-size: clamp(3rem, 8vw, 6.7rem); line-height: .96; letter-spacing: -.055em; }
.lead { max-width: 760px; margin: 32px 0 0; font-size: clamp(1.2rem, 2.3vw, 1.7rem); line-height: 1.48; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; padding: 12px 20px; border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 650; border-radius: 3px; }
.button.primary { background: var(--ink); border-color: var(--ink); color: #fff; }

footer { padding: 34px 0 48px; color: var(--muted); font-size: .82rem; }

@media (max-width: 700px) {
  .topbar, main, footer { width: min(100% - 28px, 1120px); }
  .hero { padding: 72px 0 58px; }
}
