@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* Custom classes for layout refinements */
.custom-shadow-premium {
  box-shadow: 0 10px 40px -10px rgba(249, 115, 22, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.custom-glow-orange {
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.25);
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #000000;
  color: #f5f5f5;
  overflow-x: hidden;
}

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Animations */
@keyframes pulse-test {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.animate-pulse-slow {
  animation: pulse-test 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Modal Fade-in classes */
.modal-overlay {
  transition: opacity 0.3s ease;
}

.modal-content {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Social Proof Popup animations */
#social-proof-popup {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.slide-up-in {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.slide-up-out {
  transform: translateY(100px) scale(0.95);
  opacity: 0;
}
