/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero-container {
  max-width: 900px;
  z-index: 2;
}

.badge {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary); /* Fallback */
}

.hero-desc {
  color: var(--text-dim);
  max-width: 650px;
  margin: 0 auto 45px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- INTERACTIVE BUTTONS --- */
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-main,
.btn-outline {
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-main {
  background: var(--primary);
  color: #080a0c;
}

.btn-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
  background: #00b8e6;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(-5px);
}

/* --- BACKGROUND DECORATION --- */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #101a25 0%, #080a0c 100%);
  z-index: -1;
}

/* --- MOBILE OPTIMIZATION (BREAKPOINT MATCHING GLOBAL) --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
    margin-top: 40px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-main,
  .btn-outline {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-desc {
    font-size: 1rem;
    padding: 0 10px;
  }
}
