@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #030712;
  --bg-card: rgba(10, 20, 38, 0.65);
  --bg-card-hover: rgba(15, 30, 58, 0.85);
  --border-subtle: rgba(56, 189, 248, 0.18);
  --border-active: rgba(56, 189, 248, 0.45);
  --cyan-primary: #38bdf8;
  --neon-blue: #00d2ff;
  --royal-blue: #0066ff;
  --text-muted: #94a3b8;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: #f8fafc;
  overflow-x: hidden;
}

h1, h2, h3, .font-display {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism Card */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
  border-color: var(--border-active);
}

.glass-card-interactive {
  cursor: pointer;
}
.glass-card-interactive:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(0, 210, 255, 0.15);
}

/* Glow Effects */
.glow-cyan {
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
}

.glow-btn {
  background: linear-gradient(135deg, #0066ff 0%, #00d2ff 100%);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px -2px rgba(0, 102, 255, 0.4);
}

.glow-btn:hover {
  opacity: 0.95;
  box-shadow: 0 6px 25px rgba(0, 210, 255, 0.6);
  transform: translateY(-1px);
}

/* Workflow Delivery Tracker */
.workflow-step {
  position: relative;
  transition: all 0.3s ease;
}

.workflow-step::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.workflow-step:last-child::after {
  display: none;
}

.workflow-step.completed::after {
  background: #38bdf8;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px auto;
  position: relative;
  z-index: 2;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.step-circle.completed {
  background: #0284c7;
  color: #ffffff;
  border: 2px solid #38bdf8;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.step-circle.active {
  background: #0066ff;
  color: #ffffff;
  border: 2px solid #00d2ff;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.7);
  animation: pulse 2s infinite;
}

.step-circle.waiting-action {
  background: #f59e0b;
  color: #030712;
  border: 2px solid #fbbf24;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.step-circle.next {
  background: #0f172a;
  color: #94a3b8;
  border: 2px solid #334155;
}

.step-circle.locked {
  background: #090d16;
  color: #475569;
  border: 2px solid #1e293b;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #030712;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}
