/* ============================================================
   VoidOnyx Lead Generator — Premium Design System
   A comprehensive CSS framework for a stunning SaaS UI
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Primary palette */
    --vo-indigo:        hsl(239, 84%, 67%);
    --vo-indigo-light:  hsl(239, 84%, 95%);
    --vo-indigo-dark:   hsl(239, 84%, 40%);
    --vo-cyan:          hsl(190, 95%, 39%);
    --vo-cyan-light:    hsl(190, 95%, 93%);
    --vo-emerald:       hsl(160, 84%, 39%);
    --vo-emerald-light: hsl(160, 84%, 93%);
    --vo-amber:         hsl(38, 92%, 50%);
    --vo-amber-light:   hsl(38, 92%, 93%);
    --vo-rose:          hsl(350, 89%, 60%);
    --vo-rose-light:    hsl(350, 89%, 95%);
    --vo-purple:        hsl(270, 76%, 60%);
    --vo-sky:           hsl(199, 89%, 48%);

    /* Neutrals */
    --vo-bg-body:       #f0f4f8;
    --vo-bg-card:       rgba(255, 255, 255, 0.82);
    --vo-bg-sidebar:    linear-gradient(180deg, #0c1225 0%, #111d3a 50%, #0e1a35 100%);
    --vo-border:        rgba(148, 163, 184, 0.18);
    --vo-text-primary:  #0f172a;
    --vo-text-secondary:#64748b;
    --vo-text-muted:    #94a3b8;

    /* Gradients */
    --vo-gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f8ef7 50%, #06b6d4 100%);
    --vo-gradient-warm:    linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --vo-gradient-emerald: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --vo-gradient-aurora:  linear-gradient(135deg, rgba(99,102,241,0.15) 0%, rgba(6,182,212,0.08) 50%, rgba(16,185,129,0.1) 100%);

    /* Shadows */
    --vo-shadow-sm:   0 2px 8px -1px rgba(0,0,0,0.06);
    --vo-shadow-md:   0 8px 24px -4px rgba(0,0,0,0.08), 0 2px 8px -2px rgba(0,0,0,0.04);
    --vo-shadow-lg:   0 16px 40px -6px rgba(0,0,0,0.1), 0 4px 12px -2px rgba(0,0,0,0.05);
    --vo-shadow-glow: 0 0 30px -5px rgba(99,102,241,0.25);
    --vo-shadow-card-hover: 0 20px 50px -8px rgba(99,102,241,0.15), 0 8px 20px -4px rgba(0,0,0,0.06);

    /* Transitions */
    --vo-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --vo-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Spacing */
    --vo-radius-sm: 10px;
    --vo-radius-md: 14px;
    --vo-radius-lg: 20px;
    --vo-radius-xl: 28px;

    /* Typography */
    --vo-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --vo-font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --vo-font-mono:    'JetBrains Mono', 'Fira Code', monospace;
}


/* ---------- Animated Aurora Background ---------- */
@keyframes aurora-drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25%      { transform: translate(30px, -20px) rotate(2deg) scale(1.02); }
    50%      { transform: translate(-20px, 15px) rotate(-1deg) scale(0.98); }
    75%      { transform: translate(15px, 25px) rotate(1.5deg) scale(1.01); }
}

@keyframes aurora-drift-reverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%      { transform: translate(-40px, 20px) rotate(-2deg); }
    66%      { transform: translate(25px, -30px) rotate(1deg); }
}

body {
    font-family: var(--vo-font-body) !important;
    background-color: var(--vo-bg-body) !important;
    color: var(--vo-text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
    top: -120px;
    left: -100px;
    animation: aurora-drift 20s ease-in-out infinite;
}

body::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation: aurora-drift-reverse 25s ease-in-out infinite;
}

.page, .page-wrapper, .page-body, .container-xl {
    position: relative;
    z-index: 1;
}


/* ---------- Headings & Typography ---------- */
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--vo-font-heading) !important;
    letter-spacing: -0.025em;
    color: var(--vo-text-primary);
}

.font-monospace, code, pre {
    font-family: var(--vo-font-mono) !important;
}

