:root {
            --wps-accent: #e5ce59;
            --wps-accent-hover: #d4be48;
            --wps-dark-surface: #1a1d24;
            --wps-gray-bg: #f5f7f9;
            --wps-text-main: #1d1d1f;
            --wps-text-muted: #6e6e73;
            --wps-border-color: rgba(0, 0, 0, 0.08);
            --wps-border-light: rgba(0, 0, 0, 0.04);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --shadow-1: 0 2px 8px rgba(0,0,0,0.04);
            --shadow-2: 0 8px 24px rgba(0,0,0,0.08);
            --shadow-3: 0 12px 32px rgba(0,0,0,0.12);
            --transition: 0.35s ease;
            --max-width: 1080px; /* Adapted for enterprise data density */
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--wps-text-main);
            background-color: #ffffff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        /* Mandatory Header Styles - Inherited & Replicated */
        .brow {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--wps-border-color);
        }
        .spine {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            min-width: 0;
        }
        .signet {
            display: flex;
            align-items: center;
            min-width: 0;
        }
        .signet img {
            height: 32px;
            width: auto;
            display: block;
        }
        .atlas {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
            min-width: 0;
        }
        .knot {
            font-size: 15px;
            font-weight: 500;
            color: var(--wps-text-muted);
            min-width: 0;
        }
        .knot:hover, .knot.active {
            color: var(--wps-text-main);
        }
        .knot.active {
            position: relative;
        }
        .knot.active::after {
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--wps-accent);
        }

        /* Main Container */
        .ream {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            width: 100%;
            min-width: 0;
        }

        /* Global Shell (Inner limits) */
        .shell {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
            flex-direction: column;
        }

        /* Typography Utilities */
        .crown {
            line-height: 1.3;
            color: #0f1115;
            font-weight: 700;
            letter-spacing: -0.02em;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .script {
            word-break: break-word;
            overflow-wrap: break-word;
            color: var(--wps-text-muted);
        }

        /* Section 1: Enterprise Hero (Vertical Stack) */
        .cover {
            padding-top: 100px;
            padding-bottom: 80px;
            background: linear-gradient(180deg, var(--wps-gray-bg) 0%, #ffffff 100%);
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            min-width: 0;
            text-align: center;
        }
        .cover .shell {
            align-items: center;
        }
        .cover .crown {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 24px;
            max-width: 800px;
        }
        .cover .script {
            font-size: 1.25rem;
            max-width: 600px;
            margin-bottom: 48px;
        }
        /* Data UI: Topology Visualization */
        .topology {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 24px;
            width: 100%;
            padding: 40px;
            background: #ffffff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--wps-border-color);
            box-shadow: var(--shadow-2);
            position: relative;
            min-width: 0;
        }
        .topology::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 2px;
            background: var(--wps-border-light);
            z-index: 0;
            transform: translateY(-50%);
        }
        .topology-bullet {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 140px;
            height: 140px;
            background: #ffffff;
            border-radius: 50%;
            border: 2px solid var(--wps-border-color);
            z-index: 1;
            box-shadow: var(--shadow-1);
            transition: transform var(--transition), border-color var(--transition);
            min-width: 0;
        }
        .topology-bullet:hover {
            transform: translateY(-5px);
            border-color: var(--wps-accent);
        }
        .topology-bullet.center {
            width: 180px;
            height: 180px;
            border-color: var(--wps-accent);
            border-width: 4px;
            box-shadow: 0 8px 24px rgba(229, 206, 89, 0.2);
        }
        .topology-glyph {
            width: 40px;
            height: 40px;
            margin-bottom: 12px;
            fill: var(--wps-text-main);
        }
        .topology-bullet.center .topology-glyph {
            width: 56px;
            height: 56px;
            fill: var(--wps-accent);
        }
        .topology-script {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--wps-text-main);
        }

        /* Section 2: Admin Console */
        .crest {
            padding: 80px 0;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            min-width: 0;
        }
        .crest .crown {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 48px;
            text-align: center;
            width: 100%;
        }
        /* Data UI: Dashboard Mockup */
        .dashboard {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            background: #ffffff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--wps-border-color);
            box-shadow: var(--shadow-3);
            overflow: hidden;
            min-width: 0;
        }
        .dashboard-sidebar {
            flex: 1 1 260px;
            background: var(--wps-gray-bg);
            border-right: 1px solid var(--wps-border-color);
            padding: 24px;
            min-width: 0;
        }
        .dashboard-ream {
            flex: 3 1 500px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            min-width: 0;
        }
        .tree-batch {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 0;
        }
        .tree-bullet {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--wps-text-main);
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
            min-width: 0;
        }
        .tree-bullet:hover {
            background: rgba(0,0,0,0.05);
        }
        .tree-glyph {
            width: 16px;
            height: 16px;
            fill: var(--wps-text-muted);
        }
        .log-ribbon {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            background: #ffffff;
            border: 1px solid var(--wps-border-color);
            border-radius: var(--radius-sm);
            min-width: 0;
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .log-ribbon:hover {
            box-shadow: var(--shadow-1);
            transform: translateX(4px);
        }
        .log-info {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            min-width: 0;
        }
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        .status-dot.green { background-color: #34c759; }
        .status-dot.yellow { background-color: #ffcc00; }
        .status-dot.blue { background-color: #007aff; }
        
        /* Section 3: Security Proof (Article) */
        .quire {
            padding: 80px 0;
            background-color: var(--wps-gray-bg);
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            min-width: 0;
        }
        .quire .crown {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 48px;
            text-align: center;
            width: 100%;
        }
        .security-batch {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            width: 100%;
            min-width: 0;
        }
        .memo {
            background: #ffffff;
            padding: 40px 32px;
            border-radius: var(--radius-md);
            border: 1px solid var(--wps-border-color);
            box-shadow: var(--shadow-1);
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: transform var(--transition), box-shadow var(--transition);
            min-width: 0;
        }
        .memo:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-2);
        }
        .memo-glyph-shell {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: rgba(229, 206, 89, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            min-width: 0;
        }
        .memo-glyph {
            width: 24px;
            height: 24px;
            fill: #a38f2d; /* Darker accent for contrast */
        }
        .memo h3.crown {
            font-size: 1.25rem;
            margin: 0;
            text-align: left;
        }

        /* Section 4: Commercial Plans (Div) */
        .deck {
            padding: 100px 0;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            background: #ffffff;
            min-width: 0;
        }
        .deck .crown {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 16px;
            text-align: center;
            width: 100%;
        }
        .deck > .shell > .script {
            text-align: center;
            margin-bottom: 56px;
            font-size: 1.1rem;
            width: 100%;
        }
        .plan-batch {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            width: 100%;
            min-width: 0;
        }
        .slate {
            display: flex;
            flex-direction: column;
            padding: 48px 32px;
            background: #ffffff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--wps-border-color);
            box-shadow: var(--shadow-1);
            position: relative;
            min-width: 0;
        }
        .slate-highlight {
            border: 2px solid var(--wps-accent);
            box-shadow: var(--shadow-3);
            transform: scale(1.02);
        }
        .slate-highlight::before {
            content: '推荐企业选择';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--wps-accent);
            color: #0f1115;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .slate h3.crown {
            font-size: 1.5rem;
            margin-bottom: 8px;
            text-align: left;
        }
        .feature-batch {
            margin-top: 32px;
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex-grow: 1;
            min-width: 0;
        }
        .feature-bullet {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            min-width: 0;
        }
        .check-glyph {
            width: 20px;
            height: 20px;
            fill: #34c759;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .stamp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background-color: var(--wps-gray-bg);
            color: var(--wps-text-main);
            font-weight: 600;
            border-radius: var(--radius-sm);
            text-align: center;
            border: 1px solid var(--wps-border-color);
            transition: all var(--transition);
            min-width: 0;
        }
        .slate-highlight .stamp {
            background-color: var(--wps-accent);
            border-color: var(--wps-accent);
            box-shadow: 0 4px 12px rgba(229, 206, 89, 0.3);
        }
        .stamp:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }

        /* Footer */
        .sole {
            background-color: var(--wps-dark-surface);
            color: #ffffff;
            padding: 60px 0 40px;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            min-width: 0;
        }
        .sole .shell {
            flex-direction: row;
            justify-content: space-between;
            gap: 40px;
        }
        .bind {
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-width: 0;
            flex: 1 1 200px;
        }
        .bind-brand {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #ffffff;
        }
        .notes {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            min-width: 0;
            flex: 2 1 400px;
        }
        .notes-batch {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 0;
        }
        .notes-crown {
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255,255,255,0.9);
            margin-bottom: 8px;
        }
        .notes-knot {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }
        .notes-knot:hover {
            color: #ffffff;
        }
        .tail {
            width: 100%;
            margin-top: 60px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: left;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .atlas {
                display: none; /* In a real app, this would be a hamburger menu, hidden for simplicity in this static output based on rules */
            }
            .topology {
                flex-direction: column;
            }
            .topology::before {
                display: none;
            }
            .dashboard {
                flex-direction: column;
            }
            .dashboard-sidebar {
                border-right: none;
                border-bottom: 1px solid var(--wps-border-color);
            }
            .slate-highlight {
                transform: none;
            }
            .cover .crown {
                font-size: 2rem;
            }
        }
        @media (max-width: 1024px) {
            .plan-batch {
                grid-template-columns: 1fr;
            }
        }

