* {
  font-family: 'Inter', sans-serif;
}

body {
  background: #030816;
  color: #fff;
  overflow-x: hidden;
}

.glass {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.gradient-text {
  background: linear-gradient(90deg, #7c3cff, #ef43b3, #ff8754);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-bg {
  background:
    radial-gradient(circle at 78% 20%, rgba(236, 72, 153, .44), transparent 32%),
    radial-gradient(circle at 40% 55%, rgba(37, 99, 235, .34), transparent 36%),
    radial-gradient(circle at 95% 48%, rgba(255, 122, 63, .42), transparent 22%),
    linear-gradient(135deg, #020617 0%, #080b2a 45%, #1d0638 100%);
}

.card-hover {
  transition: .35s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 72, 153, .45);
  box-shadow: 0 28px 80px rgba(168, 85, 247, .18);
}

.orb {
  filter: blur(2px);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.mesh-line {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.section-title {
  letter-spacing: .22em;
}

input,
textarea,
select {
  outline: none;
}
