/* 基础变量与重置 - 继承首页科技框架视觉基因 */
    :root {
        --bg: #050508;
        --surface: #0f0f16;
        --surface-hover: #1a1a26;
        --primary: #4207f3;
        --primary-glow: rgba(66, 7, 243, 0.4);
        --accent: #00e5ff;
        --text: #f0f0f5;
        --text-dim: #8a8a9e;
        --border: #222230;
        --radius: 8px;
        --transition: 0.25s ease;
    }

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

    body {
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        background-color: var(--bg);
        color: var(--text);
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

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

    /* 强制文本换行与Flex子项安全规则 */
    .flap, .edge, p, h1, h2, h3, li, details {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    [style*="display: flex"] > *, 
    .breeze-span > *, 
    .axis > *, 
    .orbit > * {
        min-width: 0;
    }

    /* 强制复用：导航栏样式 */
    .trim {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(5, 5, 8, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }
    .breeze-span {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem 2rem;
    }
    .wing img {
        height: 32px;
        width: auto;
        display: block;
    }
    .fin {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .nose {
        color: var(--text-dim);
        font-weight: 500;
        font-size: 0.95rem;
    }
    .nose:hover, .nose.active {
        color: var(--text);
    }
    .nose.active {
        position: relative;
        color: var(--primary);
    }
    .nose.active::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        box-shadow: 0 0 8px var(--primary-glow);
    }

    /* 页面骨架容器 */
    .folio {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        gap: 6rem;
        padding-bottom: 6rem;
    }

    /* 模块标题尺度 */
    .edge {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        color: #ffffff;
        letter-spacing: -0.01em;
        white-space: normal;
    }
    .edge-dim {
        color: var(--text-dim);
        font-size: 1.1rem;
        font-weight: 400;
        margin-bottom: 3rem;
        max-width: 600px;
    }

    /* 交互按钮语法 */
    .toss {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 2.5rem;
        background: var(--primary);
        color: #fff;
        font-weight: 600;
        border-radius: var(--radius);
        border: 1px solid transparent;
        cursor: pointer;
        transition: all var(--transition);
        box-shadow: 0 4px 15px rgba(66, 7, 243, 0.2);
    }
    .toss:hover {
        background: #5015ff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px var(--primary-glow);
    }

    /* ---------------------------------------------------- */
    /* 区块 1: Intro (offset_overlap 创意变体) */
    /* ---------------------------------------------------- */
    .launch-span {
        position: relative;
        padding-top: 6rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
        min-height: 70vh;
    }
    .launch-span::before {
        content: '';
        position: absolute;
        top: 10%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
        opacity: 0.3;
        z-index: 0;
        pointer-events: none;
    }
    .soar {
        position: relative;
        z-index: 2;
        background: rgba(15, 15, 22, 0.6);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid var(--border);
        padding: 4rem 3rem;
        border-radius: var(--radius);
        box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
        /* Overlap effect */
        margin-right: -10%;
    }
    .launch-edge {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff;
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
    }
    .soar .flap {
        font-size: 1.15rem;
        color: var(--text-dim);
        margin-bottom: 2.5rem;
        max-width: 90%;
    }
    .orbit {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }
    .orbit svg {
        width: 100%;
        max-width: 500px;
        height: auto;
        filter: drop-shadow(0 0 30px rgba(66, 7, 243, 0.3));
    }
    .pulse-path {
        animation: dash 3s linear infinite;
    }
    @keyframes dash {
        to { stroke-dashoffset: -100; }
    }

    /* ---------------------------------------------------- */
    /* 区块 2: Topic Focus (网格卡片) */
    /* ---------------------------------------------------- */
    .ream {
        position: relative;
    }
    .axis-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    .dart {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 2.5rem 2rem;
        transition: all var(--transition);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        overflow: hidden;
    }
    .dart::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
        opacity: 0;
        transition: opacity var(--transition);
    }
    .dart:hover {
        background: var(--surface-hover);
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    }
    .dart:hover::before {
        opacity: 1;
    }
    .tail {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(66, 7, 243, 0.1);
        border-radius: 12px;
        color: var(--accent);
    }
    .tail svg {
        width: 24px;
        height: 24px;
    }
    .dart .edge {
        font-size: 1.25rem;
        margin-bottom: 0;
    }

    /* ---------------------------------------------------- */
    /* 区块 3: Key Path (有序步骤路径) */
    /* ---------------------------------------------------- */
    .realm {
        background: linear-gradient(180deg, var(--surface) 0%, transparent 100%);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 4rem;
        display: flex;
        flex-wrap: wrap;
        gap: 4rem;
    }
    .crease-info {
        flex: 1 1 300px;
    }
    .axis-path {
        flex: 2 1 500px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        counter-reset: step-counter;
        list-style: none;
    }
    .ply-step {
        position: relative;
        padding-left: 4rem;
        background: rgba(5, 5, 8, 0.5);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 2rem 2rem 2rem 5rem;
        transition: border-color var(--transition);
    }
    .ply-step:hover {
        border-color: rgba(66, 7, 243, 0.5);
    }
    .ply-step::before {
        counter-increment: step-counter;
        content: "0" counter(step-counter);
        position: absolute;
        left: -1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        font-weight: 800;
        color: transparent;
        -webkit-text-stroke: 1px var(--border);
        transition: all var(--transition);
    }
    .ply-step:hover::before {
        -webkit-text-stroke: 1px var(--primary);
        color: rgba(66, 7, 243, 0.1);
        left: -0.5rem;
    }
    .ply-step strong {
        display: block;
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    /* ---------------------------------------------------- */
    /* 区块 4: Usage Context (折叠问答/说明) */
    /* ---------------------------------------------------- */
    .fold {
        max-width: 800px;
        margin: 0 auto;
        padding: 0;
        gap: 2rem;
    }
    .axis-faq {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .ply-faq {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        transition: background var(--transition);
    }
    .ply-faq:hover {
        background: var(--surface-hover);
    }
    .loft-faq {
        padding: 1.5rem 2rem;
        cursor: pointer;
        font-weight: 600;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        list-style: none;
    }
    .loft-faq::-webkit-details-marker {
        display: none;
    }
    .loft-faq::after {
        content: '+';
        font-size: 1.5rem;
        color: var(--primary);
        transition: transform var(--transition);
    }
    .ply-faq[open] .loft-faq::after {
        transform: rotate(45deg);
    }
    .ply-faq .flap {
        padding: 0 2rem 1.5rem 2rem;
        color: var(--text-dim);
        border-top: 1px solid transparent;
    }
    .ply-faq[open] .flap {
        border-top-color: var(--border);
        padding-top: 1.5rem;
    }

    /* ---------------------------------------------------- */
    /* 页脚区域 */
    /* ---------------------------------------------------- */
    .hangar {
        background: #020203;
        border-top: 1px solid var(--border);
        padding: 4rem 2rem;
        margin-top: 4rem;
    }
    .hue {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    .hue-brand {
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: 1px;
    }
    .hue-links {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .hue-links a {
        color: var(--text-dim);
        font-size: 0.9rem;
    }
    .hue-links a:hover {
        color: #fff;
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
        .launch-span {
            grid-template-columns: 1fr;
            margin-top: 2rem;
        }
        .soar {
            margin-right: 0;
            padding: 3rem 2rem;
        }
        .realm {
            padding: 3rem 2rem;
        }
    }
    
    @media (max-width: 768px) {
        .fin {
            display: none; /* 简化移动端，通常由JS处理菜单开关 */
        }
        .folio {
            padding: 0 1.5rem;
            gap: 4rem;
        }
        .launch-edge {
            font-size: 2.2rem;
        }
        .axis-grid {
            grid-template-columns: 1fr;
        }
        .realm {
            flex-direction: column;
            gap: 2rem;
        }
        .ply-step {
            padding: 1.5rem 1.5rem 1.5rem 3.5rem;
        }
        .ply-step::before {
            font-size: 2.5rem;
            left: -0.5rem;
        }
    }

.breeze-trim {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.breeze-trim,
.breeze-trim *,
.breeze-trim *::before,
.breeze-trim *::after {
    box-sizing: border-box;
}

.breeze-trim nav,
.breeze-trim div,
.breeze-trim section,
.breeze-trim article,
.breeze-trim aside,
.breeze-trim p,
.breeze-trim h1,
.breeze-trim h2,
.breeze-trim h3,
.breeze-trim h4,
.breeze-trim h5,
.breeze-trim h6,
.breeze-trim a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.breeze-trim a.breeze-nose {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.breeze-trim a.breeze-nose,
.breeze-trim a.breeze-nose:hover,
.breeze-trim a.breeze-nose:focus,
.breeze-trim a.breeze-nose:active,
.breeze-trim a.breeze-nose.active,
.breeze-trim a.breeze-nose[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);
}

.breeze-trim .breeze-span-2{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.breeze-trim{
            position: fixed;
            top: 0; left: 0; right: 0;
            height: 70px;
            background: rgba(5, 5, 8, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid #222230;
            z-index: 100;
            display: flex;
            align-items: center;
        }

.breeze-trim .breeze-breeze-span{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

.breeze-trim .breeze-wing{
            display: flex;
            align-items: center;
        }

.breeze-trim .breeze-wing img{
            height: 32px;
            width: auto;
        }

.breeze-trim .breeze-fin{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.breeze-trim .breeze-nose{
            color: #8a8a9e;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

.breeze-trim .breeze-nose::after{
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: #00e5ff;
            transform: scaleX(0);
            transition: transform 0.25s ease;
            transform-origin: right;
        }

.breeze-trim .breeze-nose:hover, .breeze-trim .breeze-nose.active{
            color: #fff;
        }

.breeze-trim .breeze-nose:hover::after, .breeze-trim .breeze-nose.active::after{
            transform: scaleX(1);
            transform-origin: left;
        }

@media (max-width: 768px){.breeze-trim .breeze-fin{ display: none;  }}

.breeze-trim {
    background: rgb(5, 5, 8);
    background-image: none;
}

.land-hangar-span.land-hue {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.land-hangar-span.land-hue,
.land-hangar-span.land-hue *,
.land-hangar-span.land-hue *::before,
.land-hangar-span.land-hue *::after {
    box-sizing: border-box;
}

.land-hangar-span.land-hue nav,
.land-hangar-span.land-hue div,
.land-hangar-span.land-hue section,
.land-hangar-span.land-hue article,
.land-hangar-span.land-hue aside,
.land-hangar-span.land-hue p,
.land-hangar-span.land-hue h1,
.land-hangar-span.land-hue h2,
.land-hangar-span.land-hue h3,
.land-hangar-span.land-hue h4,
.land-hangar-span.land-hue h5,
.land-hangar-span.land-hue h6,
.land-hangar-span.land-hue a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.land-hangar-span.land-hue p,
.land-hangar-span.land-hue h1,
.land-hangar-span.land-hue h2,
.land-hangar-span.land-hue h3,
.land-hangar-span.land-hue h4,
.land-hangar-span.land-hue h5,
.land-hangar-span.land-hue h6 {
    text-decoration: none;
}

.land-hangar-span.land-hue img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.land-hangar-span.land-hue {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.land-hangar-span.land-hue a,
.land-hangar-span.land-hue a:hover,
.land-hangar-span.land-hue a:focus,
.land-hangar-span.land-hue a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.land-hangar-span.land-hue .land-span{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.land-hangar-span.land-hue .land-hangar-span{
            border-top: 1px solid #222230;
            padding: 4rem 0 2rem 0;
            background: #050508;
        }

.land-hangar-span.land-hue .land-hue-axis{
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 3rem;
        }

.land-hangar-span.land-hue .land-hue-brand{
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

.land-hangar-span.land-hue .land-hue-flap{ max-width: 300px; font-size: 0.9rem; }

.land-hangar-span.land-hue .land-hue-links{
            display: flex;
            gap: 3rem;
        }

.land-hangar-span.land-hue .land-hue-col{ display: flex; flex-direction: column; gap: 1rem; }

.land-hangar-span.land-hue .land-hue-edge{ font-size: 1rem; color: #fff; margin-bottom: 0.5rem; }

.land-hangar-span.land-hue .land-hue-nose{ font-size: 0.9rem; color: #8a8a9e; }

.land-hangar-span.land-hue .land-hue-nose:hover{ color: #00e5ff; }

.land-hangar-span.land-hue .land-hue-bottom{
            border-top: 1px solid #222230;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8a8a9e;
        }

@media (max-width: 768px){.land-hangar-span.land-hue .land-hue-axis{ flex-direction: column; gap: 2rem; }

.land-hangar-span.land-hue .land-hue-links{ flex-direction: column; gap: 2rem; }}