/* Minimalist Light Design System */
:root {
  --bg-color: #f8fafc; /* Slate 50 */
  --text-color: #0f172a; /* Slate 900 */
  
  --primary: #4f46e5; /* Indigo */
  --sky: #0ea5e9; /* Sky Blue */
  --pink: #ec4899; /* Cyber Pink */
  
  --font-family: 'Outfit', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Fullscreen Animation Canvas */
#orbit-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Centered content */
.centered-container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  pointer-events: none; /* Let clicks pass to canvas if wanted */
}

/* Elegant logo / badge */
.brand-badge {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.05);
  animation: float-badge 3s ease-in-out infinite;
}

/* Giant Headline */
.main-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text-color);
  animation: fade-in-title 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* High-contrast modern gradient */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--sky), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

/* Micro-animations */
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fade-in-title {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.2rem;
  }
}
