:root {
            --ckonY-primary: #1f4bda;
            --ckonY-bg: #0a0c12;
            --ckonY-surface: #161b22;
            --ckonY-text: #e6edf3;
            --ckonY-text-dim: #8b949e;
            --ckonY-border: rgba(255, 255, 255, 0.1);
            --ckonY-radius: 21px;
            --ckonY-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            --ckonY-glow: inset 0 0 20px rgba(31, 75, 218, 0.15);
        }

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

        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;
            overflow-x: hidden;
            word-break: keep-all;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* 导航区域: fin */
        .ckonY-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 var(--ckonY-border);
            border-radius: 50px;
            padding: 10px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: var(--ckonY-shadow);
        }

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

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

        .ckonY-beacon-link {
            color: var(--ckonY-text-dim);
            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-beacon-link:hover, .ckonY-beacon-link.active {
            color: var(--ckonY-primary);
            background: rgba(31, 75, 218, 0.1);
        }

        /* 展示区域: crest (Cinematic Strip) */
        .ckonY-crest {
            width: 100%;
            height: 75vh;
            min-height: 500px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .ckonY-surge-full {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .ckonY-crest::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(transparent, var(--ckonY-bg));
            z-index: 2;
        }

        .ckonY-apex {
            position: relative;
            z-index: 3;
            width: 90vw;
            max-width: 1100px;
            margin: 0 auto;
            padding-bottom: 60px;
            word-break: break-word;
        }

        .ckonY-apex h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff 0%, #1f4bda 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ckonY-apex p {
            font-size: 1.2rem;
            color: var(--ckonY-text-dim);
            max-width: 650px;
            margin-bottom: 30px;
        }

        /* 按钮组件: ping, snap */
        .ckonY-ping {
            display: inline-flex;
            align-items: center;
            background: var(--ckonY-primary);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 10px 20px rgba(31, 75, 218, 0.3);
        }

        .ckonY-ping:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(31, 75, 218, 0.5);
        }

        .ckonY-snap {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            color: var(--ckonY-text);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: 1px solid var(--ckonY-border);
            margin-left: 15px;
            transition: background 0.25s ease;
        }

        .ckonY-snap:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* 容器组件: vessel, mesh, pcap */
        .ckonY-vessel {
            width: 90vw;
            max-width: 1100px;
            margin: 80px auto;
        }

        .ckonY-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

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

        .ckonY-pcap h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #fff;
        }

        /* 卡片组件: octet, frame */
        .ckonY-frame {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .ckonY-octet {
            background: var(--ckonY-surface);
            border-radius: var(--ckonY-radius);
            padding: 40px;
            border: 1px solid var(--ckonY-border);
            box-shadow: var(--ckonY-glow);
            transition: transform 0.25s ease, border-color 0.25s ease;
            position: relative;
            overflow: hidden;
            min-width: 0;
        }

        .ckonY-octet:hover {
            transform: translateY(-8px);
            border-color: var(--ckonY-primary);
        }

        .ckonY-octet svg {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            fill: var(--ckonY-primary);
        }

        .ckonY-octet h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .ckonY-octet p {
            color: var(--ckonY-text-dim);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* 异步矩阵布局: Asymmetric Matrix */
        .ckonY-mesh-matrix {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 30px;
        }

        .ckonY-octet-large {
            grid-row: span 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* 视觉强化区块 */
        .ckonY-visual-block {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
            margin: 120px 0;
        }

        .ckonY-visual-content {
            flex: 1;
            min-width: 320px;
        }

        .ckonY-visual-media {
            flex: 1.2;
            min-width: 320px;
            border-radius: var(--ckonY-radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            border: 1px solid var(--ckonY-border);
        }

        .ckonY-visual-media img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .ckonY-visual-media:hover img {
            transform: scale(1.05);
        }

        /* 统计卡片 */
        .ckonY-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            padding: 40px;
            background: rgba(31, 75, 218, 0.05);
            border-radius: var(--ckonY-radius);
            margin: 60px 0;
        }

        .ckonY-stat-octet {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }

        .ckonY-stat-val {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--ckonY-primary);
        }

        .ckonY-stat-lbl {
            color: var(--ckonY-text-dim);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
        }

        /* 页脚区域: abyss, sediment */
        .ckonY-abyss {
            background: #050608;
            padding: 80px 0 40px;
            border-top: 1px solid var(--ckonY-border);
            margin-top: 100px;
        }

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

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

        .ckonY-sediment-brand p {
            color: var(--ckonY-text-dim);
            max-width: 300px;
        }

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

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

        .ckonY-sediment-group a {
            display: block;
            color: var(--ckonY-text-dim);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.25s ease;
        }

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

        .ckonY-copyright {
            width: 90vw;
            max-width: 1100px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid var(--ckonY-border);
            color: var(--ckonY-text-dim);
            font-size: 0.9rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .ckonY-fin {
                padding: 10px 15px;
            }
            .ckonY-beacon {
                display: none; /* 简化移动端 */
            }
            .ckonY-crest {
                height: 60vh;
            }
            .ckonY-apex h1 {
                font-size: 2.5rem;
            }
            .ckonY-mesh-matrix {
                grid-template-columns: 1fr;
            }
            .ckonY-visual-block {
                flex-direction: column;
            }
        }

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