/* CSS Variables - Inherited from visual contract */
        :root {
            --primary: #a178d8;
            --primary-dark: #8a5bc9;
            --primary-light: #f4ecfd;
            --text-main: #2d2438;
            --text-sub: #6b627a;
            --bg-page: #ffffff;
            --bg-alt: #faf9fc;
            --radius: 12px;
            --radius-lg: 20px;
            --shadow-sm: 0 4px 12px rgba(161, 120, 216, 0.05);
            --shadow-md: 0 10px 30px rgba(161, 120, 216, 0.1);
            --transition: 0.35s ease;
            --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* Reset & Base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: var(--font-family);
            background-color: var(--bg-page);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Global Typography & Safe Word Breaks */
        .apex, .cipher, .wire, .pulse {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        .cipher {
            word-break: keep-all; /* Better for Chinese */
            line-height: 1.7;
            color: var(--text-sub);
        }

        .apex {
            color: var(--text-main);
            font-weight: 800;
            letter-spacing: -0.02em;
            white-space: normal;
        }

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

        /* Layout & Containers */
        .tunnel {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .veil {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 5%;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        /* Nav & Header (Strictly inherited from prompt) */
        .peak {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(161, 120, 216, 0.1);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .helm {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 16px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }

        .sigil img {
            height: 32px;
            width: auto;
            display: block;
        }

        .matrix {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }

        .wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-sub);
            padding: 8px 0;
            position: relative;
        }

        .wire:hover {
            color: var(--primary);
        }

        .wire.active {
            color: var(--primary-dark);
            font-weight: 600;
        }

        .wire.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .warp {
            padding: 10px 24px;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition);
        }

        .warp:hover {
            background-color: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }

        /* Main Core */
        .core {
            display: flex;
            flex-direction: column;
            width: 100%;
            flex-wrap: wrap;
            min-width: 0;
        }

        /* Portal (Hero / Acquire Section) */
        .portal {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-page) 100%);
        }

        .acquire-grid {
            gap: 48px;
            align-items: center;
        }

        .acquire-cipher {
            flex: 1 1 500px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            min-width: 0;
        }

        .acquire-cipher .apex {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.15;
        }

        .acquire-cipher .cipher {
            font-size: 1.125rem;
            max-width: 480px;
        }

        .platform-matrix {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 16px;
        }

        .platform-pulse {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 24px;
            background-color: var(--bg-page);
            border: 1px solid rgba(161, 120, 216, 0.2);
            border-radius: var(--radius);
            transition: all var(--transition);
            width: 100%;
            max-width: 360px;
            color: var(--text-main);
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }

        .platform-pulse:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            background: linear-gradient(90deg, var(--bg-page) 0%, var(--primary-light) 100%);
        }

        .platform-pulse .glyph {
            width: 28px;
            height: 28px;
            fill: var(--primary-dark);
        }

        .acquire-media {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
            min-width: 0;
            position: relative;
        }

        .acquire-media::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: var(--primary-light);
            border-radius: var(--radius-lg);
            z-index: 0;
            transform: translate(20px, 20px) rotate(2deg);
        }

        .lens {
            width: 100%;
            max-width: 560px;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            z-index: 1;
            display: block;
        }

        /* Nexus (Comparison / Version Info) */
        .nexus {
            padding: 80px 0;
            background-color: var(--bg-page);
        }

        .nexus .veil {
            flex-direction: column;
            gap: 48px;
        }

        .center-apex {
            text-align: center;
            font-size: clamp(2rem, 4vw, 2.5rem);
            width: 100%;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            width: 100%;
        }

        .vault {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-page) 100%);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 16px;
            border: 1px solid rgba(161, 120, 216, 0.1);
            transition: all var(--transition);
            min-width: 0;
        }

        .vault:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(161, 120, 216, 0.3);
        }

        .vault .glyph {
            width: 48px;
            height: 48px;
            fill: var(--primary);
            margin-bottom: 8px;
        }

        .vault .apex {
            font-size: 1.25rem;
        }

        /* Shell (Steps / Deployment Guide) */
        .veil {
            padding: 80px 0;
            background-color: var(--bg-alt);
        }

        .veil .veil {
            flex-direction: column;
            gap: 56px;
        }

        .steps-path {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            width: 100%;
            position: relative;
        }

        .node {
            background-color: var(--bg-page);
            padding: 32px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            z-index: 1;
            min-width: 0;
            transition: transform var(--transition);
        }

        .node:hover {
            transform: translateY(-4px);
        }

        .step-num {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-light);
            line-height: 1;
            position: absolute;
            top: 24px;
            right: 24px;
            z-index: -1;
        }

        .node .apex {
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .node .glyph {
            width: 24px;
            height: 24px;
            fill: var(--primary-dark);
        }

        /* Base (Footer) */
        .base {
            background-color: var(--text-main);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 40px;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .base .veil {
            flex-direction: column;
            gap: 40px;
            align-items: center;
        }

        .base-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.05em;
        }

        .base-matrix {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .base .wire {
            color: rgba(255, 255, 255, 0.7);
        }

        .base .wire:hover {
            color: #fff;
        }

        .crypt {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            padding-top: 24px;
            text-align: center;
            font-size: 0.875rem;
        }

        /* In-text link styling */
        .cipher .wire {
            color: var(--primary-dark);
            font-weight: 600;
            padding: 0;
            border-bottom: 1px dashed var(--primary);
        }
        .cipher .wire:hover {
            color: var(--primary);
            border-bottom-style: solid;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .acquire-cipher .apex {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .helm {
                flex-direction: column;
                gap: 20px;
                padding: 20px 5%;
            }
            .matrix {
                justify-content: center;
                gap: 16px;
            }
            .pod {
                display: none; /* Hide top right button on mobile to save space, [role="navigation"] handles it */
            }
            .acquire-grid {
                flex-direction: column;
                text-align: center;
            }
            .acquire-cipher {
                align-items: center;
            }
            .platform-matrix {
                width: 100%;
                align-items: center;
            }
            .platform-pulse {
                justify-content: center;
            }
            .steps-path::before {
                display: none;
            }
        }

.helm-peak .helm-wire{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.helm-peak{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #eae5f2;
        }

.helm-peak .helm-helm{
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 5%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.helm-peak .helm-sigil, .helm-peak .helm-matrix, .helm-peak .helm-pod{
            min-width: 0;
        }

.helm-peak .helm-sigil img{
            height: 32px;
            width: auto;
        }

.helm-peak .helm-matrix{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

.helm-peak .helm-wire{
            text-decoration: none;
            color: #6b627a;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.35s ease;
            min-width: 0;
        }

.helm-peak .helm-wire:hover{
            color: #a178d8;
        }

.helm-peak .helm-wire.active{
            color: #a178d8;
            font-weight: 700;
        }

.helm-peak .helm-warp{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            background-color: #a178d8;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.35s ease;
            min-width: 0;
            border: 1px solid transparent;
        }

.helm-peak .helm-warp:hover{
            background-color: #8a5bc9;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(161, 120, 216, 0.05);
        }

@media (max-width: 768px){.helm-peak .helm-helm{
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }}

.helm-peak {
    background: rgb(255, 255, 255);
    background-image: none;
}

.anchor-root {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
}
.anchor-root,
.anchor-root *,
.anchor-root *::before,
.anchor-root *::after {
    box-sizing: border-box;
}

.anchor-root [role="navigation"],
.anchor-root div,
.anchor-root section,
.anchor-root article,
.anchor-root aside,
.anchor-root p,
.anchor-root h1,
.anchor-root h2,
.anchor-root h3,
.anchor-root h4,
.anchor-root h5,
.anchor-root h6,
.anchor-root a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.anchor-root p,
.anchor-root h1,
.anchor-root h2,
.anchor-root h3,
.anchor-root h4,
.anchor-root h5,
.anchor-root h6 {
    text-decoration: none;
}

.anchor-root img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.anchor-root {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.anchor-root a,
.anchor-root a:hover,
.anchor-root a:focus,
.anchor-root a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.anchor-root .anchor-cipher, .anchor-root .anchor-apex, .anchor-root .anchor-wire{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.anchor-root p.anchor-cipher{
            word-break: keep-all;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

.anchor-root h1.anchor-apex, .anchor-root h2.anchor-apex, .anchor-root h3.anchor-apex{
            margin-top: 0;
            color: #2d2438;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

.anchor-root .anchor-wire{
            text-decoration: none;
            color: #6b627a;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.35s ease;
            min-width: 0;
        }

.anchor-root .anchor-wire:hover{
            color: #a178d8;
        }

.anchor-root .anchor-wire.active{
            color: #a178d8;
            font-weight: 700;
        }

.anchor-root{
            background-color: #2d2438;
            color: #fff;
            padding: 80px 5% 40px;
        }

.anchor-root .anchor-anchor{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            justify-content: space-between;
        }

.anchor-root .anchor-base-info{
            flex: 1.5;
            min-width: 280px;
        }

.anchor-root .anchor-base-info .anchor-apex{
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

.anchor-root .anchor-base-info .anchor-cipher{
            color: rgba(255, 255, 255, 0.6);
            max-width: 360px;
        }

.anchor-root .anchor-base-links{
            flex: 2;
            min-width: 280px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 40px;
        }

.anchor-root .anchor-pod-col{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.anchor-root .anchor-pod-col .anchor-apex{
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

.anchor-root .anchor-pod-col .anchor-wire{
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.35s ease;
        }

.anchor-root .anchor-pod-col .anchor-wire:hover{
            color: #fff;
        }

.anchor-root .anchor-base-bottom{
            max-width: 1280px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }