/* variables.css — C2Jam Premium Dark System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS — LIGHT
═══════════════════════════════════════ */
:root {
    /* Typography */
    --font-primary: 'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* ── Surface Layers ── */
    --bg-void: #E8ECF1;
    /* deepest bg, sidebars     */
    --bg-main: #F4F6F9;
    /* page body                */
    --bg-card: #FFFFFF;
    /* cards, panels            */
    --bg-elevated: #F0F2F6;
    /* inner boxes, hover       */
    --bg-overlay: rgba(244, 246, 249, 0.96);

    /* ── Typography ── */
    --text-primary: #111318;
    --text-secondary: #4B5563;
    --text-muted: #8B95A4;
    --text-inverse: #FFFFFF;

    /* ── Accent Palette ── */
    --accent-primary: #0099BB;
    /* cyan oscurecido para contraste en claro */
    --accent-cyan: #0099BB;
    --accent-interactive: #5B6AE0;
    /* indigo suave */
    --accent-highlight: #D97706;
    /* amber oscuro */
    --accent-success: #059669;
    /* esmeralda */
    --accent-error: #DC2626;
    /* rojo */
    --accent-dnd: #DC2626;
    --accent-idle: #D97706;
    --accent-online: #059669;

    /* ── Borders ── */
    --border-color: rgba(0, 0, 0, 0.08);
    --border-subtle: rgba(0, 0, 0, 0.04);
    --border-accent: rgba(0, 153, 187, 0.3);

    /* ── Shadows ── */
    --shadow-default: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-glow-cyan: 0 0 20px rgba(0, 153, 187, 0.15);
    --shadow-glow-gold: 0 0 16px rgba(217, 119, 6, 0.2);
    --shadow-neon-pink: 0 0 10px rgba(220, 38, 38, 0.2);
    --shadow-neon-blue: 0 0 10px rgba(91, 106, 224, 0.2);

    /* ── Glass ── */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-blur: blur(16px);
    --glass-border: rgba(255, 255, 255, 0.9);

    /* ── Gradients ── */
    --gradient-surface: linear-gradient(160deg, #FFFFFF 0%, #F4F6F9 100%);
    --gradient-cyan: linear-gradient(135deg, #0099BB 0%, #5B6AE0 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0, 153, 187, 0.06) 0%, transparent 60%);

    /* ── Transitions ── */
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


/* ═══════════════════════════════════════
   DESIGN TOKENS — DARK (override)
   Palette: Carbon + Warm Grays + Cyan
═══════════════════════════════════════ */
:root.dark {

    /* ── Surface Layers (dark-to-light depth) ── */
    --bg-void: #090B0F;
    /* absolute base, sidebars  */
    --bg-main: #0D1117;
    /* page body                */
    --bg-card: #161B22;
    /* cards, panels            */
    --bg-elevated: #1C2229;
    /* hover state, inner boxes */
    --bg-overlay: rgba(13, 17, 23, 0.92);

    /* ── Typography ── */
    --text-primary: #F0F2F5;
    /* headings, key content   */
    --text-secondary: #B0B8C4;
    /* body text               */
    --text-muted: #6B7788;
    /* labels, meta            */
    --text-inverse: #0D1117;

    /* ── Accent Palette (used sparingly) ── */
    --accent-primary: #00E5FF;
    /* electric cyan — primary call-to-action */
    --accent-cyan: #00E5FF;
    --accent-interactive: #818CF8;
    /* indigo — links, secondary interactive  */
    --accent-highlight: #F0C040;
    /* warm gold — badges, highlights         */
    --accent-success: #3DD68C;
    /* mint green                             */
    --accent-error: #FF5370;
    /* coral red                              */
    --accent-dnd: #FF5370;
    --accent-idle: #F0C040;
    --accent-online: #3DD68C;

    /* ── Borders ── */
    --border-color: rgba(255, 255, 255, 0.065);
    --border-subtle: rgba(255, 255, 255, 0.04);
    --border-accent: rgba(0, 229, 255, 0.25);

    /* ── Shadows ── */
    --shadow-default: 0 8px 32px rgba(0, 0, 0, 0.55);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.40);
    --shadow-glow-cyan: 0 0 24px rgba(0, 229, 255, 0.18), 0 0 60px rgba(0, 229, 255, 0.08);
    --shadow-glow-gold: 0 0 18px rgba(240, 192, 64, 0.25);
    --shadow-neon-pink: 0 0 12px rgba(255, 83, 112, 0.35);
    --shadow-neon-blue: 0 0 12px rgba(129, 140, 248, 0.35);

    /* ── Glass ── */
    --glass-bg: rgba(22, 27, 34, 0.72);
    --glass-blur: blur(18px);
    --glass-border: rgba(255, 255, 255, 0.07);

    /* ── Gradients ── */
    --gradient-surface: linear-gradient(160deg, #161B22 0%, #0D1117 100%);
    --gradient-cyan: linear-gradient(135deg, #00E5FF 0%, #818CF8 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
}