:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --background: 224 32% 7%;
  --foreground: 214 32% 93%;
  --card: 224 28% 11%;
  --card-foreground: 214 32% 93%;
  --popover: 224 26% 13%;
  --popover-foreground: 214 32% 93%;
  --primary: 174 86% 44%;
  --primary-foreground: 222 47% 8%;
  --secondary: 262 48% 22%;
  --secondary-foreground: 262 86% 92%;
  --muted: 224 22% 17%;
  --muted-foreground: 215 18% 72%;
  --accent: 325 76% 55%;
  --accent-foreground: 222 47% 8%;
  --destructive: 0 72% 52%;
  --destructive-foreground: 0 0% 98%;
  --success: 145 68% 42%;
  --success-foreground: 145 70% 8%;
  --warning: 38 92% 54%;
  --warning-foreground: 38 90% 10%;
  --info: 206 89% 60%;
  --info-foreground: 206 70% 8%;
  --border: 224 20% 24%;
  --input: 224 20% 24%;
  --ring: 174 86% 44%;
  --radius: 0.625rem;
  --shadow-sm: 0 1px 2px hsl(var(--foreground) / 0.05);
  --shadow-md: 0 4px 12px hsl(var(--foreground) / 0.08);
  --shadow-lg: 0 12px 32px hsl(var(--foreground) / 0.12);
  --shadow-elegant: 0 24px 80px hsl(var(--primary) / 0.18);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

html.dark {
  --background: 224 32% 7%;
  --foreground: 214 32% 93%;
  --card: 224 28% 11%;
  --card-foreground: 214 32% 93%;
  --popover: 224 26% 13%;
  --popover-foreground: 214 32% 93%;
  --primary: 174 86% 44%;
  --primary-foreground: 222 47% 8%;
  --secondary: 262 48% 22%;
  --secondary-foreground: 262 86% 92%;
  --muted: 224 22% 17%;
  --muted-foreground: 215 18% 72%;
  --accent: 325 76% 55%;
  --accent-foreground: 222 47% 8%;
  --destructive: 0 72% 52%;
  --destructive-foreground: 0 0% 98%;
  --success: 145 68% 42%;
  --success-foreground: 145 70% 8%;
  --warning: 38 92% 54%;
  --warning-foreground: 38 90% 10%;
  --info: 206 89% 60%;
  --info-foreground: 206 70% 8%;
  --border: 224 20% 24%;
  --input: 224 20% 24%;
  --ring: 174 86% 44%;
}

html:not(.dark) {
  --background: 44 42% 96%;
  --foreground: 224 34% 12%;
  --card: 0 0% 100%;
  --card-foreground: 224 34% 12%;
  --popover: 0 0% 100%;
  --popover-foreground: 224 34% 12%;
  --primary: 174 72% 34%;
  --primary-foreground: 174 80% 96%;
  --secondary: 263 50% 92%;
  --secondary-foreground: 263 50% 18%;
  --muted: 44 30% 90%;
  --muted-foreground: 224 16% 38%;
  --accent: 325 68% 48%;
  --accent-foreground: 325 80% 96%;
  --destructive: 0 72% 46%;
  --destructive-foreground: 0 0% 98%;
  --success: 145 62% 34%;
  --success-foreground: 145 70% 96%;
  --warning: 36 92% 45%;
  --warning-foreground: 38 90% 10%;
  --info: 206 80% 42%;
  --info-foreground: 206 70% 96%;
  --border: 44 22% 82%;
  --input: 44 22% 82%;
  --ring: 174 72% 34%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}
button, input { font: inherit; }
::selection { background: hsl(var(--primary) / 0.28); }