.vo-gradient-text {
    background: var(--vo-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vo-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.vo-page-subtitle {
    color: var(--vo-text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 0.25rem;
}


/* ---------- Glassmorphism Card System ---------- */
.card-glass {
    background: var(--vo-bg-card) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--vo-border) !important;
    border-radius: var(--vo-radius-lg) !important;
    box-shadow: var(--vo-shadow-md);
    transition: all 0.35s var(--vo-ease);
    position: relative;
    overflow: hidden;
}

.card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    opacity: 0;
    transition: opacity 0.35s var(--vo-ease);
}

.card-glass:hover {
    border-color: rgba(99, 102, 241, 0.3) !important;
    box-shadow: var(--vo-shadow-card-hover);
    transform: translateY(-3px);
}

.card-glass:hover::before {
    opacity: 1;
}

/* Stat Cards */
.vo-stat-card {
    padding: 1.15rem 1.25rem;
    position: relative;
    overflow: hidden;
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vo-stat-card::after {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    opacity: 0.06;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.vo-stat-card:hover::after {
    opacity: 0.14;
}

.vo-stat-card.vo-indigo::after  { background: var(--vo-indigo); }
.vo-stat-card.vo-emerald::after { background: var(--vo-emerald); }
.vo-stat-card.vo-sky::after     { background: var(--vo-sky); }
.vo-stat-card.vo-amber::after   { background: var(--vo-amber); }

.vo-stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--vo-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.vo-stat-value {
    font-family: var(--vo-font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-top: 0.25rem;
}

.vo-stat-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--vo-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: transform 0.3s var(--vo-spring);
}

.vo-stat-card:hover .vo-stat-icon {
    transform: scale(1.1) rotate(-5deg);
}


/* ---------- Sidebar Overhaul ---------- */
.navbar-vertical.sidebar-dark {
    background: var(--vo-bg-sidebar) !important;
    border-right: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 4px 0 30px -5px rgba(0,0,0,0.3);
}

.sidebar-dark .container-fluid {
    padding: 0;
}

/* Sidebar brand */
.sidebar-dark .navbar-brand {
    padding: 1.5rem 1.25rem !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-dark .navbar-brand .avatar {
    background: var(--vo-gradient-primary) !important;
    box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}

/* Sidebar nav links */
.sidebar-dark .nav-link {
    color: rgba(148, 163, 184, 0.9) !important;
    padding: 0.7rem 1.25rem !important;
    border-radius: var(--vo-radius-sm) !important;
    margin: 2px 0.75rem !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.25s var(--vo-ease) !important;
    position: relative;
    border-left: 3px solid transparent;
}

.sidebar-dark .nav-link i {
    width: 20px;
    text-align: center;
    transition: all 0.25s var(--vo-ease);
}

.sidebar-dark .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-left-color: rgba(99,102,241,0.4);
    transform: translateX(2px);
}

.sidebar-dark .nav-link:hover i {
    transform: scale(1.15);
}

.sidebar-dark .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(99,102,241,0.2) 0%, rgba(6,182,212,0.12) 100%) !important;
    border-left-color: var(--vo-indigo) !important;
    box-shadow: 0 4px 20px -4px rgba(99,102,241,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
    font-weight: 600;
}

.sidebar-dark .nav-link.active i {
    filter: drop-shadow(0 0 6px rgba(99,102,241,0.6));
}

/* Sidebar section dividers */
.sidebar-dark .hr-text {
    color: rgba(148, 163, 184, 0.4) !important;
    font-size: 0.65rem !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0 1.25rem;
    margin: 1rem 0 0.5rem !important;
}

.sidebar-dark .hr-text::before,
.sidebar-dark .hr-text::after {
    border-color: rgba(255,255,255,0.06) !important;
}

/* Credits meter */
.vo-credits-meter {
    margin: 0.75rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--vo-radius-md);
    backdrop-filter: blur(10px);
}

.vo-credits-meter .progress {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.vo-credits-meter .progress-bar {
    border-radius: 10px;
    transition: width 1s var(--vo-ease);
}


/* ---------- Top Navbar ---------- */
header.navbar.bg-glass,
.bg-glass {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.vo-org-badge {
    background: var(--vo-indigo-light);
    color: var(--vo-indigo);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.vo-upgrade-btn {
    background: var(--vo-gradient-primary);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 0.45rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 4px 14px -2px rgba(99,102,241,0.35);
    transition: all 0.25s var(--vo-ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.vo-upgrade-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px -2px rgba(99,102,241,0.45);
}

.vo-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vo-gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(99,102,241,0.25);
}


/* ---------- Premium Buttons ---------- */
.btn-gradient {
    background: var(--vo-gradient-primary) !important;
    background-size: 200% auto !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600;
    border-radius: 50px !important;
    padding: 0.55rem 1.5rem;
    box-shadow: 0 4px 14px -2px rgba(99,102,241,0.35);
    transition: all 0.3s var(--vo-ease) !important;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover {
    background-position: right center !important;
    box-shadow: 0 8px 24px -4px rgba(99,102,241,0.45) !important;
    transform: translateY(-2px);
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:active {
    transform: translateY(0);
}


/* ---------- Modern Tables ---------- */
.table {
    --tblr-table-bg: transparent;
    color: var(--vo-text-primary);
}

.table thead th {
    background: rgba(248, 250, 252, 0.8) !important;
    color: var(--vo-text-secondary) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5) !important;
    padding: 0.9rem 1rem;
    white-space: nowrap;
}

.table tbody tr {
    transition: all 0.2s var(--vo-ease);
}

.table tbody tr:hover {
    background: rgba(99, 102, 241, 0.03) !important;
}

.table tbody td {
    padding: 1rem;
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
    vertical-align: middle;
}


/* ---------- Form Inputs ---------- */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--vo-text-primary) !important;
    border: 1.5px solid rgba(203, 213, 225, 0.6) !important;
    border-radius: var(--vo-radius-sm) !important;
    padding: 0.7rem 1rem;
    font-size: 0.925rem;
    transition: all 0.25s var(--vo-ease) !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.form-control:focus, .form-select:focus {
    border-color: var(--vo-indigo) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12), 0 1px 2px rgba(0,0,0,0.04) !important;
    background: #ffffff !important;
}

.form-control::placeholder {
    color: var(--vo-text-muted);
    font-weight: 400;
}

.form-label {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--vo-text-primary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

/* Search input group */
.vo-search-input {
    border-radius: 50px !important;
    padding-left: 3rem !important;
    border: 1.5px solid rgba(203, 213, 225, 0.5) !important;
    background: rgba(255,255,255,0.95) !important;
    box-shadow: var(--vo-shadow-sm);
}

.vo-search-input:focus {
    border-color: var(--vo-indigo) !important;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1), var(--vo-shadow-md) !important;
}


/* ---------- Badges ---------- */
.badge-subtle-primary {
    background: var(--vo-indigo-light) !important;
    color: var(--vo-indigo) !important;
    border: 1px solid rgba(99,102,241,0.25) !important;
    font-weight: 600;
    font-size: 0.73rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}

.badge-subtle-success {
    background: var(--vo-emerald-light) !important;
    color: var(--vo-emerald) !important;
    border: 1px solid rgba(16,185,129,0.25) !important;
    font-weight: 600;
    font-size: 0.73rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}

.badge-subtle-warning {
    background: var(--vo-amber-light) !important;
    color: var(--vo-amber) !important;
    border: 1px solid rgba(245,158,11,0.25) !important;
    font-weight: 600;
    font-size: 0.73rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}

.badge-subtle-info {
    background: var(--vo-cyan-light) !important;
    color: var(--vo-sky) !important;
    border: 1px solid rgba(14,165,233,0.25) !important;
    font-weight: 600;
    font-size: 0.73rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}

.badge-subtle-danger {
    background: var(--vo-rose-light) !important;
    color: var(--vo-rose) !important;
    border: 1px solid rgba(244,63,94,0.25) !important;
    font-weight: 600;
    font-size: 0.73rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}


/* ---------- Score Ring (CSS conic-gradient) ---------- */
.vo-score-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--vo-font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    position: relative;
    --score-pct: 0;
}

.vo-score-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(
        var(--ring-color, var(--vo-indigo)) calc(var(--score-pct) * 1%),
        rgba(148,163,184,0.15) calc(var(--score-pct) * 1%)
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #fff calc(100% - 4px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #fff calc(100% - 4px));
}

.vo-score-ring.vo-score-high   { --ring-color: var(--vo-emerald); color: var(--vo-emerald); }
.vo-score-ring.vo-score-mid    { --ring-color: var(--vo-amber);   color: var(--vo-amber); }
.vo-score-ring.vo-score-low    { --ring-color: var(--vo-rose);    color: var(--vo-rose); }

/* Large score ring for detail pages */
.vo-score-ring-lg {
    width: 90px;
    height: 90px;
    font-size: 1.35rem;
}

.vo-score-ring-lg::before {
    padding: 5px;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #fff calc(100% - 5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #fff calc(100% - 5px));
}


/* ---------- Kanban / Pipeline Cards ---------- */
.vo-kanban-column {
    border-radius: var(--vo-radius-lg);
    position: relative;
    overflow: hidden;
}

.vo-kanban-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--vo-radius-lg) var(--vo-radius-lg) 0 0;
}

