/* Zenith AI Founder Team Styling */
:root {
  --zenith-bg: #0b0f19;
  --zenith-card-bg: rgba(19, 27, 46, 0.75);
  --zenith-card-border: rgba(0, 240, 255, 0.15);
  --zenith-cyan: #00f0ff;
  --zenith-purple: #7000ff;
  --zenith-pink: #ff007f;
  --zenith-green: #00ff88;
  --zenith-text: #e2e8f0;
  --zenith-muted: #94a3b8;
  --zenith-glow: 0 0 20px rgba(0, 240, 255, 0.25);
}

body.zenith-theme {
  background-color: var(--zenith-bg) !important;
  color: var(--zenith-text) !important;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Glassmorphism Card */
.zenith-card {
  background: var(--zenith-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--zenith-card-border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.zenith-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
  transform: translateY(-2px);
}

/* Typography & Glows */
.zenith-title-glow {
  background: linear-gradient(135deg, #ffffff 0%, #00f0ff 50%, #7000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.zenith-btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
  color: #fff !important;
  font-weight: 700;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zenith-btn-primary:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.8), 0 0 35px rgba(112, 0, 255, 0.5);
  transform: scale(1.02);
}

/* Input Area */
.zenith-textarea {
  background: rgba(11, 15, 25, 0.8) !important;
  border: 1.5px solid rgba(0, 240, 255, 0.3) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 18px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  min-height: 140px !important;
  transition: all 0.3s ease !important;
}

.zenith-textarea:focus {
  border-color: var(--zenith-cyan) !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3) !important;
}

/* Agent Grid */
.agent-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.agent-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* Vertical Progress Checklist */
.progress-container {
  max-width: 650px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  background: rgba(19, 27, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.step-item.pending {
  opacity: 0.4;
}

.step-item.active {
  opacity: 1;
  border-color: var(--zenith-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.08);
}

.step-item.done {
  opacity: 1;
  border-color: rgba(0, 255, 136, 0.4);
  background: rgba(0, 255, 136, 0.05);
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.step-item.pending .step-indicator {
  background: rgba(255, 255, 255, 0.1);
  color: #666;
}

.step-item.active .step-indicator {
  background: var(--zenith-cyan);
  color: #000;
  animation: pulseGlow 1.2s infinite ease-in-out;
}

.step-item.done .step-indicator {
  background: var(--zenith-green);
  color: #000;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

/* Dashboard Layout */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  min-height: calc(100vh - 100px);
}

.dashboard-sidebar {
  background: rgba(19, 27, 46, 0.85);
  border-right: 1px solid var(--zenith-card-border);
  padding: 20px 12px;
  border-radius: 12px;
}

.nav-tab-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--zenith-muted);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.nav-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav-tab-btn.active {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.15) 0%, rgba(112, 0, 255, 0.1) 100%);
  color: var(--zenith-cyan);
  border-left: 3px solid var(--zenith-cyan);
}

/* Dashboard Tables & Metrics */
.zenith-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.zenith-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--zenith-cyan);
  text-align: left;
  padding: 14px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zenith-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

/* Kanban Board */
.kanban-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kanban-col {
  background: rgba(19, 27, 46, 0.6);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kanban-col-header {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid;
}

.must-have-header { border-color: var(--zenith-green); color: var(--zenith-green); }
.should-have-header { border-color: var(--zenith-cyan); color: var(--zenith-cyan); }
.nice-to-have-header { border-color: var(--zenith-purple); color: var(--zenith-purple); }

/* Badges */
.badge-pill {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.badge-cyan { background: rgba(0, 240, 255, 0.15); color: var(--zenith-cyan); border: 1px solid rgba(0, 240, 255, 0.3); }
.badge-green { background: rgba(0, 255, 136, 0.15); color: var(--zenith-green); border: 1px solid rgba(0, 255, 136, 0.3); }
.badge-purple { background: rgba(112, 0, 255, 0.15); color: #b877ff; border: 1px solid rgba(112, 0, 255, 0.3); }
.badge-pink { background: rgba(255, 0, 127, 0.15); color: var(--zenith-pink); border: 1px solid rgba(255, 0, 127, 0.3); }

/* Responsive adjustments */
@media (max-width: 991px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .kanban-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--zenith-card-border);
    white-space: nowrap;
    padding-bottom: 10px;
  }
  .nav-tab-btn {
    width: auto;
    margin-right: 8px;
    margin-bottom: 0;
  }
}
