/* /Layout/Components/CinthiaChat.razor.rz.scp.css */
.cinthia-dock[b-r38re8vw1d] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* Toggle Button */
.toggle-btn[b-r38re8vw1d] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toggle-btn:hover[b-r38re8vw1d] {
    transform: scale(1.1);
}

.pulse-glow[b-r38re8vw1d] {
    animation: pulse-b-r38re8vw1d 2s infinite;
}

@keyframes pulse-b-r38re8vw1d {
    0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
    100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

/* Chat Container Glassmorphism */
.chat-container[b-r38re8vw1d] {
    width: 380px;
    height: 550px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(25, 25, 35, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #e2e8f0;
}

.fade-in[b-r38re8vw1d] {
    animation: fadeInSlideUp-b-r38re8vw1d 0.4s ease-out forwards;
}

@keyframes fadeInSlideUp-b-r38re8vw1d {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.chat-header[b-r38re8vw1d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-profile[b-r38re8vw1d] {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.avatar[b-r38re8vw1d] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e1e2d;
    z-index: 2;
    border: 2px solid #4f46e5;
}

.avatar-glow[b-r38re8vw1d] {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4f46e5;
    filter: blur(10px);
    opacity: 0.6;
    z-index: 1;
}

.ai-profile h4[b-r38re8vw1d] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.ai-profile .status[b-r38re8vw1d] {
    font-size: 11px;
    color: #a0aec0;
}

.header-actions[b-r38re8vw1d] {
    display: flex;
    gap: 8px;
}

.header-btn[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header-btn:hover[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    color: #fff;
}

.minimize-btn:hover[b-r38re8vw1d] {
    background: rgba(79, 70, 229, 0.4);
    border-color: #4f46e5;
}

.close-btn:hover[b-r38re8vw1d] {
    background: rgba(239, 68, 68, 0.4);
    border-color: #ef4444;
    color: #fff;
}

/* Messages Area */
.chat-messages[b-r38re8vw1d] {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-messages[b-r38re8vw1d]::-webkit-scrollbar {
    width: 6px;
}
.chat-messages[b-r38re8vw1d]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.empty-state[b-r38re8vw1d] {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    color: #718096;
}

.empty-state i[b-r38re8vw1d] {
    font-size: 32px;
    margin-bottom: 12px;
    color: #4f46e5;
}

.message[b-r38re8vw1d] {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: slideIn-b-r38re8vw1d 0.3s ease-out forwards;
}

@keyframes slideIn-b-r38re8vw1d {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.user[b-r38re8vw1d] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar[b-r38re8vw1d] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2d3748;
    flex-shrink: 0;
}

.content[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    color: #e2e8f0;
}

.message.user .content[b-r38re8vw1d] {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.ai .content[b-r38re8vw1d] {
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Markdown specific inside content */
[b-r38re8vw1d] .content p { margin: 0 0 8px 0; }
[b-r38re8vw1d] .content p:last-child { margin: 0; }
[b-r38re8vw1d] .content strong { color: #fff; font-weight: 600; }
[b-r38re8vw1d] .content ul { margin: 0; padding-left: 20px; }

/* Typing Indicator */
.typing-indicator .content[b-r38re8vw1d] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px;
}

.dot[b-r38re8vw1d] {
    width: 6px;
    height: 6px;
    background: #a0aec0;
    border-radius: 50%;
    animation: dotPulse-b-r38re8vw1d 1.4s infinite ease-in-out both;
}

.dot:nth-child(1)[b-r38re8vw1d] { animation-delay: -0.32s; }
.dot:nth-child(2)[b-r38re8vw1d] { animation-delay: -0.16s; }

@keyframes dotPulse-b-r38re8vw1d {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Input Area */
.chat-inputarea[b-r38re8vw1d] {
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 12px;
}

.glass-input[b-r38re8vw1d] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.glass-input:focus[b-r38re8vw1d] {
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.08);
}

.glass-input:disabled[b-r38re8vw1d] {
    opacity: 0.5;
}

.send-btn[b-r38re8vw1d] {
    background: #4f46e5;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.send-btn:hover:not(:disabled)[b-r38re8vw1d] {
    background: #6366f1;
}

.send-btn:active:not(:disabled)[b-r38re8vw1d] {
    transform: scale(0.95);
}

.send-btn:disabled[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.1);
    color: #4a5568;
    cursor: not-allowed;
}

/* Attachment Styles */
.attachment-btn[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 18px;
}

.attachment-btn:hover:not(:disabled)[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.attachment-btn:disabled[b-r38re8vw1d] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pending-attachments[b-r38re8vw1d] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 12px 16px;
    background: rgba(0, 0, 0, 0.3);
}

.attachment-chip[b-r38re8vw1d] {
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.4);
    border-radius: 8px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #fff;
    animation: fadeIn-b-r38re8vw1d 0.2s ease-out;
}

.attachment-chip i[b-r38re8vw1d] {
    color: #818cf8;
}

.attachment-chip .remove-btn[b-r38re8vw1d] {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.attachment-chip .remove-btn:hover[b-r38re8vw1d] {
    color: #ef4444;
}

@keyframes fadeIn-b-r38re8vw1d {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
    .chat-container[b-r38re8vw1d] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-esd4ccd4sw] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content[b-esd4ccd4sw] {
    margin-top: 5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-content.immersive-mode[b-esd4ccd4sw] {
    margin-top: 0 !important;
    background-color: #121212 !important;
    overflow-x: hidden;
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Scoped CSS for NavMenu - Minimal legacy support or specific overrides only */

/* Ensure the toggler is consistently styled if not handled by global CSS */
.navbar-toggler[b-d66az19hr4] {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-brand[b-d66az19hr4] {
    font-size: 1.1rem;
}

/* Animations for the toast/notifications section if kept here */
.animate-fade-in[b-d66az19hr4] { 
    animation: fadeIn-b-d66az19hr4 0.8s ease-out; 
}

@keyframes fadeIn-b-d66az19hr4 { 
    from { opacity: 0; transform: translateY(-5px); } 
    to { opacity: 1; transform: translateY(0); } 
}
/* /Pages/LandingPage.razor.rz.scp.css */
/* Landing Page Styling System */
.landing-page[b-o4ksnk3eon] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #0b0f19;
    color: #e2e8f0;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography Overrides */
h1[b-o4ksnk3eon], h2[b-o4ksnk3eon], h3[b-o4ksnk3eon], h4[b-o4ksnk3eon], h5[b-o4ksnk3eon], h6[b-o4ksnk3eon], .brand[b-o4ksnk3eon] {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Section Containers */
.section-container[b-o4ksnk3eon] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

/* Glass Navbar */
.glass-nav[b-o4ksnk3eon] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(11, 15, 25, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-container[b-o4ksnk3eon] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand[b-o4ksnk3eon] {
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    gap: 0.5rem;
}

.logo-box[b-o4ksnk3eon] {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    padding: 0.35rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.accent-text[b-o4ksnk3eon] {
    background: linear-gradient(135deg, #06b6d4, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links[b-o4ksnk3eon] {
    display: flex;
    gap: 2rem;
}

.nav-links a[b-o4ksnk3eon] {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover[b-o4ksnk3eon] {
    color: #06b6d4;
}

/* Glowing Primary Button */
.btn-primary-glow[b-o4ksnk3eon] {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-glow:hover[b-o4ksnk3eon] {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.45);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Hero Section */
.hero-section[b-o4ksnk3eon] {
    position: relative;
    padding-top: 8.5rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-glow-1[b-o4ksnk3eon] {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-2[b-o4ksnk3eon] {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid[b-o4ksnk3eon] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-premium[b-o4ksnk3eon] {
    display: inline-flex;
    align-items: center;
    background-color: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pulse-dot[b-o4ksnk3eon] {
    width: 6px;
    height: 6px;
    background-color: #06b6d4;
    border-radius: 50%;
    margin-right: 0.5rem;
    display: inline-block;
    animation: pulseGlow-b-o4ksnk3eon 1.8s infinite;
}

@keyframes pulseGlow-b-o4ksnk3eon {
    0% { transform: scale(0.9); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px #06b6d4; }
    100% { transform: scale(0.9); opacity: 0.4; }
}

.hero-content h1[b-o4ksnk3eon] {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.text-gradient[b-o4ksnk3eon] {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc[b-o4ksnk3eon] {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}

.hero-ctas[b-o4ksnk3eon] {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.btn-hero-primary[b-o4ksnk3eon] {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover[b-o4ksnk3eon] {
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-hero-secondary[b-o4ksnk3eon] {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover[b-o4ksnk3eon] {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

.hero-trust[b-o4ksnk3eon] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars[b-o4ksnk3eon] {
    display: flex;
}

.avatar-dot[b-o4ksnk3eon] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #0b0f19;
    margin-right: -8px;
    display: inline-block;
}

.avatar-1[b-o4ksnk3eon] { background-color: #2563eb; }
.avatar-2[b-o4ksnk3eon] { background-color: #06b6d4; }
.avatar-3[b-o4ksnk3eon] { background-color: #6366f1; }

.trust-text[b-o4ksnk3eon] {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* WMS Dashboard Mockup Visual */
.dashboard-mockup[b-o4ksnk3eon] {
    background-color: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(6, 182, 212, 0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mockup-header[b-o4ksnk3eon] {
    background-color: rgba(10, 15, 30, 0.9);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dot[b-o4ksnk3eon] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red[b-o4ksnk3eon] { background-color: #ef4444; }
.dot.yellow[b-o4ksnk3eon] { background-color: #eab308; }
.dot.green[b-o4ksnk3eon] { background-color: #22c55e; }

.mockup-title[b-o4ksnk3eon] {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 0.75rem;
}

.mockup-body[b-o4ksnk3eon] {
    padding: 1.25rem;
}

.mockup-row[b-o4ksnk3eon] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mockup-card[b-o4ksnk3eon] {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.card-label[b-o4ksnk3eon] {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.card-value[b-o4ksnk3eon] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0.15rem;
}

.pulse-green[b-o4ksnk3eon] {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulseGlow-b-o4ksnk3eon 1.5s infinite;
}

.text-cyan[b-o4ksnk3eon] { color: #06b6d4 !important; }
.text-indigo[b-o4ksnk3eon] { color: #818cf8 !important; }

.mockup-inner-grid[b-o4ksnk3eon] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0.75rem;
}

.mockup-panel[b-o4ksnk3eon] {
    background-color: rgba(30, 41, 59, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: start;
}

.panel-header[b-o4ksnk3eon] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.warehouse-grid-preview[b-o4ksnk3eon] {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    padding: 0.5rem;
    background-color: rgba(10, 15, 30, 0.4);
    border-radius: 6px;
    min-height: 120px;
}

.grid-box[b-o4ksnk3eon] {
    border-radius: 2px;
    aspect-ratio: 1;
}

.h-high[b-o4ksnk3eon] { opacity: 0.9; }
.h-medium[b-o4ksnk3eon] { opacity: 0.7; }
.h-low[b-o4ksnk3eon] { opacity: 0.45; }

.st-alert[b-o4ksnk3eon] { background-color: #dc3545; box-shadow: 0 0 5px rgba(220, 53, 69, 0.5); }
.st-empty[b-o4ksnk3eon] { background-color: rgba(255,255,255,0.06); }
.st-filled[b-o4ksnk3eon] { background-color: #0d6efd; }

.grid-legend[b-o4ksnk3eon] {
    font-size: 0.6rem;
    color: #64748b;
}

.leg-item[b-o4ksnk3eon] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.box-color[b-o4ksnk3eon] {
    width: 8px;
    height: 8px;
    border-radius: 1px;
    display: inline-block;
}

.bg-green[b-o4ksnk3eon] { background-color: #0d6efd; }
.bg-blue[b-o4ksnk3eon] { background-color: rgba(255,255,255,0.2); }
.bg-red[b-o4ksnk3eon] { background-color: #dc3545; }

.mockup-logs[b-o4ksnk3eon] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.65rem;
    color: #94a3b8;
    max-height: 145px;
    overflow-y: hidden;
}

.log-item[b-o4ksnk3eon] {
    border-bottom: 1px solid rgba(255,255,255,0.02);
    padding-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.log-time[b-o4ksnk3eon] {
    color: #06b6d4;
    font-family: monospace;
    margin-right: 0.4rem;
}

/* Stats Section */
.stats-section[b-o4ksnk3eon] {
    background-color: rgba(15, 23, 42, 0.4);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.stats-grid[b-o4ksnk3eon] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card[b-o4ksnk3eon] {
    background-color: rgba(30, 41, 59, 0.2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover[b-o4ksnk3eon] {
    transform: translateY(-5px);
    background-color: rgba(30, 41, 59, 0.4);
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.05);
}

.stat-icon-wrapper[b-o4ksnk3eon] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
}

.stat-card h3[b-o4ksnk3eon] {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.stat-card p[b-o4ksnk3eon] {
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.stat-sub[b-o4ksnk3eon] {
    font-size: 0.75rem;
    color: #64748b;
    display: block;
    line-height: 1.4;
}

/* Key Features Section */
.features-section[b-o4ksnk3eon] {
    position: relative;
}

.max-w-2xl[b-o4ksnk3eon] {
    max-width: 42rem;
}

.features-tabs-nav[b-o4ksnk3eon] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-nav-btn[b-o4ksnk3eon] {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: #94a3b8;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-nav-btn:hover[b-o4ksnk3eon] {
    color: #ffffff;
    background-color: rgba(255,255,255,0.06);
}

.tab-nav-btn.active[b-o4ksnk3eon] {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
    border-color: #06b6d4;
    color: #06b6d4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.tab-pane-grid[b-o4ksnk3eon] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.pane-text[b-o4ksnk3eon] {
    text-align: start;
}

.pane-text h3[b-o4ksnk3eon] {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pane-text p[b-o4ksnk3eon] {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pane-list[b-o4ksnk3eon] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pane-list li[b-o4ksnk3eon] {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
}

.text-success[b-o4ksnk3eon] { color: #10b981 !important; }

.glass-card-nested[b-o4ksnk3eon] {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.nested-header[b-o4ksnk3eon] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    text-align: start;
}

.attribute-item[b-o4ksnk3eon] {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255,255,255,0.02);
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #cbd5e1;
    text-align: start;
}

/* 3D Spinning Cube Animation */
.cube-container[b-o4ksnk3eon] {
    perspective: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.cube[b-o4ksnk3eon] {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: spinCube-b-o4ksnk3eon 8s infinite linear;
}

.face[b-o4ksnk3eon] {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #06b6d4;
    background-color: rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.front[b-o4ksnk3eon]  { transform: translateZ(40px); }
.back[b-o4ksnk3eon]   { transform: rotateY(180deg) translateZ(40px); }
.right[b-o4ksnk3eon]  { transform: rotateY(90deg) translateZ(40px); }
.left[b-o4ksnk3eon]   { transform: rotateY(-90deg) translateZ(40px); }
.top[b-o4ksnk3eon]    { transform: rotateX(90deg) translateZ(40px); }
.bottom[b-o4ksnk3eon] { transform: rotateX(-90deg) translateZ(40px); }

@keyframes spinCube-b-o4ksnk3eon {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

/* Shipping Tag barcode style */
.shipping-tag[b-o4ksnk3eon] {
    background-color: #ffffff;
    color: #000000 !important;
    font-family: monospace;
}

.shipping-tag *[b-o4ksnk3eon] {
    color: #000000 !important;
}

.barcode-simulator[b-o4ksnk3eon] {
    font-size: 1.65rem;
    letter-spacing: 0.05em;
    font-weight: normal;
    text-align: center;
    line-height: 1;
}

.btn-outline-cyan[b-o4ksnk3eon] {
    background-color: transparent;
    border: 1px solid #06b6d4;
    color: #06b6d4;
    transition: all 0.2s ease;
}

.btn-outline-cyan:hover[b-o4ksnk3eon] {
    background-color: #06b6d4;
    color: #000000;
}

/* Cinthia AI Chat Sandbox */
.cinthia-section[b-o4ksnk3eon] {
    position: relative;
    background-color: rgba(15, 23, 42, 0.2);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.hero-glow-3[b-o4ksnk3eon] {
    position: absolute;
    top: 30%;
    right: 25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.section-desc[b-o4ksnk3eon] {
    color: #94a3b8;
    line-height: 1.6;
}

.chat-presets[b-o4ksnk3eon] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: start;
}

.preset-btn[b-o4ksnk3eon] {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    color: #cbd5e1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: start;
    cursor: pointer;
    transition: all 0.2s ease;
}

.preset-btn:hover[b-o4ksnk3eon] {
    background-color: rgba(30, 41, 59, 0.8);
    border-color: #06b6d4;
    transform: translateX(4px);
    color: #ffffff;
}

.chat-container-card[b-o4ksnk3eon] {
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(99, 102, 241, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 480px;
}

.chat-header[b-o4ksnk3eon] {
    background-color: rgba(10, 15, 30, 0.9);
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cinthia-avatar-glow[b-o4ksnk3eon] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
}

.pulse-dot-small[b-o4ksnk3eon] {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulseGlow-b-o4ksnk3eon 1.5s infinite;
}

.chat-body-messages[b-o4ksnk3eon] {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #090d16;
}

.chat-message-wrapper[b-o4ksnk3eon] {
    display: flex;
    max-width: 80%;
}

.chat-message-wrapper.assistant[b-o4ksnk3eon] {
    align-self: flex-start;
    text-align: start;
}

.chat-message-wrapper.user[b-o4ksnk3eon] {
    align-self: flex-end;
    text-align: start;
}

.message-bubble[b-o4ksnk3eon] {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
    position: relative;
}

.chat-message-wrapper.assistant .message-bubble[b-o4ksnk3eon] {
    background-color: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.15);
    color: #cbd5e1;
    border-top-left-radius: 2px;
}

.chat-message-wrapper.user .message-bubble[b-o4ksnk3eon] {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #f8fafc;
    border-top-right-radius: 2px;
}

.message-sender[b-o4ksnk3eon] {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.chat-message-wrapper.assistant .message-sender[b-o4ksnk3eon] {
    color: #06b6d4;
}

.chat-message-wrapper.user .message-sender[b-o4ksnk3eon] {
    color: #818cf8;
}

.message-time[b-o4ksnk3eon] {
    font-size: 0.65rem;
    color: #475569;
    text-align: right;
    margin-top: 0.25rem;
}

/* Typing Indicator Animation */
.typing-bubble[b-o4ksnk3eon] {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border-top-left-radius: 2px;
}

.typing-indicator[b-o4ksnk3eon] {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 10px;
}

.typing-indicator span[b-o4ksnk3eon] {
    width: 6px;
    height: 6px;
    background-color: #06b6d4;
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce-b-o4ksnk3eon 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1)[b-o4ksnk3eon] { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2)[b-o4ksnk3eon] { animation-delay: -0.16s; }

@keyframes typingBounce-b-o4ksnk3eon {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.chat-footer[b-o4ksnk3eon] {
    padding: 0.85rem 1.25rem;
    background-color: rgba(10, 15, 30, 0.9);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.chat-input[b-o4ksnk3eon] {
    background-color: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #94a3b8 !important;
    font-size: 0.85rem;
}

.chat-input[b-o4ksnk3eon]::placeholder {
    color: #475569;
}

.btn-cyan-glow[b-o4ksnk3eon] {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border: none;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

/* Workflow Timeline */
.workflow-section[b-o4ksnk3eon] {
    position: relative;
}

.timeline-wrapper[b-o4ksnk3eon] {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.timeline-line[b-o4ksnk3eon] {
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #06b6d4, #6366f1, #10b981);
    z-index: 0;
}

.timeline-step[b-o4ksnk3eon] {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number[b-o4ksnk3eon] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0f172a;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.timeline-step h4[b-o4ksnk3eon] {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-step p[b-o4ksnk3eon] {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* CTA Bottom Section */
.cta-bottom-section[b-o4ksnk3eon] {
    padding-bottom: 5rem;
}

.cta-card[b-o4ksnk3eon] {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    overflow: hidden;
    padding: 4rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 50px rgba(99, 102, 241, 0.15);
}

.cta-glow[b-o4ksnk3eon] {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.cta-inner h2[b-o4ksnk3eon] {
    font-size: 2.5rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.cta-inner p[b-o4ksnk3eon] {
    color: #94a3b8;
    line-height: 1.6;
}

.mx-auto[b-o4ksnk3eon] { margin-left: auto; margin-right: auto; }
.mt-3[b-o4ksnk3eon] { margin-top: 1rem; }
.mt-4[b-o4ksnk3eon] { margin-top: 1.5rem; }
.max-w-xl[b-o4ksnk3eon] { max-width: 36rem; }

/* Footer */
.landing-footer[b-o4ksnk3eon] {
    background-color: #070a12;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.text-muted-hover[b-o4ksnk3eon] {
    transition: color 0.2s ease;
}

.text-muted-hover:hover[b-o4ksnk3eon] {
    color: #06b6d4 !important;
}

.border-secondary[b-o4ksnk3eon] {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Animations */
.animate-slide-up[b-o4ksnk3eon] {
    animation: slideUp-b-o4ksnk3eon 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in[b-o4ksnk3eon] {
    animation: fadeIn-b-o4ksnk3eon 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp-b-o4ksnk3eon {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn-b-o4ksnk3eon {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-grid[b-o4ksnk3eon], .tab-pane-grid[b-o4ksnk3eon] {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content h1[b-o4ksnk3eon] {
        font-size: 2.75rem;
    }
    
    .hero-desc[b-o4ksnk3eon] {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas[b-o4ksnk3eon], .hero-trust[b-o4ksnk3eon] {
        justify-content: center;
    }
    
    .stats-grid[b-o4ksnk3eon] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-wrapper[b-o4ksnk3eon] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-line[b-o4ksnk3eon] {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-links[b-o4ksnk3eon] {
        display: none; /* simple burger toggle or mobile hide */
    }
    
    .stats-grid[b-o4ksnk3eon] {
        grid-template-columns: 1fr;
    }
}

/* Improved Footer Readability & Contrast */
.landing-footer .text-muted[b-o4ksnk3eon] {
    color: #cbd5e1 !important; /* brighter slate for high contrast */
}

.landing-footer .text-muted-hover[b-o4ksnk3eon] {
    color: #cbd5e1 !important;
}

.landing-footer .text-muted-hover:hover[b-o4ksnk3eon] {
    color: #06b6d4 !important;
}

/* Custom Brand Logo */
.logo-img[b-o4ksnk3eon] {
    height: 38px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-img:hover[b-o4ksnk3eon] {
    transform: scale(1.03);
}

/* Experimental AI Alert */
.alert-experimental[b-o4ksnk3eon] {
    background-color: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    color: #cbd5e1;
    line-height: 1.45;
    text-align: start;
}

.alert-experimental strong[b-o4ksnk3eon] {
    color: #eab308;
}

.animate-pulse[b-o4ksnk3eon] {
    animation: simplePulse-b-o4ksnk3eon 1.5s infinite alternate;
}

@keyframes simplePulse-b-o4ksnk3eon {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Modal Styling Overlay */
.modal-overlay[b-o4ksnk3eon] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-card[b-o4ksnk3eon] {
    background: linear-gradient(135deg, #0f172a 0%, #090d16 100%);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 16px;
    padding: 2.25rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6), 0 0 30px rgba(6, 182, 212, 0.15);
    position: relative;
}

.btn-close-custom[b-o4ksnk3eon] {
    background: transparent;
    color: #94a3b8;
    border: none;
    font-size: 1.25rem;
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-close-custom:hover[b-o4ksnk3eon] {
    color: #ef4444;
    transform: scale(1.1);
}

.contact-channels[b-o4ksnk3eon] {
    text-align: start;
}

.channel-item[b-o4ksnk3eon] {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.channel-item:hover[b-o4ksnk3eon] {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(6, 182, 212, 0.2);
}

.channel-icon[b-o4ksnk3eon] {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
}

.channel-label[b-o4ksnk3eon] {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.05em;
}

.channel-value[b-o4ksnk3eon] {
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.channel-value:hover[b-o4ksnk3eon] {
    color: #06b6d4 !important;
}

.social-grid[b-o4ksnk3eon] {
    display: flex;
    gap: 0.75rem;
}

.social-box[b-o4ksnk3eon] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.85rem;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-box i[b-o4ksnk3eon] {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.social-box:hover[b-o4ksnk3eon] {
    background-color: rgba(255,255,255,0.05);
    border-color: #06b6d4;
    transform: translateY(-2px);
    color: #06b6d4;
}

/* Utilities */
.cursor-pointer[b-o4ksnk3eon] {
    cursor: pointer !important;
}

.text-purple[b-o4ksnk3eon] {
    color: #a855f7 !important;
}

/* Real WMS Dashboard Image Layout styling */
.dashboard-real-wrapper[b-o4ksnk3eon] {
    position: relative;
    border-radius: 20px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(6, 182, 212, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-real-wrapper:hover[b-o4ksnk3eon] {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(6, 182, 212, 0.25);
}

.dashboard-real-img[b-o4ksnk3eon] {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    object-fit: cover;
}
