:root {
  color: #142a35;
  background: #f5f8fa;
  font-family: Arial, Helvetica, sans-serif;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: #164ec1;
  text-underline-offset: 4px;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: #fff;
  padding: 14px;
  z-index: 2;
}
.skip:focus {
  top: 14px;
}
a:focus-visible {
  outline: 3px solid #e6991a;
  outline-offset: 4px;
}
.site-header,
main,
footer {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
.site-header {
  padding: 30px 0;
  border-bottom: 1px solid #d8e2e8;
}
.site-header img {
  display: block;
  width: 180px;
  height: auto;
}
main {
  padding: 90px 0;
}
.hero {
  max-width: 780px;
  padding-bottom: 88px;
}
.eyebrow {
  margin: 0 0 18px;
  color: #526672;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2 {
  margin: 0 0 22px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
p {
  max-width: 700px;
  color: #526672;
  font-size: 1.08rem;
  line-height: 1.7;
}
.products {
  padding: 48px;
  border: 1px solid #d8e2e8;
  border-radius: 14px;
  background: #fff;
}
.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 7px;
  background: #164ec1;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.button:hover {
  background: #123e97;
}
.small {
  margin-top: 28px;
  font-size: 0.88rem;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 40px;
  border-top: 1px solid #d8e2e8;
  color: #526672;
  font-size: 0.88rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
footer a {
  color: inherit;
}
@media (max-width: 600px) {
  .site-header,
  main,
  footer {
    width: min(100% - 36px, 1120px);
  }
  main {
    padding: 58px 0;
  }
  .hero {
    padding-bottom: 50px;
  }
  .products {
    padding: 28px 22px;
  }
  footer {
    flex-direction: column;
  }
}
