@layer base {

/* =========================================
   ROOT DESIGN SYSTEM
========================================= */
:root {

  /* =========================================
     COLORS
  ========================================= */
  --color-primary: #f39c12;
  --color-primary-dark: #d35400;

  --color-dark: #1e1e1e;
  --color-light: #ffffff;

  --color-gray: #777;
  --color-gray-light: #999;

  --color-border: #eee;
  --color-bg: #f9f9f9;

  /* =========================================
     TYPOGRAPHY
  ========================================= */
  --font-main: 'Inter', sans-serif;

  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;

  --heading-1: 2.5rem;
  --heading-2: 2rem;
  --heading-3: 1.5rem;

  /* =========================================
     SPACING SYSTEM (8pt scale)
  ========================================= */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-xxl: 80px;

  /* =========================================
     LAYOUT
  ========================================= */
  --container-width: 1200px;
  --container-padding: 20px;

  /* =========================================
     BORDER & RADIUS
  ========================================= */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 12px;

  /* =========================================
     SHADOWS
  ========================================= */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);

  /* =========================================
     TRANSITIONS
  ========================================= */
  --transition-fast: 0.2s ease;
  --transition: all 0.3s ease;
  --transition-slow: 0.5s ease;

  /* =========================================
     Z-INDEX SCALE
  ========================================= */
  --z-header: 1000;
  --z-dropdown: 1100;
  --z-overlay: 1200;
  --z-modal: 1300;

}

/* =========================================
   DARK MODE READY (OPTIONAL)
========================================= */
[data-theme="dark"] {

  --color-dark: #ffffff;
  --color-light: #1e1e1e;

  --color-gray: #ccc;
  --color-border: #333;
  --color-bg: #111;

}

}