/* WorksiteCore Monitor - Modular Stylesheet */
:root {
  --indigo: #6366f1;
  --slate-950: #020817;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
}

html, body {
  background: #020817;
  color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #090d16; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

.glass-panel {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(51, 65, 85, 0.5);
}

.glass-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(71, 85, 105, 0.4);
}

.hero-glow {
  background: radial-gradient(circle at 50% 12%, rgba(99, 102, 241, 0.22) 0%, rgba(30, 27, 75, 0.08) 50%, transparent 80%);
}

.bg-grid {
  background-image: radial-gradient(rgba(99, 102, 241, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.pricing-featured {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 2px solid #6366f1;
}

.cyber-border {
  border: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 0 35px -5px rgba(99, 102, 241, 0.2);
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.animate-float {
  animation: float-slow 4s ease-in-out infinite;
}

#wsc-loading {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #020817;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 16px;
}

#wsc-loading.done {
  display: none !important;
}

.wsc-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(99, 102, 241, 0.2);
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: wsc-spin 0.8s linear infinite;
}

@keyframes wsc-spin {
  to { transform: rotate(360deg); }
}
