/* =====================
   Variables
   ===================== */
:root {
  --color-bg: #0a0a0f;
  --color-surface: #13131a;
  --color-border: #22222e;
  --color-primary: #7c6fff;
  --color-primary-glow: rgba(124, 111, 255, 0.18);
  --color-text: #e8e8f0;
  --color-text-muted: #666680;
  --font-main: 'Segoe UI', system-ui, sans-serif;
}

/* =====================
   Reset
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
}

/* =====================
   Coming Soon Layout
   ===================== */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Glow de fondo */
.cs-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* =====================
   Header / Logo
   ===================== */
.cs-header {
  position: relative;
  z-index: 1;
}

.cs-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: -0.3px;
}

.cs-logo span {
  color: var(--color-primary);
}

/* =====================
   Main content
   ===================== */
.cs-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 640px;
}

.cs-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  font-weight: 600;
}

.cs-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--color-text);
}

.cs-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 480px;
}

/* Badge de estado */
.cs-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.cs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* =====================
   Footer
   ===================== */
.cs-footer {
  position: relative;
  z-index: 1;
  color: var(--color-text-muted);
  font-size: 0.78rem;
}
