:root {
            --bg: #faf8f4;
            --ink: #1a1714;
            --ink-soft: #3d3830;
            --muted: #8a8279;
            --accent: #0055ff;
            --accent-light: #e8f0ff;
            --coral: #ff5a3c;
            --coral-light: #fff0ec;
            --mint: #00b87a;
            --mint-light: #e6f9f2;
            --amber: #f59e0b;
            --amber-light: #fff8e6;
            --violet: #7c3aed;
            --violet-light: #f3eeff;
            --line: rgba(26, 23, 20, .07);
            --line-dark: rgba(26, 23, 20, .14);
            --card: #ffffff;
            --shadow-sm: 0 1px 2px rgba(26, 23, 20, .04);
            --shadow: 0 1px 3px rgba(26, 23, 20, .04), 0 8px 28px rgba(26, 23, 20, .07);
            --shadow-lg: 0 4px 16px rgba(26, 23, 20, .05), 0 24px 64px rgba(26, 23, 20, .11);
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --ease: cubic-bezier(.22, 1, .36, 1);
            --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
        }
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
        }
        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        ::selection {
            background: var(--accent);
            color: #fff;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s var(--ease);
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 clamp(18px, 3.5vw, 44px);
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: 'Instrument Serif', serif;
            font-weight: 400;
            letter-spacing: -.02em;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(18px) saturate(1.5);
            -webkit-backdrop-filter: blur(18px) saturate(1.5);
            background: rgba(250, 248, 244, .78);
            border-bottom: 1px solid var(--line);
            transition: box-shadow .35s ease;
        }
        nav.scrolled {
            box-shadow: 0 1px 10px rgba(26, 23, 20, .07);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 62px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Instrument Serif', serif;
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--ink);
            letter-spacing: -.01em;
            z-index: 2;
        }
        .logo-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--accent), var(--violet));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 85, 255, .22);
            transition: transform .35s var(--ease-bounce);
        }
        .logo:hover .logo-icon {
            transform: rotate(-6deg) scale(1.1);
        }
        .logo-icon svg {
            width: 16px;
            height: 16px;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-right a {
            padding: 8px 15px;
            border-radius: 8px;
            font-size: .86rem;
            font-weight: 500;
            color: var(--ink-soft);
            transition: all .22s ease;
        }
        .nav-right a:hover {
            background: rgba(26, 23, 20, .04);
            color: var(--ink);
        }
        .nav-right a.active {
            background: var(--accent-light);
            color: var(--accent);
            font-weight: 600;
        }
        .mobile-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ink);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 4px;
            z-index: 2;
        }

        /* HERO */
        .hero {
            padding-top: calc(62px + clamp(50px, 7vh, 100px));
            padding-bottom: clamp(50px, 7vh, 100px);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        .hero-bg-glow {
            position: absolute;
            pointer-events: none;
            border-radius: 50%;
            filter: blur(80px);
            opacity: .5;
            z-index: 0;
        }
        .hero-bg-glow.g1 {
            width: 500px;
            height: 500px;
            background: rgba(0, 85, 255, .07);
            top: -180px;
            right: -120px;
            animation: floatGlow 8s ease-in-out infinite;
        }
        .hero-bg-glow.g2 {
            width: 350px;
            height: 350px;
            background: rgba(124, 58, 237, .06);
            bottom: -100px;
            left: -80px;
            animation: floatGlow 10s ease-in-out infinite reverse;
        }
        @keyframes floatGlow {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -25px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(.92);
            }
        }
        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(36px, 5vw, 70px);
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-left .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 14px 5px 7px;
            border-radius: 100px;
            background: var(--card);
            border: 1px solid var(--line-dark);
            font-size: .8rem;
            font-weight: 500;
            color: var(--ink-soft);
            margin-bottom: 26px;
            box-shadow: var(--shadow-sm);
            animation: fadeUp .6s var(--ease) forwards;
            opacity: 0;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(14px);
            }
        }
        .badge .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--mint);
            box-shadow: 0 0 8px rgba(0, 184, 122, .45);
            animation: dotPulse 2.2s ease infinite;
        }
        @keyframes dotPulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: .5;
                transform: scale(1.35);
            }
        }
        .badge .badge-tag {
            padding: 2px 8px;
            border-radius: 5px;
            background: var(--accent-light);
            color: var(--accent);
            font-size: .7rem;
            font-weight: 600;
            font-family: 'JetBrains Mono', monospace;
        }
        .hero-left h1 {
            font-size: clamp(2.8rem, 5.5vw, 5rem);
            line-height: 1;
            margin-bottom: 22px;
            color: var(--ink);
            animation: fadeUp .6s var(--ease) .08s forwards;
            opacity: 0;
        }
        .hero-left h1 em {
            font-style: italic;
            background: linear-gradient(135deg, var(--accent) 20%, var(--violet) 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-left h1 .wave {
            display: inline-block;
            animation: waveAnim 2.6s ease-in-out infinite;
            transform-origin: 70% 70%;
            -webkit-text-fill-color: initial;
        }
        @keyframes waveAnim {
            0%,
            100% {
                transform: rotate(0);
            }
            25% {
                transform: rotate(13deg);
            }
            50% {
                transform: rotate(-7deg);
            }
            75% {
                transform: rotate(9deg);
            }
        }
        .hero-left .desc {
            font-size: 1.05rem;
            color: var(--muted);
            max-width: 430px;
            line-height: 1.75;
            margin-bottom: 36px;
            animation: fadeUp .6s var(--ease) .16s forwards;
            opacity: 0;
        }
        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 40px;
            animation: fadeUp .6s var(--ease) .24s forwards;
            opacity: 0;
        }
        .btn-solid {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 26px;
            border-radius: 12px;
            background: var(--ink);
            color: #fff;
            font-weight: 600;
            font-size: .93rem;
            font-family: 'DM Sans', sans-serif;
            border: none;
            cursor: pointer;
            transition: all .3s var(--ease);
            box-shadow: 0 2px 8px rgba(26, 23, 20, .14);
            white-space: nowrap;
        }
        .btn-solid:hover {
            background: var(--accent);
            box-shadow: 0 6px 22px rgba(0, 85, 255, .32);
            transform: translateY(-2px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 26px;
            border-radius: 12px;
            background: var(--card);
            color: var(--ink);
            font-weight: 600;
            font-size: .93rem;
            font-family: 'DM Sans', sans-serif;
            border: 1.5px solid var(--line-dark);
            cursor: pointer;
            transition: all .3s var(--ease);
            white-space: nowrap;
        }
        .btn-outline:hover {
            border-color: var(--accent);
            background: var(--accent-light);
            color: var(--accent);
            transform: translateY(-2px);
        }
        .hero-trust {
            display: flex;
            align-items: center;
            gap: 20px;
            animation: fadeUp .6s var(--ease) .32s forwards;
            opacity: 0;
        }
        .hero-trust .avatars {
            display: flex;
        }
        .hero-trust .avatars span {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid var(--bg);
            margin-left: -7px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .68rem;
            font-weight: 700;
            color: #fff;
        }
        .hero-trust .avatars span:first-child {
            margin-left: 0;
        }
        .hero-trust .avatars span:nth-child(1) {
            background: var(--accent);
        }
        .hero-trust .avatars span:nth-child(2) {
            background: var(--coral);
        }
        .hero-trust .avatars span:nth-child(3) {
            background: var(--mint);
        }
        .hero-trust .avatars span:nth-child(4) {
            background: var(--violet);
        }
        .hero-trust .avatars span:nth-child(5) {
            background: var(--amber);
        }
        .hero-trust .trust-text {
            font-size: .83rem;
            color: var(--muted);
        }
        .hero-trust .trust-text strong {
            color: var(--ink);
            font-weight: 600;
        }
        .hero-right {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            min-height: 420px;
        }
        .hero-visual {
            position: relative;
            width: 100%;
            max-width: 480px;
            aspect-ratio: 1/1;
        }
        .hero-orb {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, rgba(0, 85, 255, .14), rgba(124, 58, 237, .09), transparent 70%);
            animation: orbBreath 4.5s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes orbBreath {
            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: .7;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 1;
            }
        }
        .hero-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1.5px solid rgba(0, 85, 255, .12);
            pointer-events: none;
            animation: ringSpin 18s linear infinite;
        }
        .hero-ring.r1 {
            width: 220px;
            height: 220px;
            animation-duration: 16s;
        }
        .hero-ring.r2 {
            width: 300px;
            height: 300px;
            animation-duration: 22s;
            animation-direction: reverse;
            border-color: rgba(124, 58, 237, .1);
        }
        .hero-ring.r3 {
            width: 380px;
            height: 380px;
            animation-duration: 28s;
            border-color: rgba(0, 184, 122, .08);
            border-style: dashed;
        }
        @keyframes ringSpin {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }
        .hero-float-tag {
            position: absolute;
            z-index: 3;
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 10px 15px;
            box-shadow: var(--shadow);
            font-size: .8rem;
            display: flex;
            align-items: center;
            gap: 7px;
            pointer-events: none;
            animation: tagFloat 5.5s ease-in-out infinite;
            white-space: nowrap;
        }
        .hero-float-tag.ft1 {
            top: 6%;
            right: 8%;
            animation-delay: 0s;
        }
        .hero-float-tag.ft2 {
            bottom: 14%;
            left: 4%;
            animation-delay: 1.8s;
        }
        .hero-float-tag.ft3 {
            top: 48%;
            left: -4%;
            animation-delay: 3.6s;
        }
        @keyframes tagFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-9px);
            }
        }
        .ft-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .ft-dot.green {
            background: var(--mint);
            box-shadow: 0 0 6px rgba(0, 184, 122, .4);
        }
        .ft-dot.blue {
            background: var(--accent);
            box-shadow: 0 0 6px rgba(0, 85, 255, .4);
        }
        .ft-dot.purple {
            background: var(--violet);
            box-shadow: 0 0 6px rgba(124, 58, 237, .4);
        }
        .ft-val {
            font-weight: 700;
            font-size: .82rem;
        }
        .ft-label {
            color: var(--muted);
            font-size: .7rem;
            margin-left: 1px;
        }

        /* SECTION HEAD */
        .section-head {
            text-align: center;
            margin-bottom: clamp(36px, 4.5vw, 58px);
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-size: .73rem;
            font-weight: 500;
            color: var(--accent);
            letter-spacing: .13em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .section-tag::before,
        .section-tag::after {
            content: '';
            width: 18px;
            height: 1px;
            background: var(--accent);
            opacity: .3;
        }
        .section-head h2 {
            font-size: clamp(1.9rem, 3.8vw, 3rem);
            line-height: 1.1;
            margin-bottom: 10px;
        }
        .section-head p {
            color: var(--muted);
            font-size: .98rem;
            max-width: 460px;
            margin: 0 auto;
        }

        /* GLOBAL PULSE */
        .global-pulse {
            padding: clamp(50px, 7vh, 90px) 0;
            position: relative;
            z-index: 1;
        }
        .pulse-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .pulse-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 26px 22px;
            text-align: center;
            transition: all .35s var(--ease);
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        .pulse-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .pulse-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 3px;
            border-radius: 3px;
            transition: all .35s var(--ease);
            opacity: 0;
        }
        .pulse-card:hover::after {
            opacity: 1;
            left: 10%;
            right: 10%;
        }
        .pulse-card:nth-child(1)::after {
            background: var(--accent);
        }
        .pulse-card:nth-child(2)::after {
            background: var(--coral);
        }
        .pulse-card:nth-child(3)::after {
            background: var(--mint);
        }
        .pulse-card:nth-child(4)::after {
            background: var(--violet);
        }
        .pulse-card .pc-region {
            font-family: 'JetBrains Mono', monospace;
            font-size: .72rem;
            font-weight: 600;
            color: var(--muted);
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .pulse-card .pc-latency {
            font-family: 'Instrument Serif', serif;
            font-size: 2.4rem;
            line-height: 1;
            margin-bottom: 4px;
        }
        .pulse-card:nth-child(1) .pc-latency {
            color: var(--accent);
        }
        .pulse-card:nth-child(2) .pc-latency {
            color: var(--coral);
        }
        .pulse-card:nth-child(3) .pc-latency {
            color: var(--mint);
        }
        .pulse-card:nth-child(4) .pc-latency {
            color: var(--violet);
        }
        .pulse-card .pc-status {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: .76rem;
            font-weight: 500;
            color: var(--mint);
        }
        .pulse-card .pc-status .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--mint);
            animation: dotPulse 2s ease infinite;
        }
        .pulse-card .pc-nodes {
            font-size: .74rem;
            color: var(--muted);
            margin-top: 2px;
        }

        /* FEATURES */
        .features {
            padding: clamp(50px, 7vh, 90px) 0;
            position: relative;
            z-index: 1;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }
        .feature-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: clamp(22px, 2.2vw, 32px);
            transition: all .4s var(--ease);
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .feature-card .fc-stripe {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            opacity: 0;
            transition: opacity .35s ease;
            border-radius: 0 0 3px 3px;
        }
        .feature-card:hover .fc-stripe {
            opacity: 1;
        }
        .feature-card:nth-child(1) .fc-stripe {
            background: var(--accent);
        }
        .feature-card:nth-child(2) .fc-stripe {
            background: var(--coral);
        }
        .feature-card:nth-child(3) .fc-stripe {
            background: var(--mint);
        }
        .feature-card:nth-child(4) .fc-stripe {
            background: var(--violet);
        }
        .feature-card:nth-child(5) .fc-stripe {
            background: var(--amber);
        }
        .feature-card:nth-child(6) .fc-stripe {
            background: var(--accent);
        }
        .fc-icon-wrap {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            font-size: 1.2rem;
            transition: transform .35s var(--ease-bounce);
        }
        .feature-card:hover .fc-icon-wrap {
            transform: scale(1.08);
        }
        .fc-icon-wrap.ci-blue {
            background: var(--accent-light);
            color: var(--accent);
        }
        .fc-icon-wrap.ci-coral {
            background: var(--coral-light);
            color: var(--coral);
        }
        .fc-icon-wrap.ci-mint {
            background: var(--mint-light);
            color: var(--mint);
        }
        .fc-icon-wrap.ci-violet {
            background: var(--violet-light);
            color: var(--violet);
        }
        .fc-icon-wrap.ci-amber {
            background: var(--amber-light);
            color: var(--amber);
        }
        .feature-card h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 7px;
            letter-spacing: 0;
        }
        .feature-card p {
            color: var(--muted);
            font-size: .88rem;
            line-height: 1.65;
        }

        /* PRICING */
        .pricing {
            padding: clamp(50px, 7vh, 90px) 0;
            position: relative;
            z-index: 1;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            align-items: stretch;
        }
        .pricing-card {
            background: var(--card);
            border: 1.5px solid var(--line);
            border-radius: var(--radius-xl);
            padding: clamp(28px, 3vw, 40px);
            text-align: center;
            transition: all .4s var(--ease);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.featured {
            border-color: var(--accent);
            background: #fff;
            box-shadow: var(--shadow-lg);
            transform: scale(1.03);
            z-index: 2;
        }
        .pricing-card.featured:hover {
            transform: scale(1.03) translateY(-6px);
            box-shadow: 0 8px 32px rgba(0, 85, 255, .18), 0 30px 72px rgba(26, 23, 20, .13);
        }
        .pricing-badge {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 100px;
            font-family: 'JetBrains Mono', monospace;
            font-size: .7rem;
            font-weight: 600;
            letter-spacing: .04em;
            margin-bottom: 16px;
            background: var(--accent-light);
            color: var(--accent);
        }
        .pricing-card.featured .pricing-badge {
            background: var(--accent);
            color: #fff;
        }
        .pricing-card .plan-name {
            font-family: 'Instrument Serif', serif;
            font-size: 1.6rem;
            margin-bottom: 4px;
            letter-spacing: -.01em;
        }
        .pricing-card .plan-subtitle {
            font-size: .8rem;
            color: var(--muted);
            margin-bottom: 20px;
        }
        .pricing-card .plan-price {
            font-family: 'Instrument Serif', serif;
            font-size: 3rem;
            line-height: 1;
            margin-bottom: 6px;
        }
        .pricing-card.featured .plan-price {
            color: var(--accent);
        }
        .pricing-card .plan-period {
            font-size: .78rem;
            color: var(--muted);
            margin-bottom: 22px;
        }
        .pricing-card .plan-features {
            text-align: left;
            margin-bottom: 26px;
            flex-grow: 1;
        }
        .pricing-card .plan-features li {
            padding: 7px 0;
            font-size: .85rem;
            color: var(--ink-soft);
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid var(--line);
        }
        .pricing-card .plan-features li:last-child {
            border-bottom: none;
        }
        .pricing-card .plan-features li .check-icon {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .6rem;
            color: #fff;
        }
        .check-icon.ck-blue {
            background: var(--accent);
        }
        .check-icon.ck-mint {
            background: var(--mint);
        }
        .check-icon.ck-violet {
            background: var(--violet);
        }
        .pricing-card .btn-solid {
            width: 100%;
            justify-content: center;
        }
        .pricing-card.featured .btn-solid {
            background: var(--accent);
            box-shadow: 0 4px 16px rgba(0, 85, 255, .28);
        }
        .pricing-card.featured .btn-solid:hover {
            background: var(--ink);
            box-shadow: 0 6px 22px rgba(26, 23, 20, .2);
        }

        /* TESTIMONIALS */
        .testimonials {
            padding: clamp(50px, 7vh, 90px) 0;
            position: relative;
            z-index: 1;
        }
        .test-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }
        .test-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 26px;
            transition: all .35s var(--ease);
        }
        .test-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .test-stars {
            color: var(--amber);
            font-size: .85rem;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .test-card blockquote {
            font-size: .9rem;
            line-height: 1.7;
            color: var(--ink-soft);
            margin-bottom: 16px;
            font-style: italic;
        }
        .test-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .test-avatar {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .78rem;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }
        .test-author-info .ta-name {
            font-weight: 600;
            font-size: .85rem;
        }
        .test-author-info .ta-role {
            font-size: .75rem;
            color: var(--muted);
        }

        /* CTA */
        .cta {
            padding: clamp(50px, 7vh, 90px) 0;
            position: relative;
            z-index: 1;
        }
        .cta-inner {
            background: var(--ink);
            border-radius: var(--radius-xl);
            padding: clamp(44px, 5.5vw, 72px);
            text-align: center;
            position: relative;
            overflow: hidden;
            color: #fff;
        }
        .cta-inner::before {
            content: '';
            position: absolute;
            top: -120px;
            left: 50%;
            width: 440px;
            height: 440px;
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(0, 85, 255, .18), transparent 60%);
            pointer-events: none;
        }
        .cta-inner::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 340px;
            height: 340px;
            background: radial-gradient(circle, rgba(124, 58, 237, .12), transparent 60%);
            pointer-events: none;
        }
        .cta-inner h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            line-height: 1.1;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .cta-inner h2 em {
            font-style: italic;
            color: #5b9eff;
        }
        .cta-inner p {
            color: rgba(255, 255, 255, .45);
            font-size: 1rem;
            margin-bottom: 32px;
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }
        .cta-inner .hero-actions {
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        .cta .btn-solid {
            background: #fff;
            color: var(--ink);
            box-shadow: none;
        }
        .cta .btn-solid:hover {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 6px 24px rgba(0, 85, 255, .4);
        }
        .cta .btn-outline {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, .18);
        }
        .cta .btn-outline:hover {
            border-color: #5b9eff;
            background: rgba(0, 85, 255, .12);
            color: #fff;
        }

        /* FOOTER */
        .footer {
            border-top: 1px solid var(--line);
            padding: 50px 0 24px;
            position: relative;
            z-index: 1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr;
            gap: clamp(20px, 3.5vw, 50px);
            margin-bottom: 40px;
        }
        .footer-brand p {
            color: var(--muted);
            font-size: .85rem;
            max-width: 260px;
            line-height: 1.7;
            margin-top: 12px;
        }
        .footer-col h4 {
            font-family: 'JetBrains Mono', monospace;
            font-size: .72rem;
            font-weight: 500;
            color: var(--ink);
            margin-bottom: 16px;
            letter-spacing: .1em;
            text-transform: uppercase;
        }
        .footer-col li {
            margin-bottom: 9px;
        }
        .footer-col a {
            color: var(--muted);
            font-size: .85rem;
            transition: all .3s ease;
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid var(--line);
            font-size: .75rem;
            color: var(--muted);
            font-family: 'JetBrains Mono', monospace;
        }

        /* REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: all .7s var(--ease);
        }
        .reveal.show {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-d1 {
            transition-delay: .08s;
        }
        .reveal-d2 {
            transition-delay: .16s;
        }
        .reveal-d3 {
            transition-delay: .24s;
        }
        .reveal-d4 {
            transition-delay: .32s;
        }
        .reveal-d5 {
            transition-delay: .4s;
        }

        /* RESPONSIVE */
        @media(max-width:1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .hero-right {
                max-width: 420px;
                margin: 0 auto;
                min-height: 340px;
            }
            .features-grid {
                grid-template-columns: 1fr 1fr;
            }
            .pricing-grid {
                grid-template-columns: 1fr 1fr;
            }
            .pricing-card.featured {
                grid-column: 1/-1;
                transform: none;
            }
            .pricing-card.featured:hover {
                transform: translateY(-6px);
            }
            .pulse-grid {
                grid-template-columns: 1fr 1fr;
            }
            .test-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media(max-width:768px) {
            .nav-right a:not(.nav-right a.active) {
                display: none;
            }
            .nav-right a.active {
                display: block;
            }
            .mobile-btn {
                display: block;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .pricing-card.featured {
                grid-column: auto;
                transform: none;
            }
            .pricing-card.featured:hover {
                transform: translateY(-6px);
            }
            .pulse-grid {
                grid-template-columns: 1fr 1fr;
            }
            .test-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }
            .hero-right {
                min-height: 280px;
            }
            .hero-float-tag {
                display: none;
            }
            .hero-ring.r3 {
                display: none;
            }
            .hero-ring.r2 {
                width: 240px;
                height: 240px;
            }
            .hero-ring.r1 {
                width: 180px;
                height: 180px;
            }
            .hero-orb {
                width: 100px;
                height: 100px;
            }
        }
        @media(max-width:480px) {
            .pulse-grid {
                grid-template-columns: 1fr;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .hero-actions .btn-solid,
            .hero-actions .btn-outline {
                width: 100%;
                justify-content: center;
            }
        }