/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0 3rem;
  text-align: center;
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 22.5%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.app-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-top: 1.25rem;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.2em;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.app-store-badge {
  display: inline-block;
  margin-top: 1.5rem;
}

.app-store-badge img {
  height: 50px;
  width: auto;
}

.platform-note {
  font-size: 0.85em;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

/* Screenshots */
.screenshot-scroll {
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
  padding: 1.5rem 0;
  scrollbar-width: none;
}

.screenshot-scroll::-webkit-scrollbar {
  display: none;
}

.screenshot-scroll img {
  display: inline-block;
  height: 550px;
  width: auto;
  border-radius: 12px;
  margin: 0 0.625rem;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.copyright,
.trademark {
  max-width: 14ch;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.85em;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.copyright a {
  color: var(--accent);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

.trademark {
  font-size: 0.75em;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 640px) {
  .hero {
    padding: 3rem 0 2rem;
  }

  .app-icon {
    width: 80px;
    height: 80px;
  }

  .app-title {
    font-size: 2em;
  }

  .tagline {
    font-size: 1em;
  }

  .screenshot-scroll img {
    height: 400px;
    border-radius: 4px;
    cursor: pointer;
  }
}
