/* 基础变量体系 (继承自首页家族基因) */
        :root {
            --color-bg-base: #090b10;
            --color-bg-surface: #121620;
            --color-bg-elevated: #1a202d;
            --color-brand: #ee277d;
            --color-brand-glow: rgba(238, 39, 125, 0.4);
            --color-accent-1: #ff4e50;
            --color-accent-2: #f9d423;
            --color-ink-primary: #f0f2f5;
            --color-ink-secondary: #9ba3b5;
            --color-ink-muted: #64708b;
            --radius: 18px;
            --radius-small: 12px;
            --transition: 0.35s ease;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --layout-max: 1280px;
        }

        /* 全局基础复位 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--color-bg-base);
            color: var(--color-ink-primary);
            font-family: var(--font-family);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* 强制文本换行规则 */
        h1, h2, h3, h4, p, span, a, div {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        p {
            word-break: keep-all;
        }

        h1, h2, h3 {
            white-space: normal;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        /* 强制Flexbox/Grid规则 */
        .veil, .talar, .fold, .realm, 
        .herald, .herd-actions, .split-ink, .split-hue,
        .saddle, .craft-inner, .matrix-herd, .carre-row,
        .stud-info, .stud-hash, .preview-layout, .preview-ink,
        .preview-hue, .console-brim, .pouch-herd, .belt,
        .edge, .sole, .sole-herd {
            display: flex;
            flex-wrap: wrap;
        }

        .talar > *, .fold > *, .herald > *, .herd-actions > *,
        .saddle > *, .craft-inner > *, .matrix-herd > *, .carre-row > *,
        .stud-info > *, .stud-hash > *, .preview-layout > *, 
        .preview-ink > *, .preview-hue > *, .pouch-herd > *, .belt > *,
        .edge > *, .sole > *, .sole-herd > * {
            min-width: 0;
        }

        /* 顶层外壳 */
        .veil {
            width: 100%;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- 导航栏 (完全复用结构样式) --- */
        .brim {
            width: 100%;
            background: rgba(9, 11, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .sign {
            flex: 0 0 auto;
        }

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

        .fold {
            gap: 2rem;
            align-items: center;
        }

        .knot {
            color: var(--color-ink-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color var(--transition);
        }

        .knot:hover,
        .knot:focus {
            color: var(--color-ink-primary);
        }

        .knot.active {
            color: var(--color-brand);
            position: relative;
        }

        .knot.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--color-brand);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--color-brand-glow);
        }

        /* --- 主内容区 --- */
        .realm {
            width: 100%;
            flex-direction: column;
            flex: 1;
        }

        /* 通用内芯 */
        .craft-inner {
            width: 100%;
            max-width: var(--layout-max);
            margin: 0 auto;
            padding: 5rem 2rem;
            flex-direction: column;
            gap: 3rem;
        }

        /* 标题排版体系 */
        .myth {
            margin: 0;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--color-ink-primary);
        }

        .myth-sub {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--color-ink-primary);
            line-height: 1.2;
            position: relative;
            padding-left: 1rem;
        }

        .myth-sub::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10%;
            height: 80%;
            width: 4px;
            background: linear-gradient(180deg, var(--color-brand), var(--color-accent-1));
            border-radius: 4px;
        }

        .ink-desc {
            font-size: clamp(1.1rem, 1.5vw, 1.25rem);
            color: var(--color-ink-secondary);
            line-height: 1.7;
            max-width: 600px;
        }

        /* 按钮体系 */
        .spur {
            padding: 1rem 2rem;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: 30px;
            background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-accent-1) 100%);
            color: #fff;
            box-shadow: 0 4px 15px var(--color-brand-glow);
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .spur:hover, .spur:focus {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(238, 39, 125, 0.6);
        }

        .spur-small {
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 20px;
            background: rgba(238, 39, 125, 0.1);
            color: var(--color-brand);
            border: 1px solid rgba(238, 39, 125, 0.3);
            transition: all var(--transition);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
        }

        .spur-small:hover, .spur-small:focus {
            background: var(--color-brand);
            color: #fff;
            box-shadow: 0 0 15px var(--color-brand-glow);
        }

        .wing {
            padding: 1rem 2rem;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: 30px;
            background: transparent;
            color: var(--color-ink-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .wing:hover, .wing:focus {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* --- 区块 1: 获取Hermes预编译工具链 (Hero 变体: split_diagonal) --- */
        .herald {
            width: 100%;
            background: var(--color-bg-base);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .herald::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 50%;
            background: radial-gradient(circle, var(--color-brand-glow) 0%, transparent 70%);
            opacity: 0.3;
            pointer-events: none;
        }

        .split-ink {
            flex: 1 1 50%;
            padding: 6rem 4rem 6rem 8vw;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
            z-index: 2;
        }

        .split-hue {
            flex: 1 1 50%;
            position: relative;
            min-height: 400px;
        }

        .hue-mask {
            position: absolute;
            inset: 0;
            /* 创意种子：对角线分割 */
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
            background: var(--color-bg-surface);
        }

        .hue-mask img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: opacity var(--transition);
        }

        .hue-mask::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, var(--color-bg-base) 0%, transparent 30%, rgba(9, 11, 16, 0.4) 100%);
        }

        .herd-actions {
            gap: 1rem;
            margin-top: 1rem;
        }

        .status-pin {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(238, 39, 125, 0.1);
            border: 1px solid rgba(238, 39, 125, 0.2);
            border-radius: 20px;
            color: var(--color-ink-primary);
            font-size: 0.85rem;
            font-weight: 600;
            width: fit-content;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: var(--color-brand);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--color-brand);
        }

        /* --- 区块 2: 多平台支持与版本矩阵 (数据面板) --- */
        .saddle {
            width: 100%;
            background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-surface) 100%);
        }

        .matrix-herd {
            width: 100%;
            flex-direction: column;
            gap: 1rem;
            background: var(--color-bg-elevated);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .carre-row {
            width: 100%;
            background: var(--color-bg-surface);
            border-radius: var(--radius-small);
            padding: 1.5rem;
            align-items: center;
            gap: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }

        .carre-row:hover, .carre-row:focus-within {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .stud-rune {
            flex: 0 0 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stud-rune svg {
            width: 24px;
            height: 24px;
            fill: var(--color-ink-primary);
        }

        .stud-info {
            flex: 1 1 200px;
            flex-direction: column;
            gap: 0.2rem;
        }

        .stud-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-ink-primary);
            margin: 0;
        }

        .stud-meta {
            font-size: 0.85rem;
            color: var(--color-ink-secondary);
        }

        .stud-hash {
            flex: 2 1 300px;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 0, 0, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .hash-ink {
            font-family: monospace;
            font-size: 0.85rem;
            color: var(--color-ink-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 200px;
        }

        .hash-ink {
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px;
            border-radius: 4px;
            transition: background var(--transition);
        }

        .hash-ink:hover, .hash-ink:focus {
            background: rgba(255, 255, 255, 0.1);
        }

        .hash-ink svg {
            width: 14px;
            height: 14px;
            fill: var(--color-ink-secondary);
        }

        .stud-pace {
            flex: 0 0 auto;
        }

        /* --- 区块 3: 安装向导与环境配置 (数据面板UI + 图片) --- */
        .craft-alt {
            width: 100%;
            background: var(--color-bg-base);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .preview-layout {
            gap: 4rem;
            align-items: stretch;
        }

        .preview-ink {
            flex: 1 1 400px;
            flex-direction: column;
            gap: 2rem;
            justify-content: center;
        }

        .preview-hue {
            flex: 1 1 400px;
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 10px 30px rgba(238, 39, 125, 0.1);
        }

        .preview-hue img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .preview-hue:hover img {
            transform: scale(1.02);
        }

        /* 控制台UI仿制 */
        .console-ui {
            background: #000;
            border-radius: var(--radius-small);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
        }

        .console-brim {
            background: rgba(255, 255, 255, 0.05);
            padding: 0.6rem 1rem;
            gap: 6px;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #444;
        }

        .dot:nth-child(1) { background: #ff5f56; }
        .dot:nth-child(2) { background: #ffbd2e; }
        .dot:nth-child(3) { background: #27c93f; }

        .console-ink {
            padding: 1.5rem;
            font-family: monospace;
            font-size: 0.9rem;
            color: #d1d5db;
            line-height: 1.8;
            flex-direction: column;
        }
        
        .console-ink p {
            margin-bottom: 0.5rem;
        }

        .console-cmd { color: var(--color-accent-2); }
        .console-success { color: #27c93f; }
        .console-output { color: var(--color-ink-muted); }

        /* --- 区块 4: 版本发布说明 (Release Notes FAQ区) --- */
        .faq-zone {
            width: 100%;
            background: var(--color-bg-surface);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .pouch-herd {
            width: 100%;
            flex-direction: column;
            gap: 1rem;
            max-width: 900px;
        }

        .pouch {
            width: 100%;
            background: var(--color-bg-elevated);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-small);
            overflow: hidden;
        }

        .belt {
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            justify-content: space-between;
            align-items: center;
            list-style: none; /* 隐藏原生箭头 */
            background: transparent;
            transition: background var(--transition);
        }

        .belt::-webkit-details-marker {
            display: none;
        }

        .belt:hover, .belt:focus {
            background: rgba(255, 255, 255, 0.02);
        }

        .belt-ink {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-ink-primary);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .belt-ink::before {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 6px solid var(--color-ink-secondary);
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
            transition: transform var(--transition);
        }

        .pouch[open] .belt-ink::before {
            transform: rotate(90deg);
            border-left-color: var(--color-brand);
        }

        .belt-date {
            font-size: 0.9rem;
            color: var(--color-ink-muted);
            font-family: monospace;
        }

        .pouch-ink {
            padding: 0 1.5rem 1.5rem 3rem;
            color: var(--color-ink-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.02);
            margin-top: 0.5rem;
            padding-top: 1rem;
        }

        .update-fold {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .update-fold li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            line-height: 1.5;
        }

        .tag {
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .tag-feature { background: rgba(39, 201, 63, 0.1); color: #27c93f; border: 1px solid rgba(39, 201, 63, 0.2); }
        .tag-bug { background: rgba(255, 78, 80, 0.1); color: #ff4e50; border: 1px solid rgba(255, 78, 80, 0.2); }
        .tag-perf { background: rgba(249, 212, 35, 0.1); color: #f9d423; border: 1px solid rgba(249, 212, 35, 0.2); }


        /* --- 页脚 --- */
        .edge {
            width: 100%;
            background: var(--color-bg-base);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 2rem 2rem;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .seal {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-ink-primary);
            letter-spacing: -0.02em;
        }

        .sole {
            width: 100%;
            max-width: var(--layout-max);
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .sole-herd {
            gap: 1.5rem;
        }

        .sole-ink {
            color: var(--color-ink-muted);
            font-size: 0.9rem;
            transition: color var(--transition);
        }

        a.sole-ink:hover, a.sole-ink:focus {
            color: var(--color-ink-primary);
        }

        /* --- 响应式断点 --- */
        @media (max-width: 1024px) {
            .herald::before {
                width: 80%;
                height: 80%;
            }
            .split-ink {
                padding: 4rem 2rem;
            }
            .hue-mask {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .hue-mask::after {
                background: linear-gradient(180deg, transparent 0%, var(--color-bg-base) 100%);
            }
            .preview-layout {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .talar {
                flex-direction: column;
                gap: 1rem;
            }
            .fold {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            .herald {
                flex-direction: column;
            }
            .split-ink {
                flex: 1 1 100%;
                padding: 3rem 1.5rem;
                text-align: center;
                align-items: center;
            }
            .split-hue {
                flex: 1 1 100%;
                min-height: 250px;
            }
            .herd-actions {
                justify-content: center;
            }
            .carre-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .stud-hash {
                width: 100%;
                justify-content: space-between;
            }
            .stud-pace {
                width: 100%;
            }
            .spur-small {
                width: 100%;
                justify-content: center;
            }
            .preview-ink, .preview-hue {
                flex: 1 1 100%;
            }
            .sole {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .sole-herd {
                justify-content: center;
            }
        }

.talar-brim {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-ink-primary);
}
.talar-brim,
.talar-brim *,
.talar-brim *::before,
.talar-brim *::after {
    box-sizing: border-box;
}

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

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

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

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

.talar-brim a.talar-knot {
    --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;
}

.talar-brim a.talar-knot,
.talar-brim a.talar-knot:hover,
.talar-brim a.talar-knot:focus,
.talar-brim a.talar-knot:active,
.talar-brim a.talar-knot.active,
.talar-brim a.talar-knot[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);
}

.talar-brim{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(9, 11, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-wrap: wrap;
        }

.talar-brim .talar-talar{
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 4vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

.talar-brim .talar-sign{
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

.talar-brim .talar-sign img{
            height: 32px;
            width: auto;
            display: block;
        }

.talar-brim .talar-fold{
            display: flex;
            align-items: center;
            gap: 2.5rem;
            flex-wrap: wrap;
        }

.talar-brim .talar-knot{
            font-size: 0.95rem;
            font-weight: 500;
            color: #9ba3b5;
            position: relative;
            padding: 0.5rem 0;
        }

.talar-brim .talar-knot:hover, .talar-brim .talar-knot.active{
            color: #f0f2f5;
        }

.talar-brim .talar-knot::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ee277d;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.35s ease;
        }

.talar-brim .talar-knot:hover::after, .talar-brim .talar-knot.active::after{
            transform: scaleX(1);
            transform-origin: left;
        }

@media (max-width: 768px){.talar-brim .talar-talar{
                flex-direction: column;
                gap: 1rem;
            }

.talar-brim .talar-fold{
                gap: 1rem;
                justify-content: center;
                width: 100%;
            }}

.talar-brim {
    background: rgb(9, 11, 16);
    background-image: none;
}

.seal-edge {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-ink-primary);
}
.seal-edge,
.seal-edge *,
.seal-edge *::before,
.seal-edge *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.seal-edge .seal-knot{
            font-size: 0.95rem;
            font-weight: 500;
            color: #9ba3b5;
            position: relative;
            padding: 0.5rem 0;
        }

.seal-edge .seal-knot:hover, .seal-edge .seal-knot.active{
            color: #f0f2f5;
        }

.seal-edge .seal-knot::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ee277d;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.35s ease;
        }

.seal-edge .seal-knot:hover::after, .seal-edge .seal-knot.active::after{
            transform: scaleX(1);
            transform-origin: left;
        }

.seal-edge{
            background: #121620;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 5rem 4vw 2rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            width: 100%;
        }

.seal-edge .seal-seal{
            max-width: 1320px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.seal-edge .seal-seal-brand{
            flex: 1 1 300px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex-wrap: wrap;
        }

.seal-edge .seal-seal-brand .seal-myth{
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
        }

.seal-edge .seal-seal-brand .seal-ink{
            color: #9ba3b5;
            font-size: 0.9rem;
            max-width: 300px;
        }

.seal-edge .seal-seal-links{
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

.seal-edge .seal-seal-col{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex-wrap: wrap;
        }

.seal-edge .seal-seal-col .seal-myth{
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }

.seal-edge .seal-seal-col .seal-knot{
            color: #9ba3b5;
            font-size: 0.9rem;
            padding: 0;
        }

.seal-edge .seal-seal-col .seal-knot::after{
            display: none;
        }

.seal-edge .seal-seal-col .seal-knot:hover{
            color: #ee277d;
        }

.seal-edge .seal-sole{
            max-width: 1320px;
            margin: 2rem auto 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            color: #64708b;
            font-size: 0.85rem;
        }

@media (max-width: 768px){.seal-edge .seal-seal{
                flex-direction: column;
                gap: 2rem;
            }

.seal-edge .seal-seal-links{
                gap: 2rem;
                flex-direction: column;
            }

.seal-edge .seal-sole{
                flex-direction: column;
                text-align: center;
            }}