:root {
  --background: #f6f8fb;
  --surface: #ffffff;
  --text: #182235;
  --muted: #617086;
  --line: #dde5ef;
  --blue: #2357d8;
  --green: #0f766e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.eyebrow,
.lead,
.section > p:not(.eyebrow),
.fact-card span,
.contact-card span,
.cards p {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

nav a,
.button,
.contact-card a {
  text-decoration: none;
}

nav a:hover,
.contact-card a {
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 36px;
  align-items: center;
  padding: 96px 7vw;
  background:
    radial-gradient(circle at 84% 18%, rgba(35, 87, 216, 0.16), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #edf4ff 54%, #f5fbfa 100%);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.lead,
.section > p:not(.eyebrow) {
  max-width: 780px;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.fact-card,
.contact-card,
.cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 48px rgba(24, 34, 53, 0.08);
}

.fact-card,
.contact-card {
  padding: 24px;
}

.fact-card p,
.contact-card p {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.fact-card p:last-child,
.contact-card p:last-child {
  border-bottom: 0;
}

.fact-card span,
.contact-card span {
  display: block;
  font-size: 13px;
}

.section {
  padding: 76px 7vw;
}

.section.light {
  background: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.cards article {
  padding: 24px;
}

.cards p {
  margin-bottom: 0;
}

footer {
  padding: 26px 7vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
