:root {
    --primary-color: #7c3aed;
    --primary-hover: #6d28d9;
    --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    --accent-color: #a855f7;
    --dark-bg: #090d16;
    --dark-card: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(226, 232, 240, 0.8);
    --glass-violet: rgba(124, 58, 237, 0.08);
}

/* Modern Typography & Font Smoothing */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
}

.font-grotesk {
    font-family: 'Space Grotesk', sans-serif;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a855f7;
}

/* Bento Grid Cards & Smooth Elevations */
.bento-card {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(124, 58, 237, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    border-color: rgba(124, 58, 237, 0.35);
}

.bento-card-dark {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.5);
}

/* Glassmorphic elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-badge-violet {
    background: rgba(124, 58, 237, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #7c3aed;
}

/* Buttons */
.btn-violet {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    color: white;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.28);
}

.btn-violet:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #7e22ce 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(124, 58, 237, 0.4);
}

/* Active tabs */
.tab-btn {
    transition: all 0.25s ease;
}

.tab-btn.active-tab {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

.tab-btn.active-tab i,
.tab-btn.active-tab svg {
    color: white !important;
    stroke: white !important;
}

/* FAQ Active Styles */
.active-faq-btn {
    border-color: #7c3aed !important;
    background: rgba(124, 58, 237, 0.05) !important;
}

.active-faq-btn .faq-dot {
    background-color: #7c3aed !important;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.6) !important;
}

.active-faq-btn span.faq-q-text {
    color: #7c3aed !important;
}

/* Search match */
.search-match-highlight {
    background-color: rgba(124, 58, 237, 0.15);
    color: #7c3aed;
    font-weight: 700;
    padding: 0 3px;
    border-radius: 3px;
}
