/* MyShow Talents App landing page */
.app-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 229, 255, 0.11), transparent 34rem),
    var(--color-bg);
}

.app-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 75%);
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.app-hero {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.25rem, 7vw, 5rem) 1.25rem;
}

.app-hero__content {
  width: min(100%, 52rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.app-hero__accent {
  width: 3rem;
  height: 2px;
  margin-bottom: 1.25rem;
  background: var(--color-neon-cyan);
  box-shadow: var(--glow-line);
}

.app-hero__eyebrow {
  margin-bottom: 1rem;
  color: var(--color-neon-cyan);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.app-hero__title {
  max-width: 50rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--color-white);
  text-shadow: 0 0 36px rgba(0, 229, 255, 0.15);
}

.app-hero__description {
  max-width: 45rem;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.925rem, 1.8vw, 1.075rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.app-hero__callout {
  max-width: 34rem;
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-white);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
  text-wrap: balance;
}

.store-links {
  width: 100%;
  max-width: 32rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.store-link {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.store-link:hover {
  border-color: rgba(0, 229, 255, 0.65);
  background: rgba(0, 229, 255, 0.065);
  transform: translateY(-2px);
}

.store-link:focus-visible,
.nav__brand:focus-visible,
.footer__link:focus-visible {
  outline: 3px solid var(--color-neon-cyan);
  outline-offset: 4px;
  border-radius: 0.35rem;
}

.store-link img {
  flex: none;
  max-width: 100%;
  object-fit: contain;
}

.store-link--apple img {
  width: auto;
  height: 3.5rem;
}

.store-link--google img {
  width: auto;
  height: 5rem;
}

.app-hero__trust {
  max-width: 34rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: var(--color-white-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.app-hero__trust-icon {
  flex: none;
  color: var(--color-neon-cyan);
  font-weight: 600;
}

@media (min-width: 641px) {
  .store-links {
    max-width: 34rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .app-page {
    background:
      radial-gradient(circle at 50% 4%, rgba(0, 229, 255, 0.1), transparent 22rem),
      var(--color-bg);
  }

  .app-hero {
    align-items: flex-start;
    padding: 1.5rem 1rem 2rem;
  }

  .app-hero__accent {
    margin-bottom: 1rem;
  }

  .app-hero__title {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
    line-height: 1.1;
  }

  .app-hero__description {
    line-height: 1.58;
  }

  .store-link {
    width: 100%;
    min-height: 4.75rem;
  }

  .store-link--apple img {
    height: 3.25rem;
  }

  .store-link--google img {
    height: 4.65rem;
  }
}

@media (max-width: 360px) {
  .app-hero {
    padding-top: 1.25rem;
  }

  .app-hero__eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
  }

  .app-hero__title {
    font-size: 1.75rem;
  }

  .app-hero__description {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .store-link {
    transition: none;
  }
}
