/* AVANTIX portal — tokens HSL. Naranja de prueba alineado al isotipo (27 98% 50%).
   Oscuro: anillo del mark. Claro: misma familia, más bajo para contraste. */

:root,
html[data-ws-color-scheme="dark"] {
  color-scheme: dark;
  --background: 220 30% 8%;
  --foreground: 210 20% 98%;
  --card: 220 25% 10%;
  --primary: 27 98% 50%;
  --primary-foreground: 0 0% 100%;
  --muted: 220 18% 16%;
  --muted-foreground: 220 10% 65%;
  --border: 220 15% 22%;
  --hero-bg: 220 20% 12%;
  --section-final-bg: 220 25% 6%;
  --error: 0 70% 62%;
}

html[data-ws-color-scheme="light"] {
  color-scheme: light;
  --background: 0 0% 100%;
  --foreground: 220 30% 10%;
  --card: 220 26% 95%;
  --primary: 24 96% 40%;
  --primary-foreground: 0 0% 100%;
  --muted: 220 22% 91%;
  --muted-foreground: 220 12% 38%;
  --border: 220 16% 84%;
  --hero-bg: 220 33% 97%;
  --section-final-bg: 220 28% 95%;
  --error: 0 65% 42%;
}

:root {
  --radius: 0.5rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
}

html {
  margin: 0;
  padding: 0;
  background-color: hsl(var(--background));
}

body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.ac-root {
  --ws-bg: hsl(var(--background));
  --ws-text: hsl(var(--foreground));
  --ws-text-muted: hsl(var(--muted-foreground));
  --ws-surface: hsl(var(--card));
  --ws-border: hsl(var(--border));
  --ws-accent: hsl(var(--primary));
  --ws-accent-secondary: hsl(var(--primary));
  --ws-hero-bg: hsl(var(--hero-bg));
  --ws-section-final-bg: hsl(var(--section-final-bg));
  --ws-error: hsl(var(--error));
}
