/* Self-hosted via @fontsource-variable/inter — no render-blocking Google Fonts request */
@import "@fontsource-variable/inter";

@import "tailwindcss";
@import "@agent-native/core/styles/agent-native.css";
@import "@agent-native/toolkit/styles.css";

@source "./**/*.{ts,tsx}";

:root {
  --background: 0 0% 100%;
  --foreground: 220 10% 10%;
  --card: 0 0% 100%;
  --card-foreground: 220 10% 10%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 10% 10%;
  --primary: 220 10% 15%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 10% 95%;
  --secondary-foreground: 220 10% 15%;
  --muted: 220 10% 95%;
  --muted-foreground: 220 5% 45%;
  --accent: 220 10% 95%;
  --accent-foreground: 220 10% 15%;
  --destructive: 0 91% 71%;
  --destructive-foreground: 0 0% 98%;
  --border: 220 10% 90%;
  --input: 220 10% 90%;
  --ring: 220 10% 40%;
  --radius: 0.5rem;
  --sidebar-background: 220 10% 97%;
  --sidebar-foreground: 220 5% 45%;
  --sidebar-primary: 220 10% 15%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 220 10% 95%;
  --sidebar-accent-foreground: 220 10% 15%;
  --sidebar-border: 220 10% 90%;
  --sidebar-ring: 220 10% 40%;
}

.dark {
  --background: 220 6% 6%;
  --foreground: 0 0% 90%;
  --card: 220 5% 6%;
  --card-foreground: 0 0% 90%;
  --popover: 220 5% 6%;
  --popover-foreground: 0 0% 90%;
  --primary: 0 0% 75%;
  --primary-foreground: 220 6% 6%;
  --secondary: 220 4% 12%;
  --secondary-foreground: 0 0% 90%;
  --muted: 220 4% 10%;
  --muted-foreground: 220 4% 60%;
  --accent: 220 4% 13%;
  --accent-foreground: 0 0% 90%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 220 4% 14%;
  --input: 220 4% 14%;
  --ring: 0 0% 60%;
  --radius: 0.5rem;
  --sidebar-background: 220 6% 4%;
  --sidebar-foreground: 220 4% 60%;
  --sidebar-primary: 0 0% 75%;
  --sidebar-primary-foreground: 220 6% 6%;
  --sidebar-accent: 220 4% 10%;
  --sidebar-accent-foreground: 0 0% 90%;
  --sidebar-border: 220 4% 10%;
  --sidebar-ring: 0 0% 60%;
}

@layer base {
  body {
    @apply bg-background text-foreground;
    font-family: "Inter Variable", "Inter", sans-serif;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  }
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: hsl(var(--border));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--muted-foreground) / 0.4);
}
