html {
            scroll-behavior: smooth;
        }
        body {
            background: #020617;
            overflow-x: hidden;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f172a;
        }
        ::-webkit-scrollbar-thumb {
            background: #3b82f6;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #60a5fa;
        }
        .bg-grid {
            background-image: linear-gradient(to right, rgba(59,130,246,0.08) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(59,130,246,0.08) 1px, transparent 1px);
            background-size: 40px 40px;
        }
        .glass-card {
            background: rgba(30, 41, 59, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(59,130,246,0.3);
            border-radius: 2rem;
        }
        .hover-glow:hover {
            box-shadow: 0 0 20px rgba(59,130,246,0.4);
            transition: all 0.3s ease;
            transform: translateY(-4px);
        }
        .clip-path-diagonal {
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }
        .dashboard-mock {
            background: linear-gradient(135deg, #0f172a 0%, #12203f 55%, #0f172a 100%);
            min-height: 280px;
        }