            :root {
            --primary-blue: #2563eb;
            --text-dark: #111827;
            --text-muted: #6b7280;
            --bg-light: #f9fafb;
            --border-color: #e5e7eb;
        }

        html {
            font-size: 106.5%;
        }

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

        body {
            color: var(--text-dark);
            background-color: #ffffff;
            line-height: 1.5;
            transform: scale(1.065);
            transform-origin: top center;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        /* Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-logo {
            font-size: 1.25rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-logo-icon {
            width: 120px;
            height: 24px;
            border-radius: 4px;
            display: inline-block;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        /* Hero Section */
        .hero {
            padding: 6rem 0;
            max-width: 800px;
        }

        .hero-pill {
            display: inline-block;
            background-color: #eff6ff;
            color: var(--primary-blue);
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            color: var(--primary-blue);
        }

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

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-black {
            background-color: #000;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 999px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: background-color 0.2s, color 0.2s;
            text-decoration: none;
        }

        .btn-blue {
            background-color: #2563eb;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 999px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: background-color 0.2s, color 0.2s;
            text-decoration: none;
        }

        .btn-outline {
            background-color: #fff;
            color: #000;
            padding: 0.75rem 1.5rem;
            border-radius: 999px;
            font-weight: 500;
            border: 1px solid var(--border-color);
            cursor: pointer;
            text-decoration: none;
        }

        /* Gray Section Background */
        .bg-gray-section {
            background-color: var(--bg-light);
            padding: 6rem 0;
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
        }

        /* 4 Column Grid */
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 1.75rem;
            padding: 1.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: radial-gradient(200px circle at var(--x, 50%) var(--y, 50%), rgba(0, 0, 0, 0.15), transparent 40%);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .icon-placeholder {
            width: 32px;
            height: 32px;
            background-color: var(--bg-light);
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .badge-soon {
            display: inline-block;
            background-color: #eff6ff;
            color: var(--primary-blue);
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* Split Section */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 6rem 0;
            align-items: center;
        }

        .trust-list {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .trust-item {
            display: flex;
            gap: 1rem;
        }

        .trust-icon {
            color: var(--primary-blue);
            background: #eff6ff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .trust-item h4 {
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

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

        .dashboard-mockup {
            background-color: #111827;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            color: #fff;
            position: relative;
            overflow: hidden;
            height: 350px;
        }

        .mockup-row {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .status-bars {
            display: flex;
            gap: 4px;
        }

        .status-bar {
            width: 8px;
            height: 16px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }

        .status-bar.dim {
            opacity: 0.3;
        }

        /* Ecosystem Section */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 6rem;
        }

        .eco-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 1.75rem;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .eco-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: radial-gradient(200px circle at var(--x, 50%) var(--y, 50%), rgba(0, 0, 0, 0.15), transparent 40%);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .eco-tag {
            font-size: 0.75rem;
            color: var(--primary-blue);
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .eco-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .eco-card p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .eco-link {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-dark);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .eco-muted {
            color: var(--text-muted);
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* Dark Mission Section */
        .mission-section {
            background-color: #000;
            color: #fff;
            text-align: center;
            padding: 8rem 2rem;
        }

        .mission-section p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 3rem auto;
            line-height: 1.4;
            color: #e5e7eb;
        }

        /* Partners Section */
        .partners-section {
            text-align: center;
            padding: 4rem 2rem;
        }

        .partners-section h4 {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
        }

        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        /* Make partner logos slightly smaller */
        .partners-logos img {
            height: 36px;
            width: auto;
        }

        .logo-placeholder {
            font-size: 1.5rem;
            font-weight: 700;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 0 2rem 4rem 2rem;
        }

        .cta-box {
            background-color: #000000;
            color: #fff;
            border-radius: 4.5rem;
            padding: 4rem 2rem;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

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

        .cta-box p {
            color: #9ca3af;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            align-items: center;
        }

        .btn-white {
            background-color: #fff;
            color: #000;
            padding: 0.75rem 1.5rem;
            border-radius: 999px;
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s, color 0.2s;
        }

        .btn-white:hover {
            background-color: #000;
            color: #fff;
        }

        .btn-black:hover {
            background-color: #fff;
            color: #000;
        }

        .btn-link {
            color: #fff;
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            border-top: 1px solid var(--border-color);
            padding: 4rem 0 2rem 0;
            background-color: var(--bg-light);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            font-size: 1.25rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-desc {
            color: var(--text-muted);
            font-size: 0.875rem;
            max-width: 250px;
        }

        .footer-col h5 {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 1rem;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        @media (max-width: 992px) {

            .grid-4,
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .split-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

        @media (max-width: 768px) {

    body {
        transform: none;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.15;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .btn-black,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .split-section {
        grid-template-columns: 1fr;
        padding: 4rem 0;
        gap: 2rem;
    }

    .dashboard-mockup {
        height: auto;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .mission-section {
        padding: 5rem 1.5rem;
    }

    .mission-section p {
        font-size: 1.2rem;
    }

    .cta-box {
        border-radius: 2rem;
        padding: 3rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-white {
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Navbar mobile optimization */
    .navbar {
        padding: 1rem 0;
    }

    .nav-logo {
        display: none;
    }

    .nav-logo-icon {
        width: 100px;
        height: auto;
    }

    /* Footer mobile optimization */
    .footer {
        padding: 3rem 1.25rem 2rem 1.25rem;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

        /* Eco-card link hover effect */
        .eco-card a {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .eco-card a:hover {
            transform: translateX(6px);
        }

        /* Cursor reactive border highlight (requires JS to update --x and --y based on mouse position) */
        .card-hover-reactive {
            position: relative;
        }

        body {
            position: relative;
            overflow-x: hidden;
        }

        .container,
        .navbar {
            position: relative;
            z-index: 1;
        }

        body::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 60vw;
            height: 900px;
            background-image: radial-gradient(#d1d5db 2.5px, transparent 2.5px);
            background-size: 22px 22px;
            -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 80%);
            mask-image: radial-gradient(ellipse at top right, black 0%, transparent 80%);
            pointer-events: none;
            z-index: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Blog Posts */

        .main-text2 h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .main-text2 h4 {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .main-text2 p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .main-text2 b {
            font-weight: 600;
        }

        .right-panel {
            padding-left: 2rem;
        }

        .right-panel h1 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .right-panel a {
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .right-panel input,
        .right-panel .subscribe {
            border: 1px solid var(--border-color);
            border-radius: 999px;
            padding: 0.5rem 0.75rem;
            margin-bottom: 1rem;
        }