/* =========================================================
   🌌 Hero Section (FULLSCREEN – WIDE FINAL)
========================================================= */

.hero {
  min-height: 100vh;
  width: 100%;
  background:
    radial-gradient(
      circle at center,
      rgba(99, 102, 241, 0.22),
      transparent 50%
    ),
    linear-gradient(180deg, #0b0d17, #05060a);

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  color: #e5e7eb;
}

/* 🔮 Orb */
.hero__orb-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.hero__orb {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #6366f1,
    #22d3ee,
    #a855f7
  );

  animation:
    spin 22s linear infinite,
    float 9s ease-in-out infinite;

  box-shadow:
    0 0 140px rgba(99, 102, 241, 0.6),
    0 0 260px rgba(168, 85, 247, 0.45);
}

/* 🧾 Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  width: 100%;
  padding: 4rem 2.5rem;
  transform: translateY(18px);
}

.hero__badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 999px;
}

.hero__title {
  font-size: clamp(3.4rem, 6.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.hero__title span {
  display: block;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__desc {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #cbd5f5;
  margin-bottom: 3.2rem;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.95rem 1.8rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn--primary {
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  color: #020617;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 54px rgba(99, 102, 241, 0.5);
}

.btn--ghost {
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e5e7eb;
}

.btn--ghost:hover {
  background: rgba(148, 163, 184, 0.1);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  50% {
    transform: translateY(-28px) rotate(180deg);
  }
}

@media (max-width: 640px) {
  .hero__orb {
    width: 260px;
    height: 260px;
  }

  .hero__title {
    font-size: 2.7rem;
  }

  .hero__desc {
    font-size: 1rem;
  }
}
