/* =============================================
   INTELAGENT — Spacing & Layout Tokens
   ============================================= */

:root {
  /* ── Base Space Scale (4px base unit) ── */
  --space-0:  0;
  --space-px: 1px;
  --space-0-5: 0.125rem;  /* 2px  */
  --space-1:   0.25rem;   /* 4px  */
  --space-1-5: 0.375rem;  /* 6px  */
  --space-2:   0.5rem;    /* 8px  */
  --space-2-5: 0.625rem;  /* 10px */
  --space-3:   0.75rem;   /* 12px */
  --space-3-5: 0.875rem;  /* 14px */
  --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 */
  --space-28:  7rem;      /* 112px */
  --space-32:  8rem;      /* 128px */
  --space-40:  10rem;     /* 160px */
  --space-48:  12rem;     /* 192px */
  --space-56:  14rem;     /* 224px */
  --space-64:  16rem;     /* 256px */

  /* ── Border Radii ── */
  --radius-none: 0;
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  20px;
  --radius-3xl:  28px;
  --radius-full: 9999px;

  /* ── Shadows — warm, orange-tinted where elevated ── */
  --shadow-xs:  0 1px 2px rgba(43, 39, 36, 0.06);
  --shadow-sm:  0 1px 3px rgba(43, 39, 36, 0.08), 0 1px 2px rgba(43, 39, 36, 0.04);
  --shadow-md:  0 4px 8px rgba(43, 39, 36, 0.08), 0 1px 3px rgba(43, 39, 36, 0.06);
  --shadow-lg:  0 8px 20px rgba(43, 39, 36, 0.10), 0 2px 6px rgba(43, 39, 36, 0.06);
  --shadow-xl:  0 16px 40px rgba(43, 39, 36, 0.12), 0 4px 10px rgba(43, 39, 36, 0.06);
  --shadow-2xl: 0 24px 60px rgba(43, 39, 36, 0.14), 0 8px 16px rgba(43, 39, 36, 0.06);
  --shadow-inner: inset 0 2px 4px rgba(43, 39, 36, 0.06);

  /* Accent glow — for CTAs and hero elements */
  --shadow-orange:    0 4px 16px rgba(224, 117, 14, 0.28);
  --shadow-orange-lg: 0 8px 32px rgba(224, 117, 14, 0.32);

  /* ── Transitions ── */
  --transition-fast:   100ms ease; /* @kind other */
  --transition-base:   180ms ease; /* @kind other */
  --transition-slow:   300ms ease; /* @kind other */
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */

  /* ── Z-Index ── */
  --z-0:        0; /* @kind other */
  --z-10:       10; /* @kind other */
  --z-20:       20; /* @kind other */
  --z-30:       30; /* @kind other */
  --z-dropdown: 100; /* @kind other */
  --z-sticky:   200; /* @kind other */
  --z-overlay:  300; /* @kind other */
  --z-modal:    400; /* @kind other */
  --z-toast:    500; /* @kind other */
  --z-tooltip:  600; /* @kind other */

  /* ── Layout ── */
  --container-xs:  480px; /* @kind other */
  --container-sm:  640px; /* @kind other */
  --container-md:  768px; /* @kind other */
  --container-lg:  1024px; /* @kind other */
  --container-xl:  1280px; /* @kind other */
  --container-2xl: 1440px; /* @kind other */

  --nav-height: 64px; /* @kind other */
  --sidebar-width: 280px; /* @kind other */
}
