.kis-dashboard {
    background: #02060a;
    color: #e2e8f0;
    height: 100vh;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 70px 1fr;
    height: 100vh;
}

/* Sidebar */
.kis-sidebar {
    background: #050b14;
    border-right: 1px solid #1a365d;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
}

.sidebar-brand {
    font-weight: 900;
    color: #007bff;
    margin-bottom: 50px;
}

.nav-icon {
    color: #2d3748;
    margin-bottom: 35px;
    cursor: not-allowed;
}

.nav-icon.active {
    color: #007bff;
}

/* Grid Configuration */
.kis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 140px 1fr;
    gap: 20px;
    padding: 20px;
    height: calc(100% - 80px);
    filter: blur(12px);
    /* Blurred for security feel */
}

/* Define Grid Areas */
.threat-map {
    grid-column: span 3;
}

.active-logs {
    grid-column: span 1;
}

.kis-card {
    background: rgba(0, 123, 255, 0.03);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 4px;
    /* Sharper edges for "tech" feel */
}

/* Skeleton Animation */
.skeleton-pulse {
    background: linear-gradient(90deg, #050b14 25%, #0d1b2e 50%, #050b14 75%);
    background-size: 200% 100%;
    animation: kis-scan 2s infinite;
}

@keyframes kis-scan {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Lock Panel */
.kis-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    background: rgba(2, 6, 10, 0.7);
}

.lock-panel {
    background: #050b14;
    border: 1px solid #007bff;
    padding: 50px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.2);
}

.lock-glow {
    font-size: 60px !important;
    color: #007bff;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
    margin-bottom: 20px;
}

.tier-box {
    margin: 25px 0;
    padding: 15px;
    background: rgba(0, 123, 255, 0.05);
    border: 1px dashed #1a365d;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

.sub {
    font-size: 0.8rem;
    color: #4a5568;
}

.btn-kis-primary {
    display: block;
    background: #007bff;
    color: white;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-kis-primary:hover {
    background: #0056b3;
    box-shadow: 0 0 15px #007bff;
}