/* Design tokens — paleta D OnChainBR Brand (sábado planning) */
:root {
  /* Brand colors */
  --brand-green: #22c55e;
  --brand-purple: #8b5cf6;
  --brand-indigo: #312e81;
  --brand-white: #e5e7eb;

  /* Backgrounds */
  --bg-primary: #0a0a0f;
  --bg-secondary: #14141c;
  --bg-tertiary: #1f1f2a;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.04);

  /* Text */
  --text-primary: #e5e7eb;
  --text-secondary: #a8a8b3;
  --text-muted: #7a7a85;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  /* Status colors */
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --accent-yellow: #eab308;
  --accent-orange: #f97316;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-purple: #a855f7;
  --accent-pink: #f472b6;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-serif: Georgia, serif;

  /* Sizes */
  --label-xs: 9px;
  --label-sm: 10px;
  --label-md: 11px;

  /* Layout */
  --sidebar-width: 240px;
  --header-height: 60px;
  --content-max-width: 1400px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}
