.hero .hero-content h1 {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  color: #efffdb;
  background: rgba(112, 163, 10, .13);
  border: 1px solid rgba(112, 163, 10, .48);
  border-radius: 999px;
  padding: .52rem .82rem;
  font-size: .68rem;
  font-family: 'Inter', sans-serif !important;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1:before {
  content: "";
  display: inline-block;
  width: .5rem;
  height: .5rem;
  border-radius: 99px;
  background: var(--pixo);
  box-shadow: 0 0 18px rgba(155, 221, 34, .95);
}

.hero .hero-content h2 {
  font-size: clamp(3.55rem, 10.5vw, 9.2rem);
  line-height: .84;
  margin: 0;
  max-width: 1120px;
  text-shadow: 0 0 46px rgba(112, 163, 10, .14);
  font-family: Orbitron, Oxanium, Inter, sans-serif;
  letter-spacing: -.055em;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .hero-content h2 strong,
.hero .hero-content h2 b {
  color: var(--pixo);
  font-weight: inherit;
}

.hero-slider {
  position: relative;
  margin: 1.05rem 0 1.25rem;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

.hero .hero-content p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 12.5rem);
  padding: 0 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .container-xl {
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.8rem;
}

.count.reveal-visible.done { font-size: 21px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  max-width: 640px;
  margin-top: 2.2rem;
}

.meta-card {
  border-radius: 20px;
  padding: 1rem;
  background: rgba(255, 255, 255, .052);
  border: 1px solid rgba(112, 163, 10, .3);
}

.meta-card strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -.055em;
  font-family: 'led-counter-7', Orbitron, monospace;
}

.meta-card span {
  display: block;
  margin-top: .45rem;
  color: #a9b7a3;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .hero { min-height: calc(100vh - 8.6rem); }
  .hero-meta { grid-template-columns: 1fr; }
}
