/* ==========================================================================
   DesignBlu — Spacing, radius, shadow, motion tokens
   Editorial rhythm: generous whitespace, soft-but-not-playful shapes.
   ========================================================================== */

:root {
  /* ---- Base spacing scale ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 120px;
  --space-11: 144px;

  /* ---- Macro section rhythm (desktop / tablet / mobile) ---- */
  --section-gap-desktop: 120px;
  --section-gap-tablet: 88px;
  --section-gap-mobile: 64px;

  /* ---- Layout ---- */
  --container-max: 1240px;
  --container-padding-desktop: 40px;
  --container-padding-mobile: 20px;

  /* ---- Radii ---- */
  --radius-sm: 8px;          /* inputs, small chips */
  --radius-button: 8px;      /* 6–10px: buttons are soft, never pill */
  --radius-md: 16px;
  --radius-card: 20px;       /* 18–22px cards */
  --radius-panel: 24px;      /* 20–26px hero / glass panels */
  --radius-pill: 999px;      /* nav pills, tags only */

  /* ---- Shadows (light, never heavy) ---- */
  --shadow-soft: 0 1px 2px rgba(30, 35, 40, 0.04), 0 8px 24px rgba(30, 35, 40, 0.06);
  --shadow-card: 0 2px 6px rgba(30, 35, 40, 0.05), 0 16px 32px rgba(4, 59, 98, 0.07);
  --shadow-panel: 0 12px 40px rgba(4, 59, 98, 0.12);
  --shadow-button: 0 8px 20px rgba(203, 139, 52, 0.28);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */
}