.vo-deal-card {
    background: #ffffff;
    border: 1px solid var(--vo-border);
    border-radius: var(--vo-radius-md);
    padding: 1rem;
    transition: all 0.3s var(--vo-ease);
    position: relative;
    overflow: hidden;
}

.vo-deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--stage-color, var(--vo-indigo));
    border-radius: 4px 0 0 4px;
}

.vo-deal-card:hover {
    transform: translateY(-2px) rotate(-0.5deg);
    box-shadow: var(--vo-shadow-lg);
    border-color: rgba(99,102,241,0.2);
}


/* ---------- Modals ---------- */
.modal-content {
    border-radius: var(--vo-radius-lg) !important;
    border: 1px solid var(--vo-border) !important;
    box-shadow: 0 25px 60px -12px rgba(0,0,0,0.2) !important;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid rgba(226,232,240,0.5);
    padding: 1.25rem 1.5rem;
}

.modal-header .modal-title {
    font-family: var(--vo-font-heading);
    font-weight: 700;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid rgba(226,232,240,0.5);
    padding: 1rem 1.5rem;
}

.modal.fade .modal-dialog {
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s var(--vo-spring), opacity 0.25s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}


/* ---------- Auth Pages (standalone) ---------- */
.vo-auth-bg {
    min-height: 100vh;
    background: #060b18;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vo-auth-bg::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 60%);
    top: -200px;
    left: -200px;
    animation: aurora-drift 15s ease-in-out infinite;
}

