:root {
            --primary: #db8776;
            --primary-soft: rgba(219, 135, 118, 0.1);
            --primary-glow: rgba(219, 135, 118, 0.3);
            --bg: #ffffff;
            --bg-accent: #fdfaf9;
            --text: #2d2d2d;
            --text-dim: #666666;
            --radius: 20px;
            --transition: 0.35s ease;
        }

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

        body {
            font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* Header Style */
        .crown {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(219, 135, 118, 0.1);
        }

        .synap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

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

        .orbit {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
        }

        .strand-axon {
            text-decoration: none;
            color: var(--text);
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .strand-axon:hover {
            color: var(--primary);
        }

        .strand-axon.active {
            color: var(--primary);
        }

        .strand-axon.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
        }

        /* Main Content */
        main {
            margin-top: 72px;
            width: 100%;
        }

        /* Section 1: Flare (Intro) */
        .flare {
            padding: 100px 5%;
            background: linear-gradient(135deg, #fffcfb 0%, #f4f4f2 100%);
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .flare::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
            top: -200px;
            right: -100px;
            opacity: 0.4;
        }

        .flare-apex {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            max-width: 900px;
        }

        .flare-memo {
            font-size: 1.25rem;
            color: var(--text-dim);
            max-width: 650px;
            margin-bottom: 3rem;
            word-break: break-word;
        }

        .prism-veil {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            max-width: 1200px;
            width: 100%;
        }

        .zenith-voxel {
            background: rgba(255, 255, 255, 0.96);
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(219, 135, 118, 0.1);
            flex: 1;
            min-width: 300px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .zenith-voxel:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(219, 135, 118, 0.15);
        }

        .lens-shield {
            width: 100%;
            height: 220px;
            background: #f9f9f9;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .lens-shield svg {
            width: 80px;
            height: 80px;
            fill: var(--primary);
            opacity: 0.8;
        }

        /* Section 2: Acquire (Plugin Ecosystem) */
        .flux-hull {
            padding: 120px 5%;
            background-color: var(--bg);
            max-width: 1280px;
            margin: 0 auto;
        }

        .apex-cluster {
            margin-bottom: 80px;
            text-align: left;
            border-left: 4px solid var(--primary);
            padding-left: 2rem;
        }

        .apex-cluster h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .bella-cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 40px;
        }

        .cella-belt {
            padding: 3.5rem;
            background: var(--bg-accent);
            border-radius: var(--radius);
            border: 1px dashed rgba(219, 135, 118, 0.3);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .signet-hex {
            width: 64px;
            height: 64px;
            background: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 10px 20px var(--primary-glow);
        }

        .jolt-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            padding: 1rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(219, 135, 118, 0.3);
            width: fit-content;
            margin-top: 1rem;
            border: none;
            cursor: pointer;
        }

        .jolt-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(219, 135, 118, 0.4);
        }

        /* Section 3: Story (Design Philosophy) */
        .nexus-story {
            padding: 100px 5%;
            background: #1a1a1a;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .story-vault {
            max-width: 1000px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

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

        .story-memo h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--primary);
        }

        .story-memo p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 1.5rem;
        }

        .geometry-signet {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
        }

        .geometry-block {
            width: 300px;
            height: 300px;
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            position: relative;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .geometry-block::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius);
        }

        /* Footer */
        .keel-echo {
            background: #fdfaf9;
            padding: 80px 5% 40px;
            border-top: 1px solid rgba(219, 135, 118, 0.1);
        }

        .keel-nexus {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .keel-memo h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .keel-axon-cluster {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .keel-bead {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .keel-bead a {
            text-decoration: none;
            color: var(--text-dim);
            transition: var(--transition);
        }

        .keel-bead a:hover {
            color: var(--primary);
        }

        .terra-memo {
            width: 100%;
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(0,0,0,0.05);
            font-size: 14px;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .orbit {
                display: none; /* In a real project, we'd add a mobile hamburger */
            }
            .flare-apex {
                font-size: 2rem;
            }
            .prism-veil {
                flex-direction: column;
            }
            .zenith-voxel {
                min-width: 100%;
            }
            .bella-cluster {
                grid-template-columns: 1fr;
            }
            .story-vault {
                flex-direction: column-reverse;
                text-align: center;
            }
        }

.synap-crown {
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--neutral-900);
}
.synap-crown,
.synap-crown *,
.synap-crown *::before,
.synap-crown *::after {
    box-sizing: border-box;
}

.synap-crown [role="navigation"],
.synap-crown div,
.synap-crown section,
.synap-crown article,
.synap-crown aside,
.synap-crown p,
.synap-crown h1,
.synap-crown h2,
.synap-crown h3,
.synap-crown h4,
.synap-crown h5,
.synap-crown h6,
.synap-crown a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.synap-crown a.synap-strand-axon {
    --aisite-shell-nav-padding: 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;
}

.synap-crown a.synap-strand-axon,
.synap-crown a.synap-strand-axon:hover,
.synap-crown a.synap-strand-axon:focus,
.synap-crown a.synap-strand-axon:active,
.synap-crown a.synap-strand-axon.active,
.synap-crown a.synap-strand-axon[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);
}

.synap-crown{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(219, 135, 118, 0.1);
        }

.synap-crown .synap-synap{
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

.synap-crown .synap-glyph{
            height: 32px;
            min-width: 0;
        }

.synap-crown .synap-glyph img{
            height: 100%;
            display: block;
        }

.synap-crown .synap-orbit{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
        }

.synap-crown .synap-strand-axon{
            font-size: 0.95rem;
            font-weight: 500;
            color: #666666;
            position: relative;
        }

.synap-crown .synap-strand-axon:hover{
            color: #db8776;
        }

.synap-crown .synap-strand-axon.active{
            color: #db8776;
        }

.synap-crown .synap-strand-axon.active::after{
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #db8776;
            border-radius: 2px;
        }

@media (max-width: 768px){.synap-crown .synap-synap{
                flex-direction: column;
                gap: 1.5rem;
            }

.synap-crown .synap-orbit{
                gap: 1rem;
                justify-content: center;
            }}

.synap-crown {
    background: rgb(255, 255, 255);
    background-image: none;
}

.abyss-keel {
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--neutral-900);
}
.abyss-keel,
.abyss-keel *,
.abyss-keel *::before,
.abyss-keel *::after {
    box-sizing: border-box;
}

.abyss-keel [role="navigation"],
.abyss-keel div,
.abyss-keel section,
.abyss-keel article,
.abyss-keel aside,
.abyss-keel p,
.abyss-keel h1,
.abyss-keel h2,
.abyss-keel h3,
.abyss-keel h4,
.abyss-keel h5,
.abyss-keel h6,
.abyss-keel a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.abyss-keel{
            background: #f4f4f2;
            padding: 6rem 2rem 3rem;
        }

.abyss-keel .abyss-abyss{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
            border-bottom: 1px solid #ddd;
            padding-bottom: 4rem;
        }

.abyss-keel .abyss-terra-info{
            flex: 1.5;
            min-width: 280px;
        }

.abyss-keel .abyss-terra-brand{
            font-size: 1.8rem;
            font-weight: 900;
            color: #db8776;
            margin-bottom: 1.5rem;
        }

.abyss-keel .abyss-terra-memo{
            color: #666666;
            max-width: 350px;
        }

.abyss-keel .abyss-terra-links{
            flex: 1;
            min-width: 150px;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.abyss-keel .abyss-terra-apex{
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2d2d2d;
        }

.abyss-keel .abyss-terra-axon{
            color: #666666;
            font-size: 0.95rem;
        }

.abyss-keel .abyss-terra-axon:hover{
            color: #db8776;
        }

.abyss-keel .abyss-copyright{
            max-width: 1300px;
            margin: 2rem auto 0;
            text-align: center;
            color: #999;
            font-size: 0.85rem;
        }