/* Hashem Alalem — Spacing, radius, shadow, motion tokens */

:root {
  /* Spacing (4px base grid) */
  --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;

  /* Radii — soft-squared, not pill-happy. Mirrors the logo's rounded-flag bars. */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows — dark-surface elevation, low-contrast, no soft drop shadows on light bg */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.55);
  --shadow-glow-brand: 0 0 0 1px rgba(59, 111, 224, 0.3), 0 8px 32px rgba(59, 111, 224, 0.25);
  --shadow-glow-teal: 0 0 32px rgba(46, 230, 198, 0.35);

  /* Motion — quick, purposeful, no bounce. Matches a "play/forward" mark: linear-forward, not springy. */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0, 0, 0.2, 1); /* @kind other */
  --ease-in: cubic-bezier(0.4, 0, 1, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */
}
