:root {
  /* Brand Colors */
  --lime: #b0cb1f;
  --lime-dark: #7a9915;
  --lime-muted: rgba(176, 203, 31, 0.15);
  --lime-glow: rgba(176, 203, 31, 0.12);
  --blue: #00a0e3;
  --blue-muted: rgba(0, 160, 227, 0.15);

  /* Backgrounds */
  --bg-darkest: #0d1f0d;
  --bg-dark: #111f11;
  --bg-mid: #1a331a;
  --bg-card: rgba(34, 63, 34, 0.55);
  --bg-card-hover: rgba(34, 63, 34, 0.8);
  --green-dark: #223f22;
  --green-mid: #456121;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #b8c4b8;
  --text-muted: rgba(184, 196, 184, 0.6);

  /* Effects */
  --border-subtle: rgba(176, 203, 31, 0.1);
  --border-hover: rgba(176, 203, 31, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 32px rgba(176, 203, 31, 0.12);
  --blur-glass: blur(12px);

  /* Spacing */
  --section-gap: clamp(80px, 12vw, 160px);
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 80px);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-fast: 0.25s;
  --duration-med: 0.5s;
  --duration-slow: 0.9s;
}
