/* CreativeMatrix Pro Design System V3.0 - Silicon Valley Black */
:root {
    --bg-dark: #050505;
    --card-dark: #111111;
    --border-dark: #222222;
    --accent-indigo: #5e5ce6;
    --accent-pink: #ff2d55;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}

.glass {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
}

/* --- PREMIUM NAVIGATION --- */
.nav-item {
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
}

.nav-item:hover {
    color: white;
}

.nav-item.active {
    background: var(--accent-indigo);
    color: white;
    box-shadow: 0 4px 20px rgba(94, 92, 230, 0.4);
}

/* --- BENTO CARDS 3.0 --- */
.bento-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 2rem;
}

.bento-card:hover {
    transform: translateY(-12px);
    border-color: rgba(94, 92, 230, 0.5);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8), 0 0 20px rgba(94, 92, 230, 0.1);
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-card {
    background: linear-gradient(145deg, #111111, #0a0a0a);
    border: 1px solid var(--border-dark);
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: var(--accent-indigo);
    transform: scale(1.02);
}

/* --- LIVE ACTIVITY TOAST --- */
#live-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #111111;
    border: 1px solid var(--border-dark);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 200;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#live-toast.active { transform: translateX(0); }

/* --- OTHER UI --- */
.tool-ui-input {
    background: #000000;
    border: 1px solid var(--border-dark);
    border-radius: 1.25rem;
}
.tool-ui-button {
    background: var(--accent-indigo);
    box-shadow: 0 10px 30px -5px rgba(94, 92, 230, 0.5);
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
