/* Critical CSS - loaded before JS for fastest LCP */
body {
  margin: 0;
  font-family:
    'IBM Plex Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: #070707;
  color: #ffffff;
}
.hero-container {
  min-height: 100vh;
  background: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 2px solid #374151;
  border-top: 2px solid #60a5fa;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
