/* ==========================================================================
   HAIKS ENTERPRISE FINTECH - SSoT Central Style Sheet 
   Brand: HAIKS Enterprise Fintech Software Lab
   Version: 3.0 (B2B Premium)
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* B2B Premium Fintech Palette */
    --color-bg-main: #0B1120;          /* Deep navy/graphite background */
    --color-bg-card: #1E293B;          /* Lighter card background (slate-800) */
    --color-accent-blue: #0EA5E9;      /* Subtle blue (Teal/Sky Blue) */
    
    /* Typography & UI */
    --color-text-main: #E2E8F0;        /* Slate-200 */
    --color-text-muted: #94A3B8;       /* Slate-400 */
    --color-text-white: #FFFFFF;
    
    --color-glass-border: rgba(255, 255, 255, 0.05);
    --color-glass-bg: rgba(30, 41, 59, 0.7); /* slate-800 with opacity */
}

/* --------------------------------------------------------------------------
   BASE RESET & TYPOGRAPHY
   -------------------------------------------------------------------------- */
body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--color-bg-main); 
    color: var(--color-text-main); 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Remove any italic/skewed headers or text decorations */
h1, h2, h3, h4, h5, h6, span, p, a {
    font-style: normal !important;
}

/* --------------------------------------------------------------------------
   TEXT EFFECTS & GRADIENTS
   -------------------------------------------------------------------------- */
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 30%, var(--color-accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.link-cyan {
    color: var(--color-accent-blue);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.link-cyan:hover {
    color: var(--color-text-white);
}

/* --------------------------------------------------------------------------
   GLASSMORPHISM & CARDS
   -------------------------------------------------------------------------- */
.glass-panel { 
    background: var(--color-glass-bg); 
    border: 1px solid var(--color-glass-border); 
    border-radius: 12px; 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.3) !important;
    box-shadow: 0 12px 30px -10px rgba(14, 165, 233, 0.15);
}

/* --------------------------------------------------------------------------
   PREMIUM BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary {
    background-color: var(--color-accent-blue);
    color: var(--color-text-white) !important;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid transparent;
}
.btn-primary:hover {
    background-color: #0284C7; /* Darker blue */
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.45);
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-white) !important;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: transparent;
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   MESH BACKGROUND & UTILITIES
   -------------------------------------------------------------------------- */
.mesh-bg {
    background-color: var(--color-bg-main);
    background-image: 
        radial-gradient(at 0% 0%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(14, 165, 233, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-main);
}
::-webkit-scrollbar-thumb {
    background: #1F2937;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-blue);
}