:root {
  --bg-primary: #0d0f14;
  --bg-secondary: #141820;
  --surface: #1a1f2e;
  --surface-alt: #242b3d;
  --surface-hover: #2a3349;
  --text-primary: #f0f2f5;
  --text-secondary: #8892a4;
  --text-muted: #5a6478;
  --accent-indigo: #6366f1;
  --accent-indigo-glow: #818cf8;
  --accent-coral: #f97316;
  --accent-teal: #14b8a6;
  --accent-amber: #f59e0b;
  --accent-violet: #a855f7;
  --accent-rose: #f43f5e;
  --border: #2a3349;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

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

body {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.app-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
}

.sidebar.collapsed {
  width: 72px;
}

.sidebar-header {
  padding: 24px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.leader-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-violet));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.leader-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.leader-title {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.leader-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--accent-teal);
  letter-spacing: 1px;
  margin-top: 2px;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 14px;
  text-align: left;
  width: 100%;
}

.nav-item:hover {
  background: var(--surface);
  color: var(--text-primary);
}

.nav-item.active {
  background: var(--surface);
  color: var(--accent-indigo-glow);
  box-shadow: inset 3px 0 0 var(--accent-indigo);
}

.nav-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-toggle {
  margin: 16px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-toggle:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 260px;
  padding: 32px;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
  padding-bottom: 100px;
}

.sidebar.collapsed + .main-content {
  margin-left: 72px;
}

/* Dashboard */
.dashboard-header {
  margin-bottom: 32px;
}

.dashboard-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-indigo-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quip {
  color: var(--text-secondary);
  font-size: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.stat-card.accent-coral::before { background: var(--accent-coral); }
.stat-card.accent-amber::before { background: var(--accent-amber); }
.stat-card.accent-teal::before { background: var(--accent-teal); }
.stat-card.accent-violet::before { background: var(--accent-violet); }

.stat-icon {
  font-size: 24px;
  margin-bottom: 12px;
  opacity: 0.6;
}

.stat-value {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
}

.mood-indicator {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.mood-emoji {
  font-size: 36px;
}

.mood-label {
  font-size: 16px;
  color: var(--text-secondary);
}

.recent-activity {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.recent-activity h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-action {
  padding: 12px 20px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 14px;
}

.quick-action:hover {
  background: var(--surface-hover);
  color: var(--accent-indigo-glow);
  border-color: var(--accent-indigo);
}

/* View Container */
.view-container {
  max-width: 1200px;
}

.view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.view-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.view-controls {
  display: flex;
  gap: 8px;
}

.view-toggle {
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}

.view-toggle.active,
.view-toggle:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

/* Buttons */
.btn-primary {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-violet));
  border: none;
  border-radius: var(--radius);
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 40px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}

.empty-icon {
  font-size: 64px;
  opacity: 0.3;
  margin-bottom: 20px;
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 320px;
  margin: 0 auto;
}

/* Team Members */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.members-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: all 0.2s ease;
}

.member-card:hover {
  border-color: var(--accent-indigo);
  box-shadow: var(--shadow);
}

.member-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-indigo));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.member-info {
  flex: 1;
  min-width: 0;
}

.member-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.member-role {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 2px;
}

.member-dept {
  color: var(--text-muted);
  font-size: 12px;
}

.member-status {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

.member-status.active {
  background: rgba(20, 184, 166, 0.15);
  color: var(--accent-teal);
}

.member-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  opacity: 0;
  transition: all 0.2s ease;
}

.member-card:hover .member-remove {
  opacity: 1;
}

