        :root {
            /* 全新翡翠绿深色基调 */
            --bg: #060e10;
            --bg-soft: #0c1619;
            --ink: #edf6f2;
            --ink-soft: #b8cfc5;
            --muted: #71998a;
            --accent: #2dd4a8;
            --accent-light: rgba(45, 212, 168, 0.13);
            --coral: #ff6b6b;
            --coral-light: rgba(255, 107, 107, 0.12);
            --mint: #48cae4;
            --mint-light: rgba(72, 202, 228, 0.12);
            --amber: #ffb347;
            --amber-light: rgba(255, 179, 71, 0.13);
            --violet: #b388eb;
            --violet-light: rgba(179, 136, 235, 0.12);
            --line: rgba(237, 246, 242, 0.07);
            --line-dark: rgba(237, 246, 242, 0.14);
            --card: #101a1d;
            --card-hover: #162125;
            --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.18);
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.38);
            --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: #000;
        }

        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;
        }

        /* 面包屑 */
        .breadcrumb {
            padding: 16px 0 0;
            font-size: .78rem;
            color: var(--muted);
            position: relative;
            z-index: 2;
        }
        .breadcrumb a {
            color: var(--muted);
            transition: color .25s;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb span {
            margin: 0 6px;
            opacity: .5;
        }
        .breadcrumb .current {
            color: var(--ink-soft);
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(24px) saturate(1.8);
            -webkit-backdrop-filter: blur(24px) saturate(1.8);
            background: rgba(6, 14, 16, 0.78);
            border-bottom: 1px solid var(--line);
            transition: box-shadow .35s ease;
        }
        nav.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
            background: rgba(6, 14, 16, 0.9);
        }
        .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), #1a9e7a);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(45, 212, 168, 0.35);
            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(255, 255, 255, 0.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(90px);
            opacity: 0.35;
            z-index: 0;
        }
        .hero-bg-glow.g1 {
            width: 600px;
            height: 600px;
            background: rgba(45, 212, 168, 0.16);
            top: -200px;
            right: -180px;
            animation: floatGlow 8s ease-in-out infinite;
        }
        .hero-bg-glow.g2 {
            width: 450px;
            height: 450px;
            background: rgba(72, 202, 228, 0.10);
            bottom: -140px;
            left: -100px;
            animation: floatGlow 10s ease-in-out infinite reverse;
        }
        @keyframes floatGlow {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(35px, -30px) scale(1.12);
            }
            66% {
                transform: translate(-25px, 22px) scale(0.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(--accent);
            box-shadow: 0 0 12px rgba(45, 212, 168, 0.6);
            animation: dotPulse 2.2s ease infinite;
        }
        @keyframes dotPulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.4);
            }
        }
        .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, 4.6rem);
            line-height: 1.05;
            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(--mint) 70%);
            -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: 460px;
            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(--accent);
            color: #000;
            font-weight: 600;
            font-size: .93rem;
            font-family: 'DM Sans', sans-serif;
            border: none;
            cursor: pointer;
            transition: all .3s var(--ease);
            box-shadow: 0 4px 18px rgba(45, 212, 168, 0.35);
            white-space: nowrap;
        }
        .btn-solid:hover {
            background: #3de0b5;
            box-shadow: 0 8px 30px rgba(45, 212, 168, 0.55);
            transform: translateY(-2px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 26px;
            border-radius: 12px;
            background: transparent;
            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: 160px;
            height: 160px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, rgba(45, 212, 168, 0.22), rgba(72, 202, 228, 0.10), transparent 70%);
            animation: orbBreath 4.5s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes orbBreath {
            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.8;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.25);
                opacity: 1;
            }
        }
        .hero-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1.5px solid rgba(45, 212, 168, 0.16);
            pointer-events: none;
            animation: ringSpin 18s linear infinite;
        }
        .hero-ring.r1 {
            width: 240px;
            height: 240px;
            animation-duration: 16s;
        }
        .hero-ring.r2 {
            width: 320px;
            height: 320px;
            animation-duration: 22s;
            animation-direction: reverse;
            border-color: rgba(72, 202, 228, 0.13);
        }
        .hero-ring.r3 {
            width: 400px;
            height: 400px;
            animation-duration: 28s;
            border-color: rgba(179, 136, 235, 0.10);
            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(--accent);
            box-shadow: 0 0 8px rgba(45, 212, 168, 0.5);
        }
        .ft-dot.blue {
            background: var(--mint);
            box-shadow: 0 0 8px rgba(72, 202, 228, 0.5);
        }
        .ft-dot.purple {
            background: var(--violet);
            box-shadow: 0 0 8px rgba(179, 136, 235, 0.5);
        }
        .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: 0.4;
        }
        .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: 480px;
            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);
            background: var(--card-hover);
        }
        .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(--accent);
        }
        .pulse-card .pc-status .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            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;
            background: var(--card-hover);
        }
        .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-accent {
            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;
        }

        /* 多平台下载亮点 */
        .platform-showcase {
            padding: clamp(50px, 7vh, 90px) 0;
            position: relative;
            z-index: 1;
        }
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .platform-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            transition: all .35s var(--ease);
            cursor: default;
        }
        .platform-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            background: var(--card-hover);
            border-color: var(--accent);
        }
        .platform-card .platform-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
            display: block;
        }
        .platform-card h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: .95rem;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: 0;
        }
        .platform-card p {
            font-size: .78rem;
            color: var(--muted);
            line-height: 1.5;
        }
        .platform-card .platform-badge {
            display: inline-block;
            margin-top: 10px;
            padding: 3px 10px;
            border-radius: 100px;
            font-size: .68rem;
            font-weight: 600;
            background: var(--accent-light);
            color: var(--accent);
            font-family: 'JetBrains Mono', monospace;
        }

        /* 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);
            background: var(--card-hover);
        }
        .pricing-card.featured {
            border-color: var(--accent);
            background: #121f24;
            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 12px 40px rgba(45, 212, 168, 0.25), 0 30px 72px rgba(0, 0, 0, 0.45);
        }
        .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: #000;
        }
        .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-accent {
            background: var(--accent);
            color: #000;
        }
        .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 20px rgba(45, 212, 168, 0.4);
        }
        .pricing-card.featured .btn-solid:hover {
            background: #3de0b5;
            box-shadow: 0 8px 30px rgba(45, 212, 168, 0.6);
        }

        /* 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);
            background: var(--card-hover);
        }
        .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);
        }

        /* TRUST BAR */
        .trust-bar {
            padding: 30px 0 60px;
            position: relative;
            z-index: 1;
        }
        .trust-bar-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: clamp(20px, 4vw, 60px);
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 30px 20px;
            box-shadow: var(--shadow-sm);
        }
        .trust-stat {
            text-align: center;
            min-width: 100px;
        }
        .trust-stat-num {
            font-family: 'Instrument Serif', serif;
            font-size: 2rem;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 6px;
        }
        .trust-stat-num span {
            font-size: 0.7em;
            vertical-align: super;
        }
        .trust-stat-label {
            font-size: 0.8rem;
            color: var(--muted);
            font-weight: 500;
        }

        /* CTA */
        .cta {
            padding: clamp(50px, 7vh, 90px) 0;
            position: relative;
            z-index: 1;
        }
        .cta-inner {
            background: linear-gradient(135deg, #121f24 0%, #0a1518 100%);
            border-radius: var(--radius-xl);
            padding: clamp(44px, 5.5vw, 72px);
            text-align: center;
            position: relative;
            overflow: hidden;
            color: #fff;
            border: 1px solid var(--line-dark);
        }
        .cta-inner::before {
            content: '';
            position: absolute;
            top: -140px;
            left: 50%;
            width: 500px;
            height: 500px;
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(45, 212, 168, 0.18), transparent 60%);
            pointer-events: none;
        }
        .cta-inner::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(72, 202, 228, 0.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: var(--accent);
        }
        .cta-inner p {
            color: rgba(255, 255, 255, 0.55);
            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: #060e10;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .cta .btn-solid:hover {
            background: var(--accent);
            color: #000;
            box-shadow: 0 8px 30px rgba(45, 212, 168, 0.5);
        }
        .cta .btn-outline {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }
        .cta .btn-outline:hover {
            border-color: var(--accent);
            background: rgba(45, 212, 168, 0.12);
            color: #fff;
        }

        /* FOOTER */
        .footer {
            border-top: 1px solid var(--line);
            padding: 50px 0 24px;
            position: relative;
            z-index: 1;
            background: var(--bg-soft);
        }
        .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;
            }
            .platform-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;
            }
            .platform-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: 260px;
                height: 260px;
            }
            .hero-ring.r1 {
                width: 200px;
                height: 200px;
            }
            .hero-orb {
                width: 120px;
                height: 120px;
            }
            .trust-bar-inner {
                gap: 20px;
            }
        }
        @media(max-width:480px) {
            .pulse-grid {
                grid-template-columns: 1fr;
            }
            .platform-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;
            }
            .trust-bar-inner {
                flex-direction: column;
                align-items: center;
            }
        }