:root {
            --ckonY-primary: #1f4bda;
            --ckonY-bg: #05070a;
            --ckonY-surface: #0d1117;
            --ckonY-text: #e6edf3;
            --ckonY-text-dim: #8b949e;
            --ckonY-accent: #3b82f6;
            --ckonY-radius: 18px;
            --ckonY-transition: 0.25s ease;
        }

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

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

        /* 强制复用导航栏样式 */
        .ckonY-fin {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background: rgba(5, 7, 10, 0.8);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ckonY-logo img {
            height: 32px;
            width: auto;
        }

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

        .ckonY-beacon-link {
            color: var(--ckonY-text-dim);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--ckonY-transition);
        }

        .ckonY-beacon-link:hover, .ckonY-beacon-link.active {
            color: var(--ckonY-primary);
        }

        /* Hero: Cinematic Strip */
        .ckonY-apex {
            position: relative;
            padding: 120px 5% 60px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .ckonY-pcap-strip {
            display: flex;
            gap: 20px;
            width: 200%;
            opacity: 0.15;
            mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
            pointer-events: none;
            margin-bottom: 40px;
        }

        .ckonY-octet-frame {
            background: linear-gradient(45deg, var(--ckonY-primary), #000);
            height: 180px;
            min-width: 320px;
            border-radius: var(--ckonY-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ckonY-crest-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            max-width: 900px;
            margin-bottom: 1.5rem;
            background: linear-gradient(to bottom, #fff 0%, #888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

        .ckonY-crest-desc {
            font-size: 1.25rem;
            color: var(--ckonY-text-dim);
            max-width: 700px;
            margin-bottom: 2.5rem;
        }

        /* 核心网格布局 */
        .ckonY-mesh {
            max-width: 1300px;
            margin: 0 auto;
            padding: 80px 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .ckonY-vessel-case {
            background: var(--ckonY-surface);
            border-radius: var(--ckonY-radius);
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: var(--ckonY-transition);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .ckonY-vessel-case:hover {
            transform: translateY(-8px);
            border-color: var(--ckonY-primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .ckonY-octet-icon {
            width: 56px;
            height: 56px;
            background: rgba(31, 75, 218, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--ckonY-primary);
        }

        .ckonY-vessel-case h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .ckonY-vessel-case p {
            color: var(--ckonY-text-dim);
            font-size: 1rem;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        /* 深度路径 */
        .ckonY-surge-path {
            background: linear-gradient(to bottom, #05070a, #0d1117);
            padding: 100px 5%;
        }

        .ckonY-pcap-wrap {
            max-width: 1000px;
            margin: 0 auto;
        }

        .ckonY-pcap-item {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
        }

        .ckonY-pcap-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .ckonY-pcap-visual {
            flex: 1;
            min-width: 300px;
            background: #161b22;
            height: 240px;
            border-radius: var(--ckonY-radius);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ckonY-pcap-visual::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--ckonY-primary);
            top: 50%;
            box-shadow: 0 0 15px var(--ckonY-primary);
            animation: scan 3s infinite linear;
        }

        @keyframes scan {
            0% { top: 0; }
            100% { top: 100%; }
        }

        .ckonY-pcap-text {
            flex: 1;
            min-width: 300px;
        }

        .ckonY-pcap-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--ckonY-primary);
        }

        /* 交互组件 */
        .ckonY-ping-main {
            display: inline-flex;
            align-items: center;
            padding: 14px 32px;
            background: var(--ckonY-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--ckonY-transition);
            border: none;
            cursor: pointer;
        }

        .ckonY-ping-main:hover {
            background: #2b59ec;
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(31, 75, 218, 0.4);
        }

        .ckonY-snap-link {
            display: inline-flex;
            align-items: center;
            color: var(--ckonY-text);
            text-decoration: none;
            font-size: 0.9rem;
            margin-top: 1rem;
            border-bottom: 1px solid transparent;
            transition: var(--ckonY-transition);
        }

        .ckonY-snap-link:hover {
            color: var(--ckonY-primary);
            border-bottom-color: var(--ckonY-primary);
        }

        /* 页脚 */
        .ckonY-abyss {
            padding: 80px 5% 40px;
            background: #000;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .ckonY-sediment-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .ckonY-sediment-info {
            flex: 1;
            min-width: 250px;
        }

        .ckonY-sediment-info h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .ckonY-sediment-info p {
            color: var(--ckonY-text-dim);
            font-size: 0.9rem;
        }

        .ckonY-sediment-links {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

        .ckonY-sediment-col h5 {
            color: #fff;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
        }

        .ckonY-sediment-col ul {
            list-style: none;
        }

        .ckonY-sediment-col li {
            margin-bottom: 0.8rem;
        }

        .ckonY-sediment-col a {
            color: var(--ckonY-text-dim);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--ckonY-transition);
        }

        .ckonY-sediment-col a:hover {
            color: var(--ckonY-primary);
        }

        .ckonY-sediment-bottom {
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: #444;
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .ckonY-beacon { gap: 1rem; justify-content: center; margin-top: 1rem; }
            .ckonY-fin { flex-direction: column; text-align: center; }
            .ckonY-crest-title { font-size: 2rem; }
            .ckonY-mesh { grid-template-columns: 1fr; }
            .ckonY-pcap-item { flex-direction: column !important; text-align: center; }
        }

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

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

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

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

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

.ckonY-hdr-fin a.ckonY-hdr-beacon-link {
    --aisite-shell-nav-padding: 8px 12px;
    --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;
}

.ckonY-hdr-fin a.ckonY-hdr-beacon-link,
.ckonY-hdr-fin a.ckonY-hdr-beacon-link:hover,
.ckonY-hdr-fin a.ckonY-hdr-beacon-link:focus,
.ckonY-hdr-fin a.ckonY-hdr-beacon-link:active,
.ckonY-hdr-fin a.ckonY-hdr-beacon-link.active,
.ckonY-hdr-fin a.ckonY-hdr-beacon-link[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);
}

.ckonY-hdr-fin{
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90vw;
            max-width: 1100px;
            z-index: 1000;
            background: rgba(10, 12, 18, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 10px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }

.ckonY-hdr-fin .ckonY-hdr-logo img{
            height: 32px;
            filter: brightness(1.2);
        }

.ckonY-hdr-fin .ckonY-hdr-beacon{
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

.ckonY-hdr-fin .ckonY-hdr-beacon-link{
            color: #8b949e;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
            padding: 8px 12px;
            border-radius: 12px;
            min-width: 0;
        }

.ckonY-hdr-fin .ckonY-hdr-beacon-link:hover, .ckonY-hdr-fin .ckonY-hdr-beacon-link.active{
            color: #1f4bda;
            background: rgba(31, 75, 218, 0.1);
        }

@media (max-width: 768px){.ckonY-hdr-fin{
                padding: 10px 15px;
            }

.ckonY-hdr-fin .ckonY-hdr-beacon{
                display: none; 
            }}

.ckonY-hdr-fin {
    background: rgb(10, 12, 18);
    background-image: none;
}

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

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

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

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

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

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

.ckonY-ftr-abyss{
            background: #050608;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 100px;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment{
            width: 90vw;
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-brand h4{
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #fff;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-brand p{
            color: #8b949e;
            max-width: 300px;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-links{
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-group h5{
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-group a{
            display: block;
            color: #8b949e;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.25s ease;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-group a:hover{
            color: #1f4bda;
        }

.ckonY-ftr-abyss .ckonY-ftr-copyright{
            width: 90vw;
            max-width: 1100px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #8b949e;
            font-size: 0.9rem;
            text-align: center;
        }