/* Speedcast — Elevation, shadow, transition tokens */

:root {
  /* ---- Shadows — soft, cool-tinted (deep-blue base), never harsh black ---- */
  --shadow-xs: 0 1px 2px rgba(33, 59, 74, 0.06);
  --shadow-sm: 0 1px 3px rgba(33, 59, 74, 0.08), 0 1px 2px rgba(33, 59, 74, 0.06);
  --shadow-md: 0 4px 12px rgba(33, 59, 74, 0.10), 0 2px 4px rgba(33, 59, 74, 0.06);
  --shadow-lg: 0 12px 28px rgba(33, 59, 74, 0.14), 0 4px 8px rgba(33, 59, 74, 0.06);
  --shadow-xl: 0 24px 48px rgba(33, 59, 74, 0.18);

  /* brand glow for focus / active satellite-link states */
  --ring-brand: 0 0 0 3px rgba(0, 166, 180, 0.30);

  /* ---- Transitions ---- */
  --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1); /* @kind other */
  --ease-in:       cubic-bezier(0.4, 0.0, 1, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-normal: 200ms; /* @kind other */
  --dur-slow:   320ms; /* @kind other */

  /* ---- Signature chevron stripe (30° diagonal brand pattern) ---- */
  --chevron-stripes: repeating-linear-gradient(
    120deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 2px,
    transparent 2px,
    transparent 16px
  ); /* @kind other */
}
