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

        :root {
            --bg: #070c14;
            --bg2: #0a1120;
            --bg3: #0d1628;
            --cy: #00d4ff;
            --cyg: rgba(0, 212, 255, .2);
            --pu: #7c3aed;
            --pug: rgba(124, 58, 237, .25);
            --gn: #10b981;
            --gng: rgba(16, 185, 129, .2);
            --am: #f59e0b;
            --amg: rgba(245, 158, 11, .2);
            --pi: #f72585;
            --pig: rgba(247, 37, 133, .2);
            --tx: #e2e8f0;
            --mu: #64748b;
            --br: rgba(255, 255, 255, .06);
            --r: 14px;
        }

        html {
            scroll-behavior: smooth
        }

        body {
            background: var(--bg);
            color: var(--tx);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.6
        }

        ::-webkit-scrollbar {
            width: 4px
        }

        ::-webkit-scrollbar-thumb {
            background: var(--cy);
            border-radius: 2px
        }

        /* ── MOBILE PROGRESS ── */
        #mprog {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            height: 3px;
            background: rgba(255, 255, 255, .06)
        }

        #mfill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--cy), var(--pu), var(--gn));
            transition: width .06s linear
        }

        /* ── NOISE TEXTURE overlay ── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            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='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
            opacity: .4
        }

        /* ── CURSOR GLOW ── */
        #cglow {
            position: fixed;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 255, .06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
            transform: translate(-50%, -50%);
            transition: left .12s, top .12s
        }

        /* ── NAVBAR ── */
        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            padding: 1rem 4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--br);
            backdrop-filter: blur(20px);
            background: rgba(7, 12, 20, .8);
            opacity: 0
        }

        .nlo {
            font-size: 1.25rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--cy), var(--pu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .nli {
            display: flex;
            gap: 2rem;
            list-style: none
        }

        .nli a {
            color: var(--mu);
            text-decoration: none;
            font-size: .875rem;
            font-weight: 500;
            transition: color .3s
        }

        .nli a:hover {
            color: var(--cy)
        }

        /* ── SUBMENU ── */
        .nsub {
            position: relative;
        }

        .nsub-btn {
            background: none;
            border: none;
            color: var(--mu);
            font-size: .875rem;
            font-weight: 500;
            font-family: inherit;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0;
            transition: color .3s;
        }

        .nsub-btn:hover {
            color: var(--cy);
        }

        .nsub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(7, 12, 20, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid var(--br);
            border-radius: 8px;
            padding: 0.5rem 0;
            min-width: 180px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
            display: flex;
            flex-direction: column;
            z-index: 1000;
        }

        .nsub:hover .nsub-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .nsub-menu a {
            padding: 0.5rem 1.2rem;
            color: var(--mu);
            font-size: 0.8rem;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }

        .nsub-menu a:hover {
            background: rgba(0, 212, 255, 0.05);
            color: var(--cy);
        }

        .nct {
            background: linear-gradient(135deg, var(--cy), var(--pu));
            color: #fff;
            padding: .5rem 1.4rem;
            border-radius: 8px;
            font-size: .85rem;
            font-weight: 700;
            text-decoration: none;
            transition: opacity .2s, transform .2s
        }

        .nct:hover {
            opacity: .85;
            transform: translateY(-1px)
        }

        /* ── HERO ── */
        #hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 2rem;
            padding: 9rem 4rem 5rem;
            position: relative;
            overflow: hidden
        }

        /* Hero right visual */
        .hero-visual {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0
        }

        #hsvg {
            width: 100%;
            max-width: 460px;
            height: auto;
            filter: drop-shadow(0 0 60px rgba(0, 212, 255, .18))
        }

        /* Grid background */
        #hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(0, 212, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, .04) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none
        }

        #hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(7, 12, 20, 0) 0%, var(--bg) 75%);
            pointer-events: none
        }

        .hero-inner {
            position: relative;
            z-index: 2
        }

        .hbadge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(0, 212, 255, .08);
            border: 1px solid rgba(0, 212, 255, .25);
            color: var(--cy);
            font-size: .72rem;
            font-weight: 700;
            padding: .4rem 1rem;
            border-radius: 999px;
            margin-bottom: 1.75rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            opacity: 0
        }

        .hbdot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cy);
            animation: blink 1.5s ease-in-out infinite
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .3
            }
        }

        .htit {
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -.04em;
            margin-bottom: 1.5rem
        }

        .htit .word {
            display: inline-block;
            overflow: hidden;
            vertical-align: bottom;
            margin-right: .25em
        }

        .htit .word span {
            display: inline-block;
            transform: translateY(110%);
            opacity: 0
        }

        .grd1 {
            background: linear-gradient(135deg, var(--cy), var(--pu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        /* Gradient on word inner span */
        .htit .word.grd1 span {
            background: linear-gradient(135deg, var(--cy), var(--pu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .hdesc {
            font-size: 1.05rem;
            color: var(--mu);
            max-width: 52ch;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(20px)
        }

        .hact {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0
        }

        .btp {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: linear-gradient(135deg, var(--cy), var(--pu));
            color: #fff;
            padding: .85rem 2rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: .9rem;
            text-decoration: none;
            box-shadow: 0 4px 24px var(--cyg);
            transition: transform .2s, box-shadow .2s
        }

        .btp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px var(--cyg)
        }

        .bts {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            border: 1px solid var(--br);
            color: var(--tx);
            padding: .85rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: .9rem;
            text-decoration: none;
            transition: border-color .3s, background .3s
        }

        .bts:hover {
            border-color: var(--cy);
            background: rgba(0, 212, 255, .05)
        }

        /* Floating system icons in hero bg */
        .float-icons {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden
        }

        .fi-item {
            position: absolute;
            font-size: 2rem;
            opacity: .06;
            animation: float-around linear infinite
        }

        @keyframes float-around {
            0% {
                transform: translateY(0) rotate(0deg)
            }

            100% {
                transform: translateY(-120px) rotate(360deg)
            }
        }

        /* ── HORIZONTAL SCROLL SHOWCASE ── */
        #hscroll {
            min-height: 500vh;
            position: relative
        }

        .hs-sticky {
            position: sticky;
            top: 0;
            height: 100vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 4rem
        }

        .hs-header {
            margin-bottom: 2.5rem;
            flex-shrink: 0
        }

        .hs-label {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--cy);
            margin-bottom: .6rem
        }

        .hs-title {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 900;
            letter-spacing: -.03em;
            line-height: 1.1
        }

        .hs-viewport {
            overflow: hidden;
            flex: 1;
            display: flex;
            align-items: center;
            position: relative
        }

        .hs-track {
            display: flex;
            gap: 1.5rem;
            will-change: transform;
            transition: transform .1s linear;
            padding: 1rem 0
        }

        .sys-card {
            flex-shrink: 0;
            width: 320px;
            height: 380px;
            border: 1px solid var(--br);
            border-radius: 18px;
            padding: 2rem;
            background: var(--bg2);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            transition: border-color .4s, box-shadow .4s
        }

        .sys-card.active {
            border-color: rgba(0, 212, 255, .35);
            box-shadow: 0 0 40px rgba(0, 212, 255, .08)
        }

        .sys-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            opacity: 0;
            transition: opacity .4s
        }

        .sys-card.active::before {
            opacity: 1
        }

        .c0::before {
            background: linear-gradient(90deg, var(--cy), var(--pu))
        }

        .c1::before {
            background: linear-gradient(90deg, var(--gn), var(--cy))
        }

        .c2::before {
            background: linear-gradient(90deg, var(--am), var(--pi))
        }

        .c3::before {
            background: linear-gradient(90deg, var(--pu), var(--pi))
        }

        .c4::before {
            background: linear-gradient(90deg, var(--cy), var(--gn))
        }

        .sys-icon {
            font-size: 2.5rem;
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--br);
            background: var(--bg3)
        }

        .sys-title {
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: -.02em
        }

        .sys-desc {
            color: var(--mu);
            font-size: .875rem;
            line-height: 1.65;
            flex: 1
        }

        .sys-tags {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem;
            margin-top: auto
        }

        .tag {
            font-size: .65rem;
            font-weight: 600;
            padding: .25rem .65rem;
            border-radius: 999px;
            border: 1px solid var(--br);
            color: var(--mu);
            letter-spacing: .04em
        }

        /* mini UI mockup inside card */
        .sys-mockup {
            height: 80px;
            background: var(--bg3);
            border-radius: 8px;
            border: 1px solid var(--br);
            overflow: hidden;
            padding: .5rem;
            display: flex;
            flex-direction: column;
            gap: .3rem
        }

        .mock-row {
            height: 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, .07)
        }

        .mock-row.short {
            width: 60%
        }

        .mock-row.accent {
            background: rgba(0, 212, 255, .25);
            width: 40%
        }

        /* scroll hint */
        .hs-hint {
            display: flex;
            align-items: center;
            gap: .6rem;
            font-size: .75rem;
            color: var(--mu);
            margin-top: 1.5rem;
            flex-shrink: 0
        }

        .hint-arrow {
            display: flex;
            gap: .2rem
        }

        .hint-arrow span {
            width: 6px;
            height: 6px;
            border-right: 2px solid var(--cy);
            border-bottom: 2px solid var(--cy);
            transform: rotate(-45deg);
            animation: arrow-pulse 1.2s ease-in-out infinite
        }

        .hint-arrow span:nth-child(2) {
            animation-delay: .15s;
            opacity: .6
        }

        .hint-arrow span:nth-child(3) {
            animation-delay: .3s;
            opacity: .3
        }

        @keyframes arrow-pulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .3
            }
        }

        /* progress dots for horizontal */
        .hs-dots {
            display: flex;
            gap: .5rem;
            margin-top: 1rem;
            flex-shrink: 0
        }

        .hs-dot {
            width: 24px;
            height: 3px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .1);
            transition: background .4s, width .4s
        }

        .hs-dot.on {
            background: var(--cy);
            width: 40px
        }

        /* ── DASHBOARD BUILDER ── */
        #dashboard {
            min-height: 400vh;
            position: relative;
            background: var(--bg2)
        }

        .db-sticky {
            position: sticky;
            top: 0;
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            align-items: center;
            gap: 3rem;
            padding: 0 4rem
        }

        .db-text {
            z-index: 2;
            opacity: 1
        }

        .db-label,
        .db-title {
            opacity: 1 !important;
            clip-path: none !important
        }

        .db-label {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--gn);
            margin-bottom: .75rem
        }

        .db-title {
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            font-weight: 900;
            letter-spacing: -.03em;
            line-height: 1.1;
            margin-bottom: 1rem
        }

        .db-steps {
            display: flex;
            flex-direction: column;
            gap: .75rem;
            margin-top: 1.5rem
        }

        .db-step {
            display: flex;
            align-items: center;
            gap: .75rem;
            padding: .65rem 1rem;
            border-radius: 10px;
            border: 1px solid var(--br);
            background: var(--bg3);
            opacity: .3;
            transition: all .5s;
            font-size: .875rem;
            font-weight: 600
        }

        .db-step.on {
            opacity: 1;
            border-color: rgba(16, 185, 129, .3);
            background: rgba(16, 185, 129, .06)
        }

        .db-step .ds-icon {
            width: 28px;
            height: 28px;
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            background: rgba(16, 185, 129, .12);
            flex-shrink: 0
        }

        /* The fake dashboard UI */
        .db-ui {
            background: var(--bg3);
            border: 1px solid var(--br);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(0, 0, 0, .5)
        }

        .db-topbar {
            height: 44px;
            background: var(--bg);
            border-bottom: 1px solid var(--br);
            display: flex;
            align-items: center;
            padding: 0 1rem;
            gap: .5rem
        }

        .db-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%
        }

        .db-logo-mock {
            margin-left: .5rem;
            font-size: .75rem;
            font-weight: 700;
            color: var(--cy);
            opacity: 0;
            transition: opacity .5s
        }

        .db-body {
            display: grid;
            grid-template-columns: 48px 1fr;
            height: 360px
        }

        .db-sidebar {
            background: var(--bg);
            border-right: 1px solid var(--br);
            padding: .75rem .4rem;
            display: flex;
            flex-direction: column;
            gap: .5rem;
            opacity: 0;
            transition: opacity .6s
        }

        .db-sb-item {
            width: 28px;
            height: 28px;
            border-radius: 7px;
            background: rgba(255, 255, 255, .04)
        }

        .db-sb-item.act {
            background: var(--cyg)
        }

        .db-main {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: .75rem;
            overflow: hidden
        }

        /* dashboard panels that appear one by one */
        .db-panel {
            border-radius: 10px;
            background: var(--bg);
            border: 1px solid var(--br);
            padding: .75rem;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity .5s, transform .5s
        }

        .db-panel.show {
            opacity: 1;
            transform: translateY(0)
        }

        .dp-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: .6rem
        }

        .dp-title {
            font-size: .7rem;
            font-weight: 700;
            color: var(--mu);
            letter-spacing: .06em;
            text-transform: uppercase
        }

        .dp-num {
            font-size: 1.4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--cy), var(--pu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .dp-bars {
            display: flex;
            gap: .2rem;
            align-items: flex-end;
            height: 40px
        }

        .dp-bar {
            flex: 1;
            background: rgba(0, 212, 255, .15);
            border-radius: 3px 3px 0 0;
            transition: height .8s cubic-bezier(.16, 1, .3, 1)
        }

        .dp-table {
            display: flex;
            flex-direction: column;
            gap: .3rem
        }

        .dp-row {
            display: flex;
            gap: .5rem;
            align-items: center;
            font-size: .65rem;
            color: var(--mu);
            padding: .2rem 0;
            border-bottom: 1px solid var(--br)
        }

        .dp-avatar {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cy), var(--pu));
            flex-shrink: 0
        }

        .dp-badge {
            padding: .1rem .4rem;
            border-radius: 999px;
            font-size: .55rem;
            font-weight: 700;
            background: rgba(16, 185, 129, .15);
            color: var(--gn)
        }

        /* ── FEATURES ── */
        #features {
            padding: 7rem 4rem;
            background: var(--bg)
        }

        .sh {
            text-align: center;
            margin-bottom: 4.5rem
        }

        .sl {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--pu);
            margin-bottom: .75rem
        }

        .st2 {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 900;
            letter-spacing: -.03em;
            line-height: 1.15
        }

        .fgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            max-width: 1080px;
            margin: 0 auto
        }

        .fc {
            background: var(--bg2);
            border: 1px solid var(--br);
            border-radius: var(--r);
            padding: 1.75rem;
            opacity: 0;
            transform: translateY(24px) scale(.95);
            transition: border-color .3s;
            position: relative;
            overflow: hidden;
            cursor: default
        }

        .fc::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--cy), var(--pu));
            opacity: 0;
            transition: opacity .3s
        }

        .fc:hover {
            border-color: rgba(0, 212, 255, .3)
        }

        .fc:hover::after {
            opacity: 1
        }

        .fc:hover {
            transform: translateY(-4px) !important
        }

        .fcicon {
            font-size: 1.4rem;
            width: 44px;
            height: 44px;
            border-radius: 11px;
            background: rgba(0, 212, 255, .08);
            border: 1px solid rgba(0, 212, 255, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem
        }

        .fctit {
            font-weight: 700;
            font-size: .95rem;
            margin-bottom: .45rem
        }

        .fcdesc {
            color: var(--mu);
            font-size: .85rem;
            line-height: 1.65
        }

        /* ── STATS ── */
        #stats {
            padding: 5rem 4rem;
            background: var(--bg2);
            border-top: 1px solid var(--br);
            border-bottom: 1px solid var(--br)
        }

        .sgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 860px;
            margin: 0 auto
        }

        .si {
            opacity: 0;
            transform: translateY(30px);
            text-align: center
        }

        .snum {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            letter-spacing: -.05em;
            line-height: 1;
            background: linear-gradient(135deg, var(--cy), var(--pu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .slb {
            color: var(--mu);
            font-size: .875rem;
            margin-top: .5rem
        }

        /* ── PROCESS ── */
        #process {
            padding: 7rem 4rem;
            background: var(--bg)
        }

        .proc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 3rem auto 0;
            position: relative
        }

        .proc-grid::before {
            content: '';
            position: absolute;
            top: 36px;
            left: calc(16.67% + 1rem);
            right: calc(16.67% + 1rem);
            height: 1px;
            background: linear-gradient(90deg, var(--cy), var(--pu), var(--gn));
            opacity: .3
        }

        .pstep {
            text-align: center;
            opacity: 0;
            transform: translateY(20px)
        }

        .pnum {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin: 0 auto 1.25rem;
            border: 2px solid rgba(0, 212, 255, .3);
            background: rgba(0, 212, 255, .06);
            color: var(--cy)
        }

        .ptit {
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: .6rem
        }

        .pdesc {
            color: var(--mu);
            font-size: .875rem;
            line-height: 1.65
        }

        /* ── CTA ── */
        #cta {
            padding: 7rem 4rem;
            text-align: center;
            background: var(--bg);
            position: relative;
            overflow: hidden
        }

        #cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 212, 255, .08) 0%, rgba(124, 58, 237, .05) 50%, transparent 70%);
            pointer-events: none
        }

        /* animated border */
        #cta-box {
            position: relative;
            z-index: 2;
            background: var(--bg2);
            border: 1px solid rgba(0, 212, 255, .2);
            border-radius: 24px;
            padding: 4rem;
            max-width: 700px;
            margin: 0 auto
        }

        #cta-box::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(0, 212, 255, .3), rgba(124, 58, 237, .3), rgba(16, 185, 129, .3));
            z-index: -1;
            animation: border-spin 4s linear infinite
        }

        @keyframes border-spin {
            0% {
                filter: hue-rotate(0deg)
            }

            100% {
                filter: hue-rotate(360deg)
            }
        }

        .ctat {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            letter-spacing: -.03em;
            margin-bottom: 1rem
        }

        .ctad {
            color: var(--mu);
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.7
        }

        #ctabtn {
            display: inline-flex;
            align-items: center;
            gap: .75rem;
            background: linear-gradient(135deg, var(--cy), var(--pu));
            color: #fff;
            padding: 1rem 2.4rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: .95rem;
            text-decoration: none;
            box-shadow: 0 6px 30px var(--cyg);
            transition: transform .2s, box-shadow .2s
        }

        #ctabtn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px var(--cyg)
        }

        .ctasub {
            margin-top: 1.25rem;
            color: var(--mu);
            font-size: .85rem
        }

        /* ── FOOTER ── */
        footer {
            padding: 2rem 4rem;
            border-top: 1px solid var(--br);
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .flo {
            font-size: 1.1rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--cy), var(--pu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .fcp {
            color: var(--mu);
            font-size: .78rem
        }

        /* ── MOBILE MINI DASHBOARD KEYFRAMES ── */
        @keyframes db-bar-grow {
            from {
                transform: scaleY(0)
            }

            to {
                transform: scaleY(1)
            }
        }

        @keyframes db-row-appear {
            from {
                opacity: 0;
                transform: translateX(-10px)
            }

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

        @keyframes db-pulse-num {

            0%,
            100% {
                color: var(--cy)
            }

            50% {
                color: var(--am)
            }
        }

        /* ── MOBILE MINI DASHBOARD CONTAINER ── */
        #mob-db-mini {
            display: none;
            background: var(--bg3);
            border: 1px solid var(--br);
            border-radius: 14px;
            overflow: hidden;
            margin-top: 1.5rem;
            box-shadow: 0 16px 50px rgba(0, 0, 0, .45)
        }

        .mdb-topbar {
            height: 34px;
            background: var(--bg);
            border-bottom: 1px solid var(--br);
            display: flex;
            align-items: center;
            padding: 0 .7rem;
            gap: .4rem
        }

        .mdb-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%
        }

        .mdb-title {
            font-size: .6rem;
            color: var(--mu);
            margin-left: auto;
            font-weight: 600
        }

        .mdb-body {
            padding: .7rem;
            display: flex;
            flex-direction: column;
            gap: .6rem
        }

        .mdb-stats-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: .5rem
        }

        .mdb-stat {
            background: var(--bg2);
            border: 1px solid var(--br);
            border-radius: 8px;
            padding: .5rem .4rem;
            text-align: center
        }

        .mdb-stat-label {
            font-size: .45rem;
            color: var(--mu);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: .2rem
        }

        .mdb-stat-val {
            font-size: .9rem;
            font-weight: 900;
            animation: db-pulse-num 3s ease-in-out infinite
        }

        .mdb-chart {
            background: var(--bg2);
            border: 1px solid var(--br);
            border-radius: 8px;
            padding: .5rem .7rem
        }

        .mdb-chart-title {
            font-size: .55rem;
            color: var(--mu);
            margin-bottom: .5rem;
            font-weight: 600
        }

        .mdb-bars {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 48px
        }

        .mdb-bar {
            flex: 1;
            border-radius: 3px 3px 0 0;
            background: linear-gradient(to top, rgba(0, 212, 255, .5), rgba(0, 212, 255, .2));
            transform-origin: bottom;
            animation: db-bar-grow .6s ease-out forwards;
            animation-delay: var(--d)
        }

        .mdb-rows {
            display: flex;
            flex-direction: column;
            gap: .35rem
        }

        .mdb-row {
            display: flex;
            align-items: center;
            gap: .5rem;
            background: var(--bg2);
            border-radius: 6px;
            padding: .35rem .5rem;
            opacity: 0;
            animation: db-row-appear .4s ease-out forwards;
            animation-delay: var(--d)
        }

        .mdb-avatar {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--cy);
            opacity: .4;
            flex-shrink: 0
        }

        .mdb-row-name {
            font-size: .65rem;
            flex: 1;
            color: var(--mu)
        }

        .mdb-badge {
            font-size: .5rem;
            font-weight: 700;
            padding: .15rem .4rem;
            border-radius: 999px;
            background: rgba(16, 185, 129, .15);
            color: var(--gr)
        }

        /* ── MODAL EJEMPLOS ── */
        #examples-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2000;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(12px);
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            color: var(--mu);
            font-size: .78rem
        }

        /* ── MOBILE MINI DASHBOARD KEYFRAMES ── */
        @keyframes db-bar-grow {
            from {
                transform: scaleY(0)
            }

            to {
                transform: scaleY(1)
            }
        }

        @keyframes db-row-appear {
            from {
                opacity: 0;
                transform: translateX(-10px)
            }

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

        @keyframes db-pulse-num {

            0%,
            100% {
                color: var(--cy)
            }

            50% {
                color: var(--am)
            }
        }

        /* ── MOBILE MINI DASHBOARD CONTAINER ── */
        #mob-db-mini {
            display: none;
            background: var(--bg3);
            border: 1px solid var(--br);
            border-radius: 14px;
            overflow: hidden;
            margin-top: 1.5rem;
            box-shadow: 0 16px 50px rgba(0, 0, 0, .45)
        }

        .mdb-topbar {
            height: 34px;
            background: var(--bg);
            border-bottom: 1px solid var(--br);
            display: flex;
            align-items: center;
            padding: 0 .7rem;
            gap: .4rem
        }

        .mdb-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%
        }

        .mdb-title {
            font-size: .6rem;
            color: var(--mu);
            margin-left: auto;
            font-weight: 600
        }

        .mdb-body {
            padding: .7rem;
            display: flex;
            flex-direction: column;
            gap: .6rem
        }

        .mdb-stats-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: .5rem
        }

        .mdb-stat {
            background: var(--bg2);
            border: 1px solid var(--br);
            border-radius: 8px;
            padding: .5rem .4rem;
            text-align: center
        }

        .mdb-stat-label {
            font-size: .45rem;
            color: var(--mu);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: .2rem
        }

        .mdb-stat-val {
            font-size: .9rem;
            font-weight: 900;
            animation: db-pulse-num 3s ease-in-out infinite
        }

        .mdb-chart {
            background: var(--bg2);
            border: 1px solid var(--br);
            border-radius: 8px;
            padding: .5rem .7rem
        }

        .mdb-chart-title {
            font-size: .55rem;
            color: var(--mu);
            margin-bottom: .5rem;
            font-weight: 600
        }

        .mdb-bars {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 48px
        }

        .mdb-bar {
            flex: 1;
            border-radius: 3px 3px 0 0;
            background: linear-gradient(to top, rgba(0, 212, 255, .5), rgba(0, 212, 255, .2));
            transform-origin: bottom;
            animation: db-bar-grow .6s ease-out forwards;
            animation-delay: var(--d)
        }

        .mdb-rows {
            display: flex;
            flex-direction: column;
            gap: .35rem
        }

        .mdb-row {
            display: flex;
            align-items: center;
            gap: .5rem;
            background: var(--bg2);
            border-radius: 6px;
            padding: .35rem .5rem;
            opacity: 0;
            animation: db-row-appear .4s ease-out forwards;
            animation-delay: var(--d)
        }

        .mdb-avatar {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--cy);
            opacity: .4;
            flex-shrink: 0
        }

        .mdb-row-name {
            font-size: .65rem;
            flex: 1;
            color: var(--mu)
        }

        .mdb-badge {
            font-size: .5rem;
            font-weight: 700;
            padding: .15rem .4rem;
            border-radius: 999px;
            background: rgba(16, 185, 129, .15);
            color: var(--gr)
        }

        /* ── MODAL EJEMPLOS ── */
        #examples-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2000;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(12px);
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #examples-modal.show {
            display: flex;
            opacity: 1;
        }

        .eml-content {
            background: var(--bg2);
            border: 1px solid var(--br);
            border-radius: 20px;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 2.5rem;
            position: relative;
            transform: translateY(20px) scale(0.95);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.15);
        }

        #examples-modal.show .eml-content {
            transform: translateY(0) scale(1);
        }

        .eml-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--mu);
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .eml-close:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .eml-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--cy), var(--pu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .eml-desc {
            color: var(--mu);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .eml-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .eml-card {
            background: var(--bg3);
            border: 1px solid var(--br);
            border-radius: 16px;
            padding: 1.5rem;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .eml-card:hover {
            border-color: rgba(0, 212, 255, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.08);
        }

        .eml-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--cy), var(--pu));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .eml-card:hover::before {
            opacity: 1;
        }

        .eml-card.c-crm::before {
            background: linear-gradient(90deg, #7c3aed, #f72585);
        }

        .eml-card.c-book::before {
            background: linear-gradient(90deg, #000000, #333333);
        }

        /* Apple vibe */
        .eml-card.c-inv::before {
            background: linear-gradient(90deg, #10b981, #f59e0b);
        }

        /* Industrial vibe */

        .eml-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .eml-card.c-crm .eml-icon {
            color: #f72585;
        }

        .eml-card.c-book .eml-icon {
            color: #e2e8f0;
        }

        /* Apple white */
        .eml-card.c-inv .eml-icon {
            color: #10b981;
        }

        .eml-name {
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
        }

        .eml-cdesc {
            color: var(--mu);
            font-size: 0.8rem;
            line-height: 1.5;
            flex: 1;
        }

        .eml-click {
            margin-top: 1.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--cy);
            display: flex;
            align-items: center;
            gap: 0.4rem;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .eml-card:hover .eml-click {
            opacity: 1;
        }

        /* ── MOBILE ── */
        @media(max-width:860px) {
            #mprog {
                display: block
            }

            #cglow {
                display: none
            }

            #nav {
                padding: 1rem 1.5rem
            }

            .nli {
                display: none
            }

            #mob-dots3 {
                display: flex
            }

            .mob-network-wrap {
                display: flex
            }

            .mob-swipe-hint {
                display: flex
            }

            .mob-dash-timeline {
                display: flex
            }

            #mob-db-mini {
                display: block
            }

            #hero {
                grid-template-columns: 1fr;
                padding: 6rem 1.5rem 3rem;
                text-align: center
            }

            .hero-visual {
                display: none
            }

            .htit {
                font-size: 2rem
            }

            .hact {
                flex-direction: column;
                align-items: center;
                gap: .75rem
            }

            .btp,
            .bts,
            #open-examples-btn {
                width: 100%;
                justify-content: center;
                padding: .9rem 1.5rem
            }

            /* ── HSCROLL: native touch-scroll on mobile ── */
            #hscroll {
                height: auto !important;
                min-height: auto !important;
                overflow: visible
            }

            .hs-sticky {
                position: static !important;
                top: auto !important;
                height: auto;
                min-height: auto;
                overflow: visible;
                padding: 3rem 1.5rem 2rem
            }

            .hs-viewport {
                overflow: visible
            }

            .hs-track {
                transform: none !important;
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                overflow-y: visible;
                scroll-snap-type: x mandatory;
                gap: 1rem;
                padding: .5rem .25rem 1.5rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none
            }

            .hs-track::-webkit-scrollbar {
                display: none
            }

            .sys-card {
                flex-shrink: 0;
                width: 80vw;
                height: auto;
                min-height: 320px;
                scroll-snap-align: center;
                opacity: 1 !important;
                transform: none !important
            }

            /* Show full card content on mobile */
            .sys-desc {
                display: block !important;
                opacity: 1 !important;
                max-height: none !important
            }

            .sys-tags {
                display: flex !important;
                opacity: 1 !important
            }

            .sys-mockup {
                display: block !important;
                opacity: 1 !important
            }

            .hs-hint {
                display: none
            }

            .hs-dots {
                display: flex
            }

            /* ── DASHBOARD: replaced with compact .mob-dash-timeline + mini UI ── */
            .db-sticky {
                grid-template-columns: 1fr;
                padding: 0 1.5rem;
                align-items: start;
                gap: 0
            }

            .db-ui {
                display: none
            }

            .db-steps {
                margin-top: .5rem
            }

            .db-step {
                opacity: 1 !important
            }

            #features {
                padding: 5rem 1.5rem
            }

            .fgrid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1rem;
                padding: .5rem .25rem 1.5rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none
            }

            .fgrid::-webkit-scrollbar {
                display: none
            }

            .fc {
                flex-shrink: 0;
                width: 78vw;
                scroll-snap-align: center;
                opacity: 1;
                transform: none
            }

            #stats {
                padding: 4rem 1.5rem
            }

            .sgrid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem
            }

            #process {
                padding: 5rem 1.5rem
            }

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

            .proc-grid::before {
                display: none
            }

            #cta {
                padding: 5rem 1.5rem
            }

            #cta-box {
                padding: 2.5rem 1.5rem
            }

            footer {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                padding: 1.5rem
            }

            body {
                padding-bottom: 4.5rem
            }
        }

        @media(max-width:480px) {
            .htit {
                font-size: 1.75rem
            }

            .sys-card {
                width: 88vw
            }

            .fc {
                width: 88vw
            }

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

        @keyframes i3-slide-up {
            from {
                opacity: 0;
                transform: translateY(36px)
            }

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

        @keyframes i3-slide-right {
            from {
                opacity: 0;
                transform: translateX(-30px)
            }

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

        @keyframes i3-glow-pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 212, 255, .5)
            }

            50% {
                box-shadow: 0 0 0 14px rgba(0, 212, 255, 0)
            }
        }

        @keyframes i3-wa-pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
            }

            50% {
                box-shadow: 0 0 0 16px rgba(37, 211, 102, 0)
            }
        }

        @keyframes i3-fab-in {
            0% {
                transform: translateY(80px) scale(0.3);
                opacity: 0
            }

            60% {
                transform: translateY(-8px) scale(1.1)
            }

            80% {
                transform: translateY(4px) scale(.95)
            }

            100% {
                transform: translateY(0) scale(1);
                opacity: 1
            }
        }

        @keyframes i3-orbit-small {
            from {
                transform: rotate(0deg) translateX(32px) rotate(0deg)
            }

            to {
                transform: rotate(360deg) translateX(32px) rotate(-360deg)
            }
        }

        @keyframes i3-orbit-small-b {
            from {
                transform: rotate(180deg) translateX(22px) rotate(-180deg)
            }

            to {
                transform: rotate(540deg) translateX(22px) rotate(-540deg)
            }
        }

        @keyframes i3-card-flip {
            from {
                opacity: 0;
                transform: perspective(600px) rotateX(20deg) translateY(25px)
            }

            to {
                opacity: 1;
                transform: perspective(600px) rotateX(0deg) translateY(0)
            }
        }

        @keyframes i3-step-pop {
            0% {
                transform: scale(0.7) translateX(-15px);
                opacity: 0
            }

            60% {
                transform: scale(1.05) translateX(3px)
            }

            100% {
                transform: scale(1) translateX(0);
                opacity: 1
            }
        }

        @keyframes i3-swipe-hint {

            0%,
            100% {
                transform: translateX(0);
                opacity: .6
            }

            50% {
                transform: translateX(10px);
                opacity: 1
            }
        }

        @keyframes i3-timeline-draw {
            from {
                height: 0
            }

            to {
                height: 100%
            }
        }

        /* ── MOBILE WA FAB (index3) ── */
        #wa-fab3 {
            display: none;
            position: fixed;
            bottom: 5.5rem;
            right: 1.2rem;
            z-index: 999;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border: none;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
            animation: i3-fab-in .7s cubic-bezier(.16, 1, .3, 1) forwards, i3-wa-pulse 2.5s ease-in-out 1s infinite;
            text-decoration: none;
            opacity: 0
        }

        #wa-fab3.show {
            display: flex;
            opacity: 1
        }

        #wa-fab3 svg {
            width: 28px;
            height: 28px
        }

        /* ── NEW FIXED WA BUTTON ── */
        .wa-new-btn {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            z-index: 1000;
            background: #25d366;
            color: #fff;
            padding: 0.8rem 1.4rem;
            border-radius: 999px;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            animation: i3-fab-in 0.8s ease forwards;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .wa-new-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
            color: #fff;
        }
        .wa-new-btn svg {
            width: 22px;
            height: 22px;
            fill: #fff;
        }

        /* ── MOBILE BOTTOM DOTS (index3) ── */
        #mob-dots3 {
            display: none;
            position: fixed;
            bottom: 1.4rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 998;
            gap: .45rem;
            align-items: center;
            background: rgba(7, 12, 20, .75);
            border: 1px solid rgba(0, 212, 255, .12);
            border-radius: 999px;
            padding: .5rem .8rem;
            backdrop-filter: blur(16px)
        }

        .mdot3 {
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .18);
            transition: width .4s cubic-bezier(.16, 1, .3, 1), background .4s;
            width: 8px;
            cursor: pointer
        }

        .mdot3.on {
            width: 28px;
            background: var(--cy);
            box-shadow: 0 0 10px rgba(0, 212, 255, .4)
        }

        .mdot3:nth-child(2).on {
            background: var(--pu);
            box-shadow: 0 0 10px rgba(124, 58, 237, .5)
        }

        .mdot3:nth-child(3).on {
            background: var(--gr);
            box-shadow: 0 0 10px rgba(16, 185, 129, .5)
        }

        .mdot3:nth-child(4).on {
            background: var(--am);
            box-shadow: 0 0 10px rgba(245, 158, 11, .4)
        }

        .mdot3:nth-child(5).on {
            background: var(--cy);
            box-shadow: 0 0 10px rgba(0, 212, 255, .4)
        }

        /* Mobile mini network SVG */
        .mob-network-wrap {
            display: none;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 130px;
            height: 130px;
            margin: 1.5rem auto 0
        }

        .mob-net-core {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: rgba(0, 212, 255, .08);
            border: 2px solid rgba(0, 212, 255, .4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .5rem;
            font-weight: 900;
            letter-spacing: .06em;
            color: var(--cy);
            text-align: center;
            line-height: 1.2;
            animation: i3-glow-pulse 2s ease-in-out infinite
        }

        .mob-net-orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 14px;
            height: 14px;
            margin: -7px 0 0 -7px;
            border-radius: 50%;
            background: var(--cy);
            animation: i3-orbit-small 3s linear infinite;
            box-shadow: 0 0 8px rgba(0, 212, 255, .6)
        }

        .mob-net-orbit-b {
            background: var(--pu);
            width: 10px;
            height: 10px;
            margin: -5px 0 0 -5px;
            animation: i3-orbit-small-b 4.5s linear infinite;
            box-shadow: 0 0 6px rgba(124, 58, 237, .6)
        }

        /* Mobile swipe hint arrow */
        .mob-swipe-hint {
            display: none;
            align-items: center;
            gap: .5rem;
            color: rgba(0, 212, 255, .6);
            font-size: .75rem;
            font-weight: 600;
            margin: .75rem auto 0;
            width: fit-content;
            animation: i3-swipe-hint 1.4s ease-in-out infinite
        }

        .mob-swipe-hint svg {
            width: 18px;
            height: 18px
        }

        /* Mobile vertical dashboard timeline */
        .mob-dash-timeline {
            display: none;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding: 1.5rem 0
        }

        .mob-dash-timeline::before {
            content: '';
            position: absolute;
            left: 19px;
            top: 1.5rem;
            bottom: 1.5rem;
            width: 2px;
            background: rgba(0, 212, 255, .15);
            border-radius: 1px
        }

        .mob-tl-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: .75rem 0;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity .5s ease, transform .5s ease
        }

        .mob-tl-item.mob-tl-visible {
            opacity: 1;
            transform: translateX(0)
        }

        .mob-tl-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 212, 255, .08);
            border: 1.5px solid rgba(0, 212, 255, .3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
            position: relative;
            z-index: 1
        }

        .mob-tl-item:nth-child(2) .mob-tl-icon {
            border-color: rgba(124, 58, 237, .4);
            background: rgba(124, 58, 237, .08)
        }

        .mob-tl-item:nth-child(3) .mob-tl-icon {
            border-color: rgba(16, 185, 129, .4);
            background: rgba(16, 185, 129, .08)
        }

        .mob-tl-item:nth-child(4) .mob-tl-icon {
            border-color: rgba(245, 158, 11, .4);
            background: rgba(245, 158, 11, .08)
        }

        .mob-tl-title {
            font-weight: 700;
            font-size: .9rem;
            margin-bottom: .2rem
        }

        .mob-tl-desc {
            font-size: .78rem;
            color: var(--mu);
            line-height: 1.5
        }

        /* Mobile progress bar enhancement */
        #mprog {
            height: 4px !important;
            background: rgba(0, 212, 255, .1)
        }

        #mfill {
            box-shadow: 0 0 8px rgba(0, 212, 255, .6)
        }

        /* Reveal helper */
        .i3-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .55s ease, transform .55s ease
        }

        .i3-reveal.i3-visible {
            opacity: 1;
            transform: translateY(0)
        }

        /* ── MOBILE ── */
        @media(max-width:860px) {
            #mprog {
                display: block
            }

            #cglow {
                display: none
            }

            #nav {
                padding: 1rem 1.5rem
            }

            .nli {
                display: none
            }

            #mob-dots3 {
                display: flex
            }

            .wa-new-btn {
                bottom: 5.5rem;
                left: 1.2rem;
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }

            .mob-network-wrap {
                display: flex
            }

            .mob-swipe-hint {
                display: flex
            }

            .mob-dash-timeline {
                display: flex
            }

            #hero {
                grid-template-columns: 1fr;
                padding: 6rem 1.5rem 3rem;
                text-align: center
            }

            .hero-visual {
                display: none
            }

            .htit {
                font-size: 2rem
            }

            .hact {
                flex-direction: column;
                align-items: center;
                gap: .75rem
            }

            .btp,
            .bts,
            #open-examples-btn {
                width: 100%;
                justify-content: center;
                padding: .9rem 1.5rem
            }

            .hs-sticky {
                padding: 0 1.5rem
            }

            .hs-track {
                gap: 1rem
            }

            .sys-card {
                width: 270px;
                height: 350px
            }

            #dashboard {
                min-height: auto !important;
                height: auto;
            }

            .db-sticky {
                position: static !important;
                height: auto;
                min-height: auto;
                grid-template-columns: 1fr;
                padding: 0 1.5rem;
                align-items: start;
                gap: 0;
            }

            .db-ui {
                display: none
            }

            .db-steps {
                margin-top: 1.5rem;
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.5rem;
                margin-bottom: 2rem;
            }

            .db-step {
                opacity: 0.7 !important;
                padding: 1rem;
                border: 1px solid rgba(255, 255, 255, 0.05);
                border-radius: 12px;
                background: rgba(255, 255, 255, 0.02);
                transition: all 0.3s ease;
                cursor: pointer;
            }

            .db-step.on {
                opacity: 1 !important;
                border-color: rgba(32, 201, 151, 0.3);
                background: rgba(32, 201, 151, 0.05);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }

            #mob-db-panels {
                position: relative;
                width: 100%;
            }

            .mob-db-panel {
                display: none;
                animation: fadeIn 0.4s ease forwards;
            }

            .mob-db-panel.active {
                display: block;
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }

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

            #features {
                padding: 5rem 1.5rem
            }

            .fgrid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1rem;
                padding: .5rem .25rem 1.5rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none
            }

            .fgrid::-webkit-scrollbar {
                display: none
            }

            .fc {
                flex-shrink: 0;
                width: 78vw;
                scroll-snap-align: center;
                opacity: 1;
                transform: none
            }

            #stats {
                padding: 4rem 1.5rem
            }

            .sgrid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem
            }

            #process {
                padding: 5rem 1.5rem
            }

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

            .proc-grid::before {
                display: none
            }

            #cta {
                padding: 5rem 1.5rem
            }

            #cta-box {
                padding: 2.5rem 1.5rem
            }

            footer {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                padding: 1.5rem
            }

            body {
                padding-bottom: 4.5rem
            }
        }

        @media(max-width:480px) {
            .htit {
                font-size: 1.75rem
            }

            .sys-card {
                width: 250px;
                height: 330px
            }

            .fc {
                width: 88vw
            }

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

            .eml-content {
                padding: 1.5rem;
            }

            .eml-title {
                font-size: 1.4rem;
            }

            .eml-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                max-height: 60vh;
                overflow-y: auto;
                padding-right: 0.5rem;
            }
        }

        
            .pb-content {
                flex-direction: column;
                gap: 0.4rem;
                text-align: center;
            }
            .pb-left {
                font-size: 0.8rem;
            }
            .pb-icon-wrap {
                width: 24px;
                height: 24px;
            }
            .pb-icon-wrap svg {
                width: 12px;
                height: 12px;
            }
            .pb-right {
                justify-content: center;
                width: 100%;
            }
            .pb-cta {
                width: 100%;
                text-align: center;
            }
            .pb-date {
                position: static;
                margin-top: 0.2rem;
                font-size: 0.65rem;
            }
        }
    
        /* ── PROMO BANNER ── */
        #promo-banner {
            position: fixed;
            top: 73px; /* Justo debajo del navbar de index3 */
            left: 0;
            right: 0;
            z-index: 998;
            background: linear-gradient(270deg, rgba(7, 12, 20, 0.95), rgba(7, 12, 20, 0.98), rgba(0, 212, 255, 0.05), rgba(7, 12, 20, 0.95));
            background-size: 300% 300%;
            animation: fluidPromo 8s ease infinite;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            padding: 0.4rem 4rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
        }
        @keyframes fluidPromo {
            0% { background-position: 0% 50% }
            50% { background-position: 100% 50% }
            100% { background-position: 0% 50% }
        }
        .pb-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            position: relative;
        }
        .pb-left {
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: linear-gradient(90deg, var(--cy), var(--pu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            flex: 1;
        }
        .pb-center {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        .pb-icon-wrap {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0, 212, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
            animation: pbPulse 2s infinite;
        }
        @keyframes pbPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 212, 255, 0.4); }
            50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
        }
        .pb-icon-wrap svg {
            width: 16px;
            height: 16px;
            color: var(--cy);
        }
        .pb-right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        .pb-cta {
            display: inline-block;
            padding: 0.35rem 1rem;
            background: rgba(255,255,255,0.05);
            color: var(--tx);
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 6px;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.15);
            transition: all 0.2s;
        }
        .pb-cta:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: var(--cy);
            color: var(--cy);
        }
        .pb-date {
            position: absolute;
            bottom: -0.3rem;
            right: 0;
            font-size: 0.65rem;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
        }
        @media (max-width: 860px) {
            #promo-banner {
                padding: 0.5rem 1.5rem;
                top: 56px;
            }
            .pb-content {
                flex-direction: column;
                gap: 0.4rem;
                text-align: center;
                padding-bottom: 0.6rem;
            }
            .pb-left { font-size: 0.8rem; }
            .pb-icon-wrap { width: 28px; height: 28px; }
            .pb-icon-wrap svg { width: 14px; height: 14px; }
            .pb-date { bottom: -0.5rem; right: 0; width: 100%; text-align: center; }
        }

        /* ── SECURE LEAD FORM ── */
        .secure-lead-form {
            margin-top: 3rem;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            max-width: 550px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            opacity: 0;
            transform: translateY(20px);
            animation: slfFadeIn 0.8s ease forwards 0.5s;
            position: relative;
            overflow: hidden;
            z-index: 10;
        }

        .secure-lead-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
            transform: skewX(-20deg);
            animation: slfShine 6s infinite;
        }

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

        @keyframes slfShine {
            0% { left: -100%; }
            20% { left: 200%; }
            100% { left: 200%; }
        }

        .slf-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--cy, #00d4ff);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .slf-icon {
            width: 14px;
            height: 14px;
        }

        .slf-body {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .slf-input-group {
            flex: 1;
            min-width: 140px;
        }

        .slf-input-group input {
            width: 100%;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #fff;
            outline: none;
            transition: all 0.3s;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
        }

        .slf-input-group input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .slf-input-group input:focus {
            background: rgba(0, 0, 0, 0.4);
            border-color: var(--cy, #00d4ff);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
        }

        .slf-btn {
            background: var(--cy, #00d4ff);
            color: #000;
            border: none;
            border-radius: 10px;
            padding: 0.75rem 1.25rem;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
        }

        .slf-btn:hover {
            transform: translateY(-2px);
            background: #fff;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .slf-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
        }

        .slf-btn:hover svg {
            transform: translateX(3px);
        }

        .slf-msg {
            display: none;
            margin-top: 0.75rem;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.5rem;
            border-radius: 6px;
            text-align: center;
        }

        .slf-msg.success {
            display: block;
            color: #4ade80;
            background: rgba(74, 222, 128, 0.1);
            border: 1px solid rgba(74, 222, 128, 0.2);
        }

        .slf-msg.error {
            display: block;
            color: #f87171;
            background: rgba(248, 113, 113, 0.1);
            border: 1px solid rgba(248, 113, 113, 0.2);
        }
        
        @media (max-width: 600px) {
            .slf-body { flex-direction: column; align-items: stretch; }
            .secure-lead-form { margin-top: 2rem; padding: 1rem; }
        }

        /* ── IFRAME MODAL ── */
        #iframe-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2000;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(12px);
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        #iframe-modal.show {
            display: flex;
            opacity: 1;
        }
        .iframe-content {
            background: #FFFFFF;
            border-radius: 20px;
            width: 95%;
            height: 90vh;
            max-width: 1400px;
            position: relative;
            transform: translateY(20px) scale(0.95);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.3);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        #iframe-modal.show .iframe-content {
            transform: translateY(0) scale(1);
        }
        .iframe-content iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 20px;
            background: #ffffff;
        }
