/* ============================================================
   THE STARPRINTS — SPACING, RADII, SHADOWS, MOTION
   ============================================================ */

:root {
  /* --- Spacing scale (4px base) --- */
  --space-0: 0;
  --space-1: 0.25rem;  /* 4 */
  --space-2: 0.5rem;   /* 8 */
  --space-3: 0.75rem;  /* 12 */
  --space-4: 1rem;     /* 16 */
  --space-5: 1.5rem;   /* 24 */
  --space-6: 2rem;     /* 32 */
  --space-7: 3rem;     /* 48 */
  --space-8: 4rem;     /* 64 */
  --space-9: 6rem;     /* 96 */
  --space-10: 8rem;    /* 128 */

  /* --- Radii (cards are generously rounded) --- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;   /* default card */
  --radius-xl: 32px;   /* hero panels */
  --radius-pill: 999px;

  /* --- Borders --- */
  --border-width: 1px;
  --border-width-thick: 2px;

  /* --- Shadows & glows (soft, atmospheric) --- */
  --shadow-sm: 0 2px 8px -2px rgba(7, 6, 13, 0.4);
  --shadow-md: 0 12px 32px -12px rgba(7, 6, 13, 0.55);
  --shadow-lg: 0 24px 60px -20px rgba(7, 6, 13, 0.65); /* default card */
  --shadow-pill: 0 8px 22px -8px rgba(7, 6, 13, 0.45);
  --shadow-glow-gold: 0 0 36px rgba(201, 162, 39, 0.38);
  --shadow-glow-aurora: 0 0 60px rgba(107, 74, 158, 0.45);
  --shadow-inset-hairline: inset 0 0 0 1px var(--border-hairline);

  /* --- Motion (gentle, celestial drift) --- */
  --ease-glide: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --dur-fast: 160ms; /* @kind other */
  --dur-base: 280ms; /* @kind other */
  --dur-slow: 600ms; /* @kind other */

  /* --- Layout --- */
  --container-max: 1180px; /* @kind other */
  --container-narrow: 760px; /* @kind other */
}
