/* ─── Gradient Text ─── */
.gradient-text {
  background: linear-gradient(135deg, #6C63FF, #00D4AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-primary {
  background: linear-gradient(135deg, #6C63FF, #9B93FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Glass Card ─── */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.glass-card-hover {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s ease;
}
.glass-card-hover:hover {
  background: rgba(108, 99, 255, 0.08);
  border-color: rgba(108, 99, 255, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(108, 99, 255, 0.15);
}

/* ─── Background Grid ─── */
.bg-grid {
  background-image:
    linear-gradient(rgba(108, 99, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 99, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── Floating Animation ─── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
.float-anim { animation: float 5s ease-in-out infinite; }

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.spin-slow { animation: spin-slow 20s linear infinite; }

/* ─── Orb Decorations ─── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-primary  { background: rgba(108, 99, 255, 0.22); }
.orb-secondary { background: rgba(0, 212, 170, 0.18); }

/* ─── Navbar ─── */
.navbar-scrolled {
  background: rgba(10, 10, 15, 0.92) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ─── Glow Button ─── */
.glow-btn {
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.35);
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}
.glow-btn:hover {
  box-shadow: 0 0 40px rgba(108, 99, 255, 0.55);
  opacity: 0.92;
}

/* ─── Section Badge ─── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.25);
  color: #6C63FF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── Form Inputs ─── */
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.85rem 1.1rem;
  color: #F0F0F5;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus {
  outline: none;
  border-color: #6C63FF;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}
.form-input::placeholder { color: #8888AA; }

/* ─── Swiper customization ─── */
.swiper-pagination-bullet {
  background: #555577 !important;
  opacity: 1 !important;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #6C63FF, #00D4AA) !important;
  width: 28px !important;
  border-radius: 4px !important;
}

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0A0A0F; }
::-webkit-scrollbar-thumb { background: #6C63FF; border-radius: 3px; }

/* ─── Gradient Divider ─── */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #6C63FF44, #00D4AA44, transparent);
}

/* ─── Timeline step ─── */
.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C63FF, #00D4AA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(108, 99, 255, 0.4);
}

/* ─── Team card ─── */
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ─── Checklist item ─── */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(0, 212, 170, 0.05);
  border: 1px solid rgba(0, 212, 170, 0.15);
  margin-bottom: 0.75rem;
}
.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00D4AA;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}
