/* Design tokens — $CASHCAT
   Direction: night-market terminal. Near-black surfaces, one acid-lime accent,
   rounded meme-native typography against monospaced trading data. */

:root {
  /* Surfaces */
  --ink-1000: #060706;
  --ink-900: #0b0c0b;
  --ink-850: #101210;
  --ink-800: #16181a;
  --ink-700: #1c1f1d;
  --line: #262b27;
  --line-strong: #343a35;

  /* Ink */
  --text: #f3f5f0;
  --text-dim: #a6ada4;
  --text-faint: #6e756c;

  /* Accent */
  --lime: #ccf526;
  --lime-bright: #dcff4d;
  --lime-deep: #9cc00d;
  --lime-wash: rgba(204, 245, 38, 0.12);
  --lime-glow: rgba(204, 245, 38, 0.35);

  /* Signal */
  --down: #ff5b5b;
  --up: #4ade80;

  /* Type */
  --font-display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --text-micro: 0.6875rem;
  --text-sm: 0.875rem;
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lead: clamp(1.0625rem, 0.98rem + 0.42vw, 1.3125rem);
  --text-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.625rem);
  --text-h2: clamp(2rem, 1.4rem + 2.6vw, 3.75rem);
  --text-hero: clamp(2.6rem, 1.3rem + 5.2vw, 5.4rem);
  --text-figure: clamp(2.35rem, 1.1rem + 4.4vw, 5rem);

  /* Space */
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);

  /* Shape */
  --radius-pill: 999px;
  --radius-card: 22px;
  --radius-sm: 12px;

  /* Motion */
  --dur-fast: 140ms;
  --dur-normal: 280ms;
  --dur-slow: 700ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 0.6rem + 2.6vw, 3rem);
  --header-h: 84px;
}
