:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #182c42;
  background: #f5f7fa;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 3px solid #1e65b4;
  outline-offset: 5px;
  border-radius: 5px;
}
.page {
  max-width: 1184px;
  margin: 0 auto;
  padding: 0 48px;
}
header {
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 730;
  letter-spacing: -0.8px;
}
.preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #465d76;
  border: 1px solid #dce3ec;
  border-radius: 99px;
  padding: 8px 12px;
  background: #fff;
}
.preview span {
  width: 6px;
  height: 6px;
  background: #3978bc;
  border-radius: 50%;
}
main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 84px;
  padding: 74px 0 112px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: #586d82;
  margin: 0 0 22px;
}
h1 {
  font-size: clamp(48px, 5.3vw, 68px);
  font-weight: 660;
  line-height: 1.06;
  letter-spacing: -3.5px;
  margin: 0 0 26px;
}
h1 span {
  color: #246abb;
}
.description {
  font-size: 17px;
  line-height: 1.75;
  color: #536477;
  max-width: 420px;
  margin: 0 0 32px;
}
.download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 23px;
  background: #246abb;
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px #195aa019;
  transition:
    background 0.15s,
    transform 0.15s;
}
.download:hover {
  background: #19599f;
  transform: translateY(-1px);
}
.compatibility {
  font-size: 12px;
  color: #536477;
  margin: 15px 0 0;
}
.compatibility span {
  margin: 0 6px;
}
.build {
  font-size: 11px;
  color: #667588;
  margin: 9px 0 0;
}
.build code {
  font-size: 11px;
  color: #415873;
}
.build span {
  margin: 0 7px;
  color: #667588;
}
.install {
  border: 1px solid #dde5ee;
  border-radius: 20px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 10px 35px #142e4805;
}
.card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.card-icon {
  display: grid;
  place-items: center;
  background: #edf4fc;
  color: #246abb;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  font-size: 24px;
  border-radius: 10px;
}
h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: -0.4px;
}
ol {
  list-style: none;
  counter-reset: steps;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 25px;
}
li {
  display: flex;
  gap: 14px;
  counter-increment: steps;
}
li:before {
  content: counter(steps);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #dce6f1;
  background: #f7faff;
  color: #4b6d94;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 650;
}
h3 {
  font-size: 13px;
  font-weight: 650;
  margin: 3px 0 7px;
}
li p {
  font-size: 13px;
  line-height: 1.7;
  color: #5b6c80;
  margin: 0;
}
li strong {
  font-weight: 600;
  color: #405873;
}
.testing-note {
  border-top: 1px solid #e8edf3;
  margin: 27px 0 0;
  padding-top: 20px;
  color: #637487;
  font-size: 11px;
  line-height: 1.75;
}
footer {
  border-top: 1px solid #dfe6ed;
  padding: 25px 0 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  color: #617286;
}
footer p {
  margin: 0;
}
footer div {
  display: flex;
  gap: 12px;
}
footer a {
  text-underline-offset: 4px;
  text-decoration-color: #acbbcc;
}
footer a:hover {
  color: #246abb;
}
@media (min-width: 1400px) {
  main {
    padding-top: 105px;
    padding-bottom: 135px;
  }
}
@media (max-width: 900px) {
  .page {
    padding: 0 32px;
  }
  main {
    gap: 36px;
    padding: 50px 0 75px;
  }
  h1 {
    font-size: 54px;
    letter-spacing: -2.8px;
  }
  .install {
    padding: 25px;
  }
  .description {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .page {
    padding: 0 24px;
  }
  header {
    height: 96px;
  }
  .brand {
    font-size: 21px;
    gap: 9px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .preview {
    font-size: 10px;
    padding: 7px 9px;
    gap: 6px;
  }
  main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 34px 0 42px;
  }
  h1 {
    font-size: 56px;
    letter-spacing: -3px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.8px;
  }
  .description {
    max-width: 470px;
    margin-bottom: 26px;
  }
  .download {
    width: 100%;
    font-size: 15px;
  }
  .compatibility,
  .build {
    text-align: center;
  }
  .install {
    padding: 26px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
    font-size: 11px;
    gap: 14px;
    padding-bottom: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .download {
    transition: none;
  }
  .download:hover {
    transform: none;
  }
}
