/* ============================================================
   See You Onchain — Spacing, radius, shadow, motion tokens
   ============================================================ */
:root {
  /* --- Spacing scale --- */
  --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;

  /* --- Radii --- */
  --radius-sm: 7px;     /* chips, small buttons, download tags */
  --radius-md: 11px;    /* buttons, inputs */
  --radius-lg: 16px;    /* cards, panels */
  --radius-xl: 18px;    /* logo boxes, large surfaces */
  --radius-pill: 100px; /* pills, tags */
  --radius-full: 9999px;

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

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(4, 8, 18, 0.45);
  --shadow-lg: 0 18px 60px rgba(4, 8, 18, 0.55);
  --shadow-logo: 0 10px 44px rgba(10, 19, 31, 0.6); /* drop-shadow on hero logo */
  --vignette: inset 0 0 340px 90px rgba(0, 0, 0, 0.58); /* @kind shadow */
  --glow-blue-shadow: 0 0 0 1px rgba(145, 179, 240, 0.4), 0 0 24px rgba(145, 179, 240, 0.25);
  --glow-orange-shadow: 0 0 0 1px rgba(244, 109, 50, 0.4), 0 0 24px rgba(244, 109, 50, 0.25);

  /* --- The glitch split (blue/orange offset on pixel letters) --- */
  --glitch-shadow: 0.035em 0 var(--orange), -0.035em 0 var(--blue);

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1); /* @kind other */
  --ease-rise: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 0.18s; /* @kind other */
  --dur-base: 0.25s; /* @kind other */
  --dur-slow: 0.9s; /* @kind other */

  /* --- Layout --- */
  --maxw: 1180px;
}
