:root {
            --primary: #40eaea;
            --surface: #161c24;
            --accent: #2d3848;
            --radius: 12px;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            --bg: #0a0e14;
            --text: #ffffff;
            --text-dim: #a0aec0;
        }

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

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

        /* 导航区域 */
        .sonar {
            background: rgba(10, 14, 20, 0.8);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid var(--accent);
        }

        .dorsal {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 24px;
            flex-wrap: wrap;
        }

        .scale {
            display: flex;
            align-items: center;
        }

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

        .bit {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .gill {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.25s ease;
        }

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

        .snap-reef {
            background: var(--primary);
            color: var(--bg);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 0 20px rgba(64, 234, 234, 0.3);
            display: inline-block;
        }

        .snap-reef:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(64, 234, 234, 0.5);
        }

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

        /* 首屏/叙事区块 */
        .breach {
            max-width: 1300px;
            margin: 0 auto;
            padding: 100px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .mark {
            flex: 1;
            min-width: 300px;
        }

        .eye-primary {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stream-large {
            font-size: 1.25rem;
            color: var(--text-dim);
            max-width: 600px;
            margin-bottom: 40px;
            word-break: break-word;
        }

        /* 拼贴式布局 (Mosaic Collage) */
        .vortex-mosaic {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .packet-mosaic {
            background: var(--surface);
            border: 1px solid var(--accent);
            border-radius: var(--radius);
            padding: 30px;
            transition: border-color 0.25s ease;
        }

        .packet-mosaic:nth-child(1) { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
        .packet-mosaic:hover { border-color: var(--primary); }

        .tooth-box {
            width: 48px;
            height: 48px;
            background: rgba(64, 234, 234, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
        }

        /* 功能亮点区块 */
        .vortex {
            background: var(--surface);
            padding: 100px 24px;
            margin: 80px 0;
            border-top: 1px solid var(--accent);
            border-bottom: 1px solid var(--accent);
        }

        .hull {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 80px;
            align-items: center;
        }

        .eye-secondary {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .pcap-flow {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .sniff-data {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 30px;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            border: 1px solid var(--accent);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .sniff-data::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
        }

        .nibble-line {
            display: block;
            margin-bottom: 8px;
            color: var(--primary);
            opacity: 0.8;
        }

        .stream-code {
            color: #8892b0;
        }

        /* 进阶技巧区块 */
        .frenzy {
            max-width: 1300px;
            margin: 100px auto;
            padding: 0 24px;
        }

        .knot-tips {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .packet-tip {
            background: var(--bg);
            border: 1px solid var(--accent);
            padding: 40px;
            border-radius: var(--radius);
            transition: transform 0.25s ease;
        }

        .packet-tip:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .eye-tip {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        /* 页脚区域 */
        .benthic {
            background: var(--bg);
            border-top: 1px solid var(--accent);
            padding: 80px 24px 40px;
        }

        .tide-reef {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .stream-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }

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

        .nibble-knot {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .gill-tide {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .gill-tide:hover {
            color: var(--primary);
        }

        .stream-stream {
            width: 100%;
            text-align: center;
            margin-top: 60px;
            color: #4a5568;
            font-size: 12px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .bit { display: none; }
            .breach { padding: 60px 24px; }
            .vortex-mosaic { grid-template-columns: 1fr; }
            .hull { flex-direction: column; }
        }

        svg { fill: currentColor; }

.sonar-sonar{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 20, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #2d3848;
        }

.sonar-sonar .sonar-dorsal{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

.sonar-sonar .sonar-scale{
            display: flex;
            align-items: center;
            height: 40px;
        }

.sonar-sonar .sonar-scale img{
            height: 100%;
            width: auto;
        }

.sonar-sonar .sonar-bit{
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 32px;
        }

.sonar-sonar .sonar-gill{
            text-decoration: none;
            color: #8a94a6;
            font-weight: 500;
            font-size: 15px;
            transition: 0.25s ease;
            position: relative;
            padding: 8px 0;
        }

.sonar-sonar .sonar-gill:hover, .sonar-sonar .sonar-gill.active{
            color: #40eaea;
        }

.sonar-sonar .sonar-gill.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #40eaea;
            box-shadow: 0 0 8px #40eaea;
        }

.sonar-sonar .sonar-snap-reef{
            display: inline-flex;
            align-items: center;
            padding: 16px 36px;
            background: #40eaea;
            color: #0a0e14;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            transition: 0.25s ease;
            box-shadow: 0 0 20px rgba(64, 234, 234, 0.3);
        }

.sonar-sonar .sonar-snap-reef:hover{
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(64, 234, 234, 0.5);
        }

@media (max-width: 768px){.sonar-sonar .sonar-bit{ display: none; }}

.sonar-sonar {
    background: rgb(10, 14, 20);
    background-image: none;
}

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

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

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

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

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

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

.benthic-benthic .benthic-stream-nibble{
            color: #8a94a6;
            font-size: 15px;
        }

.benthic-benthic{
            padding: 80px 24px 40px;
            background: #0a0e14;
            border-top: 1px solid #2d3848;
        }

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

.benthic-benthic .benthic-tide-brand{
            max-width: 300px;
        }

.benthic-benthic .benthic-eye-brand{
            font-size: 24px;
            font-weight: 800;
            color: #40eaea;
            margin-bottom: 16px;
        }

.benthic-benthic .benthic-tide-sonar{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.benthic-benthic .benthic-knot-column{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.benthic-benthic .benthic-eye-column{
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8a94a6;
            margin-bottom: 8px;
        }

.benthic-benthic .benthic-gill-ft{
            text-decoration: none;
            color: #ffffff;
            font-size: 14px;
            transition: 0.25s ease;
        }

.benthic-benthic .benthic-gill-ft:hover{
            color: #40eaea;
        }

.benthic-benthic .benthic-tide-copyright{
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 24px;
            border-top: 1px solid #2d3848;
            color: #8a94a6;
            font-size: 13px;
            text-align: center;
        }