/* Critical CSS for above-the-fold content */
body { 
  margin: 0; 
  font-family: var(--font-inter), sans-serif; 
}

.bg-gray-950 { 
  background-color: #0a0a0a; 
}

.text-white { 
  color: #ffffff; 
}

.text-indigo-200 { 
  color: #c7d2fe; 
}

.font-nacelle { 
  font-family: var(--font-nacelle), sans-serif; 
}

.animate-gradient { 
  animation: gradient 6s linear infinite; 
}

@keyframes gradient { 
  to { 
    background-position: 200% center; 
  } 
}
