/* Hawky — spacing, radius, shadow, motion */
:root {
  /* Spacing (4px base) */
  --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;

  /* Radius — the mark is a leaf: one sharp corner, rest round.
     UI uses generous rounding; --radius-leaf echoes the logo. */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --radius-leaf: 16px 16px 16px 4px;   /* leaf motif: one tucked corner */

  /* Shadows — soft, green-tinted ambient */
  --shadow-card: 0 1px 3px rgba(26, 26, 26, 0.06), 0 4px 16px rgba(26, 26, 26, 0.06);
  --shadow-raised: 0 8px 28px rgba(26, 26, 26, 0.12);
  --shadow-brand: 0 6px 18px rgba(35, 179, 58, 0.28);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */

  /* Focus */
  --focus-ring: 0 0 0 3px rgba(35, 179, 58, 0.3);
}
