/* ============================================================
   Active Sports FC — Effects: radius, borders, shadows, motion, z
   Architectural/athletic feel: sharp-to-modest radii, warm shadows.
   Motion respects prefers-reduced-motion at the component level.
   ============================================================ */

:root {
  /* ---- Radius (kept tight — sharp, architectural) ---- */
  --radius-none: 0;
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;
  --radius-xl:   12px;
  --radius-pill: 999px;

  /* ---- Border widths ---- */
  --border-width-hairline: 1px;
  --border-width:          1px;
  --border-width-thick:    2px;
  --border-rule-accent:    2px;   /* gold rule under kickers / above sections */

  /* ---- Shadows (warm-tinted, restrained) ---- */
  --shadow-xs: 0 1px 2px rgba(24, 21, 16, 0.06);
  --shadow-sm: 0 1px 3px rgba(24, 21, 16, 0.08), 0 1px 2px rgba(24, 21, 16, 0.06);
  --shadow-md: 0 4px 12px rgba(24, 21, 16, 0.10), 0 2px 4px rgba(24, 21, 16, 0.06);
  --shadow-lg: 0 12px 28px rgba(24, 21, 16, 0.14), 0 4px 10px rgba(24, 21, 16, 0.08);
  --shadow-card: var(--shadow-sm);

  /* ---- Motion (snappy, athletic; no bounce) ---- */
  --duration-fast:   120ms; /* @kind other */
  --duration-base:   200ms; /* @kind other */
  --duration-slow:   320ms; /* @kind other */
  --ease-standard: cubic-bezier(0.2, 0, 0.1, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in:       cubic-bezier(0.4, 0, 1, 1); /* @kind other */

  /* ---- Z-index scale ---- */
  --z-base: 0; /* @kind other */
  --z-raised: 10; /* @kind other */
  --z-sticky: 100; /* @kind other */
  --z-header: 200; /* @kind other */
  --z-overlay: 900; /* @kind other */
  --z-modal: 1000; /* @kind other */
  --z-toast: 1100; /* @kind other */
}
