.app-intro {
  position: relative;
  text-align: center;
  padding: 48px 0 40px;
  max-width: 560px;
  margin: 0 auto;
}

#homepageView::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 70% 55% at 20% 10%, rgba(159, 66, 198, 0.45), transparent 70%),
    radial-gradient(ellipse 65% 50% at 85% 15%, rgba(30, 111, 182, 0.45), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 95%, rgba(236, 72, 153, 0.28), transparent 75%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(34, 197, 94, 0.22), transparent 75%);
}

.app-intro>*:not(.teaser-bg) {
  position: relative;
  z-index: 1;
}

.app-intro-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.app-intro-tagline {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 auto 16px;
  max-width: 22ch;
  opacity: 0.85;
}

.app-intro-tagline a {
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.app-intro-tagline a[href*="simkl"] {
  color: #a6cce4;
}

.app-intro-tagline a[href*="trakt"] {
  color: #dbb5e6;
}

.app-intro-tagline a:hover {
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.app-intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.app-intro .app-intro-actions {
  margin-top: 56px;
}

.app-intro-cta {
  font-size: 1rem;
  padding: 14px 32px;
  min-width: 240px;
  font-weight: 600;
  color: #ffffff;
  transition: filter 0.15s ease, box-shadow 0.2s ease;
}

.app-intro-cta[data-provider="simkl"] {
  background: #1e6fb6;
}

.app-intro-cta[data-provider="trakt"] {
  background: #9f42c6;
}

.app-intro-cta:hover {
  filter: brightness(1.15);
}

.app-intro-cta[data-provider="simkl"]:hover {
  box-shadow: 0 0 0 3px rgba(30, 111, 182, 0.35);
}

.app-intro-cta[data-provider="trakt"]:hover {
  box-shadow: 0 0 0 3px rgba(159, 66, 198, 0.35);
}

.brand-mark {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
  vertical-align: middle;
}

.app-intro-features {
  list-style: none;
  padding: 0;
  margin: 40px 0 32px;
  display: grid;
  gap: 20px;
  text-align: left;
}

.app-intro-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.app-intro-features strong {
  color: var(--text);
  font-weight: 700;
}

.app-intro-feature-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

@media (max-width: 600px) {
  #homepageView {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .app-intro {
    padding: 32px 4px 28px;
  }

  .app-intro-tagline {
    font-size: 1.5rem;
  }

  .app-intro-features {
    margin: 48px 0 40px;
    gap: 24px;
  }

  .app-intro .app-intro-actions {
    margin-top: 64px;
  }
}
