        :root {
            --blue-50: #eff6ff;
            --blue-100: #dbeafe;
            --blue-200: #bfdbfe;
            --blue-400: #60a5fa;
            --blue-500: #3b82f6;
            --blue-600: #2563eb;
            --blue-700: #1d4ed8;
            --blue-800: #1e40af;
            --blue-900: #1e3a5f;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;
            --emerald-50: #ecfdf5;
            --emerald-100: #d1fae5;
            --emerald-400: #34d399;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --violet-50: #f5f3ff;
            --violet-100: #ede9fe;
            --violet-400: #a78bfa;
            --violet-500: #8b5cf6;
            --violet-600: #7c3aed;
            --amber-50: #fffbeb;
            --amber-400: #fbbf24;
            --amber-500: #f59e0b;
            --gradient-hero: linear-gradient(160deg, #0f172a 0%, #1a2740 25%, #0d1b33 50%, #0a1628 75%, #0f172a 100%);
            --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            --gradient-ai: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
            --gradient-edge: linear-gradient(135deg, #059669 0%, #10b981 30%, #34d399 70%, #06b6d4 100%);
            --glow-blue: 0 0 40px rgba(59, 130, 246, 0.25);
            --glow-violet: 0 0 40px rgba(124, 58, 237, 0.25);
            --glow-emerald: 0 0 40px rgba(16, 185, 129, 0.2);
            --radius-sm: 10px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: #0f172a;
            color: #e2e8f0;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ========== HEADER ========== */
        .header {
            background: rgba(15, 23, 42, 0.88);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 0;
            z-index: 200;
            transition: var(--transition);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.3px;
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--gradient-ai);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 17px;
            font-weight: 900;
            -webkit-text-fill-color: #fff;
            box-shadow: var(--glow-violet);
            position: relative;
        }
        .logo-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 14px;
            background: var(--gradient-ai);
            opacity: 0.35;
            z-index: -1;
            filter: blur(10px);
            animation: logoPulse 2.4s ease-in-out infinite;
        }
        @keyframes logoPulse {
            0%,
            100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.08);
            }
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .nav a {
            font-size: 14.5px;
            font-weight: 500;
            color: #cbd5e1;
            letter-spacing: 0.2px;
            position: relative;
            padding: 4px 0;
        }
        .nav a:hover {
            color: #ffffff;
        }
        .nav a.active {
            color: #ffffff;
            font-weight: 600;
        }
        .nav a.active::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-ai);
            border-radius: 2px;
        }
        .nav a.nav-cta {
            background: var(--gradient-ai);
            color: #fff;
            padding: 9px 22px;
            border-radius: 22px;
            font-weight: 600;
            font-size: 13.5px;
            letter-spacing: 0.3px;
            box-shadow: var(--glow-violet);
            transition: all 0.3s;
        }
        .nav a.nav-cta:hover {
            box-shadow: 0 0 50px rgba(124, 58, 237, 0.45);
            transform: translateY(-2px);
            color: #fff;
        }
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 6px;
            z-index: 210;
        }
        .mobile-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: #e2e8f0;
            border-radius: 4px;
            transition: 0.3s;
        }
        .mobile-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ========== HERO ========== */
        .hero {
            background: var(--gradient-hero);
            padding: 80px 0 90px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
            animation: heroGlow 8s ease-in-out infinite;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
            animation: heroGlow 10s ease-in-out infinite reverse;
        }
        @keyframes heroGlow {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(40px, -30px) scale(1.12);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.94);
            }
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 52px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            padding: 5px 18px 5px 7px;
            font-size: 13px;
            font-weight: 500;
            color: #a5b4fc;
            margin-bottom: 22px;
            backdrop-filter: blur(8px);
        }
        .hero-badge .badge-dot {
            width: 8px;
            height: 8px;
            background: #34d399;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
            box-shadow: 0 0 10px rgba(52, 211, 153, 0.6);
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
            }
            50% {
                opacity: 0.4;
                box-shadow: 0 0 20px rgba(52, 211, 153, 0.9);
            }
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.1;
            color: #ffffff;
            margin-bottom: 18px;
            letter-spacing: -1px;
        }
        .hero h1 .gradient-text {
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 17px;
            color: #94a3b8;
            max-width: 500px;
            margin-bottom: 30px;
            letter-spacing: 0.2px;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--gradient-ai);
            color: #fff;
            padding: 14px 34px;
            border-radius: 28px;
            font-size: 15.5px;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: all 0.3s;
            box-shadow: var(--glow-violet);
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
            pointer-events: none;
        }
        .btn-primary:hover {
            box-shadow: 0 0 55px rgba(124, 58, 237, 0.5);
            transform: translateY(-3px);
            color: #fff;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #e2e8f0;
            font-weight: 600;
            font-size: 15px;
            padding: 13px 24px;
            border-radius: 28px;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
            backdrop-filter: blur(6px);
        }
        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.04);
            color: #fff;
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 34px;
            padding-top: 26px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .hero-stats .stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .hero-stats .stat-number {
            font-size: 30px;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: -0.5px;
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-stats .stat-number .unit {
            font-size: 14px;
            font-weight: 700;
            -webkit-text-fill-color: #a78bfa;
        }
        .hero-stats .stat-label {
            font-size: 13px;
            color: #64748b;
            letter-spacing: 0.3px;
        }
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-xl);
            padding: 34px 30px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(14px);
            width: 100%;
            max-width: 410px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            position: relative;
        }
        .hero-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20px;
            right: 20px;
            height: 1px;
            background: var(--gradient-ai);
            opacity: 0.5;
            border-radius: 2px;
        }
        .hero-card .card-status {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #34d399;
            margin-bottom: 18px;
        }
        .hero-card .card-status .dot {
            width: 9px;
            height: 9px;
            background: #34d399;
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 2s infinite;
            box-shadow: 0 0 14px rgba(52, 211, 153, 0.7);
        }
        .hero-card .card-title {
            font-size: 21px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 4px;
            letter-spacing: -0.2px;
        }
        .hero-card .card-sub {
            font-size: 13.5px;
            color: #64748b;
            margin-bottom: 18px;
        }
        .hero-card .card-features {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .hero-card .card-features .feature-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            color: #cbd5e1;
        }
        .hero-card .card-features .feature-row .check {
            color: #a78bfa;
            font-weight: 700;
            font-size: 15px;
        }
        .hero-card .card-footer {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 12.5px;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: 80px 0;
            position: relative;
        }
        .section-dark {
            background: #0a0f1a;
        }
        .section-alt {
            background: #0f172a;
        }
        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 56px;
        }
        .section-header .tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #a78bfa;
            margin-bottom: 12px;
        }
        .section-header h2 {
            font-size: 36px;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: -0.6px;
        }
        .section-header h2 .gradient-text {
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-header p {
            font-size: 16px;
            color: #94a3b8;
        }

        /* ========== AI NETWORK SECTION (新创意版块) ========== */
        .ai-network-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .ai-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 380px;
        }
        .ai-orb {
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: var(--gradient-ai);
            opacity: 0.15;
            position: absolute;
            animation: aiOrbPulse 4s ease-in-out infinite;
            filter: blur(40px);
        }
        @keyframes aiOrbPulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.15;
            }
            50% {
                transform: scale(1.4);
                opacity: 0.3;
            }
        }
        .ai-node-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            position: relative;
            z-index: 1;
        }
        .ai-node {
            width: 60px;
            height: 60px;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            transition: all 0.35s;
            cursor: default;
            position: relative;
        }
        .ai-node:hover {
            border-color: #a78bfa;
            box-shadow: var(--glow-violet);
            transform: scale(1.1);
            background: rgba(124, 58, 237, 0.1);
        }
        .ai-node.center-node {
            border-color: #a78bfa;
            box-shadow: var(--glow-violet);
            background: rgba(124, 58, 237, 0.15);
            animation: centerNodePulse 2.5s ease-in-out infinite;
        }
        @keyframes centerNodePulse {
            0%,
            100% {
                box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
            }
            50% {
                box-shadow: 0 0 55px rgba(124, 58, 237, 0.6);
            }
        }
        .ai-content h2 {
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }
        .ai-content>p {
            font-size: 15.5px;
            color: #94a3b8;
            margin-bottom: 22px;
        }
        .ai-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 22px;
        }
        .ai-metric-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius);
            padding: 18px 16px;
            text-align: center;
            transition: var(--transition);
        }
        .ai-metric-card:hover {
            border-color: rgba(167, 139, 250, 0.4);
            box-shadow: var(--glow-violet);
        }
        .ai-metric-card .metric-val {
            font-size: 28px;
            font-weight: 900;
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .ai-metric-card .metric-label {
            font-size: 12px;
            color: #64748b;
            margin-top: 2px;
        }

        /* ========== EDGE COMPUTING SECTION (新创意版块) ========== */
        .edge-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 48px;
            align-items: center;
        }
        .edge-content h2 {
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }
        .edge-content>p {
            font-size: 15.5px;
            color: #94a3b8;
            margin-bottom: 22px;
        }
        .edge-map {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .edge-location {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 20px;
            padding: 7px 15px;
            font-size: 13px;
            font-weight: 600;
            color: #34d399;
            transition: var(--transition);
            cursor: default;
        }
        .edge-location:hover {
            border-color: #34d399;
            box-shadow: var(--glow-emerald);
            background: rgba(16, 185, 129, 0.15);
            transform: translateY(-2px);
        }
        .edge-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .edge-globe {
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 45%, rgba(52, 211, 153, 0.18) 0%, rgba(6, 182, 212, 0.08) 40%, transparent 70%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            animation: globeFloat 6s ease-in-out infinite;
            box-shadow: var(--glow-emerald);
        }
        @keyframes globeFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-18px);
            }
        }
        .edge-globe-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #34d399;
            border-radius: 50%;
            box-shadow: 0 0 14px rgba(52, 211, 153, 0.8);
            animation: dotBlink 2s infinite;
        }
        @keyframes dotBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.2;
            }
        }

        /* ========== PROTOCOL COMPARISON (新创意版块) ========== */
        .protocol-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .protocol-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            font-size: 14px;
        }
        .protocol-table thead th {
            background: rgba(255, 255, 255, 0.03);
            padding: 16px 20px;
            text-align: left;
            font-weight: 700;
            color: #e2e8f0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            letter-spacing: 0.3px;
        }
        .protocol-table tbody td {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #cbd5e1;
        }
        .protocol-table tbody tr {
            transition: var(--transition);
        }
        .protocol-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .protocol-table .highlight-row {
            background: rgba(124, 58, 237, 0.06);
            border-left: 3px solid #a78bfa;
        }
        .protocol-table .highlight-row td {
            color: #ffffff;
            font-weight: 600;
        }
        .badge-win {
            display: inline-block;
            background: rgba(52, 211, 153, 0.15);
            color: #34d399;
            border-radius: 12px;
            padding: 3px 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* ========== FEATURES GRID ========== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius-lg);
            padding: 30px 26px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-ai);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        .feature-card:hover {
            border-color: rgba(167, 139, 250, 0.3);
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        }
        .feature-card .icon {
            width: 50px;
            height: 50px;
            background: rgba(124, 58, 237, 0.1);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
            margin-bottom: 16px;
        }
        .feature-card h3 {
            font-size: 19px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .feature-card p {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 10px;
        }
        .feature-card .link {
            font-size: 13.5px;
            font-weight: 600;
            color: #a78bfa;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .feature-card .link:hover {
            color: #c4b5fd;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: #0a0f1a;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .cta-box {
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius-xl);
            padding: 56px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            overflow: hidden;
        }
        .cta-box::after {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-box .cta-text h2 {
            font-size: 30px;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 6px;
            letter-spacing: -0.4px;
            position: relative;
            z-index: 1;
        }
        .cta-box .cta-text p {
            font-size: 15px;
            color: #94a3b8;
            position: relative;
            z-index: 1;
        }
        .cta-box .cta-btn {
            position: relative;
            z-index: 1;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #070b14;
            color: #94a3b8;
            padding: 52px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-brand .logo {
            margin-bottom: 12px;
            font-size: 20px;
        }
        .footer-brand .logo .logo-icon {
            background: var(--gradient-ai);
            -webkit-text-fill-color: #fff;
        }
        .footer-brand p {
            font-size: 13.5px;
            max-width: 280px;
            color: #64748b;
            line-height: 1.7;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul a {
            font-size: 13.5px;
            color: #64748b;
            transition: var(--transition);
        }
        .footer-col ul a:hover {
            color: #cbd5e1;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12.5px;
            color: #475569;
        }
        .footer-bottom .links {
            display: flex;
            gap: 18px;
        }
        .footer-bottom .links a {
            color: #475569;
            transition: var(--transition);
            font-size: 12.5px;
        }
        .footer-bottom .links a:hover {
            color: #94a3b8;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-grid,
            .ai-network-grid,
            .edge-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero p,
            .ai-content>p,
            .edge-content>p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero-card {
                max-width: 100%;
            }
            .ai-node-grid {
                justify-content: center;
                max-width: 300px;
                margin: 0 auto;
            }
            .features-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .edge-map {
                justify-content: center;
            }
            .ai-metrics {
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(15, 23, 42, 0.96);
                backdrop-filter: blur(20px);
                padding: 20px 24px;
                gap: 14px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
                z-index: 190;
            }
            .nav.open {
                display: flex;
            }
            .nav a.nav-cta {
                width: 100%;
                text-align: center;
            }
            .mobile-toggle {
                display: flex;
            }
            .hero h1 {
                font-size: 32px;
            }
            .hero {
                padding: 50px 0 56px;
            }
            .section {
                padding: 50px 0;
            }
            .section-header h2 {
                font-size: 28px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .cta-box {
                padding: 36px 24px;
                flex-direction: column;
                text-align: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .hero-stats {
                gap: 20px;
                flex-wrap: wrap;
            }
            .ai-node-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            .ai-node {
                width: 48px;
                height: 48px;
                font-size: 18px;
            }
            .edge-globe {
                width: 180px;
                height: 180px;
            }
            .protocol-table-wrap {
                font-size: 12px;
            }
            .protocol-table thead th,
            .protocol-table tbody td {
                padding: 10px 12px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 26px;
            }
            .hero p {
                font-size: 14px;
            }
            .btn-primary {
                padding: 12px 22px;
                font-size: 14px;
            }
            .hero-card {
                padding: 22px 16px;
            }
            .hero-card .card-title {
                font-size: 17px;
            }
            .ai-metrics {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .ai-metric-card {
                padding: 14px 10px;
            }
            .ai-metric-card .metric-val {
                font-size: 22px;
            }
            .cta-box .cta-text h2 {
                font-size: 22px;
            }
            .section-header h2 {
                font-size: 24px;
            }
        }