/* ═══════════════════════════════════════════════════════
   VERTEX EDUCATION DESIGN TOKENS — Clean & Professional
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* ── Brand Colors ── */
  --vertex-blue: #003865;
  --vertex-blue-light: #004a7a;
  --vertex-gold: #CBA052;
  --vertex-gold-light: #d4a855;
  --vertex-gray: #707372;

  /* ── Typography ── */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.5rem;      /* 24px */
  --text-2xl: 2rem;       /* 32px */
  --text-3xl: 2.5rem;     /* 40px */
  --text-4xl: 3rem;       /* 48px */

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-loose: 1.75;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;

  /* ── Colors — Light Theme ── */
  --bg-primary: #f8f9fa;
  --bg-surface: #ffffff;
  --bg-elevated: #ffffff;
  --bg-hover: #f0f1f3;
  --bg-input: #ffffff;

  --border-subtle: #e9ecef;
  --border-default: #dee2e6;
  --border-strong: #ced4da;

  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-tertiary: #adb5bd;
  --text-inverse: #ffffff;

  /* ── Category Colors (Tier-based) ── */
  --accent-delete: #dc3545;
  --accent-delete-dim: #dc354510;
  --accent-delete-glow: #dc354530;

  --accent-archive: var(--vertex-gold);
  --accent-archive-dim: #CBA05215;
  --accent-archive-glow: #CBA05235;

  --accent-rename: var(--vertex-blue);
  --accent-rename-dim: #00386510;
  --accent-rename-glow: #00386530;

  --accent-structure: #6f42c1;
  --accent-structure-dim: #6f42c110;
  --accent-structure-glow: #6f42c130;

  /* ── Action Colors ── */
  --accent-approve: #2DA44A;
  --accent-approve-dim: #2DA44A15;
  --accent-reject: #dc3545;
  --accent-reject-dim: #dc354515;

  /* ── Tier Colors ── */
  --tier-1: #dc3545;
  --tier-2: #fd7e14;
  --tier-3: #17a2b8;

  /* ── Utility ── */
  --white: #ffffff;
  --black: #000000;

  /* ── Spacing ── */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */

  /* ── Radii ── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 35px rgba(0, 56, 101, 0.15);
  --shadow-glow-delete: 0 0 15px var(--accent-delete-glow);
  --shadow-glow-archive: 0 0 15px var(--accent-archive-glow);
  --shadow-glow-rename: 0 0 15px var(--accent-rename-glow);
  --shadow-glow-structure: 0 0 15px var(--accent-structure-glow);

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* ── Z-Index ── */
  --z-base: 0;
  --z-above: 10;
  --z-sticky: 100;
  --z-modal: 1000;
  --z-toast: 2000;

  /* ── Gradients ── */
  --gradient-hero: linear-gradient(135deg, var(--vertex-blue) 0%, var(--vertex-blue-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--vertex-gold) 0%, var(--vertex-gold-light) 100%);
  --gradient-subtle: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

  /* ── Hazard Stripe (decorative) ── */
  --hazard-stripe: repeating-linear-gradient(
    -45deg,
    var(--vertex-gold) 0px,
    var(--vertex-gold) 8px,
    var(--vertex-gold-light) 8px,
    var(--vertex-gold-light) 16px
  );

  --hazard-stripe-subtle: repeating-linear-gradient(
    -45deg,
    var(--border-subtle) 0px,
    var(--border-subtle) 4px,
    transparent 4px,
    transparent 8px
  );
}
