/* ==============================================================================
   veilanon — Core Design Tokens (Liquid Glass & Deep Violet Obsidian Theme)
   Precision UI / Apple-grade Frosted Glass / Zero AI Slop
   ============================================================================== */

:root {
  /* Canvas & Dark Atmosphere */
  --bg-canvas: #06040a;
  --bg-canvas-subtle: #0a0712;

  /* Liquid Glass Surfaces (Translucent & Frosted) */
  --glass-base: rgba(18, 13, 30, 0.42);
  --glass-elevated: rgba(26, 18, 44, 0.55);
  --glass-card: rgba(22, 16, 38, 0.48);
  --glass-pill: rgba(255, 255, 255, 0.035);
  --glass-code: rgba(11, 8, 20, 0.65);
  --glass-header: rgba(9, 6, 16, 0.72);
  
  /* Specular Glass Lighting & Rims */
  --glass-rim-subtle: rgba(255, 255, 255, 0.08);
  --glass-rim-medium: rgba(255, 255, 255, 0.14);
  --glass-rim-bright: rgba(255, 255, 255, 0.28);
  --glass-rim-violet: rgba(167, 139, 250, 0.3);

  /* Violet & Purple Accents */
  --accent-primary: #8b5cf6;
  --accent-primary-hover: #9f75ff;
  --accent-secondary: #7c3aed;
  --accent-tertiary: #6d28d9;
  --accent-light: #c4b5fd;
  --accent-soft: rgba(139, 92, 246, 0.12);
  --accent-soft-hover: rgba(139, 92, 246, 0.22);
  --accent-glow: rgba(139, 92, 246, 0.28);
  --accent-glow-strong: rgba(139, 92, 246, 0.5);

  /* Status & Security Indicators */
  --color-success: #10b981;
  --color-success-bg: rgba(16, 185, 129, 0.1);
  --color-warning: #f59e0b;
  --color-warning-bg: rgba(245, 158, 11, 0.1);
  --color-danger: #ef4444;
  --color-danger-bg: rgba(239, 68, 68, 0.1);
  --color-info: #06b6d4;
  --color-info-bg: rgba(6, 182, 212, 0.1);

  /* Typography Colors */
  --text-primary: #f8fafc;
  --text-secondary: #e2e8f0;
  --text-tertiary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-faint: #64748b;
  --text-accent: #c4b5fd;
  --text-accent-glow: #e9d5ff;

  /* Typography Stack with system fallback fonts */
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, 'Courier New', monospace;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Liquid Glass Box Shadows & Inset Highlights */
  --shadow-glass-sm: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  --shadow-glass-md: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.16);
  --shadow-glass-lg: 0 16px 48px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.22);
  --shadow-glow: 0 0 50px -10px var(--accent-glow);
  --shadow-glow-lg: 0 0 80px -15px var(--accent-glow-strong);

  /* Layout Spacing */
  --container-max: 1240px;
  --container-wide: 1360px;
  --header-height: 74px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
