/* Enkee — Spacing, radius, shadow & motion tokens */

:root {
  /* Spacing — 4px base scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --content-max-width: 1120px;
  --content-padding: clamp(24px, 5vw, 96px);

  /* Radius — the brand is rectilinear/circular (rings, straight nav), not soft-rounded */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* Shadow — flat brand; shadows are used sparingly, soft & low-contrast */
  --shadow-sm: 0 1px 2px rgba(15, 37, 66, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 37, 66, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 37, 66, 0.12);
  --shadow-focus: 0 0 0 3px rgba(80, 173, 198, 0.35);

  /* Motion — understated, no bounce */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 220ms; /* @kind other */
  --duration-slow: 400ms; /* @kind other */

  /* Borders */
  --border-width: 1px;
}
