/* ============================================================
   Armor Hub v2 - Design Tokens
   Single unified aesthetic: premium stone dark + gold,
   liquid glass, Orbitron / Chakra Petch. (organimo-inspired)
   No theme switching, no holiday themes.
   ============================================================ */

:root {
    /* --- Stone scale --- */
    --stone-950: #0C0A09;
    --stone-900: #14110F;
    --stone-880: #1A1614;
    --stone-850: #211C19;
    --stone-800: #292524;
    --stone-700: #44403C;
    --stone-600: #57534E;
    --stone-500: #78716C;
    --stone-400: #A8A29E;
    --stone-300: #D6D3D1;
    --stone-200: #E7E5E4;
    --paper: #FAFAF9;

    /* --- Gold --- */
    --gold: #CA8A04;
    --gold-bright: #EAB308;
    --gold-glow: #FBBF24;
    --gold-deep: #6B4D05;

    /* --- Semantic --- */
    --bg: var(--stone-950);
    --surface: var(--stone-880);
    --text: var(--paper);
    --text-muted: var(--stone-400);
    --text-dim: var(--stone-500);
    --accent: var(--gold-bright);
    --accent-2: var(--gold);

    /* --- Status --- */
    --success: #4ADE80;
    --warning: #FBBF24;
    --danger: #F87171;
    --info: #60A5FA;

    /* --- Glass --- */
    --glass: rgba(26, 22, 20, 0.55);
    --glass-strong: rgba(20, 17, 15, 0.78);
    --glass-border: rgba(234, 179, 8, 0.16);
    --glass-border-soft: rgba(250, 250, 249, 0.08);
    --hairline: rgba(250, 250, 249, 0.10);

    /* --- Shadows --- */
    --shadow-sm: 0 4px 14px -6px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 18px 44px -22px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 34px 80px -34px rgba(0, 0, 0, 0.9);
    --glow-gold: 0 0 32px rgba(234, 179, 8, 0.28);

    /* --- Radii --- */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-pill: 999px;

    /* --- Type --- */
    --font-display: 'Orbitron', 'Arial Black', sans-serif;
    --font-ui: 'Chakra Petch', system-ui, -apple-system, sans-serif;

    /* --- Motion --- */
    --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 0.18s;
    --t-med: 0.32s;
    --t-slow: 0.6s;

    /* --- Layout --- */
    --maxw: 1200px;
    --maxw-wide: 1440px;
    --topbar-h: 64px;
    --nav-h: 52px;
    --gutter: clamp(1rem, 4vw, 2.5rem);
}