.vo-auth-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 60%);
    bottom: -150px;
    right: -150px;
    animation: aurora-drift-reverse 18s ease-in-out infinite;
}

/* Floating orbs */
.vo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.vo-orb-1 {
    width: 300px; height: 300px;
    background: rgba(99,102,241,0.25);
    top: 10%; left: 60%;
    animation: aurora-drift 12s ease-in-out infinite;
}

.vo-orb-2 {
    width: 200px; height: 200px;
    background: rgba(16,185,129,0.2);
    top: 60%; left: 15%;
    animation: aurora-drift-reverse 16s ease-in-out infinite;
}

.vo-orb-3 {
    width: 250px; height: 250px;
    background: rgba(245,158,11,0.12);
    top: 30%; right: 10%;
    animation: aurora-drift 20s ease-in-out infinite;
}

.vo-auth-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--vo-radius-xl);
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.vo-auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent);
}

.vo-auth-card .form-control {
    background: rgba(30, 41, 59, 0.5) !important;
    border: 1.5px solid rgba(255,255,255,0.1) !important;
    color: #f1f5f9 !important;
    border-radius: var(--vo-radius-sm) !important;
    padding: 0.75rem 1rem;
}

.vo-auth-card .form-control:focus {
    border-color: var(--vo-indigo) !important;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.15) !important;
    background: rgba(30, 41, 59, 0.7) !important;
}

.vo-auth-card .form-control::placeholder {
    color: rgba(148,163,184,0.6);
}

.vo-auth-card .form-label {
    color: rgba(203, 213, 225, 0.9);
    font-weight: 500;
    font-size: 0.85rem;
}

