/* 站点统一视觉变量体系 - 继承自首页视觉契约 */
: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;
    --radius-lg: 11px;
    --transition: 0.25s ease;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --max-width: 1200px;
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* 强制：容器宽度、Flex规则与文本换行 */
.span {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.axis {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
}

.flap, .edge {
    word-break: break-word;
    overflow-wrap: break-word;
}
.flap {
    word-break: keep-all; /* 中文优化 */
}
.edge {
    white-space: normal;
}

/* ==========================================================================
   强制复用：导航栏样式
   ========================================================================== */
.trim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    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;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    min-width: 0;
}

.wing {
    display: flex;
    align-items: center;
    min-width: 0;
}

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

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

.nose {
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nose:hover, .nose.active {
    color: var(--text);
}

.nose::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nose:hover::after, .nose.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .fin {
        display: none; /* 移动端简化，实际项目中需配合JS展开 */
    }
}

/* ==========================================================================
   页面骨架变体
   ========================================================================== */
.realm {
    padding-top: 72px; /* 避开固定导航 */
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 4rem;
    padding-bottom: 5rem;
}

/* 组件同族变体：按钮 */
.toss {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    min-width: 0;
}

.toss:hover {
    background: #3b06db;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 7, 243, 0.6);
}

/* ==========================================================================
   区块 1：无语言障碍的通讯体验 (Hero 变体: offset_overlap)
   ========================================================================== */
.soar-span {
    position: relative;
    padding: 6rem 0 3rem;
    overflow: hidden;
}

/* 背景光晕层级 */
.soar-span::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.soar-axis {
    align-items: center;
    gap: 3rem;
}

.soar-flap {
    flex: 1 1 400px;
    min-width: 0;
    z-index: 2;
}

.soar-edge {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.soar-desc {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.soar-graphic {
    flex: 1 1 450px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

/* offset_overlap 视觉表现 */
.overlap-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.overlap-layer-base {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: translate(-5%, 5%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.overlap-layer-top {
    position: absolute;
    width: 75%;
    height: 75%;
    background: rgba(15, 15, 22, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(66, 7, 243, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transform: translate(15%, -15%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.overlap-layer-top::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tail-huge {
    width: 64px;
    height: 64px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lang-tip {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .soar-span {
        padding: 4rem 0 2rem;
    }
    .overlap-frame {
        transform: scale(0.9);
    }
}

/* ==========================================================================
   区块 2：一键应用官方中文包 (Steps)
   ========================================================================== */
.ream {
    position: relative;
    z-index: 5;
}

.ream-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
}

.ream-edge {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.ream-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 600px;
}

.ream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.crease {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.crease:hover {
    background: var(--surface-hover);
    border-color: rgba(66, 7, 243, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.crease-tail {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #2c04a3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.crease-edge {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.crease .flap {
    color: var(--text-dim);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* ==========================================================================
   区块 3：汉化常见问题解答 (FAQ)
   ========================================================================== */
.folio {
    position: relative;
    padding: 2rem 0;
}

.folio-head {
    flex-direction: column;
    margin-bottom: 3rem;
    max-width: 600px;
}

.folio-edge {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.folio-desc {
    color: var(--text-dim);
    font-size: 1.05rem;
}

.folio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.dart {
    background: rgba(15, 15, 22, 0.4);
    border-left: 3px solid var(--border);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: all var(--transition);
    min-width: 0;
}

.dart:hover {
    background: var(--surface);
    border-left-color: var(--primary);
}

.dart-edge {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.dart .flap {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* ==========================================================================
   强制结构：页脚区域
   ========================================================================== */
.hue {
    background: #020203;
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.hangar-axis {
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.hangar-brand {
    flex: 1 1 300px;
    min-width: 0;
}

.hangar-edge {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hangar-brand .flap {
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 280px;
}

.hangar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    min-width: 0;
}

.hangar-links .nose {
    font-size: 0.95rem;
}

.hangar-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
}

.hangar-bottom .flap {
    color: #555566;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hangar-axis {
        flex-direction: column;
    }
    .hangar-links {
        flex-direction: column;
        gap: 1rem;
    }
}

.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; }}