/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 212, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 212, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black, transparent);
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 212, .08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  padding: .4rem 1.2rem;
  margin-bottom: 2rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 200, 212, .2);
  background: rgba(0, 200, 212, .05);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: .9;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cyan);
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1s ease 0.8s forwards;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
