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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  box-sizing: border-box;
}

#app {
  scroll-behavior: smooth;
  overflow-x: clip;
}

section[id] {
  scroll-margin-top: 6rem;
}

.gradient-text {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
}

.glow-btn {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  box-shadow: 0 0 30px rgba(0, 245, 160, 0.3);
  transition: all 0.3s;
}

.glow-btn:hover {
  box-shadow: 0 0 50px rgba(0, 245, 160, 0.5);
  transform: translateY(-2px);
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 245, 160, 0.4);
  box-shadow: 0 20px 60px rgba(0, 245, 160, 0.1);
}

.parallax-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 245, 160, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 217, 245, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-line {
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 245, 160, 0.3), rgba(0, 217, 245, 0.3));
  z-index: 0;
}

.profile-ring {
  background: conic-gradient(from 0deg, #00f5a0, #00d9f5, #8b5cf6, #00f5a0);
  padding: 4px;
  border-radius: 9999px;
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.profile-ring>div {
  animation: counter-spin 8s linear infinite;
}

@keyframes counter-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f5a0, #00d9f5);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
