/* Modern Glassmorphic HR Control Center - Visual Blue/Violet Neon Theme */
        :root {
            --bento-bg: #02020a; 
            --bento-card: rgba(8, 7, 24, 0.7);
            --bento-border: rgba(99, 102, 241, 0.18); 
            --bento-accent-1: #6366f1; /* Indigo */
            --bento-accent-2: #8b5cf6; /* Violet */
            --bento-accent-3: #ec4899; /* Pink */
            --bento-accent-4: #06b6d4; /* Cyan */
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
        }

        body {
            background-color: var(--bento-bg);
            color: var(--text-primary);
            font-family: 'Plus Jakarta Sans', sans-serif;
            margin: 0;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

        .bg-glow {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: -1; pointer-events: none;
            background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.14), transparent 45%),
                        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1), transparent 45%);
        }
        
        .bento-container {
            max-width: 1400px; margin: 0 auto; padding: 140px 24px 100px 24px;
        }

        /* Hero */
        .bento-hero { text-align: center; margin-bottom: 80px; max-width: 900px; margin-left: auto; margin-right: auto; }
        .bento-hero h1 {
            font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 900; line-height: 1.02; letter-spacing: -1.5px; margin-bottom: 24px;
            background: linear-gradient(to right, #ffffff, #c7d2fe); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .bento-hero p { font-size: 1.25rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 40px; }
        
        /* Grid Layout */
        .bento-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(380px, auto); gap: 24px; margin-bottom: 80px;
        }

        .bcard {
            background: var(--bento-card); border: 1px solid var(--bento-border); border-radius: 32px;
            padding: 40px; position: relative; overflow: hidden; display: flex; flex-direction: column;
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .bcard:hover { transform: translateY(-5px); border-color: rgba(99, 102, 241, 0.4); box-shadow: 0 30px 60px rgba(0,0,0,0.8); }
        
        .span-2-col { grid-column: span 2; }
        .span-3-col { grid-column: span 3; }
        .span-4-col { grid-column: span 4; }
        .span-2-row { grid-row: span 2; }

        .bcard h3 { font-size: clamp(24px, 2.2vw, 32px); font-weight: 800; margin: 0 0 16px 0; color: #fff; line-height: 1.15; letter-spacing: -0.5px;}
        .bcard p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

        .badge {
            align-self: flex-start; padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; border: 1px solid transparent; display: inline-flex; align-items: center; gap: 8px; z-index: 2; position: relative;
        }
        .badge i { font-size: 18px; }
        .badge-indigo { background: rgba(99, 102, 241, 0.1); color: var(--bento-accent-1); border-color: rgba(99, 102, 241, 0.2); }
        .badge-purple { background: rgba(139, 92, 246, 0.1); color: var(--bento-accent-2); border-color: rgba(139, 92, 246, 0.2); }
        .badge-pink { background: rgba(236, 72, 153, 0.1); color: var(--bento-accent-3); border-color: rgba(236, 72, 153, 0.2); }
        .badge-cyan { background: rgba(6, 182, 212, 0.1); color: var(--bento-accent-4); border-color: rgba(6, 182, 212, 0.2); }

        /* Flex Layouts */
        .bcard-horiz {
            flex-direction: row; align-items: center; justify-content: space-between; gap: 32px;
        }
        .bcard-horiz .bcard-content { flex: 1; max-width: 55%; position: relative; z-index: 2; }
        .bcard-horiz .img-container { flex: 1; display: flex; justify-content: flex-end; align-items: center; position: relative; z-index: 2; }
        
        .bcard-reverse { flex-direction: row-reverse; }
        .bcard-reverse .img-container { justify-content: flex-start; }
        
        .bcard-vert {
            flex-direction: column; justify-content: flex-start; gap: 24px;
        }
        .bcard-vert .bcard-content { max-width: 100%; position: relative; z-index: 2; }
        .bcard-vert .img-container { flex: 1; display: flex; justify-content: center; align-items: flex-end; margin-top: auto; position: relative; z-index: 2; }

        .img-standard {
            width: 100%; height: auto; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.6);
            transition: transform 0.4s ease; border: 1px solid rgba(255,255,255,0.06);
        }
        .bcard:hover .img-standard { transform: scale(1.02) translateY(-5px); }

        .img-bg-cover {
            position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
            opacity: 0.12; transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .bcard:hover .img-bg-cover { opacity: 0.22; transform: scale(1.05); }

        .dark-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,2,10,1) 30%, rgba(2,2,10,0.4) 100%); z-index: 1;
        }

        .btn-bento {
            background: #fff; color: #000; padding: 16px 32px; border-radius: 100px; font-weight: 800; font-size: 16px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; align-self: flex-start; position: relative; z-index: 2;
        }
        .btn-bento:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }

        /* UPGRADED DIRECTORY SYSTEM - Visual Split Layouts Inside Tabs */
        .directory-section {
            margin-top: 120px; padding-top: 80px; border-top: 1px solid var(--bento-border);
        }
        .directory-title { text-align: center; margin-bottom: 50px; }
        .directory-title h2 { font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 800; margin: 0 0 16px; letter-spacing: -1px; }
        .directory-title p { color: var(--text-secondary); max-width: 700px; margin: 0 auto; font-size: 18px; }

        .explorer-layout {
            display: grid; grid-template-columns: 340px 1fr; gap: 40px; margin-top: 60px;
        }

        .explorer-tabs {
            display: flex; flex-direction: column; gap: 14px;
        }
        .tab-btn {
            background: rgba(8, 7, 24, 0.4); border: 1px solid var(--bento-border); padding: 20px 24px; border-radius: 24px;
            color: var(--text-secondary); font-size: 16px; font-weight: 700; text-align: left; cursor: pointer;
            transition: all 0.3s; display: flex; align-items: center; gap: 16px;
        }
        .tab-btn i { font-size: 24px; color: var(--text-secondary); transition: all 0.3s; }
        .tab-btn:hover { border-color: rgba(99, 102, 241, 0.5); background: rgba(99, 102, 241, 0.05); }
        .tab-btn.active {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
            border-color: var(--bento-accent-1); color: #fff; box-shadow: 0 8px 24px rgba(99,102,241,0.25);
        }
        .tab-btn.active i { color: var(--bento-accent-4); }

        .explorer-content {
            background: var(--bento-card); border: 1px solid var(--bento-border); border-radius: 36px; padding: 48px;
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
        }

        .category-view { display: none; }
        .category-view.active { display: block; animation: fadeIn 0.5s ease forwards; }

        /* Split layout inside Category view */
        .category-split {
            display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: flex-start;
        }
        
        .category-meta-card {
            background: rgba(3,2,12,0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 28px; padding: 32px;
            display: flex; flex-direction: column; gap: 24px;
        }
        .category-meta-card h3 { font-size: clamp(24px, 2.5vw, 32px); font-weight: 800; color: #fff; margin: 0; }
        .category-meta-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

        .module-block { margin-bottom: 32px; }
        .module-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
        .module-header h4 { font-size: 20px; font-weight: 800; margin: 0; color: var(--bento-accent-4); }

        .feature-accordion {
            background: rgba(3, 2, 12, 0.5); border: 1px solid rgba(255,255,255,0.04); border-radius: 20px; padding: 20px; margin-bottom: 12px;
            transition: all 0.3s; cursor: pointer; position: relative;
        }
        .feature-accordion:hover { border-color: rgba(99, 102, 241, 0.3); background: rgba(3, 2, 12, 0.85); }
        .accordion-summary { display: flex; align-items: center; justify-content: space-between; font-weight: 700; color: #fff; font-size: 15px; }
        .accordion-summary i { font-size: 20px; color: var(--text-secondary); transition: all 0.3s; }
        
        .accordion-details { height: 0; overflow: hidden; transition: all 0.3s ease; opacity: 0; margin-top: 0; }
        .feature-accordion.open .accordion-details { height: auto; opacity: 1; margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.05); }
        .feature-accordion.open .accordion-summary i { transform: rotate(180deg); color: var(--bento-accent-1); }

        .feature-accordion p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 1200px) {
            .category-split { grid-template-columns: 1fr; }
        }
        @media (max-width: 1024px) {
            .explorer-layout { grid-template-columns: 1fr; }
            .explorer-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 10px; }
            .tab-btn { white-space: nowrap; }
        }