/* ── Background ── */
body {
  background-color: var(--color-bg);
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(108, 99, 255, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(0, 212, 255, 0.06), transparent);
  z-index: 0;
  pointer-events: none;
}

/* ── Starfield Canvas ── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  gap: 1.5rem;
}

/* ── Rocket Icon ── */
.hero__icon {
  width: clamp(56px, 10vw, 80px);
  height: auto;
  animation: float 4s ease-in-out infinite,
             fadeInUp 0.8s ease both;
  filter: drop-shadow(0 0 16px rgba(108, 99, 255, 0.4));
}

/* ── Title ── */
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease both 0.15s,
             glow 4s ease-in-out infinite 1s;
}

.hero__title span {
  color: var(--color-primary);
}

/* ── Tagline ── */
.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 480px;
  animation: fadeInUp 0.8s ease both 0.3s;
}

/* ── Badge ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(108, 99, 255, 0.25);
  background: rgba(108, 99, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.875rem;
  color: var(--color-text);
  animation: fadeInUp 0.8s ease both 0.45s;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Contact Link ── */
.hero__contact {
  color: var(--color-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s, text-shadow 0.2s;
  animation: fadeInUp 0.8s ease both 0.6s;
}

.hero__contact:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* ── Selection ── */
::selection {
  background: rgba(108, 99, 255, 0.3);
  color: #fff;
}
