/* ============================================================
   Go Auto — Spacing, radius, shadow, border & layout tokens
   8px base grid. Corners are modest (cards on the brand site
   are near-square with a signature thin orange rule); controls
   get a soft 8px radius, pills for chips/badges.
   ============================================================ */
:root {
  /* Spacing (8px base, with 2/4 micro-steps) */
  --space-0:   0;
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-32: 128px;

  /* Radius */
  --radius-xs:   3px;
  --radius-sm:   6px;
  --radius-md:   8px;   /* default control radius */
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-pill: 999px;
  --radius-card: 10px;

  /* Borders */
  --border-width: 1px; /* @kind other */
  --border-width-strong: 2px; /* @kind other */
  --rule-width: 2px; /* @kind other */

  /* Shadows — soft, warm-tinted, never heavy */
  --shadow-xs: 0 1px 2px rgba(14, 34, 48, 0.06);
  --shadow-sm: 0 1px 3px rgba(14, 34, 48, 0.08), 0 1px 2px rgba(14, 34, 48, 0.05);
  --shadow-md: 0 4px 12px rgba(14, 34, 48, 0.10), 0 2px 4px rgba(14, 34, 48, 0.06);
  --shadow-lg: 0 12px 28px rgba(14, 34, 48, 0.14), 0 4px 8px rgba(14, 34, 48, 0.06);
  --shadow-xl: 0 24px 50px rgba(14, 34, 48, 0.18);
  --shadow-focus: 0 0 0 3px var(--focus-ring);
  --shadow-primary: 0 6px 16px rgba(241, 91, 34, 0.30);

  /* Motion */
  --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-in:       cubic-bezier(0.4, 0, 1, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-normal: 200ms; /* @kind other */
  --dur-slow:   320ms; /* @kind other */

  /* Layout */
  --container-sm:  640px; /* @kind other */
  --container-md:  860px; /* @kind other */
  --container-lg: 1100px; /* @kind other */
  --container-xl: 1320px; /* @kind other */
  --z-base: 1; /* @kind other */
  --z-sticky: 100; /* @kind other */
  --z-overlay: 1000; /* @kind other */
  --z-modal: 1100; /* @kind other */
  --z-toast: 1200; /* @kind other */
}
