/* Premium Theme Tokens */
:root {
    --premium-primary: #6366f1;
    --premium-secondary: #8b5cf6;
    --premium-accent: #ec4899;
    --premium-gradient: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-secondary) 50%, var(--premium-accent) 100%);
    --premium-glass: rgba(255, 255, 255, 0.7);
    --premium-glass-border: rgba(255, 255, 255, 0.3);
    --premium-shadow-sm: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --premium-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
body { background-color: #f8fafc; color: #1e293b; font-family: 'Outfit', 'Inter', sans-serif; }

/* Animations */
@keyframes premium-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes neon-pulse { 0% { box-shadow: 0 0 5px rgba(99, 102, 241, 0.2); } 50% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.6); } 100% { box-shadow: 0 0 5px rgba(99, 102, 241, 0.2); } }

/* Checklist: Ultra Premium Soft Layout */
.premium-checklist ul, .premium-checklist ol {
    list-style: none !important;
    padding-left: 0 !important;
}
.premium-checklist li {
    position: relative !important;
    padding: 16px 20px 16px 56px !important; /* Large left padding for icon space */
    margin-bottom: 12px;
    background: rgba(99, 102, 241, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    transition: all 0.3s ease;
    color: #334155;
    font-weight: 500;
    line-height: 1.6;
}
.premium-checklist li:hover {
    background: rgba(99, 102, 241, 0.07);
    transform: translateX(8px);
    border-color: rgba(99, 102, 241, 0.2);
}
.premium-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute !important;
    left: 16px;
    top: 18px; /* Aligned with first line */
    width: 26px;
    height: 26px;
    background: var(--premium-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.2);
}






/* Quota Bar: Liquid Neon */
.nexus-quota-bar {
    height: 10px !important;
    background: #e2e8f0 !important;
    border-radius: 999px !important;
    overflow: visible !important;
    position: relative;
}
.nexus-quota-bar-fill {
    height: 100% !important;
    border-radius: 999px !important;
    background: var(--premium-gradient) !important;
    position: relative;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}
.nexus-quota-bar-fill::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite linear;
}

/* Tabs: Premium Float */
.premium-tabs .nav-link {
    border: none !important;
    padding: 14px 28px !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
    transition: 0.4s !important;
}
.premium-tabs .nav-link.active {
    background: var(--premium-gradient) !important;
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(99, 102, 241, 0.5);
}

/* Typography Enhancements */
.fw-black { font-weight: 900 !important; letter-spacing: -0.02em; }
.tracking-wider { letter-spacing: 0.05em; }

/* Responsive */
@media (max-width: 768px) {
    .premium-checklist li { padding-left: 48px; }
}

