        :root {
            --brand: #0066ff;
            --brand-deep: #0044cc;
            --brand-glow: #3399ff;
            --accent: #ff6b35;
            --surface-0: #ffffff;
            --surface-1: #f7f9fc;
            --surface-2: #eef3f9;
            --text-strong: #0a0f1a;
            --text-body: #2a3344;
            --text-muted: #5e6b80;
            --border: #dde4ef;
            --border-light: #eaf0f7;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.10);
            --radius-sm: 12px;
            --radius: 18px;
            --radius-lg: 26px;
            --radius-xl: 36px;
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Roboto, Helvetica, Arial, sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-stack);
            background: var(--surface-0);
            color: var(--text-body);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ========== HEADER ========== */
        .header {
            position: sticky;
            top: 0;
            z-index: 120;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: saturate(180%) blur(18px);
            -webkit-backdrop-filter: saturate(180%) blur(18px);
            border-bottom: 1px solid var(--border-light);
            padding: 14px 0;
            transition: var(--transition);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .logo-group {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
        }
        .logo-text {
            font-weight: 750;
            font-size: 24px;
            letter-spacing: -0.4px;
            color: var(--text-strong);
            white-space: nowrap;
        }
        .logo-text .accent-dot {
            color: var(--brand);
        }
        .logo-badge {
            font-size: 11px;
            font-weight: 600;
            background: var(--brand);
            color: #fff;
            padding: 3px 10px;
            border-radius: 30px;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 26px;
            flex-wrap: wrap;
        }
        .nav a {
            font-size: 15px;
            font-weight: 530;
            color: var(--text-body);
            position: relative;
            padding: 6px 0;
            white-space: nowrap;
        }
        .nav a:hover {
            color: var(--brand);
        }
        .nav a.active {
            color: var(--brand);
            font-weight: 650;
        }
        .nav a.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2.5px;
            background: var(--brand);
            border-radius: 4px;
        }
        .nav-pill {
            background: var(--brand);
            color: #fff !important;
            font-size: 13px;
            padding: 7px 16px !important;
            border-radius: 40px;
            font-weight: 600;
            letter-spacing: 0.2px;
        }
        .nav-pill:hover {
            background: var(--brand-deep) !important;
            color: #fff !important;
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(0, 102, 255, 0.28);
        }
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 130;
        }
        .mobile-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--text-strong);
            border-radius: 4px;
            transition: 0.25s;
        }

        /* ========== HERO ========== */
        .hero {
            padding: 56px 0 48px;
            background: linear-gradient(165deg, #f4f8ff 0%, #ffffff 30%, #f9fbff 100%);
            border-bottom: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -160px;
            width: 560px;
            height: 560px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -100px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.13;
            letter-spacing: -0.025em;
            margin-bottom: 18px;
            color: var(--text-strong);
        }
        .hero-content h1 .hl {
            background: linear-gradient(140deg, #0066ff 0%, #4d2dd4 55%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        .hero-content .hero-desc {
            font-size: 17px;
            color: var(--text-muted);
            max-width: 500px;
            margin-bottom: 24px;
            line-height: 1.7;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }
        .hero-tags span {
            font-size: 13px;
            font-weight: 540;
            color: var(--text-muted);
            background: var(--surface-2);
            padding: 6px 14px;
            border-radius: 30px;
            letter-spacing: 0.2px;
        }
        .hero-tags span.em {
            background: #e8f0ff;
            color: var(--brand);
            font-weight: 630;
        }
        .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            align-items: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 620;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .btn-primary {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 8px 24px rgba(0, 102, 255, 0.26);
        }
        .btn-primary:hover {
            background: var(--brand-deep);
            transform: translateY(-3px);
            box-shadow: 0 14px 34px rgba(0, 102, 255, 0.34);
        }
        .btn-outline {
            background: transparent;
            color: var(--text-strong);
            border: 1.8px solid #c8d4e6;
        }
        .btn-outline:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: #f6faff;
        }
        .hero-visual {
            position: relative;
            min-height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-card-stack {
            position: relative;
            width: 100%;
            aspect-ratio: 4/3;
            max-width: 460px;
        }
        .hero-card {
            position: absolute;
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 20px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: var(--transition);
        }
        .hero-card.card-main {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            width: 76%;
            border: 1.5px solid #dce8f8;
        }
        .hero-card.card-sub-1 {
            top: 10%;
            right: 4%;
            z-index: 2;
            width: 54%;
            opacity: 0.72;
            border: 1px solid #e8eff9;
        }
        .hero-card.card-sub-2 {
            bottom: 8%;
            left: 6%;
            z-index: 1;
            width: 50%;
            opacity: 0.55;
            border: 1px solid #eef3fa;
        }
        .hero-card .card-dot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            flex-shrink: 0;
            animation: dotPulse 2.2s ease-in-out infinite;
        }
        .hero-card .card-dot.green {
            background: #22c55e;
            box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
        }
        .hero-card .card-dot.blue {
            background: #3b82f6;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
            animation-delay: 0.6s;
        }
        .hero-card .card-dot.amber {
            background: #f59e0b;
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
            animation-delay: 1.2s;
        }
        @keyframes dotPulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.9);
                opacity: 0.55;
            }
        }
        .hero-card .card-info {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.4;
        }
        .hero-card .card-info strong {
            display: block;
            font-size: 14px;
            color: var(--text-strong);
            font-weight: 650;
        }

        /* ========== SECTION COMMONS ========== */
        .section {
            padding: 60px 0;
        }
        .section-alt {
            background: var(--surface-1);
        }
        .section-header {
            text-align: center;
            margin-bottom: 42px;
        }
        .section-header h2 {
            font-size: 34px;
            font-weight: 750;
            letter-spacing: -0.025em;
            color: var(--text-strong);
            margin-bottom: 10px;
        }
        .section-header .section-sub {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .section-header .section-chip {
            display: inline-block;
            font-size: 13px;
            font-weight: 630;
            color: var(--brand);
            background: #e8f0ff;
            padding: 5px 16px;
            border-radius: 30px;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }

        /* ========== THREE PILLARS ========== */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .pillar-card {
            background: #fff;
            padding: 32px 26px 28px;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pillar-card::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
            z-index: 0;
        }
        .pillar-card:hover {
            border-color: #c0d4f0;
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }
        .pillar-card:hover::before {
            opacity: 0.08;
        }
        .pillar-card.card-easy:hover::before {
            background: #22c55e;
            opacity: 0.07;
        }
        .pillar-card.card-fast:hover::before {
            background: #0066ff;
            opacity: 0.07;
        }
        .pillar-card.card-safe:hover::before {
            background: #7c3aed;
            opacity: 0.07;
        }
        .pillar-icon {
            font-size: 44px;
            margin-bottom: 14px;
            display: block;
            position: relative;
            z-index: 1;
        }
        .pillar-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }
        .pillar-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        .pillar-num {
            display: block;
            font-size: 40px;
            font-weight: 850;
            letter-spacing: -0.03em;
            margin-bottom: 2px;
            position: relative;
            z-index: 1;
        }
        .pillar-num.easy-color {
            color: #22c55e;
        }
        .pillar-num.fast-color {
            color: #0066ff;
        }
        .pillar-num.safe-color {
            color: #7c3aed;
        }

        /* ========== SMART ROUTE SHOWCASE ========== */
        .route-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 44px;
            align-items: center;
        }
        .route-visual {
            background: #fff;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-light);
            padding: 28px 22px;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .route-node-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
        }
        .route-node {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 550;
            color: var(--text-body);
            background: var(--surface-1);
            padding: 8px 14px;
            border-radius: 30px;
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }
        .route-node.active-node {
            background: #e8f0ff;
            border-color: #b0cdf8;
            color: var(--brand);
            font-weight: 650;
            box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.06);
        }
        .route-node .node-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .route-line-visual {
            height: 2px;
            background: repeating-linear-gradient(90deg, #c8d4e6 0px, #c8d4e6 8px, transparent 8px, transparent 16px);
            border-radius: 1px;
            margin: 4px 0;
            position: relative;
        }
        .route-line-visual::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 38%;
            background: linear-gradient(90deg, #0066ff, #7c3aed);
            border-radius: 1px;
            animation: routeFlow 3s ease-in-out infinite;
        }
        @keyframes routeFlow {
            0%,
            100% {
                left: 0;
                width: 38%;
            }
            50% {
                left: 52%;
                width: 32%;
            }
        }
        .route-info h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 8px;
        }
        .route-info p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .route-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .route-badges span {
            font-size: 12px;
            font-weight: 600;
            padding: 5px 13px;
            border-radius: 30px;
            background: #e8f0ff;
            color: var(--brand);
            letter-spacing: 0.2px;
        }

        /* ========== SECURITY LAYERS ========== */
        .security-stack {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .sec-layer {
            background: #fff;
            padding: 26px 18px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            text-align: center;
            transition: var(--transition);
            position: relative;
        }
        .sec-layer:hover {
            box-shadow: var(--shadow-md);
            border-color: #d0c8f0;
            transform: translateY(-3px);
        }
        .sec-layer .layer-num {
            font-size: 42px;
            font-weight: 850;
            color: #e8e0f8;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 4px;
        }
        .sec-layer h4 {
            font-size: 15px;
            font-weight: 680;
            color: var(--text-strong);
            margin-bottom: 4px;
        }
        .sec-layer p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .sec-icon {
            font-size: 30px;
            display: block;
            margin-bottom: 8px;
        }

        /* ========== SPEED METRICS ========== */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }
        .metric-card {
            background: #fff;
            padding: 24px 20px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            text-align: center;
            transition: var(--transition);
        }
        .metric-card:hover {
            box-shadow: var(--shadow-sm);
            border-color: #c0d4f0;
        }
        .metric-value {
            font-size: 44px;
            font-weight: 850;
            letter-spacing: -0.035em;
            color: var(--brand);
            line-height: 1;
            margin-bottom: 6px;
        }
        .metric-value.small-unit {
            font-size: 36px;
        }
        .metric-card h4 {
            font-size: 15px;
            font-weight: 650;
            color: var(--text-strong);
            margin-bottom: 3px;
        }
        .metric-card p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ========== OFFER BANNER ========== */
        .offer-banner {
            background: linear-gradient(140deg, #0a0f1a 0%, #121f36 40%, #0d1528 100%);
            border-radius: var(--radius-xl);
            padding: 38px 36px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }
        .offer-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .offer-content h3 {
            font-size: 26px;
            font-weight: 750;
            margin-bottom: 6px;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 1;
        }
        .offer-content p {
            font-size: 14px;
            color: #b0c0d8;
            position: relative;
            z-index: 1;
        }
        .offer-content .highlight-offer {
            color: #ffb347;
            font-weight: 700;
        }
        .btn-offer {
            background: #fff;
            color: #0a0f1a;
            font-weight: 680;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 15px;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            white-space: nowrap;
        }
        .btn-offer:hover {
            background: #ffb347;
            color: #0a0f1a;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(255, 179, 71, 0.35);
        }

        /* ========== SUPPORT TIMELINE ========== */
        .support-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .support-card {
            background: #fff;
            padding: 28px 22px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            text-align: center;
            transition: var(--transition);
        }
        .support-card:hover {
            box-shadow: var(--shadow-md);
            border-color: #c8d8f0;
        }
        .support-card .support-icon {
            font-size: 38px;
            display: block;
            margin-bottom: 10px;
        }
        .support-card h4 {
            font-size: 17px;
            font-weight: 680;
            color: var(--text-strong);
            margin-bottom: 4px;
        }
        .support-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ========== TRUST STRIP ========== */
        .trust-strip {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 32px;
            padding: 28px 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 550;
            color: var(--text-muted);
        }
        .trust-item .trust-icon {
            font-size: 22px;
        }
        .trust-item strong {
            color: var(--text-strong);
            font-weight: 650;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #0a0f1a;
            color: #b0c0d8;
            padding: 44px 0 28px;
            border-top: 1px solid #1a2333;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 30px;
            margin-bottom: 28px;
        }
        .footer-col h5 {
            color: #ffffff;
            font-size: 15px;
            font-weight: 640;
            margin-bottom: 10px;
            letter-spacing: 0.2px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            font-size: 13px;
            line-height: 2;
            color: #8899b4;
        }
        .footer-col a {
            color: #8899b4;
        }
        .footer-col a:hover {
            color: #ffffff;
        }
        .footer-bottom {
            border-top: 1px solid #1a2333;
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            font-size: 12px;
            color: #6a7d94;
        }
        .footer-bottom .meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-visual {
                order: -1;
                min-height: 200px;
            }
            .hero-card-stack {
                max-width: 380px;
                margin: 0 auto;
            }
            .pillars-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 18px;
            }
            .security-stack {
                grid-template-columns: 1fr 1fr;
            }
            .metrics-grid {
                grid-template-columns: 1fr 1fr;
            }
            .route-showcase {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .support-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 14px 0 6px;
                border-top: 1px solid var(--border-light);
                margin-top: 8px;
            }
            .nav.open {
                display: flex;
            }
            .mobile-toggle {
                display: flex;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .pillars-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .security-stack {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .metrics-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .offer-banner {
                flex-direction: column;
                text-align: center;
                padding: 28px 20px;
            }
            .support-grid {
                grid-template-columns: 1fr;
            }
            .section-header h2 {
                font-size: 26px;
            }
            .trust-strip {
                gap: 16px;
                padding: 20px 0;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
            }
            .btn {
                padding: 12px 22px;
                font-size: 14px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 30px 0 28px;
            }
            .hero-content h1 {
                font-size: 26px;
            }
            .hero-card.card-sub-1,
            .hero-card.card-sub-2 {
                display: none;
            }
            .hero-card.card-main {
                width: 90%;
            }
            .security-stack {
                grid-template-columns: 1fr;
            }
            .metrics-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .metric-value {
                font-size: 30px;
            }
            .logo-text {
                font-size: 20px;
            }
            .section {
                padding: 36px 0;
            }
            .section-header h2 {
                font-size: 23px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        } 