/* ═══════════════════════════════════════════════
   css/hero.css
   ═══════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #050d1a 0%, #0a1f45 40%, #0d3b7a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

/* Subtle grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,150,243,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,150,243,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Ambient glow blobs */
.hero-glow {
  position: absolute;
  top: 20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(21,101,192,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: -20%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(33,150,243,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Content block */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33,150,243,0.15);
  border: 1px solid rgba(33,150,243,0.35);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '●';
  font-size: 8px;
  color: var(--blue-bright);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.92;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-italic {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--gold);
  font-size: clamp(20px, 3vw, 34px);
  display: block;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero p {
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Bottom stats bar */
.hero-stats {
  position: absolute;
  bottom: 48px; left: 5%;
  display: flex;
  gap: 48px;
  z-index: 2;
  animation: fadeUp 1.1s 0.3s ease both;
}

.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 44px;
  color: white;
  line-height: 1;
  letter-spacing: 1px;
}
.stat-num span {
  color: var(--blue-bright);
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
