        :root {
            --bg-body: #06060f;
            --bg-surface: #0d0d1f;
            --bg-card: #13132a;
            --bg-card-hover: #1a1a38;
            --bg-elevated: #0f0f24;
            --bg-darker: #04040c;
            --border-subtle: rgba(255, 255, 255, 0.05);
            --border-glow: rgba(100, 70, 255, 0.2);
            --border-accent: rgba(124, 77, 255, 0.25);
            --text-primary: #f0edff;
            --text-secondary: #b0acc8;
            --text-muted: #6a6688;
            --accent-1: #7c4dff;
            --accent-2: #b388ff;
            --accent-3: #18c8f0;
            --accent-4: #00e5a0;
            --accent-5: #ff6b6b;
            --accent-6: #ffd93d;
            --gradient-main: linear-gradient(135deg, #7c4dff, #18c8f0);
            --gradient-warm: linear-gradient(135deg, #b388ff, #7c4dff);
            --gradient-cool: linear-gradient(135deg, #18c8f0, #00e5a0);
            --gradient-fire: linear-gradient(135deg, #ff6b6b, #ffd93d);
            --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.6);
            --shadow-glow: 0 0 60px rgba(124, 77, 255, 0.08);
            --shadow-deep: 0 24px 80px rgba(0, 0, 0, 0.7);
            --radius-xl: 28px;
            --radius-lg: 24px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --radius-xs: 6px;
            --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --max-width: 1140px;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font);
            background: var(--bg-body);
            color: var(--text-primary);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        img {
            max-width: 100%;
            display: block;
            height: auto;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 按钮系统 */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-main);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            padding: 12px 32px;
            border-radius: 60px;
            transition: var(--transition);
            box-shadow: 0 4px 24px rgba(124, 77, 255, 0.3);
            border: none;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 40px rgba(124, 77, 255, 0.45);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            font-weight: 500;
            padding: 12px 32px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            backdrop-filter: blur(4px);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.10);
            border-color: rgba(124, 77, 255, 0.3);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline-sm {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--accent-2);
            padding: 6px 16px;
            border-radius: 30px;
            border: 1px solid rgba(179, 136, 255, 0.2);
            transition: var(--transition-fast);
            background: rgba(179, 136, 255, 0.04);
        }
        .btn-outline-sm:hover {
            background: rgba(179, 136, 255, 0.12);
            border-color: rgba(179, 136, 255, 0.4);
            color: #fff;
        }

        /* 导航栏 - 完全统一 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(6, 6, 15, 0.72);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition);
        }
        .navbar.scrolled {
            background: rgba(6, 6, 15, 0.94);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
            border-bottom-color: rgba(255, 255, 255, 0.06);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: -0.02em;
            flex-shrink: 0;
        }
        .nav-logo .logo-badge {
            width: 32px;
            height: 32px;
            background: var(--gradient-main);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            color: #fff;
            box-shadow: 0 0 14px rgba(124, 77, 255, 0.3);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-fast);
            letter-spacing: 0.01em;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-2);
            border-radius: 1px;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #fff;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: #b388ff;
        }
        .nav-links a.active::after {
            width: 100%;
            background: var(--accent-2);
        }
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .nav-cta .btn-primary {
            padding: 8px 22px;
            font-size: 0.85rem;
            box-shadow: 0 2px 16px rgba(124, 77, 255, 0.25);
        }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 6px;
            cursor: pointer;
            z-index: 1001;
        }
        .nav-hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: var(--transition);
            transform-origin: center;
        }
        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }
        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        /* Hero - 安全技术专属 */
        .hero-security {
            padding: 150px 0 70px;
            background: var(--bg-body);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .hero-security::before {
            content: '';
            position: absolute;
            top: -35%;
            left: 50%;
            transform: translateX(-50%);
            width: 950px;
            height: 950px;
            background: radial-gradient(circle, rgba(124, 77, 255, 0.05) 0%, rgba(179, 136, 255, 0.025) 30%, rgba(24, 200, 240, 0.015) 55%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-security::after {
            content: '';
            position: absolute;
            bottom: -25%;
            right: -18%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 229, 160, 0.025) 0%, transparent 55%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-security .container {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(179, 136, 255, 0.08);
            border: 1px solid rgba(179, 136, 255, 0.12);
            padding: 5px 20px;
            border-radius: 40px;
            font-size: 0.74rem;
            font-weight: 600;
            color: #b388ff;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 22px;
        }
        .hero-badge .shield-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #b388ff;
            display: inline-block;
            animation: shieldPulse 2.4s infinite;
            box-shadow: 0 0 10px rgba(179, 136, 255, 0.5);
        }
        @keyframes shieldPulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.2;
                transform: scale(0.55);
            }
        }
        .hero-security h1 {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -0.035em;
            line-height: 1.08;
            margin-bottom: 18px;
        }
        .hero-security h1 .highlight {
            background: linear-gradient(135deg, #b388ff 0%, #7c4dff 40%, #18c8f0 75%, #00e5a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-security p {
            font-size: 1.18rem;
            color: var(--text-secondary);
            max-width: 640px;
            margin: 0 auto 30px;
            line-height: 1.9;
            letter-spacing: 0.004em;
        }
        .hero-security .actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-bottom: 40px;
        }
        .hero-security .tech-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
        }
        .tech-badge-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.025);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--border-subtle);
            letter-spacing: 0.03em;
            transition: var(--transition-fast);
        }
        .tech-badge-item:hover {
            border-color: rgba(179, 136, 255, 0.2);
            color: #b388ff;
        }
        .tech-badge-item .tb-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-3);
        }

        /* 通用区块标签 */
        .section-label {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-label .badge {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 3px 18px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 10px;
        }
        .section-label h2 {
            font-size: 2.3rem;
            font-weight: 700;
            letter-spacing: -0.025em;
            line-height: 1.25;
            margin-bottom: 6px;
        }
        .section-label p {
            color: var(--text-secondary);
            max-width: 520px;
            margin: 8px auto 0;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* 四层纵深架构 - 核心创意版块 */
        .four-layer {
            padding: 80px 0 65px;
            background: var(--bg-surface);
            position: relative;
        }
        .four-layer .section-label .badge {
            background: rgba(124, 77, 255, 0.07);
            color: #b388ff;
            border: 1px solid rgba(124, 77, 255, 0.07);
        }
        .four-layer .section-label h2 {
            background: linear-gradient(135deg, #f0edff, #b388ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .layer-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        .layer-stack::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 30px;
            bottom: 30px;
            width: 2px;
            background: linear-gradient(to bottom, rgba(124, 77, 255, 0.3), rgba(24, 200, 240, 0.3), rgba(0, 229, 160, 0.2));
            border-radius: 1px;
            z-index: 0;
            transform: translateX(-50%);
        }
        .layer-item {
            display: flex;
            align-items: center;
            gap: 28px;
            background: var(--bg-card);
            padding: 24px 28px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        .layer-item:hover {
            border-color: rgba(124, 77, 255, 0.2);
            box-shadow: var(--shadow-card);
            transform: translateX(6px);
            background: var(--bg-card-hover);
        }
        .layer-item:nth-child(even):hover {
            transform: translateX(-6px);
        }
        .layer-item .layer-num {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            letter-spacing: -0.02em;
            position: relative;
        }
        .layer-item:nth-child(1) .layer-num {
            background: linear-gradient(135deg, #7c4dff, #b388ff);
            box-shadow: 0 0 28px rgba(124, 77, 255, 0.3);
        }
        .layer-item:nth-child(2) .layer-num {
            background: linear-gradient(135deg, #18c8f0, #7c4dff);
            box-shadow: 0 0 28px rgba(24, 200, 240, 0.3);
        }
        .layer-item:nth-child(3) .layer-num {
            background: linear-gradient(135deg, #00e5a0, #18c8f0);
            box-shadow: 0 0 28px rgba(0, 229, 160, 0.3);
        }
        .layer-item:nth-child(4) .layer-num {
            background: linear-gradient(135deg, #ffd93d, #ff6b6b);
            box-shadow: 0 0 28px rgba(255, 107, 107, 0.3);
        }
        .layer-item .layer-content {
            flex: 1;
            min-width: 0;
        }
        .layer-item .layer-content h3 {
            font-size: 1.08rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 2px;
        }
        .layer-item .layer-content .layer-subtitle {
            font-size: 0.72rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 6px;
        }
        .layer-item .layer-content p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .layer-item .layer-icon {
            font-size: 2rem;
            flex-shrink: 0;
            opacity: 0.8;
            transition: var(--transition-fast);
        }
        .layer-item:hover .layer-icon {
            opacity: 1;
            transform: scale(1.1);
        }

        /* 双棘轮协议 - 创意版块 */
        .double-ratchet {
            padding: 75px 0 65px;
            background: var(--bg-body);
            position: relative;
        }
        .double-ratchet .section-label .badge {
            background: rgba(24, 200, 240, 0.07);
            color: #18c8f0;
            border: 1px solid rgba(24, 200, 240, 0.07);
        }
        .double-ratchet .section-label h2 {
            background: linear-gradient(135deg, #f0edff, #18c8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .ratchet-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            max-width: 900px;
            margin: 0 auto;
        }
        .ratchet-card {
            background: var(--bg-card);
            padding: 28px 24px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .ratchet-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-cool);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: center;
        }
        .ratchet-card:hover::after {
            transform: scaleX(1);
        }
        .ratchet-card:hover {
            border-color: rgba(24, 200, 240, 0.22);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
            background: var(--bg-card-hover);
        }
        .ratchet-card .ratchet-icon {
            font-size: 2.8rem;
            display: block;
            margin-bottom: 12px;
            transition: transform 0.4s ease;
        }
        .ratchet-card:hover .ratchet-icon {
            transform: scale(1.08);
        }
        .ratchet-card h3 {
            font-size: 1.08rem;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }
        .ratchet-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.75;
        }
        .ratchet-card .ratchet-tag {
            display: inline-block;
            margin-top: 10px;
            font-size: 0.68rem;
            color: #18c8f0;
            background: rgba(24, 200, 240, 0.06);
            padding: 3px 12px;
            border-radius: 14px;
            letter-spacing: 0.04em;
        }

        /* 密钥生命周期 - 创意版块 */
        .key-lifecycle {
            padding: 75px 0 65px;
            background: var(--bg-elevated);
            position: relative;
        }
        .key-lifecycle .section-label .badge {
            background: rgba(0, 229, 160, 0.07);
            color: #00e5a0;
            border: 1px solid rgba(0, 229, 160, 0.07);
        }
        .key-lifecycle .section-label h2 {
            background: linear-gradient(135deg, #f0edff, #00e5a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .lifecycle-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }
        .lifecycle-step {
            background: var(--bg-card);
            padding: 22px 20px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            text-align: center;
            transition: var(--transition);
            min-width: 130px;
            flex: 1 1 140px;
            max-width: 180px;
            position: relative;
        }
        .lifecycle-step:hover {
            border-color: rgba(0, 229, 160, 0.25);
            transform: translateY(-5px);
            box-shadow: var(--shadow-card);
            background: var(--bg-card-hover);
        }
        .lifecycle-step .lc-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 8px;
        }
        .lifecycle-step h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .lifecycle-step p {
            font-size: 0.76rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .lifecycle-arrow {
            font-size: 1.4rem;
            color: var(--text-muted);
            flex-shrink: 0;
            transition: var(--transition-fast);
        }
        .lifecycle-arrow:hover {
            color: #00e5a0;
            transform: scale(1.3);
        }

        /* 安全验证与透明度 - 创意版块 */
        .trust-verify {
            padding: 75px 0 70px;
            background: var(--bg-surface);
            position: relative;
        }
        .trust-verify .section-label .badge {
            background: rgba(179, 136, 255, 0.07);
            color: #b388ff;
            border: 1px solid rgba(179, 136, 255, 0.07);
        }
        .trust-verify .section-label h2 {
            background: linear-gradient(135deg, #f0edff, #b388ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }
        .trust-card {
            background: var(--bg-card);
            padding: 30px 24px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            text-align: center;
            transition: var(--transition);
            position: relative;
        }
        .trust-card:hover {
            border-color: rgba(179, 136, 255, 0.2);
            transform: translateY(-5px);
            box-shadow: var(--shadow-card);
        }
        .trust-card .trust-icon-wrap {
            width: 56px;
            height: 56px;
            margin: 0 auto 14px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            background: rgba(179, 136, 255, 0.04);
            border: 1px solid rgba(179, 136, 255, 0.1);
            transition: var(--transition-fast);
        }
        .trust-card:hover .trust-icon-wrap {
            background: rgba(179, 136, 255, 0.08);
            border-color: rgba(179, 136, 255, 0.25);
            box-shadow: 0 0 30px rgba(179, 136, 255, 0.08);
        }
        .trust-card h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .trust-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .trust-card .trust-link {
            display: inline-block;
            margin-top: 12px;
            color: #b388ff;
            font-weight: 500;
            font-size: 0.85rem;
            border-bottom: 1px solid transparent;
            transition: var(--transition-fast);
        }
        .trust-card .trust-link:hover {
            border-bottom-color: #b388ff;
        }

        /* 技术规格表 - 快速参考 */
        .tech-spec-table {
            padding: 70px 0 65px;
            background: var(--bg-body);
            position: relative;
        }
        .tech-spec-table .section-label .badge {
            background: rgba(255, 107, 107, 0.07);
            color: #ff6b6b;
            border: 1px solid rgba(255, 107, 107, 0.07);
        }
        .tech-spec-table .section-label h2 {
            background: linear-gradient(135deg, #f0edff, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .spec-table-wrap {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .spec-row {
            background: var(--bg-card);
            padding: 18px 22px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-fast);
            font-size: 0.88rem;
        }
        .spec-row:hover {
            border-color: rgba(255, 107, 107, 0.15);
            background: var(--bg-card-hover);
        }
        .spec-row .spec-key {
            color: var(--text-secondary);
            font-weight: 500;
        }
        .spec-row .spec-val {
            color: #ff6b6b;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-align: right;
        }

        /* Footer - 统一 */
        .footer {
            background: #03030a;
            padding: 54px 0 30px;
            border-top: 1px solid var(--border-subtle);
        }
        .footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 28px;
        }
        .footer-brand .logo {
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            margin-bottom: 10px;
        }
        .footer-brand .logo .badge {
            width: 28px;
            height: 28px;
            background: var(--gradient-main);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
            color: #fff;
        }
        .footer-brand p {
            font-size: 0.86rem;
            color: rgba(255, 255, 255, 0.38);
            max-width: 300px;
            line-height: 1.8;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 7px;
        }
        .footer-col ul li {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.38);
            transition: var(--transition-fast);
            cursor: pointer;
        }
        .footer-col ul li:hover {
            color: #fff;
        }
        .footer-col .contact {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.38);
            margin-bottom: 5px;
            line-height: 1.6;
        }
        .footer-col .contact strong {
            color: rgba(255, 255, 255, 0.65);
            font-weight: 500;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.28);
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .footer-bottom .info-group {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .hero-security h1 {
                font-size: 2.6rem;
            }
            .ratchet-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .spec-table-wrap {
                grid-template-columns: 1fr 1fr;
            }
            .footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .navbar .container {
                height: 60px;
            }
            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(6, 6, 15, 0.97);
                backdrop-filter: blur(24px);
                flex-direction: column;
                padding: 28px 20px;
                gap: 18px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
                transform: translateY(-130%);
                transition: var(--transition);
                border-bottom: 1px solid var(--border-subtle);
                align-items: stretch;
                text-align: center;
                z-index: 999;
            }
            .nav-links.open {
                transform: translateY(0);
            }
            .nav-links a {
                padding: 10px 0;
                font-size: 1rem;
                display: block;
            }
            .nav-cta .btn-primary {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .hero-security {
                padding: 115px 0 40px;
            }
            .hero-security h1 {
                font-size: 2rem;
            }
            .hero-security p {
                font-size: 1rem;
            }
            .layer-stack::before {
                display: none;
            }
            .layer-item {
                flex-direction: column;
                text-align: center;
                gap: 14px;
            }
            .layer-item:hover {
                transform: translateY(-4px) !important;
            }
            .lifecycle-flow {
                flex-direction: column;
                gap: 10px;
            }
            .lifecycle-step {
                max-width: 100%;
                flex: 1 1 auto;
            }
            .lifecycle-arrow {
                transform: rotate(90deg);
            }
            .trust-grid {
                grid-template-columns: 1fr;
            }
            .spec-table-wrap {
                grid-template-columns: 1fr;
            }
            .footer .container {
                grid-template-columns: 1fr;
                gap: 26px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-bottom .info-group {
                justify-content: center;
            }
            .section-label h2 {
                font-size: 1.7rem;
            }
            .hero-security .tech-badges {
                gap: 8px;
            }
            .tech-badge-item {
                font-size: 0.7rem;
                padding: 4px 10px;
            }
        }
        @media (max-width: 480px) {
            .hero-security h1 {
                font-size: 1.65rem;
            }
            .hero-security .actions {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            .hero-security .actions .btn-primary,
            .hero-security .actions .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .container {
                padding: 0 16px;
            }
            .spec-table-wrap {
                grid-template-columns: 1fr;
            }
        }