/* ============================================================
   KIVO DIGITAL — SPACING, RADII, SHADOWS, MOTION
   8px base grid. Generous radii on cards, sharp on data chrome.
   ============================================================ */

:root {
  /* ---- Spacing scale (8px base) ---- */
  --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;

  /* ---- Radii ----
     Near-sharp on purpose — corners read engineered & institutional.
     The brand seriousness lives in restraint here. */
  --radius-xs:   1px;
  --radius-sm:   2px;
  --radius-md:   4px;    /* default control / inset */
  --radius-lg:   6px;    /* cards */
  --radius-xl:   9px;    /* hero panels */
  --radius-2xl:  12px;
  --radius-pill: 999px;

  /* ---- Borders ---- */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* ---- Elevation (dark UI: borders + soft ambient, sparing shadow) ---- */
  --shadow-none: none;
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.45);
  --shadow-lg:  0 24px 60px rgba(0,0,0,0.55);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.04);

  /* Lime glow — used sparingly on hero / active accents */
  --glow-lime:       0 0 0 1px rgba(182,202,34,0.4), 0 0 28px rgba(182,202,34,0.22);
  --glow-lime-soft:  0 0 24px rgba(182,202,34,0.16);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 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 */
  --duration-fast:   120ms; /* @kind other */
  --duration-base:   200ms; /* @kind other */
  --duration-slow:   360ms; /* @kind other */

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-wide: 1440px;
  --gutter: var(--space-6);
}
