body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.gradient-text {
  background: linear-gradient(to right, #7c3aed, #2563eb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

.animate-blob {
  animation: blob 9s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.prose-custom {
  color: #475569;
  line-height: 1.8;
}

.prose-custom h3 {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose-custom p {
  margin-bottom: 1rem;
}

.prose-custom ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.prose-custom li {
  margin-bottom: 0.5rem;
}

.no-scroll {
  overflow: hidden;
}
