:root {
            --primary: #de4e35;
            --dark: #121212;
            --gray: #5f6368;
            --light: #f8f9fa;
            --shadow: 0 10px 30px rgba(0,0,0,0.08);
            --radius: 9px;
            --border: rgba(0,0,0,0.06);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* 强制导航栏样式复用 */
        .flux {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .ridge {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .glyph {
            height: 32px;
            min-width: 0;
        }

        .glyph img {
            height: 100%;
            display: block;
        }

        .orbit-glint {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            min-width: 0;
        }

        .crest {
            text-decoration: none;
            color: #444;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.35s ease;
            position: relative;
        }

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

        .crest.active {
            color: var(--primary);
        }

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

        /* 主容器 */
        .hull {
            padding-top: 72px;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Ecosystem Hero */
        .flare {
            padding: 10rem 2rem 6rem;
            background: linear-gradient(180deg, #fff 0%, #fdfdfd 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .prism {
            max-width: 900px;
            margin: 0 auto;
            width: 100%;
        }

        .sheen-giant {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.04em;
            color: var(--dark);
            margin-bottom: 2rem;
            word-break: keep-all;
        }

        .grain-lead {
            font-size: 1.25rem;
            color: var(--gray);
            max-width: 650px;
            margin: 0 auto 3rem;
        }

        .strand-focus {
            width: 100%;
            max-width: 1000px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-top: 2rem;
            transition: transform 0.35s ease;
        }

        .strand-focus:hover {
            transform: translateY(-5px);
        }

        /* Category Showcase */
        .facet-alloy {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .sheen-mid {
            font-size: 2.25rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .grain-sub {
            text-align: center;
            color: var(--gray);
            margin-bottom: 4rem;
        }

        .glint-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .shard-path {
            flex: 1;
            min-width: 320px;
            background: #fff;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            border: 1px solid var(--border);
            transition: all 0.35s ease;
        }

        .shard-path:hover {
            box-shadow: var(--shadow);
            border-color: rgba(222, 78, 53, 0.2);
        }

        .tether-box {
            width: 56px;
            height: 56px;
            background: var(--light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .tether-box svg {
            width: 28px;
            height: 28px;
        }

        .sheen-small {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        /* Security Brief */
        .vault-alloy {
            background: var(--dark);
            color: #fff;
            padding: 6rem 2rem;
            margin: 4rem 0;
        }

        .vault-core {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .vault-info {
            flex: 1;
            min-width: 300px;
        }

        .sheen-white {
            color: #fff;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .grain-muted {
            color: #a0a0a0;
            font-size: 1.1rem;
        }

        .bolt-outline {
            display: inline-block;
            margin-top: 2rem;
            padding: 0.8rem 2rem;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius);
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.35s ease;
        }

        .bolt-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: #fff;
        }

        /* Guide Steps */
        .etch-alloy {
            padding: 6rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .etch-alloy {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 4rem;
        }

        .etch-step {
            flex: 1;
            min-width: 280px;
            position: relative;
        }

        .etch-number {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(222, 78, 53, 0.1);
            position: absolute;
            top: -1.5rem;
            left: 0;
            z-index: -1;
        }

        /* Footer */
        .abyss {
            background: #fafafa;
            padding: 5rem 2rem 3rem;
            border-top: 1px solid var(--border);
        }

        .trace-alloy {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }

        .bead-brand {
            flex: 1;
            min-width: 200px;
        }

        .bead-brand span {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            display: block;
            margin-bottom: 1rem;
        }

        .bead-links {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .bead-glint h4 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            color: var(--gray);
        }

        .bead-glint a {
            display: block;
            text-decoration: none;
            color: #666;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .bead-glint a:hover {
            color: var(--primary);
        }

        .trace-copyright {
            max-width: 1200px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            text-align: center;
            color: #999;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .orbit-glint { display: none; }
            .sheen-giant { font-size: 2.5rem; }
            .flare { padding: 8rem 1.5rem 4rem; }
            .shard-path { min-width: 100%; }
            .vault-core { gap: 2rem; }
        }

.orbit-flux {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: #333;
}
.orbit-flux,
.orbit-flux *,
.orbit-flux *::before,
.orbit-flux *::after {
    box-sizing: border-box;
}

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

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

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

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

.orbit-flux a.orbit-crest {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.orbit-flux a.orbit-crest,
.orbit-flux a.orbit-crest:hover,
.orbit-flux a.orbit-crest:focus,
.orbit-flux a.orbit-crest:active,
.orbit-flux a.orbit-crest.active,
.orbit-flux a.orbit-crest[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.orbit-flux{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.orbit-flux .orbit-ridge{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 2rem;
        }

.orbit-flux .orbit-glyph{
            height: 32px;
            min-width: 0;
        }

.orbit-flux .orbit-glyph img{
            height: 100%;
            display: block;
        }

.orbit-flux .orbit-orbit-glint{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.orbit-flux .orbit-crest{
            text-decoration: none;
            color: #555;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
        }

.orbit-flux .orbit-crest:hover{
            color: #de4e35;
        }

.orbit-flux .orbit-crest.active{
            color: #de4e35;
            position: relative;
        }

.orbit-flux .orbit-crest.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #de4e35;
        }

@media (max-width: 768px){.orbit-flux .orbit-ridge{ justify-content: center; gap: 1rem; }

.orbit-flux .orbit-orbit-glint{ justify-content: center; gap: 1rem; }}

.orbit-flux {
    background: rgb(255, 255, 255);
    background-image: none;
}

.trace-bead {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: #333;
}
.trace-bead,
.trace-bead *,
.trace-bead *::before,
.trace-bead *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.trace-bead{
            padding: 5rem 2rem;
            background: #fafafa;
            border-top: 1px solid #eee;
        }

.trace-bead .trace-alloy-bead{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }

.trace-bead .trace-trace-brand{
            flex: 2;
            min-width: 250px;
        }

.trace-bead .trace-trace-links{
            flex: 3;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

.trace-bead .trace-sheen-foot{
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333;
        }

.trace-bead .trace-grain-foot{
            font-size: 0.9rem;
            color: #999;
            margin-top: 2rem;
        }

.trace-bead .trace-crest-foot{
            display: block;
            text-decoration: none;
            color: #666;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            transition: 0.35s ease;
        }

.trace-bead .trace-crest-foot:hover{
            color: #de4e35;
        }