.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px; /* nav offset */
}

/* Sci-fi radar backdrop inside hero */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border: 1px solid rgba(0, 245, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(0, 245, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: spin-slow 60s infinite linear;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(3,6,17,0.2) 0%, var(--bg-dark) 80%);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  padding: 0 var(--space-6);
  margin-top: 40px;
}

.hero__badge {
  margin-bottom: var(--space-6);
  animation: float 6s infinite alternate;
  background: rgba(0, 245, 255, 0.05) !important;
  border: 1px solid var(--primary) !important;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.1);
  font-family: var(--font-mono);
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  font-family: var(--font-heading);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
  font-family: var(--font-body);
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 1.5s infinite alternate ease-in-out;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-arrow {
  font-size: 1.2rem;
}

/* Telemetry Dashboard Stats Section */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
  background: rgba(6, 9, 19, 0.7);
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  backdrop-filter: blur(25px);
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Crosshairs in corners of the stats board */
.hero__stats::before,
.hero__stats::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--primary);
  pointer-events: none;
}

.hero__stats::before {
  top: -6px;
  left: -6px;
  border-right: none;
  border-bottom: none;
}

.hero__stats::after {
  bottom: -6px;
  right: -6px;
  border-left: none;
  border-top: none;
}

.hero__stat {
  text-align: center;
  position: relative;
}

.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 245, 255, 0.15), transparent);
}

.hero__stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-mono); /* clean tech look */
  display: block;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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