:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f6f8fb;
  line-height: 1.6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #f6f8fb;
  color: #172033;
}

a {
  color: #1759c7;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { text-decoration-thickness: 2px; }

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e9f0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner,
.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  color: #172033;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.top-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.top-nav a,
.site-footer a {
  margin: 0;
  font-size: 14px;
}

.hero {
  padding: 88px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d5f7a;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 6vw, 66px);
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 38px);
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.lead {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: 19px;
  color: #45536a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  background: #172033;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  background: #ffffff;
  color: #172033;
  border: 1px solid #cfd6e2;
}

.section {
  margin: 0 0 36px;
  padding: 36px;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card,
.info-box {
  padding: 22px;
  background: #f8fafc;
  border: 1px solid #e4e9f1;
  border-radius: 10px;
}

.card p,
.section p,
.section li {
  color: #46546b;
}

.steps {
  padding-left: 22px;
}

.steps li { margin-bottom: 14px; }

.split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact p { margin: 8px 0; }

.legal-page {
  padding: 64px 0 20px;
}

.legal-page > h1 {
  font-size: clamp(38px, 5vw, 56px);
}

.legal-page > .lead {
  margin-bottom: 36px;
}

.site-footer {
  margin-top: 64px;
  background: #172033;
  color: #dbe2ec;
}

.site-footer a { color: #ffffff; }

code {
  background: #edf1f6;
  padding: 2px 6px;
  border-radius: 5px;
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero { padding-top: 56px; }

  .grid,
  .split {
    grid-template-columns: 1fr;
  }

  .section { padding: 24px; }
}
