/* Arc Digital — Spacing, Radius, Shadow & Layout Tokens */

:root {
  /* ── Spacing Scale (4px base) ── */
  --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-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-7:   1.75rem;   /* 28px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */

  /* ── Border Radius ── */
  --radius-sm:   4px;   /* table cells, dense UI elements */
  --radius-md:   8px;   /* cards, inputs, buttons */
  --radius-lg:   12px;  /* modals, panels */
  --radius-xl:   16px;  /* feature cards */
  --radius-2xl:  24px;  /* slide callouts */
  --radius-full: 9999px; /* pills, badges */

  /* ── Shadows ── */
  --shadow-xs:  0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm:  0 1px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg:  0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-xl:  0 16px 40px rgba(0, 0, 0, 0.14), 0 8px 16px rgba(0, 0, 0, 0.08);
  --shadow-dark-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-dark-md: 0 6px 20px rgba(0, 0, 0, 0.45);

  /* ── Z-index ── */
  --z-base:    0; /* @kind other */
  --z-raised:  10; /* @kind other */
  --z-sticky:  100; /* @kind other */
  --z-overlay: 200; /* @kind other */
  --z-modal:   300; /* @kind other */
  --z-toast:   400; /* @kind other */
  --z-tooltip: 500; /* @kind other */

  /* ── Transitions ── */
  --transition-fast:   150ms ease-out; /* @kind other */
  --transition-base:   200ms ease-out; /* @kind other */
  --transition-slow:   300ms ease-in-out; /* @kind other */

  /* ── Layout ── */
  --layout-sidebar-width: 240px; /* @kind other */
  --layout-header-height: 60px; /* @kind other */
  --layout-max-width:     1280px; /* @kind other */
  --layout-content-width: 960px; /* @kind other */

  /* ── Slide layout ── */
  --slide-width:          1280px; /* @kind other */
  --slide-height:         720px; /* @kind other */
  --slide-padding-x:      80px; /* @kind other */
  --slide-padding-y:      60px; /* @kind other */
}
