/* ==========================================================================
   CYCODE TECHNOLOGIES - Global Brand Styles (cycode.css)
   ========================================================================== */

:root {
    /* ===============================
       🔵 PRIMARY BRAND (Tech Blue)
       Based on Logo 1 & 2 (Deep Navy & Electric Blue)
    =============================== */
    --cy-primary: #1A36C4;         /* Strong Electric/Royal Blue */
    --cy-primary-dark: #0B1B60;    /* Deep Navy Background (from Image 1) */
    --cy-primary-hover: #122699;   /* Rich Hover Blue */
    --cy-primary-light: #EEF2FF;   /* Soft background tint */

    /* ===============================
       🔥 VIBRANT ACCENT (Purple/Pink)
       Based on Logo 3 (The gradient logo)
    =============================== */
    --cy-accent: #D946EF;          /* Vibrant Fuchsia/Pink */
    --cy-accent-hover: #C026D3;    /* Deep Fuchsia */
    --cy-accent-purple: #6366F1;   /* Indigo/Purple anchor for gradients */
    --cy-accent-light: #FDF4FF;    /* Soft highlight */

    /* ===============================
       🟢 SUPPORT COLORS (Clean SaaS)
    =============================== */
    --cy-info: #3B82F6;            /* Light Blue */
    --cy-success: #10B981;         /* Emerald Green */
    --cy-warning: #F59E0B;         /* Amber */
    --cy-danger: #EF4444;          /* Soft Red */

    /* ===============================
       🧱 BACKGROUNDS (Premium Feel)
    =============================== */
    --cy-bg: #F8FAFC;              /* Ultra light slate (clean SaaS) */
    --cy-surface: #FFFFFF;         /* Card / Panel */
    --cy-surface-soft: #F1F5F9;    /* Secondary panels */
    --cy-border: #E2E8F0;          /* Softer border */

    /* ===============================
       📝 TYPOGRAPHY
    =============================== */
    --cy-text-main: #0F172A;       /* Rich dark slate (premium feel) */
    --cy-text-muted: #64748B;      /* Balanced muted text */

    /* ===============================
       ✨ UI ELEMENTS
    =============================== */
    --cy-radius: 8px;              /* Modern sharp-rounded edges */
    --cy-radius-lg: 16px;
    
    --cy-shadow: 0 10px 25px rgba(11, 27, 96, 0.08); /* Shadow tinted with brand navy */
    --cy-shadow-soft: 0 4px 10px rgba(11, 27, 96, 0.05);

    /* ===============================
       🌈 GRADIENTS (Premium Touch)
    =============================== */
    /* Matches Logo 2 */
    --cy-gradient-blue: linear-gradient(135deg, #0B1B60, #1A36C4);
    
    /* Matches Logo 3 */
    --cy-gradient-vibrant: linear-gradient(135deg, #6366F1, #D946EF); 
}

/* --- Global Overrides --- */

body {
    background-color: var(--cy-bg);
    color: var(--cy-text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Custom Card Styling */
.cy-card {
    background-color: var(--cy-surface);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius);
    box-shadow: var(--cy-shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Primary Button Override */
.btn-cy-primary {
    background-color: var(--cy-primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn-cy-primary:hover {
    background-color: var(--cy-primary-hover);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(26, 54, 196, 0.3);
}

/* Accent/Gradient Button (Great for "Upgrade" or "New" actions) */
.btn-cy-vibrant {
    background: var(--cy-gradient-vibrant);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.btn-cy-vibrant:hover {
    opacity: 0.9;
    color: #ffffff;
}

/* Sidebar/Header Styling Helpers */
.cy-brand-text {
    background: var(--cy-gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
}