/*
 * Valorix — Global tokens and resets.
 * Loaded on all pages.
 */

:root {
    --valorix-blue-950: #071a33;
    --valorix-blue-900: #0b2347;
    --valorix-blue-800: #0f3568;
    --valorix-blue-600: #1456a3;
    --valorix-red-600: #d71920;
    --valorix-red-700: #b91118;
    --valorix-silver-50: #f7f9fc;
    --valorix-silver-100: #eef2f7;
    --valorix-silver-200: #d9e1ec;
    --valorix-slate-500: #64748b;
    --valorix-slate-700: #334155;
    --valorix-white: #ffffff;
    --valorix-radius-sm: 10px;
    --valorix-radius-md: 16px;
    --valorix-radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--valorix-silver-50);
    color: var(--valorix-blue-950);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 24px;
    min-height: 60vh;
}

/* Premium homepage — full-bleed, no container */
.valorix-premium-home {
    max-width: none;
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; }

a { color: var(--valorix-red-600); }
