.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #030304;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(1.05);
  transform: scale(1.03);
  transition: transform 8s linear;
}

.hero-slide.active img {
  transform: scale(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(3, 3, 4, 0.92) 0%, rgba(3, 3, 4, 0.4) 45%, rgba(3, 3, 4, 0.2) 100%),
    linear-gradient(to right, rgba(3, 3, 4, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  padding: 0 clamp(28px, 5vw, 64px) 100px;
  margin-left: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-badge {
  margin-bottom: 22px;
  animation: fade-up 0.8s var(--ease-out) both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 96px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  font-weight: 400;
  animation: fade-up 0.8s 0.08s var(--ease-out) both;
}

.hero-headline em {
  color: var(--accent-bright);
  font-style: italic;
  display: block;
}

.hero-desc {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
  max-width: 520px;
  letter-spacing: -0.01em;
  animation: fade-up 0.8s 0.16s var(--ease-out) both;
}

.hero-since {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
  animation: fade-up 0.8s 0.24s var(--ease-out) both;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fade-up 0.8s 0.32s var(--ease-out) both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
  animation: scroll-nudge-down 2.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.45);
}
