:root {
  /* Colors */
  --bg: #0d0f0e;
  --bg-1: #111410;
  --bg-2: #161914;
  --bg-3: #1c2018;

  --surface: #1e221c;
  --surface-1: #252920;
  --surface-2: #2c3027;

  --border: rgba(148, 190, 100, 0.12);
  --border-1: rgba(148, 190, 100, 0.22);

  --accent: #94be64;
  --accent-dim: rgba(148, 190, 100, 0.15);
  --accent-glow: rgba(148, 190, 100, 0.35);
  --accent-bright: #b5d98a;

  --amber: #e5a830;
  --red: #e05252;
  --cyan: #5eb4c8;
  --purple: #a98ae5;

  --text: #d4d8c8;
  --text-1: #b0b89a;
  --text-2: #768060;
  --text-muted: #4a5240;

  /* Syntax colors */
  --syn-kw: #94be64;
  --syn-str: #e5a830;
  --syn-fn: #5eb4c8;
  --syn-op: #b0b89a;
  --syn-ln: #4a5240;
  --syn-comment: #5c6650;

  /* Typography */
  --font-mono: "JetBrains Mono", "Cascadia Code", "Fira Code", monospace;
  --font-display: "Syne", sans-serif;
  --font-body: "Syne", sans-serif;

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 24px rgba(148,190,100,0.2);
}
