.download-header {
  border-bottom: 1px solid var(--line);
}

.download-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding: 70px 0 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.download-copy h1 {
  margin: 18px 0;
  font-size: clamp(46px, 5.7vw, 76px);
  line-height: 1.15;
  letter-spacing: -.05em;
}

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

.download-copy > p {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.store-grid {
  max-width: 650px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.store-card {
  min-height: 116px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  color: #fff;
  background: #201b24;
  box-shadow: 0 18px 35px rgba(38, 29, 45, .15);
  transition: transform .2s, box-shadow .2s;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(38, 29, 45, .22);
}

.google-store {
  background: linear-gradient(135deg, var(--purple-dark), #895da5);
}

.store-icon {
  width: 52px;
  flex: 0 0 52px;
  font-family: Arial, sans-serif;
  font-size: 53px;
  line-height: 1;
  text-align: center;
}

.play-icon {
  position: relative;
  width: 46px;
  height: 52px;
  flex: 0 0 46px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(150deg, #5ad6ec 0 45%, #8ed044 45% 62%, #ffd154 62% 77%, #f15a63 77%);
  clip-path: polygon(8% 0, 100% 50%, 8% 100%);
}

.store-copy {
  display: grid;
  text-align: right;
  line-height: 1.25;
}

.store-copy small {
  font-size: 11px;
  opacity: .7;
}

.store-copy strong {
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 22px;
  letter-spacing: -.02em;
}

.store-copy em {
  margin-top: 5px;
  color: #cfe99f;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.download-copy .availability-note {
  margin-top: 14px;
  font-size: 12px;
}

.download-visual {
  min-height: 590px;
  position: relative;
  display: grid;
  place-items: center;
}

.download-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 35%, rgba(145, 200, 62, .25), transparent 38%),
    var(--purple-soft);
}

.download-phone {
  width: 286px;
  position: relative;
  z-index: 2;
  transform: rotate(3deg);
}

.download-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 17px;
  border: 1px solid rgba(38, 29, 45, .08);
  border-radius: 15px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 15px 36px rgba(57, 39, 69, .12);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.chip-one { top: 19%; right: 0; }
.chip-two { bottom: 17%; left: -2%; }

.download-benefits {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-radius: 36px;
  background: var(--purple-soft);
}

.download-benefits article {
  padding: 26px;
  border: 1px solid rgba(185, 138, 224, .22);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
}

.download-benefits strong { color: var(--purple); font-size: 24px; }
.download-benefits h2 { margin: 12px 0 5px; font-size: 18px; }
.download-benefits p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

@media (max-width: 900px) {
  .download-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .download-copy > p,
  .store-grid {
    margin-inline: auto;
  }
  .download-copy .availability-note { margin-inline: auto; }
  .download-benefits { padding: 35px; }
}

@media (max-width: 600px) {
  .download-hero {
    width: calc(100% - 28px);
    padding: 55px 0 70px;
    gap: 20px;
  }
  .download-copy h1 { font-size: 44px; }
  .download-copy > p { font-size: 15px; }
  .store-grid { grid-template-columns: 1fr; }
  .store-card { min-height: 105px; }
  .download-visual { min-height: 510px; }
  .download-glow { width: 355px; height: 355px; }
  .download-phone { width: 235px; }
  .chip-one { right: -3%; }
  .chip-two { left: -3%; }
  .download-benefits {
    width: calc(100% - 28px);
    padding: 22px;
    grid-template-columns: 1fr;
    border-radius: 27px;
  }
}
