/* ── Hero Classic overlay ── */
.hero-theme-classic .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.4) 100%);
  pointer-events: none;
}

/* ── Hero Showcase (SANAA Global style) ── */
.hero-theme-showcase .hero-slide {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-theme-showcase .hero-bg {
  transform: scale(1.08);
}

.hero-theme-showcase .hero-slide.active .hero-bg {
  animation: heroKenBurnsShowcase 12s ease-out forwards;
}

.hero-theme-showcase .hero-slide.is-leaving .hero-bg {
  animation: none;
  transform: scale(1);
}

@keyframes heroKenBurnsShowcase {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.hero-theme-showcase .hero-showcase-arrows {
  bottom: 88px;
}

.hero-theme-showcase .hero-showcase-controls {
  bottom: 48px;
}

.hero-theme-showcase .hero-dot {
  border-color: rgba(255, 255, 255, 0.75);
}

.hero-theme-showcase .hero-dot.active {
  background: #fff;
  border-color: #fff;
}

.hero-showcase-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 140px 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-showcase-pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-showcase-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-showcase-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  opacity: 0.88;
  max-width: 760px;
  margin-bottom: 34px;
}

.hero-showcase-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 640px;
}

.hero-btn-light,
.hero-btn-outline-light {
  flex: 1 1 220px;
  width: auto;
  min-width: 0;
  justify-content: center;
  padding: 16px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
}

.hero-btn-light {
  background: #fff;
  color: #0a0a0a;
  border: 2px solid #fff;
}

.hero-btn-light:hover {
  background: #f4f4f4;
  transform: translateY(-2px);
}

.hero-btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.hero-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.hero-showcase-controls {
  bottom: 72px;
}

.hero-showcase-arrows {
  bottom: 68px;
}

.scroll-hint-showcase {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-hint-showcase span {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero-showcase-content {
    padding: 120px 0 96px;
  }

  .hero-showcase-pill {
    font-size: 0.65rem;
    padding: 8px 16px;
  }

  .hero-showcase-actions {
    flex-direction: column;
    max-width: min(340px, 100%);
  }

  .hero-btn-light,
  .hero-btn-outline-light {
    flex: none;
    width: 100%;
  }

  .hero-showcase-arrows {
    display: none;
  }
}
