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

:root {
  --color-orange: #FF4500;
  --color-purple: #2E0854;
  --color-dark: #140326;
  --color-white: #FFFFFF;
}

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  background-color: var(--color-dark);
}

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

/* Gradients */
.text-gradient-sunset {
  background: linear-gradient(135deg, #FF4500 0%, #ff8c00 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Utilities */
.glass-nav {
  background: rgba(20, 3, 38, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 69, 0, 0.15);
}

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
}

/* Neon Glow Utilities */
.neon-glow {
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.3), inset 0 0 10px rgba(255, 69, 0, 0.1);
  border-color: rgba(255, 69, 0, 0.6) !important;
}

.neon-text {
  text-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
}

/* Buttons */
.btn-orange {
  background: linear-gradient(135deg, #FF4500 0%, #d13800 100%);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #FF4500;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-orange:hover {
  box-shadow: 0 0 25px rgba(255, 69, 0, 0.7);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 69, 0, 0.05);
  color: #FF4500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 69, 0, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 69, 0, 0.15);
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
  transform: translateY(-2px);
}

/* Background Orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  animation: float 12s infinite ease-in-out alternate;
}

.orb-1 {
  background: #FF4500;
  width: 400px;
  height: 400px;
  top: -10%;
  left: -5%;
  opacity: 0.2;
}

.orb-2 {
  background: #2E0854;
  width: 600px;
  height: 600px;
  bottom: -10%;
  right: -10%;
  opacity: 0.4;
  animation-delay: -5s;
}

.orb-3 {
  background: #FF4500;
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  opacity: 0.1;
  animation-duration: 15s;
}

@keyframes float {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Initial GSAP state */
.gs-reveal {
  visibility: hidden;
}