.spine-brow {
    font-family: var(--font-sys);
    line-height: 1.6;
    word-break: break-word;
    color: var(--wps-text-main);
}
.spine-brow,
.spine-brow *,
.spine-brow *::before,
.spine-brow *::after {
    box-sizing: border-box;
}

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

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

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

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

.spine-brow a.spine-knot.spine-index {
    --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;
}

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

.spine-brow .spine-spine, .spine-brow .spine-atlas{
            display: flex;
            flex-wrap: wrap;
        }

.spine-brow .spine-spine > *, .spine-brow .spine-atlas > *{
            min-width: 0;
        }

.spine-brow{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            z-index: 1000;
        }

.spine-brow .spine-spine{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            align-items: center;
            justify-content: space-between;
        }

.spine-brow .spine-signet{
            width: 100px;
        }

.spine-brow .spine-atlas{
            gap: 32px;
            align-items: center;
        }

.spine-brow .spine-knot.spine-index{
            font-size: 0.95rem;
            font-weight: 500;
            color: #6e6e73;
            position: relative;
        }

.spine-brow .spine-knot.spine-index:hover, .spine-brow .spine-knot.spine-index.active{
            color: #0f1115;
        }

.spine-brow .spine-knot.spine-index.active::after{
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #e5ce59;
            border-radius: 3px 3px 0 0;
        }

