:root {
    /* House Palette - Soarsoft Core */
    --color-copper: #E58253;
    --color-brass: #C7AE6A;
    --color-ice: #BDD8FE;
    --color-black: #000000;
    --color-white: #FFFFFF;

    /* Neutrals - Gray Family */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gray-950: #020617;

    /* Platform Accents */
    --color-blue: #3b82f6;
    --color-blue-edge: #60a5fa;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing System */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;

    /* Invariants */
    --max-width: 940px;
    --radius: 4px;
    --transition: 0.15s ease-out;
}

/* Layer Defaults (Theme Independent) */
[data-layer="infrastructure"] {
    --bg: #11141a; /* Lighter dark */
    --surface: #191d26;
    --surface-2: #212733;
    --accent: var(--color-copper);
    --accent-secondary: var(--color-brass);
    --text: var(--gray-100);
    --text-sub: var(--gray-400);
    --text-dim: var(--gray-600);
    --border: rgba(255, 255, 255, 0.08);
}

[data-layer="platform"] {
    --bg: #0a0b0e;
    --surface: #11141a;
    --surface-2: #191d26;
    --accent: var(--color-blue);
    --accent-secondary: var(--color-ice);
    --text: var(--gray-100);
    --text-sub: var(--gray-400);
    --text-dim: var(--gray-600);
    --border: rgba(255, 255, 255, 0.06);
}
