/* Globit — Spacing, radii, shadow & layout tokens */
:root {
  /* ---- Spacing scale (4px base grid) ---- */
  --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:   2.5rem;   /* 40 */
  --space-8:   3rem;     /* 48 */
  --space-9:   4rem;     /* 64 */
  --space-10:  5rem;     /* 80 */
  --space-12:  7.5rem;   /* 120 */
  --space-14:  10rem;    /* 160 */

  /* ---- Radii — brand leans fully-rounded (pill) for actions, soft for cards ---- */
  --radius-xs:    4px;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --radius-2xl:   44px;
  --radius-pill:  999px;   /* capsule buttons & category tags */
  --radius-round: 50%;

  /* ---- Border widths ---- */
  --border-hair:  1px;
  --border-thin:  1.5px;
  --border-med:   2px;

  /* ---- Elevation — neutral shadows on light, plus signature green glow on dark ---- */
  --shadow-sm:  0 1px 2px rgba(12,11,13,0.08);
  --shadow-md:  0 6px 20px rgba(12,11,13,0.10);
  --shadow-lg:  0 18px 48px rgba(12,11,13,0.16);

  /* Green glow — the brand's defining dark-surface effect */
  --glow-sm:   0 0 24px rgba(3,234,118,0.20);
  --glow-md:   0 0 48px rgba(3,234,118,0.28);
  --glow-lg:   0 0 96px rgba(3,234,118,0.38);
  --glow-edge: 0 0 0 1px rgba(3,234,118,0.45), 0 0 28px rgba(3,234,118,0.25);

  /* ---- Layout ---- */
  --container-sm:  720px;
  --container-md:  1040px;
  --container-lg:  1280px;
  --container-xl:  1440px;
  --gutter:        clamp(1.5rem, 4vw, 4rem); /* @kind spacing */

  /* ---- Motion — restrained, institutional: ease, no bounce ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-base:   220ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */

  /* ---- Signature gradients / textures ---- */
  --grad-green-glow: radial-gradient(60% 60% at 50% 40%, rgba(3,234,118,0.55) 0%, rgba(3,234,118,0.10) 45%, transparent 72%); /* @kind other */
  --grad-ink-fade:   linear-gradient(180deg, #000000 0%, #0b1f12 120%); /* @kind other */
  --grad-edge-light: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%); /* @kind other */
}
