:root {
            --bg-color: #07080A;
            --bg-secondary: #10131a;
            --bg-card: rgba(255, 255, 255, 0.03);
            --text-main: #FFFFFF;
            --text-muted: #8A8F98;
            --text-soft: #CBD5E1;
            --accent-glow: #4F46E5;
            --accent-gradient: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --header-bg: rgba(7, 8, 10, 0.72);
            --header-border: rgba(255, 255, 255, 0.1);
            --footer-bg: #050608;
            --chip-bg: rgba(255, 255, 255, 0.05);
            --chip-border: rgba(255, 255, 255, 0.14);
            --chip-active-bg: rgba(0, 198, 255, 0.2);
            --chip-active-border: rgba(0, 198, 255, 0.8);
        }

        html[data-theme='light'] {
            --bg-color: #f2f6fc;
            --bg-secondary: #e8eef8;
            --bg-card: rgba(255, 255, 255, 0.9);
            --text-main: #0f172a;
            --text-muted: #475569;
            --text-soft: #334155;
            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(15, 23, 42, 0.14);
            --header-bg: rgba(255, 255, 255, 0.88);
            --header-border: rgba(15, 23, 42, 0.14);
            --footer-bg: #0f172a;
            --chip-bg: rgba(15, 23, 42, 0.04);
            --chip-border: rgba(15, 23, 42, 0.18);
            --chip-active-bg: rgba(0, 114, 255, 0.12);
            --chip-active-border: rgba(0, 114, 255, 0.55);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
            transition: background-color 0.25s ease, color 0.25s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .top-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 74px;
            border-bottom: 1px solid var(--header-border);
            background: var(--header-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: background-color 0.25s ease, border-color 0.25s ease;
        }

        .top-nav-inner {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-main);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .brand-badge {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-gradient);
            color: white;
            font-size: 0.9rem;
            font-weight: 800;
        }

        html[data-theme='light'] .brand-badge {
            color: white;
        }

        .menu-links {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .menu-link {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.92rem;
            font-weight: 600;
            position: relative;
            transition: color 0.2s ease;
        }

        .menu-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -7px;
            width: 0;
            height: 2px;
            background: #00c6ff;
            transition: width 0.2s ease;
        }

        .menu-link:hover,
        .menu-link.active {
            color: var(--text-main);
        }

        .menu-link:hover::after,
        .menu-link.active::after {
            width: 100%;
        }

        .theme-toggle {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            border: 1px solid var(--glass-border);
            background: var(--chip-bg);
            color: var(--text-main);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 1rem;
        }

        .theme-toggle:hover {
            transform: translateY(-1px);
            border-color: rgba(0, 198, 255, 0.55);
        }

        .menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid var(--glass-border);
            background: var(--chip-bg);
            color: var(--text-main);
            cursor: pointer;
        }

        .mobile-menu {
            position: fixed;
            top: 74px;
            left: 0;
            right: 0;
            z-index: 99;
            background: var(--header-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--header-border);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
        }

        .mobile-menu.open {
            max-height: 260px;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            padding: 12px 24px 16px;
            gap: 10px;
        }

        /* ----------------------------------
           Hero Section with Background Image
           ---------------------------------- */
        .hero {
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 80px;
            position: relative;

            /* Add your Logo Collage image URL here */
            background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            /* Optional: creates a subtle parallax effect */
        }

        /* The Dark Overlay for Readability */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Combines a dark wash with a radial vignette to blend the edges */
            background: linear-gradient(to bottom, rgba(7, 8, 10, 0.6), rgba(7, 8, 10, 1)),
                radial-gradient(circle at center, transparent 0%, #07080A 80%);
            z-index: 1;
            pointer-events: none;
        }

        html[data-theme='light'] .hero::before {
            background: linear-gradient(to bottom, rgba(248, 250, 252, 0.62), rgba(232, 238, 248, 0.92)),
                radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(226, 232, 240, 0.9) 78%);
        }

        /* Ensure all text and inputs sit ABOVE the overlay */
        .hero>* {
            z-index: 2;
            position: relative;
        }

        /* Ambient Glowing Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            z-index: 1;
            /* Sits above the background but below the text */
            animation: float 10s infinite alternate ease-in-out;
            pointer-events: none;
        }

        .orb-1 {
            top: 10%;
            left: -5%;
            width: 40vw;
            height: 40vw;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
        }

        .orb-2 {
            bottom: 10%;
            right: -5%;
            width: 40vw;
            height: 40vw;
            background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, transparent 70%);
            animation-delay: -5s;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(30px, 50px);
            }
        }

        /* Hero Typography & UI */
        .pre-headline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            margin-bottom: 24px;
            color: var(--text-soft);
        }

        html[data-theme='light'] .pre-headline {
            color: #1e293b;
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(15, 23, 42, 0.14);
        }

        h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            max-width: 900px;
        }

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

        html[data-theme='light'] h1 {
            color: #0f172a;
            text-shadow: 0 4px 24px rgba(255, 255, 255, 0.45);
        }

        .subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 600px;
            margin-bottom: 48px;
        }

        html[data-theme='light'] .subtitle {
            color: #334155;
        }

        /* Search Action Hub */
        .search-hub {
            width: 100%;
            max-width: 700px;
            position: relative;
            margin-bottom: 24px;
        }

        .search-input {
            width: 100%;
            padding: 24px 32px;
            padding-right: 180px;
            font-size: 1.25rem;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            color: white;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
        }

        html[data-theme='light'] .search-input {
            background: rgba(255, 255, 255, 0.92);
            color: #0f172a;
            border-color: rgba(15, 23, 42, 0.15);
        }

        .search-input:focus {
            outline: none;
            border-color: rgba(0, 198, 255, 0.5);
            box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.1), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .search-btn {
            position: absolute;
            right: 12px;
            top: 12px;
            bottom: 12px;
            background: var(--accent-gradient);
            border: none;
            border-radius: 12px;
            padding: 0 32px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -10px rgba(0, 198, 255, 0.5);
        }

        /* Quick Links */
        .quick-links {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 64px;
        }

        .tag {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #E2E8F0;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
            backdrop-filter: blur(5px);
        }

        .tag:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-color: rgba(255, 255, 255, 0.4);
        }

        html[data-theme='light'] .tag {
            color: #334155;
            border-color: rgba(15, 23, 42, 0.22);
        }

        html[data-theme='light'] .tag:hover {
            background: rgba(15, 23, 42, 0.08);
            color: #0f172a;
            border-color: rgba(15, 23, 42, 0.3);
        }

        /* Trust Bar */
        .trust-bar {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-bottom: 64px;
        }

        .avatars {
            display: flex;
        }

        .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #2D3748;
            border: 2px solid var(--bg-color);
            margin-left: -10px;
        }

        .avatar:first-child {
            margin-left: 0;
            background: linear-gradient(45deg, #FF6B6B, #FF8E53);
        }

        .avatar:nth-child(2) {
            background: linear-gradient(45deg, #4E65FF, #92EFFD);
        }

        .avatar:nth-child(3) {
            background: linear-gradient(45deg, #11998E, #38EF7D);
        }

        .trust-text {
            font-size: 0.875rem;
            color: var(--text-soft);
        }

        .logos-section {
            padding: 82px 0 28px;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
            text-align: center;
        }

        .section-subtitle {
            color: var(--text-muted);
            text-align: center;
            max-width: 760px;
            margin: 0 auto 30px;
        }

        .filter-toolbar {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 12px;
            margin-bottom: 16px;
        }

        .grid-filter-input {
            height: 44px;
            border-radius: 12px;
            border: 1px solid var(--chip-border);
            background: var(--chip-bg);
            color: var(--text-main);
            padding: 0 14px;
            font-size: 0.95rem;
            width: 100%;
        }

        .grid-filter-input::placeholder {
            color: var(--text-muted);
        }

        .clear-filter-btn {
            height: 44px;
            border-radius: 12px;
            border: 1px solid var(--chip-border);
            background: var(--chip-bg);
            color: var(--text-main);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0 14px;
            cursor: pointer;
        }

        .chip-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 22px;
        }

        .filter-chip {
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid var(--chip-border);
            background: var(--chip-bg);
            color: var(--text-main);
            font-size: 0.83rem;
            font-weight: 600;
            cursor: pointer;
        }

        .filter-chip.active {
            background: var(--chip-active-bg);
            border-color: var(--chip-active-border);
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 14px;
        }

        .logo-card {
            min-height: 170px;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            padding: 18px 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
            position: relative;
            overflow: hidden;
        }

        .logo-card:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 198, 255, 0.5);
            background: rgba(255, 255, 255, 0.07);
        }

        .logo-card img {
            width: auto;
            height: 52px;
            object-fit: contain;
            margin-bottom: 12px;
        }

        .logo-card-name {
            font-weight: 700;
            color: var(--text-main);
            font-size: 0.96rem;
            margin-bottom: 2px;
            text-align: center;
        }

        .logo-card-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-align: center;
        }

        .logo-award {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 999px;
            background: rgba(251, 191, 36, 0.2);
            border: 1px solid rgba(251, 191, 36, 0.6);
            color: #fde68a;
        }

        .grid-empty {
            grid-column: 1 / -1;
            border: 1px dashed var(--chip-border);
            border-radius: 14px;
            padding: 30px 14px;
            text-align: center;
            color: var(--text-muted);
        }

        .grid-empty-cta,
        .grid-pagination button {
            margin-top: 12px;
            border: 1px solid var(--chip-active-border);
            background: var(--chip-active-bg);
            color: var(--text-main);
            border-radius: 999px;
            padding: 10px 14px;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
        }

        .grid-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            flex-wrap: wrap;
        }

        .grid-pagination button {
            margin-top: 0;
            min-width: 96px;
        }

        .grid-pagination button:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }

        .grid-page-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Value Proposition Grid */
        .features {
            padding: 100px 0;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            position: relative;
            z-index: 5;
            background: var(--bg-secondary);
        }

        .feature-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
        }

        html[data-theme='light'] .feature-card:hover {
            background: rgba(255, 255, 255, 1);
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 24px;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        @media (max-width: 1100px) {
            .features {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 18px;
            }

            .feature-card {
                padding: 28px;
            }
        }

        .feature-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Secondary CTA */
        .bottom-cta {
            text-align: center;
            padding: 120px 0;
            background: var(--bg-color);
        }

        .bottom-cta h2 {
            font-size: 3rem;
            margin-bottom: 24px;
        }

        .site-footer {
            margin-top: 24px;
            background: var(--footer-bg);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 56px 0 26px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.2fr 2fr;
            gap: 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            padding-bottom: 28px;
            margin-bottom: 18px;
        }

        .footer-brand h4 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.92rem;
            max-width: 460px;
        }

        html[data-theme='light'] .footer-brand p {
            color: #475569;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .footer-col h5 {
            font-size: 0.74rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #cbd5e1;
            margin-bottom: 10px;
        }

        .footer-col a {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.86rem;
            margin-bottom: 7px;
        }

        html[data-theme='light'] .footer-col a {
            color: #475569;
        }

        .footer-col a:hover {
            color: var(--text-main);
        }

        html[data-theme='light'] .footer-col a:hover {
            color: #0f172a;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            color: #94A3B8;
            font-size: 0.82rem;
        }

        .section-anchor {
            position: relative;
            top: -90px;
            display: block;
            visibility: hidden;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .logo-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .footer-top {
                grid-template-columns: 1fr;
            }

            .footer-links {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 900px) {
            .menu-links {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .hero {
                min-height: auto;
                padding-top: 118px;
                padding-bottom: 72px;
            }

            .filter-toolbar {
                grid-template-columns: 1fr;
            }

            .logo-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 10px;
            }

            .features {
                padding: 70px 0;
                grid-template-columns: none;
                grid-auto-flow: column;
                grid-auto-columns: minmax(250px, 1fr);
                overflow-x: auto;
                gap: 14px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }

            .feature-card {
                scroll-snap-align: start;
            }
        }

        @media (max-width: 768px) {
            .search-input {
                padding: 20px;
                padding-bottom: 80px;
            }

            .search-btn {
                top: auto;
                left: 12px;
                bottom: 12px;
                height: 50px;
            }

            .bottom-cta h2 {
                font-size: 2.5rem;
            }

            .hero {
                background-attachment: scroll;
            }

            .logo-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 8px;
            }

            .logo-card {
                min-height: 120px;
                padding: 10px 6px;
                border-radius: 12px;
            }

            .logo-card img {
                height: 30px;
                margin-bottom: 7px;
            }

            .logo-card-name {
                font-size: 0.74rem;
                margin-bottom: 0;
                line-height: 1.2;
            }

            .logo-card-meta {
                font-size: 0.64rem;
            }

            .section-subtitle,
            .subtitle {
                font-size: 1rem;
            }

            .bottom-cta {
                padding: 84px 0;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .container {
                padding: 0 16px;
            }
        }

        @media (max-width: 768px) {
            .bottom-cta button.search-btn {
                position: static;
                right: auto;
                padding: 12px 32px;
                font-size: 1rem;
                width: auto;
                height: auto;
                display: inline-block;
                margin-top: 16px;
            }
        }

        @media (max-width: 430px) {
            .logo-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            h1 {
                font-size: clamp(2rem, 9vw, 2.7rem);
            }

            .top-nav {
                height: 66px;
            }

            .mobile-menu {
                top: 66px;
            }

            .hero {
                padding-top: 102px;
            }

            .chip-row {
                justify-content: flex-start;
            }

            .features {
                grid-auto-columns: minmax(210px, 1fr);
            }

            .bottom-cta button.search-btn {
                padding: 10px 24px;
                font-size: 0.95rem;
            }

            /* Disable fixed background on mobile for performance */
        }
