:root {
  /* Brand - Lime Green */
  --brand-50: #f7fee7;
  --brand-100: #ecfccb;
  --brand-200: #d9f99d;
  --brand-300: #bef264;
  --brand-400: #a3e635;
  --brand-500: #84cc16;
  --brand-600: #65a30d;
  --brand-700: #4d7c0f;
  --brand-800: #3f6212;
  --brand-900: #365314;

  /* Accent */
  --accent: #bfff00;

  /* Neutrals */
  --black: #09090b;
  --grey-1: #18181b;
  --grey-2: #27272a;
  --grey-3: #3f3f46;
  --grey-4: #52525b;
  --grey-5: #71717a;
  --grey-6: #a1a1aa;
  --grey-7: #d4d4d8;
  --grey-8: #e4e4e7;
  --pearl: #fafafa;
  --white: #ffffff;

  /* Status */
  --error: #ef4444;
  --success: #22c55e;

  /* Surfaces */
  --bg-primary: #09090b;
  --bg-secondary: #111113;
  --bg-tertiary: #18181b;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);

  /* Typography */
  --font-display: "Domine", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(132, 204, 22, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 720px;
  --nav-h: 72px;
}
