.download-page {
  background: #f6faff;
}

.download-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vw, 110px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 20%, rgba(112, 184, 255, .25), transparent 26%),
    radial-gradient(circle at 9% 86%, rgba(23, 120, 232, .08), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f2f8ff 100%);
}

.download-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(23, 120, 232, .045);
  border-radius: 50%;
  pointer-events: none;
}

.download-hero-grid {
  position: relative;
  z-index: 1;
}

.download-copy {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.download-copy h1 {
  max-width: 760px;
  margin: 22px 0 25px;
  font-size: clamp(50px, 6.4vw, 82px);
  line-height: .98;
}

.download-copy h1 em {
  color: var(--blue);
  font-style: normal;
}

.download-lead {
  max-width: 670px;
  margin: 0 auto;
  color: #536b83;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.download-stores {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  scroll-margin-top: 110px;
}

.store-badge {
  display: block;
  border-radius: 12px;
  transition: transform .18s ease, filter .18s ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-3px);
  filter: drop-shadow(0 10px 17px rgba(16, 36, 63, .17));
  outline: none;
}

.store-badge:focus-visible {
  box-shadow: 0 0 0 4px rgba(23, 120, 232, .25);
}

.store-badge img {
  width: auto;
  height: 58px;
}

.download-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.download-benefits {
  padding: clamp(76px, 9vw, 118px) 0;
  background: #fff;
}

.download-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.download-heading > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.download-heading h2 {
  margin: 13px 0 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.download-cards article {
  min-height: 260px;
  padding: 30px;
  background: var(--blue-pale);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.download-cards article:nth-child(2) {
  background: #edf7ff;
}

.download-cards article:nth-child(3) {
  background: #f7fbff;
}

.card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
}

.download-cards h3 {
  margin: 29px 0 10px;
  font-size: 26px;
}

.download-cards p {
  margin: 0;
  color: var(--muted);
}

.download-more {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 31px auto 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.download-more span {
  transition: transform .15s ease;
}

.download-more:hover span,
.download-more:focus-visible span {
  transform: translateX(4px);
}

@media (max-width: 1040px) {
  .download-hero {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .download-hero {
    padding: 62px 0 70px;
  }

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

  .download-cards article {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .download-hero {
    padding-top: 48px;
  }

  .download-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .download-stores {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .store-badge {
    display: flex;
    justify-content: center;
  }

  .store-badge img {
    height: 56px;
  }

  .download-heading h2 {
    font-size: 38px;
  }

  .download-cards article {
    padding: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-badge,
  .download-more span {
    transition: none;
  }
}
