/* UnitCycle — CSS Custom Properties */

:root {
  /* ─── Core Colors ─────────────────────────────────────── */
  --primary:        #0F172A;
  --primary-light:  #1E293B;
  --accent:         #EAB308;
  --accent-light:   #FACC15;

  /* ─── Surface Colors ──────────────────────────────────── */
  --surface:        #F8FAFC;
  --card-bg:        #FFFFFF;

  /* ─── Border Colors ───────────────────────────────────── */
  --border:         #E2E8F0;
  --border-light:   #F1F5F9;

  /* ─── Text Colors ─────────────────────────────────────── */
  --text-primary:   #0F172A;
  --text-secondary: #475569;
  --text-tertiary:  #94A3B8;
  --text-on-dark:   #FFFFFF;

  /* ─── Status Colors ───────────────────────────────────── */
  --success:        #10B981;
  --success-bg:     #ECFDF5;
  --danger:         #EF4444;
  --danger-bg:      #FEF2F2;
  --info:           #3B82F6;
  --info-bg:        #EFF6FF;
  --warning:        #F59E0B;
  --warning-bg:     #FFFBEB;

  /* ─── Spacing Scale ───────────────────────────────────── */
  --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-7:  1.75rem;    /* 28px */
  --space-8:  2rem;       /* 32px */
  --space-9:  2.25rem;    /* 36px */
  --space-10: 2.5rem;     /* 40px */
  --space-11: 2.75rem;    /* 44px */
  --space-12: 3rem;       /* 48px */
  --space-14: 3.5rem;     /* 56px */
  --space-16: 4rem;       /* 64px */
  --space-20: 5rem;       /* 80px */
  --space-24: 6rem;       /* 96px */

  /* ─── Typography ──────────────────────────────────────── */
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* ─── Border Radii ────────────────────────────────────── */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* ─── Shadows ─────────────────────────────────────────── */
  --shadow-sm:  0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:  0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 4px 20px rgba(234, 179, 8, 0.25);

  /* ─── Transitions ─────────────────────────────────────── */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   350ms ease;

  /* ─── Layout ──────────────────────────────────────────── */
  --container-max:     1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* ─── Navigation ──────────────────────────────────────── */
  --nav-height: 72px;
}