.vo-auth-btn {
    background: var(--vo-gradient-primary);
    background-size: 200% auto;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 8px 24px -4px rgba(99,102,241,0.4);
    transition: all 0.3s var(--vo-ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.vo-auth-btn:hover {
    background-position: right center;
    box-shadow: 0 12px 30px -4px rgba(99,102,241,0.5);
    transform: translateY(-2px);
}

.vo-auth-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--vo-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px -4px rgba(99,102,241,0.4);
    animation: vo-pulse-glow 3s ease-in-out infinite;
}

@keyframes vo-pulse-glow {
    0%, 100% { box-shadow: 0 8px 20px -4px rgba(99,102,241,0.4); }
    50%      { box-shadow: 0 8px 30px -2px rgba(99,102,241,0.6); }
}

.vo-auth-title {
    font-family: var(--vo-font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
}

.vo-auth-subtitle {
    color: rgba(148,163,184,0.7);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
}


/* ---------- Pricing Cards ---------- */
.vo-pricing-card {
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.35s var(--vo-ease);
}

.vo-pricing-card.vo-popular {
    border: 2px solid rgba(99,102,241,0.4) !important;
    box-shadow: 0 0 40px -10px rgba(99,102,241,0.3);
    transform: scale(1.03);
}

.vo-pricing-card.vo-popular::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--vo-gradient-primary);
    border-radius: 0 0 10px 10px;
}

.vo-popular-badge {
    background: var(--vo-gradient-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.vo-price {
    font-family: var(--vo-font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 1rem 0;
}

.vo-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--vo-text-secondary);
}

.vo-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
}

.vo-feature-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--vo-text-primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.vo-feature-list li i {
    font-size: 0.8rem;
}


/* ---------- Empty States ---------- */
.vo-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--vo-text-muted);
}

.vo-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--vo-gradient-aurora);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: var(--vo-indigo);
    animation: vo-float 4s ease-in-out infinite;
}

@keyframes vo-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.vo-empty-state h4 {
    font-family: var(--vo-font-heading);
    font-weight: 700;
    color: var(--vo-text-primary);
    margin-bottom: 0.5rem;
}


/* ---------- Page Entrance Animations ---------- */
@keyframes vo-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes vo-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.vo-animate-in {
    animation: vo-fade-up 0.5s var(--vo-ease) both;
}

.vo-stagger-1 { animation-delay: 0.05s; }
.vo-stagger-2 { animation-delay: 0.1s; }
.vo-stagger-3 { animation-delay: 0.15s; }
.vo-stagger-4 { animation-delay: 0.2s; }
.vo-stagger-5 { animation-delay: 0.25s; }
.vo-stagger-6 { animation-delay: 0.3s; }

.page-body {
    animation: vo-fade-in 0.4s var(--vo-ease) both;
}


/* ---------- Alerts ---------- */
.alert {
    border-radius: var(--vo-radius-md) !important;
    border: none !important;
    box-shadow: var(--vo-shadow-sm);
}


/* ---------- Footer ---------- */
footer.footer {
    border-top: 1px solid var(--vo-border) !important;
    background: transparent;
}


/* ---------- Status Pulse Dot ---------- */
.vo-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    position: relative;
}

.vo-status-dot.active {
    background: var(--vo-emerald);
}

.vo-status-dot.active::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--vo-emerald);
    opacity: 0.4;
    animation: vo-pulse 2s ease-in-out infinite;
}

@keyframes vo-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50%      { transform: scale(1.8); opacity: 0; }
}


/* ---------- Tech Stack Badges ---------- */
.vo-tech-badge {
    background: rgba(241, 245, 249, 0.95) !important;
    color: #334155 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 0.25rem 0.6rem !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s var(--vo-ease);
}

.vo-tech-badge:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}


/* ---------- Scrollbar Styling (Webkit) ---------- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(148,163,184,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(148,163,184,0.5);
}

/* Sidebar scrollbar */
.sidebar-dark ::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
}


/* ---------- API Portal Code Blocks ---------- */
.vo-code-block {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--vo-radius-md);
    padding: 1.25rem;
    font-family: var(--vo-font-mono);
    font-size: 0.82rem;
    line-height: 1.6;
    overflow-x: auto;
    position: relative;
}

.vo-code-block.vo-code-request { color: #67e8f9; }
.vo-code-block.vo-code-response { color: #6ee7b7; }


/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .vo-auth-card {
        margin: 1rem;
        padding: 1.75rem;
    }

    .vo-stat-value {
        font-size: 1.5rem;
    }

    .vo-page-title {
        font-size: 1.35rem;
    }

    .card-glass {
        border-radius: var(--vo-radius-md) !important;
    }
}
