/* Bhindi V5 Design System */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Core colors - V5 Dark */
  --bg: #000000;
  --bg-surface: #080808;
  --bg-elevated: #0f0f0f;
  --bg-card: #161616;
  --bg-hover: #1c1c1c;
  --border: #1f1f1f;
  --border-subtle: #161616;
  
  /* Text */
  --text: #ffffff;
  --text-secondary: #8a8a8a;
  --text-muted: #4a4a4a;
  
  /* Accent - Bhindi Green */
  --accent: #10b981;
  --accent-dim: #059669;
  --accent-glow: rgba(16, 185, 129, 0.1);
  --accent-soft: rgba(16, 185, 129, 0.08);
  
  /* Status */
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.1);
  --success: #10b981;
  --warning: #f59e0b;
  
  /* Agent colors */
  --agent-image: #ec4899;
  --agent-email: #ef4444;
  --agent-github: #a78bfa;
  --agent-calendar: #f59e0b;
  --agent-search: #06b6d4;
  
  /* Sizing */
  --drawer-width: 320px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Typography */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

#app {
  height: 100%;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a2a; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
