:root {
    --primary: #ef9116;
    --bg: #0a0a0b;
    --surface: #141417;
    --text: #d1d1d6;
    --text-peak: #ffffff;
    --radius: 16px;
    --transition: 0.25s ease;
}

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

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

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

/* 强制复用导航栏样式 */
.prow {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.glyph img {
    height: 40px;
    display: block;
}

.steer {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.steer-nexus {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.steer-nexus:hover, .steer-nexus.active {
    color: var(--primary);
}

.spark {
    background: var(--primary);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(239, 145, 22, 0.3);
}

/* 核心内容样式 */
main {
    width: 100%;
}

.aura {
    padding: 100px 5vw 60px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stage-vivid {
    flex: 1;
    min-width: 320px;
}

.peak-realm {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--text-peak);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.prose-vivid {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.optix-shell {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.optix-shell img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* 平台矩阵 */
.realm {
    padding: 80px 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.peak-vivid {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-peak);
}

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

.cell-shard {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cell-shard:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 145, 22, 0.3);
}

.dot-vault {
    width: 64px;
    height: 64px;
    background: rgba(239, 145, 22, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.peak-grain {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-peak);
}

.vein-grain {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
}

.spark-shard {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spark-shard:hover {
    background: var(--primary);
    color: #000;
}

/* 更新日志 */
.vault-field {
    padding: 80px 5vw;
    max-width: 1000px;
    margin: 0 auto;
}

.vein-vivid {
    position: relative;
    padding-left: 40px;
    border-left: 2px solid rgba(239, 145, 22, 0.2);
}

.grain-shard {
    margin-bottom: 3rem;
    position: relative;
}

.grain-shard::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--bg);
    border: 3px solid var(--primary);
    border-radius: 50%;
}

.peak-small {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.prose-small {
    color: rgba(255, 255, 255, 0.7);
}

.prose-small ul {
    list-style: none;
    margin-top: 1rem;
}

.prose-small li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.prose-small li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* 页脚 */
.basin {
    padding: 80px 5vw 40px;
    background: #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hush-vault {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.depth-realm {
    flex: 2;
    min-width: 200px;
}

.depth-realm h3 {
    font-size: 1.5rem;
    color: var(--text-peak);
    margin-bottom: 1rem;
}

.steer-kin {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.nexus-grain {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .aura { padding-top: 60px; text-align: center; justify-content: center; }
    .prose-vivid { margin-left: auto; margin-right: auto; }
    .steer { order: 3; width: 100%; margin: 1rem 0; }
    .flock { justify-content: center; gap: 1rem; }
}

.path-prow {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--prose);
}
.path-prow,
.path-prow *,
.path-prow *::before,
.path-prow *::after {
    box-sizing: border-box;
}

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

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

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

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

.path-prow a.path-steer-nexus {
    --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;
}

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

.path-prow .path-shell{
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5vw;
        }

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

.path-prow .path-shell{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.path-prow .path-glyph{
            height: 40px;
            min-width: 0;
        }

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

.path-prow .path-steer{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.path-prow .path-flock{
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 1.5rem;
        }

.path-prow .path-steer-nexus{
            color: #d1d1d6;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
            position: relative;
            padding: 0.5rem 0;
        }

.path-prow .path-steer-nexus:hover, .path-prow .path-steer-nexus.active{
            color: #ef9116;
        }

.path-prow .path-steer-nexus.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ef9116;
        }

.path-prow .path-spark{
            display: inline-flex;
            align-items: center;
            background: #ef9116;
            color: #000;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            border: none;
            cursor: pointer;
        }

.path-prow .path-spark:hover{
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(239, 145, 22, 0.3);
        }

@media (max-width: 768px){.path-prow .path-flock{ display: none; }}

.path-prow {
    background: rgb(10, 10, 11);
    background-image: none;
}

.basin-vault {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--prose);
}
.basin-vault,
.basin-vault *,
.basin-vault *::before,
.basin-vault *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.basin-vault .basin-shell{
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.basin-vault .basin-prow{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 11, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.basin-vault .basin-prow .basin-shell{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.basin-vault .basin-glyph{
            height: 40px;
            min-width: 0;
        }

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

.basin-vault .basin-steer{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.basin-vault .basin-flock{
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 1.5rem;
        }

.basin-vault .basin-steer-nexus{
            color: #d1d1d6;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
            position: relative;
            padding: 0.5rem 0;
        }

.basin-vault .basin-steer-nexus:hover, .basin-vault .basin-steer-nexus.active{
            color: #ef9116;
        }

.basin-vault .basin-steer-nexus.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ef9116;
        }

.basin-vault .basin-aura{
            padding: 4rem 0;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.5rem;
            align-items: center;
        }

.basin-vault .basin-aura-prose{
            grid-column: 1 / span 5;
            z-index: 10;
        }

.basin-vault .basin-peak-realm{
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            color: #ffffff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

.basin-vault .basin-prose-lead{
            font-size: 1.25rem;
            color: #d1d1d6;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

.basin-vault .basin-mosaic-kin{
            grid-column: 6 / span 7;
            display: grid;
            grid-template-areas: 
                "A A B"
                "A A C"
                "D E C";
            gap: 1rem;
            height: 600px;
        }

.basin-vault .basin-optix-shard{
            border-radius: 16px;
            overflow: hidden;
            background: #1e1e22;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

.basin-vault .basin-optix-shard img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

.basin-vault .basin-optix-shard:hover img{
            transform: scale(1.05);
        }

.basin-vault .basin-spark{
            display: inline-flex;
            align-items: center;
            background: #ef9116;
            color: #000;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            border: none;
            cursor: pointer;
        }

.basin-vault .basin-spark:hover{
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(239, 145, 22, 0.3);
        }

.basin-vault .basin-vivid{
            padding: 8rem 0;
            background: radial-gradient(circle at 10% 20%, rgba(239, 145, 22, 0.05) 0%, transparent 50%);
        }

.basin-vault .basin-vivid .basin-peak-sub{
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: #ffffff;
        }

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

.basin-vault .basin-cell-shard{
            background: #141417;
            padding: 3rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: border-color 0.25s ease;
        }

.basin-vault .basin-cell-shard:hover{
            border-color: #ef9116;
        }

.basin-vault .basin-dot-aura{
            width: 56px;
            height: 56px;
            background: rgba(239, 145, 22, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #ef9116;
        }

.basin-vault .basin-cell-shard h3{
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

.basin-vault .basin-stage{
            padding: 8rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

.basin-vault .basin-stage-optix{
            flex: 1;
            min-width: 350px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

.basin-vault .basin-stage-optix img{
            width: 100%;
            display: block;
        }

.basin-vault .basin-stage-prose{
            flex: 1;
            min-width: 350px;
        }

.basin-vault .basin-realm-pathway{
            padding: 8rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.basin-vault .basin-path-kin{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }

.basin-vault .basin-path-grain{
            background: rgba(255,255,255,0.02);
            padding: 2rem;
            border-radius: 16px;
            text-decoration: none;
            color: inherit;
            display: block;
            transition: background 0.25s ease;
        }

.basin-vault .basin-path-grain:hover{
            background: rgba(255,255,255,0.05);
        }

.basin-vault .basin-path-grain h4{
            color: #ef9116;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.basin-vault .basin-stern{
            background: #050506;
            padding: 6rem 0 3rem;
            margin-top: 4rem;
        }

.basin-vault .basin-stern-basin{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

.basin-vault .basin-stern-brand h2{
            color: #ffffff;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

.basin-vault .basin-stern-kin h5{
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

.basin-vault .basin-stern-nexus{
            display: block;
            color: #d1d1d6;
            text-decoration: none;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

.basin-vault .basin-stern-nexus:hover{
            color: #ef9116;
        }

.basin-vault .basin-stern-depth{
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
            color: #666;
        }

@media (max-width: 1024px){.basin-vault .basin-aura{ display: block; }

.basin-vault .basin-aura-prose{ margin-bottom: 3rem; }

.basin-vault .basin-mosaic-kin{ height: 400px; }

.basin-vault .basin-stern-basin{ grid-template-columns: 1fr 1fr; }}

@media (max-width: 768px){.basin-vault .basin-flock{ display: none; }

.basin-vault .basin-vault-kin, .basin-vault .basin-path-kin, .basin-vault .basin-stern-basin{ grid-template-columns: 1fr; }

.basin-vault .basin-stage-optix, .basin-vault .basin-stage-prose{ min-width: 100%; }

.basin-vault .basin-peak-realm{ font-size: 2.5rem; }}