/* ====================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ==================================================== */
:root {
  --green: #00c93c;
  --green-dim: #00af2e;
  --green-dark: #007a20;
  --green-glow: rgba(0, 201, 60, 0.18);
  --green-glow-lg: rgba(0, 201, 60, 0.07);

  /* Dark Mode (Default) */
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --border: rgba(255, 255, 255, 0.12);
  --border-hover: rgba(0, 201, 60, 0.45);
  --text: #f0f0f0;
  --text-muted: #999999;
  --text-subtle: #666666;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --nav-bg: rgba(10, 10, 10, 0.75);
  --nav-bg-scrolled: rgba(10, 10, 10, 0.95);

  --font: 'Outfit', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-hero: clamp(3rem, 8vw, 6rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-w: 1200px;

  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.6s ease;

  --bg-profil-visi-bg: #f0f0f0;
  --bg-profil-visi-text-color: #0a0a0a;
  --bg-carousel-btn: #fff;
  --text-carousel-btn: #000;
}

[data-theme='light'] {
  --bg: #f0f0f0;
  --bg-alt: #e8e8e8;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f5f5;
  --border: rgba(0, 0, 0, 0.12);
  --border-hover: rgba(0, 175, 46, 0.5);
  --text: #111111;
  --text-muted: #444444;
  --text-subtle: #888888;
  --nav-bg: rgba(240, 240, 240, 0.8);
  --nav-bg-scrolled: rgba(240, 240, 240, 0.96);
  --green: #00af2e;
  --green-glow: rgba(0, 175, 46, 0.15);
  --green-glow-lg: rgba(0, 175, 46, 0.06);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --bg-profil-visi-bg: #0a0a0a;
  --bg-profil-visi-text-color: #f0f0f0;
  --bg-carousel-btn: #000;
  --text-carousel-btn: #fff;
}