@media (max-width: 768px){.spine-brow .spine-atlas{ display: none;  }

.spine-brow .spine-spine{ justify-content: center; }}

.spine-brow {
    background: rgb(255, 255, 255);
    background-image: none;
}

.bind-sole {
    font-family: var(--font-sys);
    line-height: 1.6;
    word-break: break-word;
    color: var(--wps-text-main);
}
.bind-sole,
.bind-sole *,
.bind-sole *::before,
.bind-sole *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.bind-sole .bind-batch, .bind-sole .bind-bind{
            display: flex;
            flex-wrap: wrap;
        }

.bind-sole .bind-batch > *, .bind-sole .bind-bind > *{
            min-width: 0;
        }

.bind-sole{
            background-color: #f0f2f5;
            padding: 80px 24px 40px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

.bind-sole .bind-bind{
            max-width: 1280px;
            margin: 0 auto;
            justify-content: space-between;
            gap: 48px;
            margin-bottom: 60px;
        }

.bind-sole .bind-crown{
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #0f1115;
            display: block;
            margin-bottom: 16px;
        }

.bind-sole .bind-script{
            color: #6e6e73;
            font-size: 0.95rem;
        }

.bind-sole .bind-bind .bind-batch{
            gap: 40px;
        }

.bind-sole .bind-bind .bind-batch .bind-shell{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.bind-sole .bind-bind .bind-knot{
            color: #6e6e73;
            font-size: 0.95rem;
        }

.bind-sole .bind-bind .bind-knot:hover{
            color: #0f1115;
        }

.bind-sole .bind-tail{
            max-width: 1280px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
        }

@media (max-width: 768px){.bind-sole .bind-bind{ flex-direction: column; }}