/* Heckel Consulting — Shadows, borders, motion tokens.
   Shadows are soft and cool (never black); the primary CTA carries a blue glow. */
:root {
  --shadow-xs:  0 1px 2px rgba(11, 15, 22, 0.06);
  --shadow-sm:  0 2px 8px rgba(11, 15, 22, 0.06);
  --shadow-md:  0 10px 26px rgba(11, 15, 22, 0.08);
  --shadow-lg:  0 20px 50px rgba(11, 15, 22, 0.12);
  --shadow-xl:  0 32px 70px rgba(11, 15, 22, 0.16);
  --shadow-brand: 0 12px 30px rgba(24, 119, 254, 0.30);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);

  --border-width: 1px;
  --ring-width:   3px;

  /* Motion — calm, confident easing. No bounce. */
  --dur-fast: 120ms; /* @kind other */
  --dur:      200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-in-out:cubic-bezier(0.65, 0.05, 0.36, 1); /* @kind other */

  /* Frosted / glass overlay */
  --blur-sm: blur(8px); /* @kind other */
  --blur-md: blur(18px); /* @kind other */
  --overlay-scrim: rgba(11, 15, 22, 0.55); /* @kind color */
}
