/* Home page */

.hero-home {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 2rem) clamp(1rem, 4vw, 2rem) 4rem;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-gray) 100%);
}

.hero-home__title {
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-apple) 0.1s forwards;
}

.hero-home__subhead {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-apple) 0.25s forwards;
}

.hero-home__actions {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-apple) 0.4s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home__title,
  .hero-home__subhead,
  .hero-home__actions {
    opacity: 1;
    animation: none;
  }
}

.aqua-showcase {
  position: relative;
  overflow: hidden;
}

.aqua-showcase__slides {
  position: relative;
  min-height: 560px;
}

@media (min-width: 768px) {
  .aqua-showcase__slides {
    min-height: 720px;
  }
}

.aqua-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem 4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-apple);
}

.aqua-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.aqua-slide__intro {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text-on-dark-muted);
  margin-bottom: 1rem;
}

.aqua-slide__title-img {
  max-height: 56px;
  width: auto;
  margin-bottom: 1.5rem;
}

.aqua-slide__title-img--brand {
  max-height: none;
  width: min(520px, 88vw);
  height: auto;
  margin-bottom: 0;
}

.aqua-slide__window {
  max-width: min(920px, 92vw);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.aqua-slide__caption {
  margin-top: 1.5rem;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text-on-dark);
  max-width: 28em;
  text-align: center;
  line-height: 1.35;
}

.aqua-slide__caption .accent-green { color: #30d158; }
.aqua-slide__caption .accent-blue { color: #64d2ff; }
.aqua-slide__caption .accent-purple { color: #bf5af2; }

.aqua-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 2.5rem;
}

.aqua-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.aqua-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.vatistore-section {
  text-align: center;
}

.vatistore-section__preview {
  max-width: min(680px, 90vw);
  margin: 2rem auto;
}

.vatistore-section__tagline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-secondary);
}

.vatistore-section__name {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.25rem 0 1rem;
}

.vatistore-section__vati {
  color: #1d4a75;
}

.vatistore-section__store {
  color: var(--color-text-primary);
}

.showcase-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.showcase-link:hover {
  text-decoration: none;
}

.vatistore-section__cta {
  display: inline-flex;
  margin-top: 1.5rem;
}
