:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --red: #c72226;
  --green: #198754;
  --gold: #e1b24c;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: #101010;
  color: var(--ink);
}

a {
  color: inherit;
}

.download-page {
  min-height: 100svh;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 6vw, 72px);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("/assets/hero-skyline.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.94), rgba(6, 6, 6, 0.7) 42%, rgba(6, 6, 6, 0.22)),
    linear-gradient(0deg, rgba(6, 6, 6, 0.62), rgba(6, 6, 6, 0.08) 42%);
}

.hero__content {
  position: relative;
  width: min(100%, 620px);
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.74);
}

.brand-logo {
  display: block;
  width: clamp(86px, 18vw, 136px);
  height: auto;
  margin-bottom: clamp(18px, 4vw, 28px);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(225, 178, 76, 0.45);
  border-radius: 999px;
  color: #ffe7a8;
  background: rgba(225, 178, 76, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.35rem, 6.5vw, 4.95rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.intro {
  max-width: 34rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.55;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-button {
  display: inline-grid;
  grid-template-columns: 31px auto;
  align-items: center;
  min-width: min(100%, 212px);
  min-height: 66px;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #050505;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.46);
  background: #151515;
  outline: none;
}

.store-button--google {
  background: var(--green);
}

.store-button--google:hover,
.store-button--google:focus-visible {
  background: #146c43;
}

.store-button__icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
}

.store-button__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store-button__eyebrow,
.store-button__label {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}

.store-button__eyebrow {
  margin-bottom: 4px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.72);
}

.store-button__label {
  font-size: 1.22rem;
  font-weight: 800;
}

@media (max-width: 720px) {
  .hero {
    align-items: end;
    padding: 18px;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0.58) 64%, rgba(6, 6, 6, 0.22)),
      linear-gradient(90deg, rgba(6, 6, 6, 0.74), rgba(6, 6, 6, 0.12));
  }

  .hero__content {
    width: 100%;
  }

  h1 {
    max-width: 10ch;
  }

  .store-actions {
    display: grid;
  }

  .store-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-button {
    transition: none;
  }

  .store-button:hover,
  .store-button:focus-visible {
    transform: none;
  }
}
