/* The Fast Way — Radius, shadow, motion & effect tokens
   Rounded, friendly forms; soft diffuse shadows on light UI; the pill is the
   signature CTA shape (echoing the rounded strokes of the knot mark). */

:root {
  /* Corner radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;   /* default cards */
  --radius-lg: 22px;   /* large feature cards */
  --radius-xl: 32px;
  --radius-pill: 999px; /* buttons, tags */

  /* Shadows (for light-surface product UI) */
  --shadow-xs: 0 1px 2px rgba(11, 53, 49, 0.06);
  --shadow-sm: 0 2px 8px rgba(11, 53, 49, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 53, 49, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 53, 49, 0.14);
  /* Green glow for accented CTAs on dark */
  --shadow-accent: 0 10px 30px rgba(32, 209, 129, 0.28);

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

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-base: 220ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */

  /* Blur (glass panels over imagery) */
  --blur-panel: 14px;
}
