* {
  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: #172033;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e8ebf0;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: #44506a;
  font-weight: 600;
  font-size: .95rem;
}

.hero {
  padding: 96px 0 88px;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef3f8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
  color: #5a6d88;
}

h1, h2, h3 {
  line-height: 1.15;
  color: #111827;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  letter-spacing: -.04em;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.03em;
}

h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: 1.16rem;
  color: #4b5567;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: #172033;
  color: #fff;
}

.button.secondary {
  background: #fff;
  border: 1px solid #dce1e8;
}

.hero-card,
.card,
.contact-box {
  background: #fff;
  border: 1px solid #e2e7ee;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, .06);
}

.hero-card {
  padding: 30px;
  display: grid;
  gap: 10px;
}

.hero-card span {
  color: #6b7280;
  margin-bottom: 6px;
}

.hero-card strong {
  font-size: 1.3rem;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f3;
}

.hero-card strong:last-child {
  border-bottom: 0;
}

.section {
  padding: 84px 0;
}

.section.muted {
  background: #f7f9fb;
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.split p {
  margin-top: 0;
  color: #505a6f;
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.card {
  padding: 26px;
  box-shadow: none;
}

.card p {
  margin-bottom: 0;
  color: #5b6477;
}

.contact-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid #aeb7c3;
}

.contact-box {
  padding: 28px;
  box-shadow: none;
}

.small {
  color: #6b7280;
  font-size: .9rem;
}

.policy {
  max-width: 820px;
}

.policy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 34px;
}

.policy h2 {
  margin-top: 36px;
  font-size: 1.45rem;
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-wrap p {
  margin: 0;
}

.footer-wrap a {
  color: #fff;
}

@media (max-width: 820px) {
  .hero-grid,
  .split,
  .contact-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .nav {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .nav a:not(:last-child) {
    display: none;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
