/* ═══════════════════════════════════════════════════════════════════
   Codegraphs Design Tokens
   Served by Gateway at /common-static/css/tokens.css

   Based on Codegraphs Constitution 1.1 & design-principle.md
   All services reference these CSS variables for consistent theming.

   Palette:
     --bg:         #FFFFFF
     --primary:    #0F172A
     --accent:     #2563EB
     --success:    #10B981
     --graph:      #38BDF8
     --text:       #1E293B
     --text-muted: #64748B
     --border:     #E2E8F0
     --bg-subtle:  #F8FAFC
   ═══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens (Light Theme) ──────────────────────────────── */
:root {
  /* Surface */
  --bg:         #FFFFFF;
  --bg-subtle:  #F8FAFC;
  --bg-graph:   #F1F5F9;
  --nav-bg:     rgba(255, 255, 255, 0.85);

  /* Brand */
  --primary:    #0F172A;
  --primary-hover: #1E293B;
  --accent:     #2563EB;
  --accent-dim: #1D4ED8;
  --success:    #10B981;
  --warning:    #F59E0B;
  --danger:     #EF4444;
  --graph:      #38BDF8;

  /* Text */
  --text:       #1E293B;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;

  /* Borders & Dividers */
  --border:     #E2E8F0;
  --border-light: #F1F5F9;

  /* Shadows */
  --shadow-sm:  rgba(15, 23, 42, 0.04);
  --shadow-md:  rgba(15, 23, 42, 0.06);
  --shadow-lg:  rgba(15, 23, 42, 0.08);

  /* Radii */
  --radius:     8px;
  --radius-sm:  4px;
  --radius-lg:  16px;
  --radius-full: 100px;

  /* Layout */
  --max-width:  1200px;

  /* Transitions */
  --transition: 200ms ease;

  /* Typography */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:  'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
}

/* ── Dark Theme ──────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:         #0F172A;
  --bg-subtle:  #1E293B;
  --bg-graph:   #1E293B;
  --nav-bg:     rgba(15, 23, 42, 0.85);

  --primary:    #F1F5F9;
  --primary-hover: #CBD5E1;
  --accent:     #60A5FA;
  --accent-dim: #3B82F6;
  --success:    #34D399;
  --warning:    #FBBF24;
  --danger:     #F87171;
  --graph:      #38BDF8;

  --text:       #E2E8F0;
  --text-muted: #94A3B8;
  --text-inverse: #0F172A;

  --border:     #1E293B;
  --border-light: #334155;

  --shadow-sm:  rgba(0, 0, 0, 0.2);
  --shadow-md:  rgba(0, 0, 0, 0.3);
  --shadow-lg:  rgba(0, 0, 0, 0.4);
}
