.app-hero {
  padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
}

.app-hero .section-lead {
  max-width: 760px;
  margin: clamp(1rem, 1.8vw, 1.35rem) auto 0;
  line-height: 1.55;
}

.app-hero h1 {
  max-width: 100%;
  font-size: clamp(3.25rem, 6.5vw, 6.5rem);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.app-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-top: clamp(0.75rem, 1.4vw, 1.25rem);
}

.app-download-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(29, 35, 43, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(29, 35, 43, 0.09);
}

.app-download-card h2,
.app-download-card p {
  margin: 0;
}

.app-download-card .actions {
  margin-top: auto;
}

.app-platform {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #c8f000;
  color: #1d232b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-version {
  color: rgba(29, 35, 43, 0.7);
  font-size: 0.9rem;
}

.install-steps {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
}

.install-steps li {
  position: relative;
  min-height: 2.2rem;
  padding-left: 2.8rem;
  counter-increment: install-step;
}

.install-steps li::before {
  position: absolute;
  top: -0.15rem;
  left: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: #1d232b;
  color: #fff;
  content: counter(install-step);
  font-weight: 800;
}

.app-security-note {
  padding: 1rem 1.15rem;
  border-left: 4px solid #c8f000;
  background: rgba(200, 240, 0, 0.1);
}

@media (max-width: 760px) {
  .app-download-grid {
    grid-template-columns: 1fr;
  }

  .app-download-card .button {
    width: 100%;
    justify-content: center;
  }
}
