/* Genyus School — Spacing, radii, shadows, motion
   The brand is round and friendly: generous corner radii, soft shadows,
   pill buttons. Playful, bouncy motion. */

:root {
  /* Spacing scale (4px base) */
  --space-0:  0;
  --space-1:  0.25rem;  /* 4  */
  --space-2:  0.5rem;   /* 8  */
  --space-3:  0.75rem;  /* 12 */
  --space-4:  1rem;     /* 16 */
  --space-5:  1.5rem;   /* 24 */
  --space-6:  2rem;     /* 32 */
  --space-7:  3rem;     /* 48 */
  --space-8:  4rem;     /* 64 */
  --space-9:  6rem;     /* 96 */

  /* Radii — friendly & round */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 999px;   /* buttons, chips, tags */
  --radius-circle: 50%;

  /* Shadows — soft, tinted toward brand ink, never harsh */
  --shadow-xs: 0 1px 2px rgba(14, 17, 22, 0.06);
  --shadow-sm: 0 2px 8px rgba(14, 17, 22, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 17, 22, 0.10);
  --shadow-lg: 0 18px 48px rgba(14, 17, 22, 0.14);
  /* Colored glow used on primary/gradient CTAs */
  --shadow-brand: 0 10px 28px rgba(255, 53, 165, 0.35);
  --shadow-blue:  0 10px 28px rgba(26, 172, 255, 0.32);

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(26, 172, 255, 0.45);

  /* Motion — playful, slightly bouncy */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-normal: 220ms; /* @kind other */
  --dur-slow:   380ms; /* @kind other */

  /* Layout */
  --container-max: 1200px; /* @kind spacing */
  --container-gutter: var(--space-5); /* @kind spacing */
}
