:root {
            --prime-color: #51e1e6;
            --prime-deep: #0ea5e9;
            --accent-soft: rgba(81, 225, 230, 0.1);
            --radius-main: 18px;
            --max-width: 1300px;
            --slate-bg: #f8fafc;
            --ink-main: #334155;
            --ink-dim: #64748b;
            --depth-bg: #0f172a;
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--ink-main);
            background-color: var(--slate-bg);
            overflow-x: hidden;
        }

        /* 导航栏样式复用 */
        .steer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .glide {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            flex-wrap: wrap;
        }

        .mark img {
            height: 32px;
            display: block;
        }

        .loom {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
        }

        .bond {
            text-decoration: none;
            color: var(--ink-main);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.15s ease;
            position: relative;
        }

        .bond:hover, .bond.active {
            color: var(--prime-deep);
        }

        .bond.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--prime-color);
        }

        /* 主容器 */
        main {
            padding-top: 80px;
        }

        /* Hero 区域 - split_diagonal 变体 */
        .vivid {
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            background: var(--depth-bg);
            color: white;
            position: relative;
            overflow: hidden;
            align-items: center;
        }

        .vivid::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: var(--prime-color);
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
            opacity: 0.05;
        }

        .pouch {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 4rem 2rem;
            width: 100%;
            z-index: 2;
        }

        .swath {
            flex: 1;
            min-width: 320px;
            padding-right: 2rem;
        }

        .vivid-crest {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 1.5rem;
            word-break: keep-all;
        }

        .ink-prime {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .knot {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .spark {
            display: inline-flex;
            align-items: center;
            padding: 1.2rem 2.8rem;
            background: var(--prime-color);
            color: var(--depth-bg);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
            box-shadow: 0 10px 25px rgba(81, 225, 230, 0.3);
        }

        .spark:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(81, 225, 230, 0.4);
        }

        .clasp {
            display: inline-flex;
            align-items: center;
            padding: 1.2rem 2.8rem;
            background: transparent;
            border: 2px solid rgba(255,255,255,0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.15s ease;
        }

        .clasp:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
        }

        .lens-pouch {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
        }

        .lens-pouch img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
            border-radius: 12px;
        }

        /* 平台矩阵区域 */
        .aura {
            padding: 100px 2rem;
            background: white;
        }

        .pouch {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .crest-sub {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .ink-desc {
            text-align: center;
            color: var(--ink-dim);
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

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

        .leaf {
            background: var(--slate-bg);
            padding: 3rem 2rem;
            border-radius: var(--radius-main);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.15s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .leaf:hover {
            transform: translateY(-8px);
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: var(--prime-color);
        }

        .glyph-box {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            box-shadow: 0 8px 16px rgba(0,0,0,0.03);
            color: var(--prime-deep);
        }

        .leaf h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .leaf p {
            color: var(--ink-dim);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .snap {
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            background: #fff;
            border: 1.5px solid #e2e8f0;
            color: var(--ink-main);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.15s ease;
        }

        .snap:hover {
            background: var(--prime-color);
            border-color: var(--prime-color);
            color: var(--depth-bg);
        }

        /* 移动端扫码区域 */
        .realm {
            padding: 80px 2rem;
            background: var(--depth-bg);
            color: white;
            border-radius: 40px;
            margin: 0 2rem 100px 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .realm-swath {
            flex: 1.2;
            min-width: 320px;
        }

        .realm-lens {
            flex: 1;
            min-width: 300px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .realm-lens img {
            width: 100%;
            display: block;
        }

        .qr-knot {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .qr-twig {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--depth-bg);
        }

        .qr-glyph {
            width: 140px;
            height: 140px;
            background: #f1f5f9;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
        }

        /* 规格说明区 */
        .slate {
            max-width: var(--max-width);
            margin: 0 auto 100px auto;
            padding: 0 2rem;
        }

        .casing {
            background: white;
            border-radius: var(--radius-main);
            padding: 4rem;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .stem {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .stem::before {
            content: '';
            width: 6px;
            height: 30px;
            background: var(--prime-color);
            border-radius: 10px;
        }

        .table-pouch {
            width: 100%;
            border-collapse: collapse;
        }

        .table-pouch th, .table-pouch td {
            padding: 1.5rem;
            text-align: left;
            border-bottom: 1px solid #f1f5f9;
        }

        .table-pouch th {
            font-weight: 600;
            color: var(--ink-dim);
            width: 25%;
        }

        /* 页脚 */
        .echo {
            background: #fff;
            padding: 60px 2rem;
            border-top: 1px solid #f1f5f9;
        }

        .roots {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .roots-twig h4 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--depth-bg);
        }

        .roots-twig a {
            display: block;
            color: var(--ink-dim);
            text-decoration: none;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

        .roots-twig a:hover {
            color: var(--prime-deep);
        }

        .heel {
            max-width: var(--max-width);
            margin: 40px auto 0 auto;
            padding-top: 30px;
            border-top: 1px solid #f1f5f9;
            text-align: center;
            color: var(--ink-dim);
            font-size: 0.85rem;
        }

        @media (max-width: 1024px) {
            .pouch { flex-direction: column; text-align: center; }
            .swath { padding-right: 0; margin-bottom: 3rem; }
            .knot { justify-content: center; }
        }

        @media (max-width: 768px) {
            .grid { grid-template-columns: 1fr; }
            .realm { margin: 0 1rem 60px 1rem; padding: 40px 1.5rem; border-radius: 20px; }
            .qr-knot { justify-content: center; }
            .casing { padding: 2rem; }
            .table-pouch th { width: 40%; }
        }

.steer-steer {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: #334155;
}
.steer-steer,
.steer-steer *,
.steer-steer *::before,
.steer-steer *::after {
    box-sizing: border-box;
}

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

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

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

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

.steer-steer a.steer-bond {
    --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;
}

.steer-steer a.steer-bond,
.steer-steer a.steer-bond:hover,
.steer-steer a.steer-bond:focus,
.steer-steer a.steer-bond:active,
.steer-steer a.steer-bond.active,
.steer-steer a.steer-bond[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);
}

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

.steer-steer .steer-glide{
            max-width: 1300px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.steer-steer .steer-mark{
            height: 40px;
            display: flex;
            align-items: center;
        }

.steer-steer .steer-mark img{
            height: 100%;
            width: auto;
        }

.steer-steer .steer-loom{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.steer-steer .steer-bond{
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.15s ease;
            position: relative;
        }

.steer-steer .steer-bond:hover, .steer-steer .steer-bond.active{
            color: #51e1e6;
        }

.steer-steer .steer-bond.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #51e1e6;
        }

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

.steer-steer .steer-loom{
                gap: 1rem;
                justify-content: center;
            }}

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

.depth-depth {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: #334155;
}
.depth-depth,
.depth-depth *,
.depth-depth *::before,
.depth-depth *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.depth-depth{
            background: #000;
            color: rgba(255,255,255,0.6);
            padding: 5rem 0 3rem;
        }

.depth-depth .depth-depth-pouch{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
        }

.depth-depth .depth-echo-stem{
            flex: 1.5;
            min-width: 250px;
        }

.depth-depth .depth-echo-crest{
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

.depth-depth .depth-roots-knot{
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }

.depth-depth .depth-roots-twig{
            min-width: 150px;
        }

.depth-depth .depth-roots-crest{
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

.depth-depth .depth-roots-loom{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.depth-depth .depth-roots-bond{
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.15s ease;
        }

.depth-depth .depth-roots-bond:hover{
            color: #51e1e6;
        }

.depth-depth .depth-depth-heel{
            max-width: 1300px;
            margin: 4rem auto 0;
            padding: 2rem 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.85rem;
        }