/* ============================================================
   XFORCE PRO — Onboarding (styles spécifiques)
   Dépend de base.css (variables, reset, halos, boutons)
   ============================================================ */

.onboarding {
  justify-content: space-between;
}

/* ------------------------------------------------------------
   Héros : badge, titre, version, tagline
   ------------------------------------------------------------ */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}

.hero__badge {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(140deg, var(--primary), var(--violet-500) 55%, var(--indigo-500)) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 0 60px rgba(255, 57, 111, 0.25),
    inset 0 0 40px rgba(255, 57, 111, 0.06);
  animation: float 5s ease-in-out infinite;
}

.hero__plane {
  width: 60px;
  height: 60px;
  color: var(--primary);
  filter: drop-shadow(0 0 14px rgba(255, 57, 111, 0.55));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero__title {
  margin-top: 10px;
  font-size: clamp(2.1rem, 9vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg,
    var(--text) 30%,
    var(--fuchsia-300) 60%,
    var(--violet-300) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__version {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.8rem;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}

/* ------------------------------------------------------------
   Actions
   ------------------------------------------------------------ */

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge { animation: none; }
}
