.android-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: 18px 0 42px;
}

.android-hero .eyebrow {
  margin-bottom: 18px;
}

.android-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 7vw, 78px);
}

.android-hero .lead {
  margin-top: 20px;
}

.download-button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 13px;
  border: 1px solid rgba(40, 209, 124, 0.38);
  border-radius: 14px;
  background: linear-gradient(135deg, #28d17c, #5aa7ff);
  color: #03111f;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(10, 93, 68, 0.24);
  transition: transform 160ms ease, filter 160ms ease;
}

.download-button:hover,
.download-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  outline: none;
}

.download-button.is-loading,
.download-button.is-unavailable {
  cursor: default;
  filter: grayscale(0.5);
  opacity: 0.72;
}

.download-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(3, 17, 31, 0.22);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.download-button small,
.download-button strong {
  display: block;
}

.download-button small {
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 700;
}

.download-button strong {
  font-size: 20px;
  line-height: 1.05;
}

.apk-preview {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  align-content: center;
  aspect-ratio: 314 / 486;
  margin: 0 14px 14px;
  padding: 24px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 82% 9%, rgba(40, 209, 124, 0.20), transparent 10rem),
    linear-gradient(180deg, #f5f7fa, #dfe6ee);
  color: #182231;
}

.apk-preview img {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(16, 34, 58, 0.20);
}

.apk-preview div {
  align-self: center;
}

.apk-preview strong,
.apk-preview span {
  display: block;
}

.apk-preview strong {
  font-size: 19px;
}

.apk-preview div span {
  margin-top: 4px;
  color: #637084;
  font-size: 13px;
}

.install-button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 16px;
  padding: 8px 18px;
  border-radius: 8px;
  background: #0878f8;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.apk-preview p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: #637084;
  font-size: 13px;
  line-height: 1.45;
}

.android-signin {
  background:
    radial-gradient(circle at 50% 16%, rgba(40, 209, 124, 0.23), transparent 9rem),
    linear-gradient(180deg, #0d1728, #050912);
}

.google-signin {
  width: min(240px, 100%);
  margin-top: 8px;
  padding: 13px 12px;
  border-radius: 9px;
  background: #fff;
  color: #161b22;
  font-size: 14px;
  font-weight: 800;
}

.google-signin b {
  margin-right: 8px;
  color: #4285f4;
  font-size: 18px;
}

.android-shot {
  aspect-ratio: 1080 / 1956;
  background: #02050b;
}

.android-shot img {
  top: -4.14%;
  left: 0;
  width: 100%;
  height: auto;
  transform: none;
}

@media (max-width: 900px) {
  .android-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .download-button {
    justify-self: start;
  }

  .apk-preview {
    margin: 14px;
  }
}

@media (max-width: 680px) {
  .android-hero {
    gap: 26px;
  }

  .android-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .apk-preview {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }
}
