/* CSS Variables - Tema Moob Agentify */
:root {
  --background: 240 6% 98%;
  --foreground: 240 10% 4%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 4%;
  --primary: 258 74% 62%;
  --primary-foreground: 0 0% 100%;
  --secondary: 147 96% 42%;
  --secondary-foreground: 0 0% 100%;
  --muted: 240 5% 96%;
  --muted-foreground: 240 4% 46%;
  --border: 240 6% 90%;
  --input: 240 6% 90%;
  --ring: 258 74% 62%;
  --radius: 1rem;
}

* {
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Inter, Poppins, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Inter, Poppins, sans-serif;
}

::selection {
  background-color: hsl(var(--primary) / 0.2);
}
