.monisys-enterprise-shell {
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.10), transparent 34rem),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.08), transparent 32rem);
}
.enterprise-hero {
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 48%, #0f172a 100%);
    box-shadow: 0 24px 80px rgba(79, 70, 229, 0.28);
}
.enterprise-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(2px);
    opacity: 0.35;
    pointer-events: none;
}
.enterprise-orb-a {
    width: 18rem;
    height: 18rem;
    right: -5rem;
    top: -6rem;
    background: rgba(255, 255, 255, 0.38);
}
.enterprise-orb-b {
    width: 12rem;
    height: 12rem;
    right: 10rem;
    bottom: -5rem;
    background: rgba(16, 185, 129, 0.55);
}
.enterprise-input {
    width: 100%;
    margin-top: 0.4rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.9rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}
.enterprise-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.14);
}
.enterprise-code {
    background: #0f172a;
    color: #dbeafe;
    border-radius: 1rem;
    padding: 1rem;
    overflow: auto;
    max-height: 32rem;
    font-size: 0.78rem;
    line-height: 1.55;
    white-space: pre-wrap;
}
@media (max-width: 768px) {
    .monisys-enterprise-shell { padding: 1rem; }
    .enterprise-hero { padding: 1.5rem; }
}

/* KPI Cards Premium */
.enterprise-kpi-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.enterprise-kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    border-color: #e5e7eb;
}

.enterprise-kpi-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.enterprise-kpi-progress {
    height: 4px;
    width: 100%;
    background: #f3f4f6;
    border-radius: 2px;
    margin-top: 1.2rem;
    overflow: hidden;
}

.enterprise-kpi-progress-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease-out;
}
