/* hero.css */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(77, 200, 240, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -100px;
  right: -200px;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(57, 255, 133, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(77, 200, 240, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  background: rgba(77, 200, 240, 0.05);
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Headline */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .poly {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan2) 50%, #a0e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .net {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* CTA row */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-ui);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cyan);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-stats { gap: 32px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -1px; }
  .hero-stats { gap: 24px; }
  .hero { padding: 100px var(--inner-pad) 60px; }
}
