:root {
  color-scheme: dark light;

  --font-sans: "Nunito", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --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;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: clamp(2.25rem, 4vw, 3.25rem);

  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.12);
  --shadow-md: 0 8px 24px rgb(0 0 0 / 0.18);
  --shadow-glow: 0 0 0 1px rgb(255 255 255 / 0.06);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 160ms;
  --dur-mid: 280ms;
  --dur-slow: 480ms;

  --header-h: 4rem;
  --content-max: 72rem;
}

html[data-theme="dark"] {
  --bg: #07080d;
  --bg-elevated: #0e1018;
  --surface: #141824;
  --surface-2: #1b2030;
  --border: rgb(255 255 255 / 0.08);
  --text: #f4f5fb;
  --text-muted: #a7adbf;
  --accent: #7c6bff;
  --accent-2: #3ed0c8;
  --accent-text: #0b0c10;
  --hero-glow: radial-gradient(ellipse 80% 55% at 50% -10%, rgb(124 107 255 / 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgb(62 208 200 / 0.18), transparent 50%);
}

html[data-theme="light"] {
  --bg: #f6f7fb;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-2: #eef0f8;
  --border: rgb(15 23 42 / 0.1);
  --text: #0f172a;
  --text-muted: #475569;
  --accent: #4f46e5;
  --accent-2: #0d9488;
  --accent-text: #ffffff;
  --hero-glow: radial-gradient(ellipse 80% 55% at 50% -10%, rgb(79 70 229 / 0.2), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgb(13 148 136 / 0.12), transparent 50%);
}
