html,
        body {
            height: 100%;
        }

        .gradient-text {
            background: linear-gradient(135deg, #f8fafc 0%, #a78bfa 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-text-accent {
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .glass-card-hover:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-4px);
        }

        .search-glow {
            box-shadow:
                0 0 60px rgba(139, 92, 246, 0.15),
                0 0 100px rgba(236, 72, 153, 0.1),
                0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            pointer-events: none;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
            top: -200px;
            left: -200px;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
            top: 100px;
            right: -150px;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
            bottom: -100px;
            left: 30%;
        }

        .badge-glow {
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }

        .avatar-ring {
            box-shadow: 0 0 0 3px #0a0a0f;
        }

        .pill-button {
            transition: all 0.2s ease;
        }

        .pill-button:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: rgba(139, 92, 246, 0.5);
        }

        .feature-icon {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
        }

        .search-input:focus {
            outline: none;
        }

        .search-button {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            transition: all 0.3s ease;
        }

        .search-button:hover {
            background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
            transform: scale(1.02);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 0.7;
            }
        }

        .pulse-glow {
            animation: pulse-glow 4s ease-in-out infinite;
        }

        .logo-grid-item {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo-grid-item:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-bg-logos {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.15;
            overflow: hidden;
        }

        .top-menu-links {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        @media (max-width: 1024px) {
            .orb-1 {
                width: 420px;
                height: 420px;
            }

            .orb-2 {
                width: 360px;
                height: 360px;
            }

            .orb-3 {
                width: 300px;
                height: 300px;
            }

            .hero-bg-logos .grid {
                padding: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .top-menu-links {
                max-width: 62vw;
                overflow-x: auto;
                white-space: nowrap;
                gap: 0.6rem;
                padding-bottom: 4px;
            }

            .top-menu-links a {
                font-size: 0.72rem !important;
            }

            .hero-bg-logos .grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 0.85rem;
                padding: 1.15rem;
            }

            .hero-bg-logos img {
                width: 2.5rem !important;
                height: 2.5rem !important;
            }

            .glass-card.search-glow {
                flex-wrap: wrap;
                gap: 0.45rem;
                padding: 0.45rem;
            }

            .glass-card.search-glow .search-button {
                width: 100%;
                justify-content: center;
                padding: 0.78rem 1rem;
                font-size: 0.95rem;
            }

            .glass-card.search-glow .search-input {
                font-size: 0.95rem;
            }

            .pill-button {
                font-size: 0.76rem;
                padding: 0.42rem 0.85rem;
            }

            .relative.z-10.px-6.pb-32 .text-3xl,
            .relative.z-10.px-6.pb-32 .sm\:text-4xl {
                font-size: 1.75rem !important;
                line-height: 1.2 !important;
            }

            .relative.z-10.px-6.pb-32 .text-lg {
                font-size: 0.92rem !important;
            }

            .relative.z-10.px-6.pb-32 .grid.sm\:grid-cols-2.lg\:grid-cols-4 {
                gap: 0.75rem !important;
            }

            .relative.z-10.px-6.pb-32 .glass-card.glass-card-hover {
                padding: 0.9rem !important;
                border-radius: 0.9rem !important;
            }

            .relative.z-10.px-6.pb-32 .glass-card.glass-card-hover h3 {
                font-size: 0.92rem !important;
                margin-bottom: 0.35rem !important;
            }

            .relative.z-10.px-6.pb-32 .glass-card.glass-card-hover p {
                font-size: 0.74rem !important;
                line-height: 1.4 !important;
            }

            .relative.z-10.px-6.pb-32 .feature-icon {
                width: 2.45rem !important;
                height: 2.45rem !important;
                border-radius: 0.65rem !important;
                margin-bottom: 0.65rem !important;
            }

            .relative.z-10.px-6.pb-32 .feature-icon .w-7,
            .relative.z-10.px-6.pb-32 .feature-icon .h-7 {
                width: 1.15rem !important;
                height: 1.15rem !important;
            }
        }

        @media (max-width: 480px) {
            .top-menu-links {
                max-width: 66vw;
                gap: 0.45rem;
            }

            .top-menu-links a {
                font-size: 0.65rem !important;
            }

            nav .glass-card.px-5.py-2\.5 {
                padding: 0.45rem 0.7rem !important;
                font-size: 0.68rem !important;
            }

            nav.px-6,
            section.px-6,
            footer.px-6 {
                padding-left: 0.9rem !important;
                padding-right: 0.9rem !important;
            }

            .orb-1 {
                width: 260px;
                height: 260px;
                left: -130px;
                top: -110px;
            }

            .orb-2 {
                width: 220px;
                height: 220px;
                right: -110px;
            }

            .orb-3 {
                width: 180px;
                height: 180px;
                left: 20%;
                bottom: -80px;
            }

            .hero-bg-logos .grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0.6rem;
                padding: 0.8rem;
            }

            .hero-bg-logos img {
                width: 2rem !important;
                height: 2rem !important;
            }

            .search-button {
                width: 100%;
                justify-content: center;
                font-size: 0.9rem;
                padding: 0.72rem 0.85rem;
            }

            .search-input {
                font-size: 0.9rem !important;
            }

            .pill-button {
                font-size: 0.64rem;
                padding: 0.32rem 0.58rem;
                border-radius: 999px;
            }

            .relative.z-10.px-6.pb-32 .text-3xl,
            .relative.z-10.px-6.pb-32 .sm\:text-4xl {
                font-size: 1.45rem !important;
            }

            .relative.z-10.px-6.pb-32 .text-lg {
                font-size: 0.84rem !important;
            }

            .relative.z-10.px-6.pb-32 .grid.sm\:grid-cols-2.lg\:grid-cols-4 {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 0.6rem !important;
            }

            .relative.z-10.px-6.pb-32 .glass-card.glass-card-hover {
                padding: 0.72rem !important;
            }

            .relative.z-10.px-6.pb-32 .glass-card.glass-card-hover h3 {
                font-size: 0.82rem !important;
            }

            .relative.z-10.px-6.pb-32 .glass-card.glass-card-hover p {
                font-size: 0.68rem !important;
            }

            .logo-grid-item {
                border-radius: 0.9rem;
            }
        }

        @media (max-width: 360px) {
            .top-menu-links {
                max-width: 68vw;
            }

            .top-menu-links a {
                font-size: 0.6rem !important;
            }

            .hero-bg-logos .grid {
                gap: 0.45rem;
                padding: 0.6rem;
            }

            .hero-bg-logos img {
                width: 1.75rem !important;
                height: 1.75rem !important;
            }

            .pill-button {
                font-size: 0.7rem;
                padding: 0.34rem 0.65rem;
            }

            .relative.z-10.px-6.pb-32 .grid.sm\:grid-cols-2.lg\:grid-cols-4 {
                grid-template-columns: 1fr !important;
            }
        }

body {
            box-sizing: border-box;
        }
