*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        :root {
            --bg: #08080d;
            --card: rgba(255, 255, 255, .04);
            --card-h: rgba(255, 255, 255, .07);
            --sur: rgba(255, 255, 255, .03);
            --txt: #f0f0f5;
            --txt2: rgba(255, 255, 255, .55);
            --txt3: rgba(255, 255, 255, .3);
            --acc: #818cf8;
            --acc2: #34A853;
            --acc3: #EA4335;
            --grad: linear-gradient(135deg, #818cf8, #6366f1);
            --gsub: linear-gradient(135deg, rgba(99, 102, 241, .12), rgba(139, 92, 246, .08));
            --bdr: rgba(255, 255, 255, .06);
            --bdr2: rgba(255, 255, 255, .12);
            --r: 16px;
            --rl: 24px;
            --rxl: 32px;
            --pill: 9999px;
            --nh: 64px;
            --mx: clamp(16px, 5vw, 80px);
            --ease: cubic-bezier(.23, 1, .32, 1)
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--bg);
            color: var(--txt);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            line-height: 1.6
        }

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

        img {
            max-width: 100%;
            display: block
        }

        ul {
            list-style: none
        }

        button {
            font: inherit;
            border: none;
            background: none;
            cursor: pointer;
            color: inherit
        }

        /* NAV */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0 var(--mx);
            height: var(--nh);
            display: flex;
            align-items: center;
            transition: all .4s
        }

        .nav.scrolled {
            background: rgba(8, 8, 13, .85);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, .06)
        }

        .ni {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto
        }

        .nl {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 1.15rem
        }

        .nl img {
            height: 30px;
            filter: brightness(0) invert(1)
        }

        .nl .s {
            opacity: .3;
            font-weight: 300
        }

        .nk {
            display: flex;
            align-items: center;
            gap: 4px
        }

        .nk a,
        .nav-dd-trigger {
            padding: 8px 16px;
            border-radius: var(--pill);
            font-size: .875rem;
            font-weight: 500;
            color: var(--txt2);
            transition: all .25s;
            text-decoration: none;
            cursor: pointer;
            background: none;
            border: none;
            font-family: inherit
        }

        .nk a:hover,
        .nav-dd-trigger:hover {
            color: #fff;
            background: rgba(255, 255, 255, .06)
        }

        /* Services Mega Menu */
        .nav-dd {
            position: static
        }

        .nav-dd-trigger {
            display: flex;
            align-items: center;
            gap: 6px
        }

        .nav-dd-trigger .dd-arrow {
            font-size: .55rem;
            display: inline-block;
            opacity: .5;
            transition: opacity .25s
        }

        .nav-dd-trigger:hover .dd-arrow,
        .nav-dd.open .nav-dd-trigger .dd-arrow {
            opacity: .8
        }

        .nav-dd-menu {
            position: fixed;
            top: var(--nh);
            left: 0;
            right: 0;
            background: #0a0a12;
            border-top: 1px solid rgba(99, 102, 241, .2);
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all .3s cubic-bezier(.4, 0, .2, 1);
            z-index: 98;
            box-shadow: 0 30px 60px rgba(0, 0, 0, .5)
        }

        .nav-dd:hover .nav-dd-menu,
        .nav-dd.open .nav-dd-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0)
        }

        .mega-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 48px var(--mx);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start
        }

        .mega-left h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.3
        }

        .mega-left p {
            font-size: .95rem;
            color: rgba(255, 255, 255, .4);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 380px
        }

        .mega-left .mega-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 999px;
            color: rgba(255, 255, 255, .7);
            font-size: .85rem;
            font-weight: 500;
            transition: all .25s
        }

        .mega-left .mega-cta:hover {
            border-color: rgba(99, 102, 241, .5);
            color: #fff;
            background: rgba(99, 102, 241, .08)
        }

        .mega-right {
            display: flex;
            flex-direction: column;
            gap: 0
        }

        .mega-link {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 16px;
            border-radius: 12px;
            transition: all .2s;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, .04)
        }

        .mega-link:last-child {
            border-bottom: none
        }

        .mega-link:hover {
            background: rgba(255, 255, 255, .03)
        }

        .mega-link .ml-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0
        }

        .ml-icon.purple {
            background: rgba(99, 102, 241, .12);
            color: #818cf8
        }

        .ml-icon.green {
            background: rgba(34, 197, 94, .12);
            color: #4ade80
        }

        .ml-icon.orange {
            background: rgba(249, 115, 22, .12);
            color: #fb923c
        }

        .mega-link .ml-info {
            flex: 1
        }

        .ml-info strong {
            display: block;
            font-size: .95rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .9);
            margin-bottom: 2px
        }

        .ml-info span {
            font-size: .8rem;
            color: rgba(255, 255, 255, .35)
        }

        .mega-link .ml-arrow {
            color: rgba(255, 255, 255, .2);
            font-size: .85rem;
            transition: all .25s;
            flex-shrink: 0
        }

        .mega-link:hover .ml-arrow {
            color: #818cf8;
            transform: translateX(4px)
        }

        .mega-link:hover .ml-info strong {
            color: #fff
        }



        /* CTA Button */
        .nc {
            padding: 8px 24px !important;
            background: #6366f1 !important;
            color: #fff !important;
            border-radius: var(--pill) !important;
            font-weight: 600 !important
        }

        .nc:hover {
            background: #818cf8 !important;
            transform: translateY(-1px);
            box-shadow: 0 8px 32px rgba(99, 102, 241, .3) !important
        }

        .nm {
            display: none;
            font-size: 1.5rem
        }

        @media(max-width:768px) {
            .nk {
                display: none;
                flex-direction: column;
                position: fixed;
                top: var(--nh);
                left: 0;
                right: 0;
                bottom: 0;
                background: #0c0c14;
                padding: 32px var(--mx);
                gap: 8px;
                z-index: 99;
                overflow-y: auto
            }

            .nk.open {
                display: flex
            }

            .nk.open>a,
            .nk.open .nav-dd-trigger {
                font-size: 1.1rem;
                padding: 16px;
                width: 100%;
                text-align: left
            }

            .nav-dd {
                width: 100%
            }

            .nav-dd-menu {
                position: static;
                transform: none;
                min-width: auto;
                width: 100%;
                opacity: 1;
                visibility: visible;
                display: none;
                box-shadow: none;
                border: none;
                border-top: none;
                border-bottom: none;
                background: rgba(255, 255, 255, .03);
                padding: 8px 0 8px 8px;
                margin-top: 4px;
                border-radius: 12px
            }

            .nav-dd.open .nav-dd-menu {
                display: block
            }

            .mega-inner {
                display: flex;
                flex-direction: column;
                padding: 0;
                gap: 0
            }

            .mega-left {
                display: none
            }

            .mega-link {
                padding: 14px 12px;
                border-bottom: none
            }

            .mega-link .ml-arrow {
                display: none
            }



            .nm {
                display: block
            }
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: calc(var(--nh) + 60px) var(--mx) 80px;
            position: relative;
            overflow: hidden;
            background: #08080d
        }

        /* Central glowing orb */
        .hero-orb {
            position: absolute;
            width: 900px;
            height: 900px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(99, 102, 241, .18) 0%, rgba(59, 130, 246, .08) 40%, transparent 70%);
            z-index: 0;
            animation: orbPulse 8s ease-in-out infinite alternate;
            pointer-events: none
        }

        .hero-orb::after {
            content: '';
            position: absolute;
            inset: 15%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 92, 246, .12) 0%, transparent 70%);
            animation: orbPulse 6s ease-in-out infinite alternate-reverse
        }

        @keyframes orbPulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: .8
            }

            100% {
                transform: translate(-50%, -50%) scale(1.12);
                opacity: 1
            }
        }

        /* Subtle ring */
        .hero-ring {
            position: absolute;
            width: 650px;
            height: 650px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .04);
            z-index: 0;
            pointer-events: none
        }

        .hero-ring::before {
            content: '';
            position: absolute;
            inset: -120px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .025)
        }

        /* Grain */
        .hero-grain {
            position: absolute;
            inset: 0;
            z-index: 1;
            opacity: .25;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 200px
        }

        /* Particle canvas */
        #heroCanvas {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none
        }

        /* Hero content */
        .hcon {
            position: relative;
            z-index: 2;
            max-width: 820px
        }

        .hero h1 {
            font-size: clamp(2.8rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -.04em;
            margin-bottom: 24px;
            animation: fu .8s .1s var(--ease) both;
            color: #fff
        }

        .hero h1 .acc {
            color: #818cf8
        }

        .hsub {
            font-size: clamp(1rem, 1.4vw, 1.15rem);
            color: rgba(255, 255, 255, .45);
            max-width: 560px;
            margin: 0 auto 44px;
            line-height: 1.75;
            animation: fu .8s .2s var(--ease) both
        }

        .hact {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fu .8s .3s var(--ease) both
        }

        .hero .bp {
            padding: 14px 38px;
            background: #6366f1;
            color: #fff;
            border-radius: 12px;
            font-size: .95rem;
            font-weight: 600;
            transition: all .3s var(--ease);
            border: none;
            box-shadow: 0 0 24px rgba(99, 102, 241, .25)
        }

        .hero .bp:hover {
            background: #818cf8;
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(99, 102, 241, .35)
        }

        .hero .bs {
            padding: 14px 38px;
            background: rgba(255, 255, 255, .06);
            color: rgba(255, 255, 255, .8);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 12px;
            font-size: .95rem;
            font-weight: 500;
            transition: all .3s var(--ease);
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px)
        }

        .hero .bs:hover {
            background: rgba(255, 255, 255, .1);
            color: #fff;
            border-color: rgba(255, 255, 255, .2)
        }

        /* Hero stats row */
        .hero-stats {
            display: flex;
            gap: 1px;
            margin-top: 60px;
            background: rgba(255, 255, 255, .06);
            border-radius: 16px;
            overflow: visible;
            border: 1px solid rgba(255, 255, 255, .06);
            animation: fu .8s .5s var(--ease) both;
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px)
        }

        .hero-stat {
            flex: 1;
            padding: 24px 20px;
            text-align: center;
            background: rgba(255, 255, 255, .02)
        }

        .hero-stat:not(:last-child) {
            border-right: 1px solid rgba(255, 255, 255, .06)
        }

        .hero-stat .hs-num {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -.02em
        }

        .hero-stat .hs-label {
            font-size: .75rem;
            color: rgba(255, 255, 255, .4);
            margin-top: 4px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 3px
        }

        /* Star icon beside rating label */
        .hs-label .star-icon {
            color: #FBBC04;
            font-size: .75rem;
            margin-left: 3px;
            display: inline;
            vertical-align: middle;
            filter: drop-shadow(0 0 4px rgba(251, 188, 4, .5))
        }

        @keyframes starPulse {

            0%,
            100% {
                filter: drop-shadow(0 0 4px rgba(251, 188, 4, .4));
                transform: scale(1)
            }

            50% {
                filter: drop-shadow(0 0 8px rgba(251, 188, 4, .7));
                transform: scale(1.1)
            }
        }

        /* Google Rating stat - hover trigger */
        .hero-stat.rating-stat {
            position: relative;
            cursor: pointer;
            transition: all .3s var(--ease)
        }

        .hero-stat.rating-stat:hover {
            background: rgba(99, 102, 241, .06)
        }

        /* ── iPhone 17 Pro Max mockup ── */
        .hero-phone-mockup {
            position: absolute;
            right: clamp(60px, 8vw, 160px);
            top: 50%;
            transform: translateY(-50%) translateX(30px);
            width: 300px;
            height: 640px;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transition: all .6s cubic-bezier(.22, 1, .36, 1);
            pointer-events: none
        }

        .hero-phone-mockup.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) translateX(0);
            pointer-events: auto
        }

        /* iPhone frame */
        .iphone-frame {
            width: 100%;
            height: 100%;
            background: #111118;
            border-radius: 36px;
            border: 3px solid rgba(255, 255, 255, .12);
            box-shadow:
                0 30px 80px rgba(0, 0, 0, .7),
                0 0 60px rgba(99, 102, 241, .15),
                inset 0 0 30px rgba(0, 0, 0, .3);
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column
        }

        /* Dynamic Island */
        .iphone-island {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 24px;
            background: #000;
            border-radius: 16px;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .iphone-island::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #1a1a2e;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, .08)
        }

        /* Screen header — rating display */
        .iphone-screen-header {
            padding: 46px 20px 16px;
            text-align: center;
            background: linear-gradient(180deg, rgba(99, 102, 241, .08) 0%, transparent 100%);
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            flex-shrink: 0
        }

        .iphone-screen-header .ph-score {
            font-size: 2.4rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -.03em;
            line-height: 1
        }

        .iphone-screen-header .ph-stars {
            color: #FBBC04;
            font-size: 1.05rem;
            letter-spacing: 3px;
            margin-top: 6px
        }

        .iphone-screen-header .ph-sub {
            font-size: .65rem;
            color: rgba(255, 255, 255, .3);
            margin-top: 6px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px
        }

        .iphone-screen-header .ph-sub svg {
            width: 13px;
            height: 13px
        }

        /* Scrolling review feed */
        .iphone-reviews-area {
            flex: 1;
            overflow: hidden;
            position: relative;
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 92%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 92%, transparent 100%)
        }

        .iphone-reviews-track {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 10px 14px;
            animation: iphoneScroll 22s linear infinite
        }

        @keyframes iphoneScroll {
            0% {
                transform: translateY(0)
            }

            100% {
                transform: translateY(-50%)
            }
        }

        /* Review card */
        .irev {
            padding: 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, .035);
            border: 1px solid rgba(255, 255, 255, .05);
            flex-shrink: 0;
            text-align: left;
            transition: all .3s ease
        }

        .irev:hover {
            background: rgba(255, 255, 255, .07);
            border-color: rgba(99, 102, 241, .18)
        }

        .irev-top {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px
        }

        .irev-av {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: .7rem;
            flex-shrink: 0
        }

        .irev-info {
            flex: 1;
            min-width: 0
        }

        .irev-name {
            font-size: .75rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .9);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis
        }

        .irev-stars {
            color: #FBBC04;
            font-size: .6rem;
            letter-spacing: 1px
        }

        .irev-text {
            font-size: .7rem;
            color: rgba(255, 255, 255, .4);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden
        }

        /* Home indicator bar */
        .iphone-home-bar {
            flex-shrink: 0;
            display: flex;
            justify-content: center;
            padding: 8px 0 10px
        }

        .iphone-home-bar span {
            width: 110px;
            height: 4px;
            background: rgba(255, 255, 255, .18);
            border-radius: 4px
        }

        /* Hover hint */
        .rating-hover-hint {
            display: flex;
            align-items: center;
            gap: 4px;
            justify-content: center;
            margin-top: 4px;
            font-size: .6rem;
            color: rgba(255, 255, 255, .2);
            transition: color .3s
        }

        .hero-stat.rating-stat:hover .rating-hover-hint {
            color: rgba(255, 255, 255, .4)
        }

        /* Hide phone on small screens */
        @media(max-width:1024px) {
            .hero-phone-mockup {
                display: none
            }

            .rating-hover-hint {
                display: none
            }
        }

        /* Quote overrides for dark hero */
        .hero .qw blockquote {
            color: rgba(255, 255, 255, .35);
            font-size: .95rem
        }

        .hero .qa .an {
            color: rgba(255, 255, 255, .6)
        }

        .hero .qa .at {
            color: rgba(255, 255, 255, .35)
        }

        /* Nav dark mode on hero */
        .nav {
            background: rgba(8, 8, 13, .7);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, .06)
        }

        .nav .nl {
            color: #fff
        }

        .nav .nl .s {
            opacity: .3
        }

        .nav .nk a {
            color: rgba(255, 255, 255, .55)
        }

        .nav .nk a:hover {
            color: #fff
        }




        @media(max-width:768px) {
            .hero-stats {
                flex-direction: column
            }

            .hero-stat:not(:last-child) {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, .06)
            }
        }



        .bp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: #6366f1;
            color: #fff;
            border-radius: var(--pill);
            font-size: 1rem;
            font-weight: 600;
            transition: all .3s var(--ease);
            position: relative;
            overflow: hidden
        }

        .bp:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(99, 102, 241, .35);
            background: #818cf8
        }

        .bs {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: transparent;
            color: var(--txt);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: var(--pill);
            font-size: 1rem;
            font-weight: 500;
            transition: all .3s var(--ease)
        }

        .bs:hover {
            background: rgba(255, 255, 255, .06);
            border-color: rgba(255, 255, 255, .25)
        }

        @keyframes fu {
            from {
                opacity: 0;
                transform: translateY(40px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* SECTIONS */
        .sec {
            padding: 120px 0;
            position: relative
        }

        .con {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 var(--mx)
        }

        .sl {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: var(--pill);
            background: rgba(99, 102, 241, .06);
            border: 1px solid rgba(99, 102, 241, .12);
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #6366f1;
            margin-bottom: 20px
        }

        .st {
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 700;
            letter-spacing: -.03em;
            line-height: 1.1;
            margin-bottom: 16px;
            color: var(--txt)
        }

        .sd {
            color: var(--txt2);
            font-size: clamp(.95rem, 1.1vw, 1.08rem);
            max-width: 580px;
            line-height: 1.7
        }

        .sh {
            margin-bottom: 64px
        }

        /* What We Build — animation header */
        .wwb-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center
        }

        .wwb-text .st {
            text-align: left
        }

        .wwb-text .sd {
            text-align: left
        }

        .wwb-anim-box {
            position: relative;
            width: 100%;
            height: 220px;
            border-radius: 20px;
            background: transparent;
            overflow: hidden;
            box-shadow: none;
            transition: box-shadow .6s ease
        }

        .wwb-anim-box.active {
            box-shadow: none
        }

        #wwbCanvas,
        #hwsCanvas,
        #techCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%
        }

        .wwb-anim-label {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            font-size: .7rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(129, 140, 248, .55);
            text-shadow: 0 0 10px rgba(99, 102, 241, .35);
            white-space: nowrap;
            opacity: 0;
            transition: opacity .5s ease;
            animation: wwbBreathe 3s ease-in-out infinite
        }

        @keyframes wwbBreathe {

            0%,
            100% {
                opacity: .4
            }

            50% {
                opacity: .8
            }
        }

        .wwb-anim-box.active .wwb-anim-label {
            opacity: 1
        }

        @media(max-width:768px) {
            .wwb-header {
                grid-template-columns: 1fr;
                gap: 24px
            }

            .wwb-text .st,
            .wwb-text .sd {
                text-align: center
            }

            .wwb-anim-box {
                height: 180px
            }
        }

        /* CARDS */
        .g3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .g4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px
        }

        .g2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px
        }

        @media(max-width:1024px) {

            .g3,
            .g4 {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:600px) {

            .g3,
            .g4,
            .g2 {
                grid-template-columns: 1fr
            }
        }

        .cd {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 20px;
            padding: 36px 30px;
            position: relative;
            overflow: hidden;
            transition: all .4s var(--ease)
        }

        .cd::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: #6366f1;
            border-radius: 0 0 3px 0;
            transition: height .5s var(--ease)
        }

        .cd:hover {
            border-color: rgba(99, 102, 241, .2);
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, .1), 0 0 0 1px rgba(99, 102, 241, .1)
        }

        .cd:hover::before {
            height: 100%
        }

        .cdi {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(99, 102, 241, .1), rgba(139, 92, 246, .06));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: transform .3s, background .3s
        }

        .cd:hover .cdi {
            transform: scale(1.08);
            background: linear-gradient(135deg, rgba(99, 102, 241, .18), rgba(139, 92, 246, .1))
        }

        .cdi svg {
            width: 24px;
            height: 24px;
            stroke: #6366f1;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round
        }

        .cd h3 {
            font-size: 1.15rem;
            font-weight: 650;
            margin-bottom: 12px;
            letter-spacing: -.01em
        }

        .cd p {
            color: var(--txt2);
            font-size: .88rem;
            line-height: 1.65
        }

        .cdl {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: .85rem;
            font-weight: 600;
            color: #6366f1;
            margin-top: 20px;
            transition: gap .3s
        }

        .cd:hover .cdl {
            gap: 10px
        }

        /* PROCESS */
        .ps {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 20px;
            padding: 32px 24px;
            transition: all .4s var(--ease);
            overflow: hidden;
            position: relative
        }

        .ps:hover {
            border-color: rgba(99, 102, 241, .2);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(99, 102, 241, .1)
        }

        .pn {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(99, 102, 241, .07);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            color: #6366f1;
            margin-bottom: 20px;
            transition: all .4s var(--ease);
            -webkit-text-fill-color: #6366f1
        }

        .ps:hover .pn {
            background: #6366f1;
            color: #fff;
            -webkit-text-fill-color: #fff
        }

        .ps h3 {
            font-size: 1.05rem;
            font-weight: 650;
            margin-bottom: 10px;
            letter-spacing: -.01em
        }

        .ps p {
            color: var(--txt2);
            font-size: .86rem;
            line-height: 1.65
        }

        /* TABS (Portfolio) */
        .tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 32px
        }

        /* PROJECT SHOWCASE â€” unique layout */
        .proj-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px
        }

        @media(max-width:1024px) {
            .proj-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:600px) {
            .proj-grid {
                grid-template-columns: 1fr
            }
        }

        .proj-row-label {
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .25);
            margin: 48px 0 20px;
            padding-left: 4px
        }

        .proj-row-label:first-of-type {
            margin-top: 0
        }

        .proj {
            background: rgba(255, 255, 255, .025);
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 20px;
            overflow: hidden;
            transition: all .5s var(--ease);
            position: relative
        }

        .proj:hover {
            border-color: rgba(99, 102, 241, .25);
            transform: translateY(-8px);
            box-shadow: 0 24px 64px rgba(99, 102, 241, .12), 0 0 0 1px rgba(99, 102, 241, .08)
        }

        .proj::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #6366f1, transparent);
            opacity: 0;
            transition: opacity .4s
        }

        .proj:hover::before {
            opacity: 1
        }

        /* Mini dashboard mockup area */
        .proj-mock {
            height: 180px;
            background: linear-gradient(145deg, #0f0f1a 0%, #131325 100%);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, .04);
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px
        }

        .proj-mock::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(to top, rgba(8, 8, 13, .8), transparent);
            pointer-events: none;
            z-index: 2
        }

        /* Mock toolbar */
        .mock-bar {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px
        }

        .mock-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%
        }

        .mock-dot.r {
            background: #ef4444
        }

        .mock-dot.y {
            background: #eab308
        }

        .mock-dot.g {
            background: #22c55e
        }

        .mock-url {
            flex: 1;
            height: 18px;
            background: rgba(255, 255, 255, .04);
            border-radius: 4px;
            margin-left: 6px;
            display: flex;
            align-items: center;
            padding: 0 8px;
            font-size: .55rem;
            color: rgba(255, 255, 255, .2);
            font-family: 'Courier New', monospace
        }

        /* Mock content rows */
        .mock-row {
            display: flex;
            gap: 6px;
            flex: 1
        }

        .mock-sidebar {
            width: 40px;
            background: rgba(255, 255, 255, .03);
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            padding: 6px 4px;
            gap: 5px
        }

        .mock-sidebar-item {
            width: 100%;
            height: 3px;
            border-radius: 2px;
            background: rgba(255, 255, 255, .06)
        }

        .mock-sidebar-item.active {
            background: rgba(99, 102, 241, .4)
        }

        .mock-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .mock-stats {
            display: flex;
            gap: 5px
        }

        .mock-stat-box {
            flex: 1;
            height: 36px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .04);
            border-radius: 4px;
            padding: 5px 6px;
            display: flex;
            flex-direction: column;
            justify-content: center
        }

        .mock-stat-num {
            font-size: .55rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .6);
            line-height: 1
        }

        .mock-stat-label {
            font-size: .4rem;
            color: rgba(255, 255, 255, .2);
            margin-top: 2px
        }

        .mock-chart {
            flex: 1;
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .04);
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            min-height: 50px
        }

        .mock-chart-line {
            position: absolute;
            bottom: 20%;
            left: 5%;
            right: 5%;
            height: 40%;
            border-bottom: 1.5px solid rgba(99, 102, 241, .5)
        }

        .mock-chart-fill {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 40%;
            background: linear-gradient(to bottom, rgba(99, 102, 241, .08), transparent)
        }

        .mock-table {
            flex: 1;
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .04);
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            gap: 0;
            overflow: hidden
        }

        .mock-table-row {
            display: flex;
            gap: 4px;
            padding: 3px 6px;
            border-bottom: 1px solid rgba(255, 255, 255, .03)
        }

        .mock-table-row.th {
            background: rgba(255, 255, 255, .03)
        }

        .mock-table-cell {
            flex: 1;
            height: 3px;
            border-radius: 1px;
            background: rgba(255, 255, 255, .06)
        }

        .mock-table-cell.highlight {
            background: rgba(99, 102, 241, .2)
        }

        /* Variant colors */
        .proj.green .mock-stat-box {
            border-color: rgba(34, 197, 94, .08)
        }

        .proj.green .mock-chart-line {
            border-color: rgba(34, 197, 94, .5)
        }

        .proj.green .mock-chart-fill {
            background: linear-gradient(to bottom, rgba(34, 197, 94, .08), transparent)
        }

        .proj.green .mock-sidebar-item.active {
            background: rgba(34, 197, 94, .4)
        }

        .proj.green .mock-table-cell.highlight {
            background: rgba(34, 197, 94, .2)
        }

        .proj.orange .mock-stat-box {
            border-color: rgba(249, 115, 22, .08)
        }

        .proj.orange .mock-chart-line {
            border-color: rgba(249, 115, 22, .5)
        }

        .proj.orange .mock-chart-fill {
            background: linear-gradient(to bottom, rgba(249, 115, 22, .08), transparent)
        }

        .proj.orange .mock-sidebar-item.active {
            background: rgba(249, 115, 22, .4)
        }

        .proj.orange .mock-table-cell.highlight {
            background: rgba(249, 115, 22, .2)
        }

        .proj.cyan .mock-stat-box {
            border-color: rgba(6, 182, 212, .08)
        }

        .proj.cyan .mock-chart-line {
            border-color: rgba(6, 182, 212, .5)
        }

        .proj.cyan .mock-chart-fill {
            background: linear-gradient(to bottom, rgba(6, 182, 212, .08), transparent)
        }

        .proj.cyan .mock-sidebar-item.active {
            background: rgba(6, 182, 212, .4)
        }

        .proj.cyan .mock-table-cell.highlight {
            background: rgba(6, 182, 212, .2)
        }

        /* Card content */
        .proj-body {
            padding: 24px
        }

        .proj-cat {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--pill);
            font-size: .65rem;
            font-weight: 600;
            letter-spacing: .04em;
            text-transform: uppercase;
            background: rgba(99, 102, 241, .08);
            color: #818cf8;
            margin-bottom: 12px
        }

        .proj-cat.saas {
            background: rgba(99, 102, 241, .08);
            color: #818cf8
        }

        .proj-cat.ai {
            background: rgba(139, 92, 246, .08);
            color: #a78bfa
        }

        .proj-cat.migration {
            background: rgba(34, 197, 94, .08);
            color: #4ade80
        }

        .proj h3 {
            font-size: 1.1rem;
            font-weight: 650;
            margin-bottom: 8px;
            letter-spacing: -.01em
        }

        .proj-desc {
            color: var(--txt2);
            font-size: .85rem;
            line-height: 1.65;
            margin-bottom: 16px
        }

        .proj-metric {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 10px;
            background: rgba(99, 102, 241, .06);
            border: 1px solid rgba(99, 102, 241, .1);
            margin-bottom: 14px
        }

        .proj-metric .pm-num {
            font-size: 1rem;
            font-weight: 700;
            color: #818cf8
        }

        .proj-metric .pm-label {
            font-size: .72rem;
            color: var(--txt2);
            font-weight: 500
        }

        .proj.green .proj-metric {
            background: rgba(34, 197, 94, .06);
            border-color: rgba(34, 197, 94, .1)
        }

        .proj.green .proj-metric .pm-num {
            color: #4ade80
        }

        .proj.orange .proj-metric {
            background: rgba(249, 115, 22, .06);
            border-color: rgba(249, 115, 22, .1)
        }

        .proj.orange .proj-metric .pm-num {
            color: #fb923c
        }

        .proj.cyan .proj-metric {
            background: rgba(6, 182, 212, .06);
            border-color: rgba(6, 182, 212, .1)
        }

        .proj.cyan .proj-metric .pm-num {
            color: #22d3ee
        }

        .proj-stack {
            display: flex;
            gap: 6px;
            flex-wrap: wrap
        }

        .proj-stack span {
            padding: 3px 9px;
            border-radius: 6px;
            font-size: .65rem;
            font-weight: 500;
            background: rgba(255, 255, 255, .04);
            color: var(--txt3);
            border: 1px solid rgba(255, 255, 255, .04)
        }

        /* BLOG */
        .bc {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 16px;
            overflow: hidden;
            transition: all .4s var(--ease)
        }

        .bc:hover {
            border-color: rgba(99, 102, 241, .2);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(99, 102, 241, .1)
        }

        .bc img {
            width: 100%;
            height: 200px;
            object-fit: cover
        }

        /* CSS-only blog diagrams */
        .blog-diagram {
            width: 100%;
            height: 200px;
            background: linear-gradient(145deg, #0f0f1a 0%, #131325 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px
        }

        /* Flowchart diagram */
        .flow-diagram {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            justify-content: center
        }

        .flow-node {
            padding: 8px 10px;
            border-radius: 8px;
            font-size: .55rem;
            font-weight: 600;
            text-align: center;
            line-height: 1.3;
            min-width: 58px;
            position: relative
        }

        .flow-node.user {
            background: rgba(99, 102, 241, .12);
            border: 1px solid rgba(99, 102, 241, .25);
            color: #818cf8
        }

        .flow-node.api {
            background: rgba(139, 92, 246, .12);
            border: 1px solid rgba(139, 92, 246, .25);
            color: #a78bfa
        }

        .flow-node.ai {
            background: rgba(249, 115, 22, .12);
            border: 1px solid rgba(249, 115, 22, .25);
            color: #fb923c
        }

        .flow-node.db {
            background: rgba(34, 197, 94, .12);
            border: 1px solid rgba(34, 197, 94, .25);
            color: #4ade80
        }

        .flow-node.out {
            background: rgba(6, 182, 212, .12);
            border: 1px solid rgba(6, 182, 212, .25);
            color: #22d3ee
        }

        .flow-arrow {
            color: rgba(255, 255, 255, .15);
            font-size: .7rem;
            flex-shrink: 0
        }

        .flow-label {
            position: absolute;
            bottom: -14px;
            left: 50%;
            transform: translateX(-50%);
            font-size: .38rem;
            color: rgba(255, 255, 255, .2);
            white-space: nowrap;
            font-weight: 400
        }

        /* Schema diagram */
        .schema-diagram {
            display: flex;
            gap: 12px;
            width: 100%;
            justify-content: center;
            align-items: flex-start
        }

        .schema-table {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 6px;
            overflow: hidden;
            min-width: 80px;
            font-size: .5rem
        }

        .schema-header {
            padding: 5px 8px;
            font-weight: 700;
            font-size: .52rem;
            letter-spacing: .03em;
            border-bottom: 1px solid rgba(255, 255, 255, .08)
        }

        .schema-header.purple {
            background: rgba(99, 102, 241, .1);
            color: #818cf8
        }

        .schema-header.green {
            background: rgba(34, 197, 94, .1);
            color: #4ade80
        }

        .schema-header.orange {
            background: rgba(249, 115, 22, .1);
            color: #fb923c
        }

        .schema-field {
            padding: 3px 8px;
            color: rgba(255, 255, 255, .35);
            border-bottom: 1px solid rgba(255, 255, 255, .03);
            display: flex;
            gap: 6px;
            align-items: center
        }

        .schema-field .sf-type {
            color: rgba(139, 92, 246, .5);
            font-size: .42rem;
            margin-left: auto
        }

        .schema-field .sf-key {
            color: #FBBC04;
            font-size: .42rem
        }

        .schema-rel {
            width: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .1);
            font-size: .6rem;
            align-self: center
        }

        /* Automation flow for card 3 */
        .auto-flow {
            display: flex;
            flex-direction: column;
            gap: 6px;
            width: 100%;
            max-width: 260px
        }

        .auto-step {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 10px;
            border-radius: 6px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .06);
            font-size: .52rem;
            color: rgba(255, 255, 255, .4)
        }

        .auto-step .as-icon {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .5rem;
            flex-shrink: 0;
            font-weight: 700
        }

        .auto-step .as-icon.purple {
            background: rgba(99, 102, 241, .15);
            color: #818cf8
        }

        .auto-step .as-icon.green {
            background: rgba(34, 197, 94, .15);
            color: #4ade80
        }

        .auto-step .as-icon.orange {
            background: rgba(249, 115, 22, .15);
            color: #fb923c
        }

        .auto-step .as-icon.red {
            background: rgba(239, 68, 68, .15);
            color: #f87171
        }

        .auto-connector {
            width: 1px;
            height: 4px;
            background: rgba(255, 255, 255, .08);
            margin-left: 18px
        }

        .bcc {
            padding: 24px
        }

        .bcc .meta {
            font-size: .72rem;
            color: #6366f1;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: .03em
        }

        .bcc h3 {
            font-size: 1.05rem;
            font-weight: 650;
            margin-bottom: 10px;
            line-height: 1.4
        }

        .bcc h3 a {
            transition: color .2s
        }

        .bcc h3 a:hover {
            color: #6366f1
        }

        .bcc p {
            font-size: .86rem;
            color: var(--txt2);
            line-height: 1.65;
            margin-bottom: 14px
        }

        .rm {
            font-size: .84rem;
            font-weight: 600;
            color: #6366f1;
            transition: gap .3s;
            display: inline-flex;
            align-items: center;
            gap: 4px
        }

        .rm:hover {
            gap: 8px
        }

        /* REVIEWS */
        .sh-center {
            text-align: center
        }

        .sh-center .sd {
            margin: 16px auto 0
        }

        .rev-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px
        }

        .rev-score {
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: -.04em;
            line-height: 1;
            color: var(--txt)
        }

        .rev-stars {
            color: #FBBC04;
            font-size: 1.3rem;
            letter-spacing: 2px
        }

        .rev-sub {
            font-size: .82rem;
            color: var(--txt3);
            margin-top: 2px
        }

        /* Auto-scrolling marquee */
        .review-scroll-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 12px 0;
            margin: -12px 0;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%)
        }

        .review-scroll-track {
            display: flex;
            gap: 24px;
            animation: reviewScroll 40s linear infinite;
            width: max-content
        }

        .review-scroll-track:hover {
            animation-play-state: paused
        }

        @keyframes reviewScroll {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        .rc {
            flex: 0 0 380px;
            padding: 28px;
            border-radius: 20px;
            background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
            border: 1px solid rgba(255, 255, 255, .06);
            display: flex;
            flex-direction: column;
            color: var(--txt);
            transition: all .4s var(--ease);
            position: relative;
            overflow: hidden;
            cursor: pointer
        }

        .rc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4285F4, #34A853, #FBBC04, #EA4335);
            opacity: 0;
            transition: opacity .4s ease
        }

        .rc:hover {
            border-color: rgba(99, 102, 241, .2);
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(99, 102, 241, .12)
        }

        .rc:hover::before {
            opacity: 1
        }

        .rtp {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px
        }

        .rau {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .rav {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: .95rem;
            flex-shrink: 0
        }

        .ran {
            font-size: .92rem;
            font-weight: 650
        }

        .rar {
            font-size: .78rem;
            color: var(--txt3)
        }

        .g-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: .72rem;
            color: var(--txt3);
            font-weight: 500
        }

        .g-badge svg {
            width: 16px;
            height: 16px
        }

        .rst {
            color: #FBBC04;
            font-size: .85rem;
            margin-bottom: 12px;
            letter-spacing: 1px
        }

        .rtx {
            font-size: .88rem;
            line-height: 1.65;
            color: var(--txt2);
            margin-bottom: 14px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden
        }

        .rdt {
            font-size: .72rem;
            color: var(--txt3)
        }

        .review-cta-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
            flex-wrap: wrap
        }

        /* NEWSLETTER */
        .nl-sec {
            text-align: center;
            padding: 0;
            margin: 0 var(--mx) 0
        }

        .nl-inner {
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 24px;
            padding: 80px 40px;
            position: relative;
            overflow: hidden
        }

        .nl-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, .15) 0%, transparent 70%);
            pointer-events: none
        }

        .nl-inner>* {
            position: relative;
            z-index: 1
        }

        .nl-sec .st {
            color: #fff
        }

        .nl-sec .sd {
            color: rgba(255, 255, 255, .45);
            margin: 16px auto 0;
            max-width: 540px
        }

        .final-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 36px;
            padding: 18px 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all .4s var(--ease);
            border: none;
            position: relative;
            overflow: hidden
        }

        .final-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 50%);
            opacity: 0;
            transition: opacity .4s ease
        }

        .final-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(99, 102, 241, .35);
            background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 100%)
        }

        .final-cta:hover::before {
            opacity: 1
        }

        .final-cta-sub {
            font-size: .8rem;
            color: rgba(255, 255, 255, .35);
            margin-top: 14px;
            letter-spacing: .02em
        }

        /* TEAM / ABOUT */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
            align-items: center
        }

        @media(max-width:768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 32px
            }
        }

        .about-img {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(145deg, #0a0a14 0%, #0f0f1e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
            border: 1px solid rgba(99, 102, 241, .15)
        }

        .about-img img {
            width: 280px;
            height: 280px;
            object-fit: cover;
            object-position: center top;
            border-radius: 50%;
            filter: grayscale(10%);
            transition: all .4s;
            border: 3px solid rgba(99, 102, 241, .3);
            box-shadow: 0 0 40px rgba(99, 102, 241, .15)
        }

        .about-img:hover img {
            filter: grayscale(0%);
            border-color: rgba(99, 102, 241, .5);
            box-shadow: 0 0 60px rgba(99, 102, 241, .25)
        }

        .about-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -.02em
        }

        .about-role {
            font-size: .85rem;
            color: #6366f1;
            font-weight: 600;
            margin-bottom: 20px
        }

        .about-content p {
            font-size: .95rem;
            color: var(--txt2);
            line-height: 1.7;
            margin-bottom: 16px
        }

        .about-highlights {
            display: flex;
            gap: 32px;
            margin-top: 24px
        }

        .about-highlights div {
            text-align: left
        }

        .about-highlights .ah-num {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--txt);
            letter-spacing: -.02em
        }

        .about-highlights .ah-label {
            font-size: .78rem;
            color: var(--txt3);
            margin-top: 2px;
            font-weight: 500
        }

        /* FAQ */
        .faq-wrap {
            max-width: 800px;
            margin: 0 auto
        }

        .fi {
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color .3s, box-shadow .3s;
            background: rgba(255, 255, 255, .02)
        }

        .fi:hover {
            border-color: rgba(99, 102, 241, .15)
        }

        .fi.open {
            border-color: rgba(99, 102, 241, .25);
            box-shadow: 0 8px 32px rgba(99, 102, 241, .08)
        }

        .fq {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 28px;
            font-size: .95rem;
            font-weight: 600;
            text-align: left;
            color: var(--txt);
            transition: background .2s
        }

        .fq:hover {
            background: rgba(255, 255, 255, .02)
        }

        .fq .ico {
            font-size: 1.3rem;
            color: var(--txt3);
            transition: transform .3s var(--ease), color .3s;
            flex-shrink: 0;
            margin-left: 16px
        }

        .fi.open .fq .ico {
            transform: rotate(45deg);
            color: #6366f1
        }

        .fa {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s var(--ease)
        }

        .fi.open .fa {
            max-height: 300px
        }

        .fa p {
            padding: 0 28px 22px;
            color: var(--txt2);
            font-size: .9rem;
            line-height: 1.7
        }

        /* CENTER CTA */
        .cta-center {
            text-align: center;
            margin-top: 48px
        }

        /* FAQ vertical stack */
        .g1-faq {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        /* CTA */
        .ctb {
            position: relative;
            text-align: center;
            padding: 100px 40px;
            border-radius: 24px;
            margin: 0 var(--mx) 100px;
            overflow: hidden;
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .06)
        }

        .ctb::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 120%, rgba(99, 102, 241, .2) 0%, transparent 60%);
            pointer-events: none
        }

        .ctb>* {
            position: relative;
            z-index: 1
        }

        .ctb h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -.03em;
            margin-bottom: 16px;
            color: #fff
        }

        .ctb p {
            color: rgba(255, 255, 255, .45);
            font-size: 1.05rem;
            max-width: 500px;
            margin: 0 auto 40px;
            line-height: 1.65
        }

        .ctb .bp {
            background: #6366f1;
            color: #fff;
            border-radius: 12px;
            box-shadow: 0 0 24px rgba(99, 102, 241, .3)
        }

        .ctb .bp:hover {
            background: #818cf8;
            box-shadow: 0 8px 32px rgba(99, 102, 241, .4)
        }

        /* BLUEPRINT MODAL */
        .bm-overlay {
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, .7);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            visibility: hidden;
            transition: opacity .35s ease, visibility .35s ease
        }

        .bm-overlay.open {
            opacity: 1;
            visibility: visible
        }

        .bm-panel {
            background: linear-gradient(160deg, rgba(20, 20, 35, .98), rgba(12, 12, 20, .98));
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 24px;
            max-width: 680px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 48px 40px;
            position: relative;
            transform: translateY(20px) scale(.97);
            transition: transform .4s var(--ease);
            scrollbar-width: thin;
            scrollbar-color: rgba(99, 102, 241, .3) transparent
        }

        .bm-overlay.open .bm-panel {
            transform: translateY(0) scale(1)
        }

        .bm-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--txt2);
            transition: all .25s;
            cursor: pointer;
            z-index: 2
        }

        .bm-close:hover {
            background: rgba(255, 255, 255, .12);
            color: #fff
        }

        .bm-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            border-radius: var(--pill);
            background: rgba(99, 102, 241, .1);
            border: 1px solid rgba(99, 102, 241, .18);
            font-size: .7rem;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: #818cf8;
            margin-bottom: 20px
        }

        .bm-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            letter-spacing: -.03em;
            line-height: 1.2;
            margin-bottom: 12px;
            color: #fff
        }

        .bm-subtitle {
            font-size: .95rem;
            color: var(--txt2);
            line-height: 1.65;
            margin-bottom: 36px;
            max-width: 560px
        }

        .bm-section-label {
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #818cf8;
            margin-bottom: 20px
        }

        .bm-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px
        }

        .bm-item {
            display: flex;
            gap: 16px;
            padding: 20px;
            border-radius: 16px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .05);
            transition: border-color .3s, background .3s
        }

        .bm-item:hover {
            border-color: rgba(99, 102, 241, .15);
            background: rgba(255, 255, 255, .04)
        }

        .bm-num {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(99, 102, 241, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem;
            font-weight: 700;
            color: #818cf8;
            flex-shrink: 0
        }

        .bm-item h4 {
            font-size: .95rem;
            font-weight: 650;
            margin-bottom: 4px;
            color: #fff
        }

        .bm-item p {
            font-size: .84rem;
            color: var(--txt2);
            line-height: 1.6
        }

        .bm-callout {
            padding: 20px 24px;
            border-radius: 16px;
            background: rgba(99, 102, 241, .06);
            border: 1px solid rgba(99, 102, 241, .12);
            margin-bottom: 32px
        }

        .bm-callout p {
            font-size: .88rem;
            color: var(--txt2);
            line-height: 1.65;
            font-style: italic
        }

        .bm-callout strong {
            color: #fff;
            font-style: normal
        }

        .bm-cta {
            text-align: center
        }

        .bm-cta .bp {
            padding: 16px 40px;
            font-size: 1rem
        }

        .bm-cta .bm-hint {
            font-size: .75rem;
            color: var(--txt3);
            margin-top: 10px
        }

        @media(max-width:600px) {
            .bm-panel {
                padding: 32px 24px
            }
        }

        /* SCROLL REVEAL */
        .rv {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity .7s var(--ease), transform .7s var(--ease)
        }

        .rv.vis {
            opacity: 1;
            transform: translateY(0)
        }

        .d1 {
            transition-delay: .1s
        }

        .d2 {
            transition-delay: .2s
        }

        .d3 {
            transition-delay: .3s
        }

        .d4 {
            transition-delay: .35s
        }

        /* ===== COMPREHENSIVE MOBILE RESPONSIVE ===== */

        /* Tablet and below */
        @media(max-width:1024px) {
            .sec {
                padding: 80px 0
            }

            .sh {
                margin-bottom: 40px
            }

            .hero-orb {
                width: 500px;
                height: 500px
            }

            .hero-ring {
                width: 400px;
                height: 400px
            }

            .hero-ring::before {
                inset: -60px
            }

            .nl-inner {
                padding: 60px 28px
            }

            .final-cta {
                padding: 16px 36px;
                font-size: 1rem
            }
        }

        /* Mobile landscape / small tablets */
        @media(max-width:768px) {
            .sec {
                padding: 60px 0
            }

            .sh {
                margin-bottom: 32px
            }

            .flow-diagram {
                gap: 4px;
                flex-wrap: wrap;
                justify-content: center
            }

            .flow-node {
                min-width: 50px;
                padding: 6px 8px;
                font-size: .5rem
            }

            .flow-arrow {
                font-size: .55rem
            }

            .flow-label {
                font-size: .32rem;
                bottom: -12px
            }

            .blog-diagram {
                padding: 14px;
                height: 180px
            }

            .about-img img {
                width: 200px;
                height: 200px
            }

            .about-img {
                padding: 20px
            }

            .review-cta-row {
                flex-direction: column;
                gap: 12px;
                margin-top: 32px
            }

            .review-cta-row .bp,
            .review-cta-row .bs {
                width: 100%;
                justify-content: center;
                text-align: center
            }

            .hact {
                flex-direction: column;
                align-items: center;
                gap: 10px
            }

            .hact a,
            .hact button {
                width: 100%;
                max-width: 320px;
                text-align: center;
                justify-content: center
            }

            .nl-inner {
                padding: 40px 20px
            }

            .final-cta {
                padding: 14px 28px;
                font-size: .95rem;
                width: 100%;
                max-width: 320px;
                justify-content: center
            }

            .bcc {
                padding: 18px 16px
            }

            /* Ensure touch targets are >= 44px */
            .bp,
            .bs,
            .nc,
            button,
            a.cdl {
                min-height: 44px
            }
        }

        /* Mobile portrait */
        @media(max-width:600px) {
            .sec {
                padding: 48px 0
            }

            .hero {
                min-height: auto;
                padding: calc(var(--nh) + 40px) var(--mx) 48px
            }

            .hero h1 {
                font-size: clamp(2rem, 8vw, 3rem);
                margin-bottom: 16px
            }

            .hsub {
                font-size: .92rem;
                margin-bottom: 28px
            }

            .hero-stats {
                margin-top: 36px;
                border-radius: 12px
            }

            .hero-stat {
                padding: 16px 12px
            }

            .hero-stat .hs-num {
                font-size: 1.3rem
            }

            .hero-orb {
                width: 350px;
                height: 350px
            }

            .hero-ring {
                width: 280px;
                height: 280px
            }

            .hero-ring::before {
                inset: -40px
            }

            .st {
                font-size: clamp(1.6rem, 6vw, 2.2rem)
            }

            .sd {
                font-size: .9rem
            }

            .sh {
                margin-bottom: 28px
            }

            .cd {
                padding: 24px 20px
            }

            .ps {
                padding: 24px 18px
            }

            .proj {
                padding: 18px 16px
            }

            .flow-diagram {
                gap: 3px
            }

            .flow-node {
                min-width: 44px;
                padding: 5px 6px;
                font-size: .45rem;
                border-radius: 6px
            }

            .flow-arrow {
                font-size: .5rem
            }

            .blog-diagram {
                height: 160px;
                padding: 10px
            }

            .about-img img {
                width: 160px;
                height: 160px
            }

            .about-content h3 {
                font-size: 1.25rem
            }

            .nl-inner {
                padding: 32px 16px;
                border-radius: 16px
            }

            .final-cta {
                padding: 14px 24px;
                font-size: .9rem;
                border-radius: 12px
            }

            /* Fix case study metric overflow */
            .proj-metric {
                flex-wrap: wrap
            }

            .proj-stack {
                gap: 4px
            }

            .proj-stack span {
                font-size: .6rem;
                padding: 2px 7px
            }

            .review-scroll-wrapper {
                overflow: hidden
            }

            .rc {
                min-width: 280px;
                padding: 22px 18px
            }

            /* Blueprint panel mobile */
            .bm-panel {
                padding: 24px 16px
            }

            .bm-grid {
                grid-template-columns: 1fr
            }
        }

        /* Extra small screens */
        @media(max-width:380px) {
            .hero h1 {
                font-size: 1.75rem
            }

            .hsub {
                font-size: .85rem
            }

            .st {
                font-size: 1.5rem
            }

            .flow-node {
                min-width: 38px;
                font-size: .4rem;
                padding: 4px 5px
            }

            .flow-label {
                display: none
            }

            .hero-orb {
                width: 280px;
                height: 280px
            }

            .hero-ring {
                width: 220px;
                height: 220px
            }
        }