:root {
  --blue: #0057d8;
  --blue-2: #0b63e5;
  --blue-light: #2e90fa;
  --blue-dark: #004dbf;
  --blue-soft: #eaf3ff;
  --text: #081a33;
  --text-2: #24364d;
  --muted: #5b6b80;
  --soft: #f6f9fd;
  --soft-2: #eef5ff;
  --border: #dde8f5;
  --card: #ffffff;
  --footer: #0b1b2e;
  --container: 1688px;
  --page-pad: 64px;
  --shadow: 0 12px 28px rgba(8, 26, 51, .06);
  --shadow-soft: 0 10px 24px rgba(8, 26, 51, .05);
  --shadow-hover: 0 18px 42px rgba(8, 26, 51, .10);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --font: "Manrope", "Inter", "Helvetica Neue", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--soft);
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  background: var(--soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
}

body.modal-open {
  overflow: hidden;
}

.container {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--container));
  margin: 0 auto;
}

.section {
  padding: 31px 0 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin: 0 auto 21px;
  max-width: 760px;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -.038em;
  color: var(--text);
}

.hero-title {
  font-size: clamp(34px, 4.1vw, 50px);
  line-height: 1.055;
  letter-spacing: -.047em;
  max-width: 555px;
}

.section-title {
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.034em;
}

.section-subtitle {
  margin-top: 8px;
  color: #607085;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.card-title {
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--text);
}

.card-text {
  font-size: 12.8px;
  line-height: 1.48;
  color: #586a80;
  font-weight: 500;
}

.muted {
  color: var(--muted);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(46, 144, 250, .45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --page-pad: 48px;
  }

  .hero-title {
    font-size: 42px;
  }

  .container {
    width: min(calc(100% - 64px), var(--container));
  }
}

@media (max-width: 780px) {
  :root {
    --page-pad: 24px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-title {
    font-size: 34px;
  }

  .section {
    padding-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


body, button, input, textarea, select {
  font-family: "Manrope", "Inter", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}