.member-remove:hover {
  color: var(--accent-rose);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalSlide 0.2s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.modal-close {
  width: 32px;
  height: 32px;
  background: var(--surface);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

.modal-content {
  padding: 24px;
}

/* Forms */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-range {
  width: 100%;
  accent-color: var(--accent-indigo);
}

.rating-input {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-input label {
  color: var(--text-secondary);
  font-size: 14px;
}

.rating-input span {
  color: var(--accent-amber);
  font-size: 20px;
}

/* Reviews */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.review-header h4 {
  font-size: 18px;
  font-weight: 600;
}

.review-cycle {
  padding: 4px 10px;
  background: var(--surface-alt);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}

.review-rating {
  color: var(--accent-amber);
  font-size: 16px;
  margin-left: auto;
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-section label {
  display: block;
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.review-section p {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
}

/* Goals */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.goal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.goal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.goal-type {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.goal-type.team {
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-indigo-glow);
}

.goal-type.individual {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-violet);
}

.goal-status {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  text-transform: capitalize;
}

.status-gray { background: rgba(90, 100, 120, 0.2); color: var(--text-secondary); }
.status-blue { background: rgba(99, 102, 241, 0.15); color: var(--accent-indigo-glow); }
.status-amber { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber); }
.status-green { background: rgba(20, 184, 166, 0.15); color: var(--accent-teal); }

.goal-delete {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  opacity: 0;
  transition: all 0.2s ease;
}

.goal-card:hover .goal-delete {
  opacity: 1;
}

.goal-delete:hover {
  color: var(--accent-rose);
}

.goal-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.goal-description {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.goal-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: var(--surface-alt);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent-teal));
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 40px;
}

.goal-due {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 12px;
}

/* Meetings */
.meetings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meeting-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.meeting-card:hover {
  border-color: var(--accent-indigo);
}

.meeting-card.expanded {
  border-color: var(--accent-indigo);
}

.meeting-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.meeting-header h4 {
  font-size: 16px;
  font-weight: 600;
}

.meeting-date {
  color: var(--text-secondary);
  font-size: 13px;
}

.meeting-recurring {
  padding: 4px 8px;
  background: rgba(20, 184, 166, 0.15);
  color: var(--accent-teal);
  border-radius: 4px;
  font-size: 11px;
}

.meeting-agenda {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.meeting-agenda label {
  display: block;
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.meeting-agenda ul {
  list-style: none;
}

.meeting-agenda li {
  color: var(--text-primary);
  font-size: 14px;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.meeting-agenda li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-indigo);
}

.meeting-notes {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.meeting-notes label {
  display: block;
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* Development Plans */
.plans-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.plan-header h4 {
  font-size: 18px;
  font-weight: 600;
}

.plan-track {
  padding: 4px 10px;
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-violet);
  border-radius: 4px;
  font-size: 12px;
}

.skills-matrix {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.skill-name {
  font-size: 14px;
  color: var(--text-primary);
}

.skill-level {
  display: flex;
  gap: 6px;
}

.level-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.level-dot.filled {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
}

.level-dot:hover {
  transform: scale(1.2);
}

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.metric-card.large {
  grid-column: span 2;
}

.metric-card h3 {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-card p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 8px;
}

.donut-chart {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.donut {
  transform: rotate(-90deg);
}

.donut-text {
  font-size: 8px;
  font-weight: 700;
  fill: var(--text-primary);
  transform: rotate(90deg);
  transform-origin: center;
}

/* Actions / Kanban */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 400px;
}

.kanban-column {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  min-height: 300px;
}

.column-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.column-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: grab;
  position: relative;
  transition: all 0.2s ease;
}

.action-card:hover {
  border-color: var(--accent-indigo);
  box-shadow: var(--shadow);
}

.action-card:active {
  cursor: grabbing;
}

.action-priority {
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.priority-high { background: var(--accent-rose); }
.priority-medium { background: var(--accent-amber); }
.priority-low { background: var(--accent-teal); }

.action-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  padding-left: 8px;
}

.action-assignee {
  color: var(--text-secondary);
  font-size: 12px;
  padding-left: 8px;
}

.action-due {
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 8px;
  padding-left: 8px;
}

.action-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  opacity: 0;
  transition: all 0.2s ease;
}

.action-card:hover .action-delete {
  opacity: 1;
}

.action-delete:hover {
  color: var(--accent-rose);
}

.celebration {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(99, 102, 241, 0.15));
  border: 1px solid var(--accent-teal);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-size: 18px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

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

/* Footer */
.app-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.remix-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.remix-link:hover {
  color: var(--accent-indigo-glow);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 8px 16px;
  z-index: 100;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.mobile-nav-item.active {
  color: var(--accent-indigo-glow);
}

.mobile-nav-item .nav-icon {
  font-size: 20px;
}

.mobile-nav-item .nav-label {
  font-size: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .metric-card.large {
    grid-column: span 1;
  }
  
  .kanban-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
  
  .main-content {
    margin-left: 0;
    padding: 20px;
    padding-bottom: 120px;
  }
  
  .sidebar.collapsed + .main-content {
    margin-left: 0;
  }
  
  .mobile-nav {
    display: flex;
  }
  
  .dashboard-header h1 {
    font-size: 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-value {
    font-size: 28px;
  }
  
  .view-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .view-header h2 {
    font-size: 22px;
  }
  
  .members-grid,
  .goals-grid,
  .plans-list {
    grid-template-columns: 1fr;
  }
  
  .app-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-actions {
    flex-direction: column;
  }
  
  .quick-action {
    width: 100%;
    text-align: center;
  }
}