body {
  font-family: "Inter", sans-serif;
}

.gradient-purple {
  background-image: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.gradient-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.smooth-scroll {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero-animate-delay-1 {
  animation-delay: 0.2s;
}

.hero-animate-delay-2 {
  animation-delay: 0.4s;
}

.hero-animate-delay-3 {
  animation-delay: 0.6s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon-text {
  font-size: 14px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
}

@media (max-width: 640px) {
  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .logo-icon-text {
    font-size: 13px;
  }

  .logo-text {
    font-size: 14px;
  }
}
