/* ==========================================================================
   10Zone Design Tokens & Variables - Clean Light Tech & Bento Grid Theme
   ========================================================================== */

:root {
  /* Color Palette - Clean Light Tech & Bento Style */
  --bg-dark: #f8fafc;
  --bg-dark-alt: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  
  /* Borders & Dividers */
  --border-color: #e2e8f0;
  --border-glow: rgba(99, 102, 241, 0.4);
  
  /* Typography Colors */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  /* Brand Accents & Gradients */
  --accent-cyan: #0284c7;
  --accent-blue: #2563eb;
  --accent-purple: #4f46e5;
  --accent-pink: #ec4899;
  
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --gradient-accent: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  --gradient-glow: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
  
  /* Typography System */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  /* Layout & Spacing */
  --container-max-width: 1200px;
  --header-height: 80px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Shadows & Effects */
  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 20px 40px -15px rgba(79, 70, 229, 0.15);
  --backdrop-blur: blur(16px);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
