
        :root {
            --bg-1: #e6f6ff;
            --bg-2: #d2f0ff;
            --accent-a: #0ea5e9;
            /* primary */
            --accent-b: #38bdf8;
            --indigo: #1e40af;
            --deep: #08324a;
            --glass: rgba(255, 255, 255, 0.14);
            --glass-strong: rgba(255, 255, 255, 0.22);
            --neumorph: rgba(12, 74, 124, 0.06);
            --success: #22c55e;
            --warn: #f97316;
            --text: #07324a;
            --muted: #2b6b86;
            --soft-shadow: 0 6px 18px rgba(14, 165, 233, 0.08);
            --blur: 16px;
        }

        /* Base */
        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%
        }

        body {
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            margin: 0;
            color: var(--text);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: linear-gradient(135deg, var(--bg-1) 0%, #bae6fd 35%, var(--accent-b) 100%);
            overflow-x: hidden;
        }

        /* Container */
        .site {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* NAV */
        header.nav {
            position: fixed;
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 48px);
            max-width: 1200px;
            z-index: 80;
            backdrop-filter: blur(10px) saturate(110%);
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.12));
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(3, 36, 60, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            padding: 10px 18px;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-badge {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
            box-shadow: 0 8px 34px rgba(56, 189, 248, 0.18), inset 0 -6px 18px rgba(255, 255, 255, 0.06);
            transform: rotate(8deg);
        }

        .brand-badge svg {
            filter: drop-shadow(0 6px 18px rgba(14, 165, 233, 0.18));
        }

        .brand-title {
            font-weight: 800;
            color: var(--deep);
            letter-spacing: 0.02em
        }

        .nav-links {
            display: flex;
            gap: 10px;
            align-items: center
        }

        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 10px;
            color: var(--indigo);
            text-decoration: none
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.6);
            color: var(--accent-a);
            transform: translateY(-2px)
        }

        /* Hero */
        .hero {
            max-width: 1200px;
            margin: 90px auto 32px;
            position: relative;
            padding: 48px;
            border-radius: 28px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 20px 60px rgba(2, 32, 54, 0.08);
            overflow: visible;
            backdrop-filter: blur(var(--blur));
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 28px;
            align-items: center
        }

        .hero-left h1 {
            font-size: clamp(2.2rem, 4.2vw, 3.6rem);
            line-height: 1.02;
            margin: 0 0 12px 0;
            font-weight: 900;
            background: linear-gradient(90deg, var(--indigo), var(--accent-a), var(--accent-b));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            animation: gradientShift 6s linear infinite;
            background-size: 400% 400%;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0% 50%
            }
        }

        .hero-sub {
            font-size: 1.05rem;
            color: var(--muted);
            margin-bottom: 16px;
            font-weight: 600
        }

        .hero-desc {
            color: var(--muted);
            margin-bottom: 20px;
            max-width: 68ch;
            line-height: 1.6
        }

        .cta-row {
            display: flex;
            gap: 14px;
            align-items: center;
            flex-wrap: wrap
        }

        .btn {
            padding: 14px 22px;
            border-radius: 999px;
            font-weight: 800;
            cursor: pointer;
            border: none;
            box-shadow: var(--soft-shadow);
            transition: transform .18s ease, box-shadow .18s ease;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 18px 40px rgba(14, 165, 233, 0.18)
        }

        .btn-ghost {
            background: transparent;
            border: 1px solid rgba(14, 165, 233, 0.12);
            color: var(--indigo)
        }

        .kpis {
            display: flex;
            gap: 14px;
            margin-top: 20px;
            flex-wrap: wrap
        }

        .kpi {
            padding: 12px 16px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.06);
            min-width: 120px;
            box-shadow: inset 0 -4px 12px rgba(255, 255, 255, 0.02)
        }

        .kpi strong {
            display: block;
            font-size: 1.12rem;
            color: var(--indigo)
        }

        /* Hero visual */
        .hero-card {
            width: 100%;
            min-height: 300px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
            border-radius: 16px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 30px rgba(3, 36, 60, 0.06);
            position: relative;
            overflow: hidden;
        }

        /* Neumorphic glass panel inside */
        .neo-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
            border-radius: 12px;
            padding: 12px 14px;
            width: 94%;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: space-between;
            box-shadow: 6px 6px 18px rgba(2, 32, 54, 0.04), -6px -6px 18px rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        /* Floating icon styles */
        .float-icon {
            width: 64px;
            height: 64px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.12);
            transform: translateZ(0)
        }

        .float-icon.small {
            width: 48px;
            height: 48px;
            border-radius: 12px
        }

        /* Animated gradient badge */
        .badge-animated {
            padding: 8px 12px;
            border-radius: 999px;
            font-weight: 800;
            color: white;
            background: linear-gradient(90deg, #60a5fa, #7c3aed, #06b6d4);
            animation: badgePulse 3s ease-in-out infinite;
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
        }

        @keyframes badgePulse {
            0% {
                transform: scale(1)
            }

            50% {
                transform: scale(1.04)
            }

            100% {
                transform: scale(1)
            }
        }

        /* Feature grid */
        .features {
            max-width: 1200px;
            margin: 36px auto;
            padding: 0 18px
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px
        }

        .feature {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
            border-radius: 16px;
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
            min-height: 150px;
            transition: transform .18s ease, box-shadow .18s ease;
        }

        .feature:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(14, 165, 233, 0.08)
        }

        .feature h3 {
            font-weight: 800;
            color: var(--indigo)
        }

        .feature p {
            color: var(--muted);
            line-height: 1.5
        }

        /* Blogs */
        .blogs {
            max-width: 1200px;
            margin: 26px auto;
            padding: 0 18px
        }

        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px
        }

        .post {
            border-radius: 12px;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
            box-shadow: 0 6px 22px rgba(3, 36, 60, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06)
        }

        .post .media {
            height: 120px;
            background-size: cover;
            background-position: center
        }

        .post .meta {
            padding: 12px
        }

        .post h4 {
            margin: 0;
            font-weight: 800;
            color: var(--deep)
        }

        .post p {
            margin: 8px 0 0 0;
            color: var(--muted)
        }

        /* Footer */
        footer.site-foot {
            max-width: 1200px;
            margin: 42px auto 88px;
            padding: 20px 18px;
            border-radius: 14px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
            text-align: center;
            color: var(--muted);
            border: 1px solid rgba(255, 255, 255, 0.06)
        }

        /* Particles & Parallax Layers */
        .parallax-layer {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: visible;
        }

        /* Different z levels */
        .layer-1 {
            z-index: 1
        }

        .layer-2 {
            z-index: 5
        }

        .layer-3 {
            z-index: 7
        }

        .layer-4 {
            z-index: 9
        }

        /* blob morph */
        .blob {
            position: absolute;
            right: -8%;
            top: 6%;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.14), rgba(99, 102, 241, 0.08));
            filter: blur(30px) saturate(120%);
            transform: translateZ(0);
            mix-blend-mode: screen;
            z-index: 2;
            opacity: 0.95;
            will-change: transform, opacity, filter;
            transition: transform 0.6s linear;
        }

        .blob2 {
            position: absolute;
            left: -6%;
            bottom: 4%;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.12), rgba(16, 185, 129, 0.06));
            filter: blur(22px);
            mix-blend-mode: screen;
            z-index: 1;
            opacity: 0.92;
            will-change: transform, opacity;
        }

        /* floating small icons */
        .floating-icon {
            position: absolute;
            width: 46px;
            height: 46px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 8px 22px rgba(2, 32, 54, 0.06);
            transform: translateZ(0);
            will-change: transform, opacity;
        }

        /* small utilities */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .hero-grid {
                grid-template-columns: 1fr 360px
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .blogs-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media (max-width: 768px) {
            header.nav {
                left: 12px;
                transform: none;
                width: calc(100% - 24px)
            }

            .hero-grid {
                grid-template-columns: 1fr
            }

            .hero {
                padding: 22px
            }

            .hero-card {
                min-height: 240px
            }

            .features-grid {
                grid-template-columns: 1fr
            }

            .blogs-grid {
                grid-template-columns: 1fr
            }

            .brand-badge {
                width: 44px;
                height: 44px
            }
        }
    .glass-card {
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 255, 255, 0.35);
    }

    .animate-floating {
        animation: float 5s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(12deg); }
        50% { transform: translateY(-18px) rotate(15deg); }
    }

    .animate-slideUp {
        animation: slideUp .9s ease-out;
    }

    @keyframes slideUp {
        from { opacity: 0; transform: translateY(40px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .animate-gradientText {
        animation: gradientText 6s ease infinite;
        background-size: 300% 300%;
    }

    @keyframes gradientText {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .animate-iconPulse {
        animation: pulseIcon 2.5s infinite;
    }

    @keyframes pulseIcon {
        0%,100% { transform: scale(1); }
        50% { transform: scale(1.18); }
    }

    .animate-float {
        animation: slowFloat 4s ease-in-out infinite;
    }

    @keyframes slowFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-14px); }
    }


            @keyframes footerLine {
                0% {
                    transform: translateX(-100%);
                }

                100% {
                    transform: translateX(100%);
                }
            }

            .animate-footerLine {
                animation: footerLine 7s linear infinite;
            }

            @keyframes glowIcon {

                0%,
                100% {
                    filter: drop-shadow(0 0 6px rgba(14, 165, 233, 0.7));
                }

                50% {
                    filter: drop-shadow(0 0 16px rgba(14, 165, 233, 1));
                }
            }

            .animate-glowIcon {
                animation: glowIcon 2.6s infinite ease-in-out;
            }

            @keyframes footerTitle {
                0% {
                    letter-spacing: 0px;
                }

                50% {
                    letter-spacing: 3px;
                }

                100% {
                    letter-spacing: 0px;
                }
            }

            .animate-footerTitle {
                animation: footerTitle 5s infinite ease-in-out;
            }

            @keyframes pulseSlow {

                0%,
                100% {
                    opacity: .65;
                    transform: scale(1);
                }

                50% {
                    opacity: .95;
                    transform: scale(1.12);
                }
            }

            .animate-pulse-slow {
                animation: pulseSlow 6s infinite ease-in-out;
            }
            /* =========================
   MOBILE VIEW NAV FIX
   ONLY show Sign In & Get Started
   NO COLOR CHANGES
========================= */
@media (max-width: 768px) {

  .nav-links {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  /* Hide all normal links */
  .nav-links a:not(.btn) {
    display: none;
  }

  /* Ensure buttons stay visible */
  .nav-links .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

