:root {
  --brand-primary: #6366f1;
  --brand-secondary: #8b5cf6;
  --brand-accent: #a855f7;
}
body {
  margin: 0;
  padding: 0;
  background: #020617;
}
#initial-loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #020617;
  z-index: 9999;
  overflow: hidden;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 80%),
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size:
    100% 100%,
    4rem 4rem,
    4rem 4rem;
  opacity: 0.8;
}
.loader-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.brand-title {
  color: white;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-highlight {
  background: linear-gradient(to top right, #818cf8, #c084fc, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  margin: 0 4px;
}
.loader-sub {
  color: rgba(129, 140, 248, 0.6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.progress-container {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--brand-primary),
    var(--brand-secondary),
    transparent
  );
  background-size: 200% 100%;
  animation: progress-slide 2s infinite linear;
}
@keyframes progress-slide {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
