.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(135deg, #2a2a2a 0%, #4a4038 45%, #1a1a1a 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 40px 56px 80px;
  max-width: 1600px;
  margin: 0 auto;
}

.hero__text {
  max-width: 900px;
  padding-top: 40px;
}

.hero__text h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero__highlight {
  color: var(--lime);
}

.hero__text p {
  margin-top: 32px;
  font-size: 22px;
  font-weight: 500;
  color: #eaeaea;
}

@media (max-width: 1100px) {
  .hero__text h1 { font-size: 54px; }
}

@media (max-width: 900px) {
  .hero__body {
    flex-direction: column;
    padding: 20px 24px 60px;
  }
  .hero__text {
    text-align: center;
    padding-top: 10px;
  }
  .hero__text h1 { font-size: 40px; }
  .hero__text p { font-size: 18px; }
}
