body {
  background-color: #020617;
  color: #ffffff;
  overflow-x: hidden;
}

/* Glassmorphism utilities */
.glass {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.4) 0%,
    rgba(15, 23, 42, 0.2) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.2);
}

/* Mesh Gradients */
.mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.mesh-blob-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.15) 0%,
    rgba(2, 6, 23, 0) 70%
  );
  border-radius: 50%;
  filter: blur(60px);
}

.mesh-blob-2 {
  position: absolute;
  top: 20%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.1) 0%,
    rgba(2, 6, 23, 0) 70%
  );
  border-radius: 50%;
  filter: blur(80px);
}

/* Scroll Reveal Utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Form styling */
.input-glow:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

/* Stepper lines */
@media (min-width: 768px) {
  .stepper-line::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(37, 99, 235, 0.5) 0%,
      rgba(168, 85, 247, 0.2) 100%
    );
    z-index: -1;
  }
  .step-item:last-child .stepper-line::after {
    display: none;
  }
}
