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

        :root {
            --bg: #f9f7fb;
            --bg-alt: #f3eff8;
            --ink: #1a102b;
            --ink-soft: #2d2340;
            --muted: #8b7d9e;
            --muted-light: #b8aec8;
            --primary: #7c5ce7;
            --primary-bright: #8b6cf6;
            --accent: #f472b6;
            --accent-soft: #f9a8d4;
            --accent-warm: #fb7185;
            --success: #34d399;
            --warning: #fbbf24;
            --rose: #f87171;
            --glass: rgba(255, 255, 255, .65);
            --glass-hover: rgba(255, 255, 255, .85);
            --line: rgba(124, 92, 231, .1);
            --line-bright: rgba(124, 92, 231, .2);
            --card-hover: rgba(244, 114, 182, .04);
            --glow-primary: rgba(124, 92, 231, .1);
            --glow-accent: rgba(244, 114, 182, .07);
            --shadow-sm: 0 2px 12px rgba(124, 92, 231, .05);
            --shadow-md: 0 8px 30px rgba(124, 92, 231, .08);
            --shadow-lg: 0 18px 50px rgba(124, 92, 231, .1);
            --radius-sm: 8px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --ease: cubic-bezier(.22, 1, .36, 1);
            --font-display: 'Syne', sans-serif;
            --font-body: 'Space Grotesk', sans-serif;
            --font-mono: 'DM Mono', monospace;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%
        }
        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale
        }
        ::selection {
            background: #c4b5fd;
            color: #1a102b
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s var(--ease)
        }
        ul {
            list-style: none
        }
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px)
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -.02em
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 70% 50% at 15% 85%, rgba(139, 108, 246, .04), transparent),
                radial-gradient(ellipse 55% 45% at 85% 15%, rgba(244, 114, 182, .04), transparent),
                radial-gradient(ellipse 40% 35% at 50% 50%, rgba(124, 92, 231, .02), transparent)
        }

        /* 导航栏（与首页一致） */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(16px) saturate(1.3);
            -webkit-backdrop-filter: blur(16px) saturate(1.3);
            border-bottom: 1px solid var(--line);
            background: rgba(249, 247, 251, .78)
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: .05em;
            background: linear-gradient(135deg, #7c5ce7, #8b6cf6, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex-shrink: 0
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 26px
        }
        .nav-right a {
            font-size: .8rem;
            font-weight: 500;
            color: var(--muted);
            position: relative;
            letter-spacing: .02em;
            white-space: nowrap
        }
        .nav-right a:hover {
            color: var(--primary)
        }
        .nav-right a.active {
            color: var(--primary);
            font-weight: 600
        }
        .nav-download {
            padding: 8px 18px;
            border-radius: 6px;
            border: 1px solid rgba(124, 92, 231, .35);
            color: #7c5ce7 !important;
            font-weight: 600;
            font-size: .8rem;
            transition: all .3s ease;
            white-space: nowrap
        }
        .nav-download:hover {
            background: rgba(124, 92, 231, .08);
            box-shadow: 0 0 20px rgba(124, 92, 231, .12)
        }
        .mobile-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ink);
            font-size: 1.4rem;
            cursor: pointer;
            padding: 4px
        }

        /* 面包屑 */
        .breadcrumb {
            position: relative;
            z-index: 1;
            padding: 84px 0 0;
            font-family: var(--font-mono);
            font-size: .78rem;
            color: var(--muted)
        }
        .breadcrumb a {
            color: var(--muted)
        }
        .breadcrumb a:hover {
            color: var(--primary)
        }
        .breadcrumb .sep {
            margin: 0 8px;
            opacity: .4
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 500
        }

        /* 节点Hero */
        .nodes-hero {
            position: relative;
            z-index: 1;
            padding: clamp(24px, 4vh, 48px) 0 clamp(50px, 8vh, 100px)
        }
        .nodes-hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(36px, 5vw, 90px);
            align-items: center
        }
        .nodes-hero-text .overline {
            font-family: var(--font-mono);
            font-size: .78rem;
            font-weight: 400;
            color: var(--primary);
            letter-spacing: .2em;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px
        }
        .nodes-hero-text .overline::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--primary)
        }
        .nodes-hero-text h1 {
            font-size: clamp(2.4rem, 5vw, 4.2rem);
            line-height: 1.05;
            margin-bottom: 20px;
            color: var(--ink-soft)
        }
        .nodes-hero-text h1 .grad {
            background: linear-gradient(90deg, #7c5ce7, #8b6cf6, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }
        .nodes-hero-text p {
            color: var(--muted);
            font-size: 1rem;
            max-width: 440px;
            line-height: 1.8;
            margin-bottom: 36px
        }
        .nodes-meta {
            display: flex;
            gap: 28px;
            flex-wrap: wrap
        }
        .nodes-meta-item {
            font-family: var(--font-mono);
            font-size: .78rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 8px
        }
        .nodes-meta-item .val {
            color: var(--ink-soft);
            font-weight: 500
        }
        .nodes-meta-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--primary)
        }
        .nodes-hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center
        }
        .globe-container {
            position: relative;
            width: 320px;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center
        }
        .globe-core {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 108, 246, .15), rgba(244, 114, 182, .08), transparent 60%);
            position: absolute;
            animation: corePulse 3s ease-in-out infinite
        }
        .globe-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid transparent;
            animation: ringSpin 14s linear infinite
        }
        .globe-ring:nth-child(2) {
            inset: 20px;
            border-top-color: rgba(124, 92, 231, .25);
            border-right-color: rgba(244, 114, 182, .18);
            animation-duration: 12s;
            animation-direction: reverse
        }
        .globe-ring:nth-child(3) {
            inset: 40px;
            border-bottom-color: rgba(139, 108, 246, .2);
            border-left-color: rgba(244, 114, 182, .2);
            animation-duration: 16s
        }
        .globe-ring:nth-child(4) {
            inset: 60px;
            border-top-color: rgba(124, 92, 231, .15);
            animation-duration: 10s;
            animation-direction: reverse
        }
        .globe-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #7c5ce7;
            box-shadow: 0 0 14px rgba(124, 92, 231, .5);
            animation: dotFloat 5s ease-in-out infinite
        }
        .globe-dot:nth-child(5) {
            top: 10px;
            left: 50%;
            animation-delay: 0s;
            background: #f472b6;
            box-shadow: 0 0 14px rgba(244, 114, 182, .5)
        }
        .globe-dot:nth-child(6) {
            bottom: 25px;
            right: 18px;
            animation-delay: -1.5s
        }
        .globe-dot:nth-child(7) {
            bottom: 35px;
            left: 22px;
            animation-delay: -3s;
            background: #8b6cf6
        }
        @keyframes ringSpin {
            to {
                transform: rotate(360deg)
            }
        }
        @keyframes corePulse {
            0%,
            100% {
                transform: scale(1);
                opacity: .7
            }
            50% {
                transform: scale(1.08);
                opacity: 1
            }
        }
        @keyframes dotFloat {
            0%,
            100% {
                transform: translate(0, 0)
            }
            25% {
                transform: translate(14px, -8px)
            }
            50% {
                transform: translate(-6px, -18px)
            }
            75% {
                transform: translate(-12px, 6px)
            }
        }

        /* 节点统计数据 */
        .node-stats {
            position: relative;
            z-index: 1;
            padding: clamp(40px, 5vh, 70px) 0
        }
        .node-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px
        }
        .node-stat-card {
            border-radius: var(--radius);
            border: 1px solid var(--line);
            background: #fff;
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all .3s ease
        }
        .node-stat-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--line-bright)
        }
        .node-stat-card .stat-num {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -.02em;
            margin-bottom: 4px
        }
        .node-stat-card .stat-num.c1 {
            color: #7c5ce7
        }
        .node-stat-card .stat-num.c2 {
            color: #f472b6
        }
        .node-stat-card .stat-num.c3 {
            color: #34d399
        }
        .node-stat-card .stat-num.c4 {
            color: #fb7185
        }
        .node-stat-card .stat-label {
            font-family: var(--font-mono);
            font-size: .72rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .04em
        }

        /* 节点列表 - 创意卡片布局 */
        .node-list-section {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 100px) 0
        }
        .node-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px
        }
        .node-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(22px, 2.2vw, 32px);
            transition: all .4s var(--ease);
            cursor: pointer;
            box-shadow: var(--shadow-sm)
        }
        .node-card:hover {
            transform: translateY(-6px);
            border-color: rgba(124, 92, 231, .2);
            box-shadow: var(--shadow-lg);
            background: rgba(255, 255, 255, .9)
        }
        .node-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px
        }
        .node-flag {
            font-size: 1.6rem;
            flex-shrink: 0
        }
        .node-city {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--ink-soft)
        }
        .node-location {
            font-family: var(--font-mono);
            font-size: .7rem;
            color: var(--muted)
        }
        .node-latency-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px
        }
        .latency-ms {
            font-family: var(--font-mono);
            font-size: 1.8rem;
            font-weight: 700;
            color: #7c5ce7
        }
        .latency-bar-bg {
            flex: 1;
            height: 5px;
            border-radius: 3px;
            background: rgba(124, 92, 231, .08);
            overflow: hidden
        }
        .latency-bar-fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, #7c5ce7, #f472b6)
        }
        .node-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 14px
        }
        .node-tag {
            font-family: var(--font-mono);
            font-size: .65rem;
            padding: 4px 10px;
            border-radius: 4px;
            background: rgba(124, 92, 231, .04);
            border: 1px solid rgba(124, 92, 231, .1);
            color: var(--muted)
        }
        .node-desc {
            color: var(--muted);
            font-size: .82rem;
            line-height: 1.5;
            margin-bottom: 12px
        }
        .node-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-mono);
            font-size: .7rem;
            color: #34d399
        }
        .node-status .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #34d399;
            box-shadow: 0 0 8px #34d399;
            animation: pulse 2s ease infinite
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1
            }
            50% {
                opacity: .35
            }
        }

        /* 智能路由说明 */
        .smart-routing {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 100px) 0
        }
        .routing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(30px, 5vw, 70px);
            align-items: center
        }
        .routing-text h2 {
            font-size: clamp(1.8rem, 3.2vw, 2.6rem);
            line-height: 1.1;
            margin-bottom: 16px;
            color: var(--ink-soft)
        }
        .routing-text .accent {
            background: linear-gradient(135deg, #7c5ce7, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }
        .routing-text p {
            color: var(--muted);
            font-size: .95rem;
            line-height: 1.8;
            margin-bottom: 24px
        }
        .routing-steps {
            display: flex;
            flex-direction: column;
            gap: 16px
        }
        .routing-step {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            border-radius: var(--radius-sm);
            background: #fff;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            transition: all .3s ease
        }
        .routing-step:hover {
            border-color: var(--line-bright);
            transform: translateX(6px)
        }
        .routing-step-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(124, 92, 231, .06);
            color: #7c5ce7;
            flex-shrink: 0
        }
        .routing-step-text strong {
            display: block;
            font-size: .9rem;
            color: var(--ink-soft)
        }
        .routing-step-text span {
            font-size: .78rem;
            color: var(--muted)
        }
        .routing-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center
        }
        .route-animation {
            width: 260px;
            height: 260px;
            position: relative
        }
        .route-node {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #7c5ce7;
            box-shadow: 0 0 18px rgba(124, 92, 231, .4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .65rem;
            color: #fff;
            font-weight: 700
        }
        .route-node:nth-child(1) {
            top: 10%;
            left: 10%
        }
        .route-node:nth-child(2) {
            top: 10%;
            right: 10%;
            background: #f472b6;
            box-shadow: 0 0 18px rgba(244, 114, 182, .4)
        }
        .route-node:nth-child(3) {
            bottom: 10%;
            left: 40%;
            background: #8b6cf6;
            box-shadow: 0 0 18px rgba(139, 108, 246, .4)
        }
        .route-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, #7c5ce7, #f472b6);
            opacity: .4;
            transform-origin: left center;
            animation: routePulse 3s ease-in-out infinite
        }
        .route-line:nth-child(4) {
            top: 18%;
            left: 15%;
            width: 60%;
            transform: rotate(8deg)
        }
        .route-line:nth-child(5) {
            bottom: 20%;
            left: 20%;
            width: 50%;
            transform: rotate(-10deg);
            animation-delay: 1s
        }
        @keyframes routePulse {
            0%,
            100% {
                opacity: .3
            }
            50% {
                opacity: .7
            }
        }

        /* 节点覆盖区域 */
        .region-tabs {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 100px) 0
        }
        .region-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px
        }
        .region-card {
            border-radius: var(--radius);
            border: 1px solid var(--line);
            background: #fff;
            padding: 20px 16px;
            text-align: center;
            transition: all .35s ease;
            box-shadow: var(--shadow-sm)
        }
        .region-card:hover {
            transform: translateY(-4px);
            border-color: rgba(124, 92, 231, .2);
            box-shadow: var(--shadow-md)
        }
        .region-icon {
            font-size: 2rem;
            margin-bottom: 8px
        }
        .region-name {
            font-weight: 700;
            font-size: .95rem;
            margin-bottom: 4px;
            color: var(--ink-soft)
        }
        .region-count {
            font-family: var(--font-mono);
            font-size: .72rem;
            color: var(--muted)
        }
        .region-latency {
            font-family: var(--font-mono);
            font-size: .7rem;
            color: #7c5ce7;
            margin-top: 6px
        }

        /* 全球节点 FAQ */
        .node-faq {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 100px) 0
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            max-width: 900px;
            margin: 0 auto
        }
        .faq-item {
            border-radius: var(--radius);
            border: 1px solid var(--line);
            background: #fff;
            padding: 20px 22px;
            transition: all .3s ease;
            box-shadow: var(--shadow-sm)
        }
        .faq-item:hover {
            border-color: var(--line-bright);
            box-shadow: var(--shadow-md)
        }
        .faq-item h4 {
            font-size: .9rem;
            margin-bottom: 6px;
            font-family: var(--font-body);
            font-weight: 600;
            letter-spacing: 0;
            color: var(--ink-soft)
        }
        .faq-item p {
            font-size: .8rem;
            color: var(--muted);
            line-height: 1.65
        }

        /* CTA */
        .cta-section {
            position: relative;
            z-index: 1;
            padding: clamp(50px, 7vh, 80px) 0
        }
        .cta-inner {
            border-radius: var(--radius-xl);
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(36px, 4.5vw, 56px);
            text-align: center;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden
        }
        .cta-inner::before {
            content: '';
            position: absolute;
            top: -120px;
            left: 50%;
            width: 400px;
            height: 400px;
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(124, 92, 231, .05), rgba(244, 114, 182, .03), transparent 55%);
            pointer-events: none
        }
        .cta-inner h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            margin-bottom: 12px;
            color: var(--ink-soft)
        }
        .cta-inner p {
            color: var(--muted);
            font-size: .95rem;
            margin-bottom: 28px;
            max-width: 440px;
            margin-left: auto;
            margin-right: auto
        }
        .btn-glow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 13px 28px;
            border-radius: 8px;
            background: linear-gradient(135deg, #7c5ce7, #8b6cf6);
            color: #fff;
            font-weight: 700;
            font-size: .9rem;
            font-family: var(--font-body);
            border: none;
            cursor: pointer;
            transition: all .3s ease
        }
        .btn-glow:hover {
            background: linear-gradient(135deg, #8b6cf6, #9b7df8);
            box-shadow: 0 8px 28px rgba(124, 92, 231, .28)
        }

        /* 页脚（与首页一致） */
        .footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--line);
            padding: 50px 0 24px;
            background: #fff
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr;
            gap: clamp(20px, 3.5vw, 48px);
            margin-bottom: 36px
        }
        .footer-brand p {
            color: var(--muted);
            font-size: .84rem;
            max-width: 260px;
            line-height: 1.7;
            margin-top: 12px
        }
        .footer-col h4 {
            font-family: var(--font-mono);
            font-size: .72rem;
            font-weight: 500;
            color: var(--ink-soft);
            margin-bottom: 16px;
            letter-spacing: .1em;
            text-transform: uppercase
        }
        .footer-col li {
            margin-bottom: 9px
        }
        .footer-col a {
            color: var(--muted);
            font-size: .84rem;
            transition: all .3s var(--ease)
        }
        .footer-col a:hover {
            color: #7c5ce7;
            padding-left: 3px
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(124, 92, 231, .06);
            font-size: .74rem;
            color: var(--muted);
            font-family: var(--font-mono)
        }

        /* 滚动动画 */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: all .7s var(--ease)
        }
        .reveal.show {
            opacity: 1;
            transform: translateY(0)
        }
        .reveal-d1 {
            transition-delay: .1s
        }
        .reveal-d2 {
            transition-delay: .2s
        }
        .reveal-d3 {
            transition-delay: .3s
        }
        .reveal-d4 {
            transition-delay: .4s
        }
        .reveal-d5 {
            transition-delay: .5s
        }

        /* 响应式 */
        @media(max-width:1024px) {
            .nodes-hero-inner {
                grid-template-columns: 1fr
            }
            .nodes-hero-visual {
                height: 300px;
                order: -1
            }
            .node-grid {
                grid-template-columns: 1fr 1fr
            }
            .routing-grid {
                grid-template-columns: 1fr
            }
            .region-grid {
                grid-template-columns: repeat(3, 1fr)
            }
            .faq-grid {
                grid-template-columns: 1fr
            }
            .node-stats-grid {
                grid-template-columns: repeat(2, 1fr)
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr
            }
        }
        @media(max-width:768px) {
            .nav-right a:not(.nav-download) {
                display: none
            }
            .mobile-btn {
                display: block
            }
            .node-grid {
                grid-template-columns: 1fr
            }
            .region-grid {
                grid-template-columns: 1fr 1fr
            }
            .footer-grid {
                grid-template-columns: 1fr
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center
            }
            .nodes-meta {
                flex-direction: column;
                gap: 10px
            }
            .faq-grid {
                grid-template-columns: 1fr
            }
        }
        @media(max-width:480px) {
            .node-stats-grid {
                grid-template-columns: 1fr
            }
            .region-grid {
                grid-template-columns: 1fr
            }
            .globe-container {
                width: 240px;
                height: 240px
            }
        }