.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 30% 20%, rgba(0,0,0,0.25), transparent 50%),
    linear-gradient(180deg, #111, #000);
  color: #f5f5f5;
  padding: 2rem;
}

/* TOP BAR /
.hero-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}

/ LAYOUT /
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/ LEFT /
.hero-left {
  max-width: 500px;
}

.hero-left h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.light {
  font-weight: 300;
  color: #aaa;
}

.strong {
  font-weight: 600;
  color: #fff;
}

.hero-left p {
  color: #bbb;
  margin-bottom: 2rem;
}

/ BUTTONS /
.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: #d97706;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid #555;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  color: #ddd;
}

/ RIGHT /
.hero-right {
  max-width: 500px;
  aspect-ratio: 3/2;
}

/ CAROUSEL /
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fade 20s infinite;
  filter: brightness(0.9);
}

.carousel img:nth-child(2) {
  animation-delay: 10s;
}

@keyframes fade {
  0% {opacity: 0;}
  8% {opacity: 1;}
  45% {opacity: 1;}
  55% {opacity: 0;}
  100% {opacity: 0;}
}

/ MOBILE */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
}
