/* Career OS Design System Tokens — Obsidian Deep Theme */
:root {
  --bg: #0f0f10;
  --surface: #18181b;
  --surface1: #18181b;
  --surface2: #212126;
  --surface3: #2a2a30;
  --border: #2e2e35;
  --border-focus: #4a4a55;
  
  --text: #e2ddd6;
  --text-muted: #8b867c;
  --text-dim: #6b6760;
  
  --highlight: #c9b99a;
  --highlight-hover: #d4c9b0;
  --highlight-subtle: rgba(201, 185, 154, 0.15);
  
  --accent: #c9b99a;
  --accent-hover: #d4c9b0;
  --accent-subtle: rgba(201, 185, 154, 0.15);
  
  --green: #6db88a;
  --green-subtle: rgba(109, 184, 138, 0.15);
  --amber: #d4a373;
  --amber-subtle: rgba(212, 163, 115, 0.15);
  --red: #e05c5c;
  --red-subtle: rgba(224, 92, 92, 0.15);
  --blue: #5b9bd5;
  --blue-subtle: rgba(91, 155, 213, 0.15);
  --purple: #aa88c6;
  --purple-subtle: rgba(170, 136, 198, 0.15);

  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px 0 rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.6);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

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

html {
  font-size: 14px;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--highlight);
  outline-offset: 2px;
}

/* Global Custom Scrollbars — Obsidian Deep Theme */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--surface3) transparent;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--surface3);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-focus);
}

::-webkit-scrollbar-corner {
  background: transparent;
}
