[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

[data-animate="fade"] {
    transform: none;
}

[data-animate="scale"] {
    transform: scale(0.9);
}

[data-animate="slide-left"] {
    transform: translateX(-40px);
}

[data-animate="slide-right"] {
    transform: translateX(40px);
}

[data-animate="flip-up"] {
    transform: perspective(400px) rotateX(90deg);
    transform-origin: center bottom;
}

[data-animate="flip-up"].is-visible {
    transform: perspective(400px) rotateX(0);
}

[data-animate="bounce"] {
    transform: translateY(40px);
    transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
}

[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }
[data-delay="600"] { transition-delay: 600ms; }
[data-delay="700"] { transition-delay: 700ms; }
[data-delay="800"] { transition-delay: 800ms; }
[data-delay="900"] { transition-delay: 900ms; }
[data-delay="1000"] { transition-delay: 1000ms; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flipInUp {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.char-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: letterReveal 0.5s ease forwards;
}

:root {
    --el-color-white: #ffffff;
    --el-color-black: #000000;
    --el-color-primary-rgb: 64, 158, 255;
    --el-color-success-rgb: 103, 194, 58;
    --el-color-warning-rgb: 230, 162, 60;
    --el-color-danger-rgb: 245, 108, 108;
    --el-color-error-rgb: 245, 108, 108;
    --el-color-info-rgb: 144, 147, 153;
    
    --el-font-size-extra-large: 20px;
    --el-font-size-large: 18px;
    --el-font-size-medium: 16px;
    --el-font-size-base: 14px;
    --el-font-size-small: 13px;
    --el-font-size-extra-small: 12px;
    
    --el-font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    --el-font-weight-primary: 500;
    --el-font-line-height-primary: 24px;
    
    --el-index-normal: 1;
    --el-index-top: 1000;
    --el-index-popper: 2000;
    
    --el-border-radius-base: 4px;
    --el-border-radius-small: 2px;
    --el-border-radius-round: 20px;
    --el-border-radius-circle: 100%;
    
    --el-transition-duration: .3s;
    --el-transition-duration-fast: .2s;
    --el-transition-function-ease-in-out-bezier: cubic-bezier(.645, .045, .355, 1);
    --el-transition-function-fast-bezier: cubic-bezier(.23, 1, .32, 1);
    --el-transition-all: all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);
    --el-transition-fade: opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
    --el-transition-md-fade: transform var(--el-transition-duration) var(--el-transition-function-fast-bezier), opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
    --el-transition-fade-linear: opacity var(--el-transition-duration-fast) linear;
    --el-transition-border: border-color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
    --el-transition-box-shadow: box-shadow var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
    --el-transition-color: color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
    
    --el-component-size-large: 40px;
    --el-component-size: 32px;
    --el-component-size-small: 24px;
    
    color-scheme: light;
    
    --el-color-primary: #409eff;
    --el-color-primary-light-3: rgb(121, 187, 255);
    --el-color-primary-light-5: rgb(160, 207, 255);
    --el-color-primary-light-7: rgb(198, 226, 255);
    --el-color-primary-light-8: rgb(217, 236, 255);
    --el-color-primary-light-9: rgb(236, 245, 255);
    --el-color-primary-dark-2: rgb(51, 126, 204);
    
    --el-color-success: #67c23a;
    --el-color-success-light-3: rgb(149, 212, 117);
    --el-color-success-light-5: rgb(179, 225, 157);
    --el-color-success-light-7: rgb(209, 237, 196);
    --el-color-success-light-8: rgb(225, 243, 216);
    --el-color-success-light-9: rgb(240, 249, 235);
    --el-color-success-dark-2: rgb(82, 155, 46);
    
    --el-color-warning: #e6a23c;
    --el-color-warning-light-3: rgb(238, 190, 119);
    --el-color-warning-light-5: rgb(243, 209, 158);
    --el-color-warning-light-7: rgb(248, 227, 197);
    --el-color-warning-light-8: rgb(250, 236, 216);
    --el-color-warning-light-9: rgb(253, 246, 236);
    --el-color-warning-dark-2: rgb(184, 130, 48);
    
    --el-color-danger: #f56c6c;
    --el-color-danger-light-3: rgb(248, 152, 152);
    --el-color-danger-light-5: rgb(250, 182, 182);
    --el-color-danger-light-7: rgb(252, 211, 211);
    --el-color-danger-light-8: rgb(253, 226, 226);
    --el-color-danger-light-9: rgb(254, 240, 240);
    --el-color-danger-dark-2: rgb(196, 86, 86);
    
    --el-color-error: #f56c6c;
    --el-color-error-light-3: rgb(248, 152, 152);
    --el-color-error-light-5: rgb(250, 182, 182);
    --el-color-error-light-7: rgb(252, 211, 211);
    --el-color-error-light-8: rgb(253, 226, 226);
    --el-color-error-light-9: rgb(254, 240, 240);
    --el-color-error-dark-2: rgb(196, 86, 86);
    
    --el-color-info: #909399;
    --el-color-info-light-3: rgb(177, 179, 184);
    --el-color-info-light-5: rgb(200, 201, 204);
    --el-color-info-light-7: rgb(222, 223, 224);
    --el-color-info-light-8: rgb(233, 233, 235);
    --el-color-info-light-9: rgb(244, 244, 245);
    --el-color-info-dark-2: rgb(115, 118, 122);
    
    --el-bg-color: #ffffff;
    --el-bg-color-page: #f2f3f5;
    --el-bg-color-overlay: #ffffff;
    
    --el-text-color-primary: #303133;
    --el-text-color-regular: #606266;
    --el-text-color-secondary: #909399;
    --el-text-color-placeholder: #a8abb2;
    --el-text-color-disabled: #c0c4cc;
    
    --el-border-color: #dcdfe6;
    --el-border-color-light: #e4e7ed;
    --el-border-color-lighter: #ebeef5;
    --el-border-color-extra-light: #f2f6fc;
    --el-border-color-dark: #d4d7de;
    --el-border-color-darker: #cdd0d6;
    
    --el-fill-color: #f0f2f5;
    --el-fill-color-light: #f5f7fa;
    --el-fill-color-lighter: #fafafa;
    --el-fill-color-extra-light: #fafcff;
    --el-fill-color-dark: #ebedf0;
    --el-fill-color-darker: #e6e8eb;
    --el-fill-color-blank: #ffffff;
    
    --el-box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, .04), 0px 8px 20px rgba(0, 0, 0, .08);
    --el-box-shadow-light: 0px 0px 12px rgba(0, 0, 0, .12);
    --el-box-shadow-lighter: 0px 0px 6px rgba(0, 0, 0, .12);
    --el-box-shadow-dark: 0px 16px 48px 16px rgba(0, 0, 0, .08), 0px 12px 32px rgba(0, 0, 0, .12), 0px 8px 16px -8px rgba(0, 0, 0, .16);
    
    --el-disabled-bg-color: var(--el-fill-color-light);
    --el-disabled-text-color: var(--el-text-color-placeholder);
    --el-disabled-border-color: var(--el-border-color-light);
    
    --el-overlay-color: rgba(0, 0, 0, .8);
    --el-overlay-color-light: rgba(0, 0, 0, .7);
    --el-overlay-color-lighter: rgba(0, 0, 0, .5);
    
    --el-mask-color: rgba(255, 255, 255, .9);
    --el-mask-color-extra-light: rgba(255, 255, 255, .3);
    
    --el-border-width: 1px;
    --el-border-style: solid;
    --el-border-color-hover: var(--el-text-color-disabled);
    --el-border: var(--el-border-width) var(--el-border-style) var(--el-border-color);
    --el-svg-monochrome-grey: var(--el-border-color);
    
    /* 自定义变量 */
    --custom-radius: 0.75rem;
    --main-color: var(--el-color-primary);
    --theme-color: var(--el-color-primary);
}

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

html {
    background-color: #fafbfc;
}

html.dark {
    color-scheme: dark;
    background-color: #070707;
    
    --el-color-primary: #409eff;
    --el-color-primary-light-3: rgb(51, 117, 185);
    --el-color-primary-light-5: rgb(42, 89, 138);
    --el-color-primary-light-7: rgb(33, 61, 91);
    --el-color-primary-light-8: rgb(29, 48, 67);
    --el-color-primary-light-9: rgb(24, 34, 43);
    --el-color-primary-dark-2: rgb(102, 177, 255);
    
    --el-color-success: #67c23a;
    --el-color-success-light-3: rgb(82, 155, 46);
    --el-color-success-light-5: rgb(60, 114, 34);
    --el-color-success-light-7: rgb(38, 73, 22);
    --el-color-success-light-8: rgb(27, 52, 16);
    --el-color-success-light-9: rgb(16, 31, 10);
    --el-color-success-dark-2: rgb(149, 212, 117);
    
    --el-color-warning: #e6a23c;
    --el-color-warning-light-3: rgb(184, 130, 48);
    --el-color-warning-light-5: rgb(138, 97, 26);
    --el-color-warning-light-7: rgb(91, 66, 23);
    --el-color-warning-light-8: rgb(67, 51, 22);
    --el-color-warning-light-9: rgb(43, 35, 21);
    --el-color-warning-dark-2: rgb(238, 190, 119);
    
    --el-color-danger: #f56c6c;
    --el-color-danger-light-3: rgb(196, 86, 86);
    --el-color-danger-light-5: rgb(147, 64, 64);
    --el-color-danger-light-7: rgb(97, 42, 42);
    --el-color-danger-light-8: rgb(72, 31, 31);
    --el-color-danger-light-9: rgb(48, 21, 21);
    --el-color-danger-dark-2: rgb(248, 152, 152);
    
    --el-color-error: #f56c6c;
    --el-color-error-light-3: rgb(196, 86, 86);
    --el-color-error-light-5: rgb(147, 64, 64);
    --el-color-error-light-7: rgb(97, 42, 42);
    --el-color-error-light-8: rgb(72, 31, 31);
    --el-color-error-light-9: rgb(48, 21, 21);
    --el-color-error-dark-2: rgb(248, 152, 152);
    
    --el-color-info: #909399;
    --el-color-info-light-3: rgb(107, 109, 113);
    --el-color-info-light-5: rgb(82, 84, 87);
    --el-color-info-light-7: rgb(57, 58, 60);
    --el-color-info-light-8: rgb(45, 45, 47);
    --el-color-info-light-9: rgb(32, 33, 33);
    --el-color-info-dark-2: rgb(166, 169, 173);
    
    --el-box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, .36), 0px 8px 20px rgba(0, 0, 0, .72);
    --el-box-shadow-light: 0px 0px 12px rgba(0, 0, 0, .72);
    --el-box-shadow-lighter: 0px 0px 6px rgba(0, 0, 0, .72);
    --el-box-shadow-dark: 0px 16px 48px 16px rgba(0, 0, 0, .72), 0px 12px 32px rgba(0, 0, 0, .72), 0px 8px 16px -8px rgba(0, 0, 0, .72);
    
    --el-bg-color-page: #0a0a0a;
    --el-bg-color: #141414;
    --el-bg-color-overlay: #1d1e1f;
    
    --el-text-color-primary: #E5EAF3;
    --el-text-color-regular: #CFD3DC;
    --el-text-color-secondary: #A3A6AD;
    --el-text-color-placeholder: #8D9095;
    --el-text-color-disabled: #6C6E72;
    
    --el-border-color-darker: #636466;
    --el-border-color-dark: #58585B;
    --el-border-color: #4C4D4F;
    --el-border-color-light: #414243;
    --el-border-color-lighter: #363637;
    --el-border-color-extra-light: #2B2B2C;
    
    --el-fill-color-darker: #424243;
    --el-fill-color-dark: #39393A;
    --el-fill-color: #303030;
    --el-fill-color-light: #262727;
    --el-fill-color-lighter: #1D1D1D;
    --el-fill-color-extra-light: #191919;
    --el-fill-color-blank: #141414;
    
    --el-mask-color: rgba(0, 0, 0, .8);
    --el-mask-color-extra-light: rgba(0, 0, 0, .3);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(1200px 600px at 22% -10%, rgba(59,130,246,.18), transparent 60%),
                radial-gradient(900px 520px at 80% 12%, rgba(167,139,250,.16), transparent 55%),
                radial-gradient(1100px 520px at 50% 55%, rgba(34,197,94,.08), transparent 55%),
                #fff;
    color: #0f172a;
    font-family: var(--el-font-family);
}

::-webkit-scrollbar {
    width: 8px !important;
    height: 0 !important;
}

::-webkit-scrollbar-track {
    background-color: var(--el-fill-color-light);
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #ccc !important;
    transition: all .2s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #b0abab !important;
}

::-webkit-scrollbar-button {
    height: 0;
    width: 0;
}

html.dark ::-webkit-scrollbar-track {
    background-color: var(--el-bg-color-page);
}

html.dark ::-webkit-scrollbar-thumb {
    background-color: var(--el-fill-color-dark) !important;
}

.fade-in-linear-enter-active,
.fade-in-linear-leave-active {
    transition: var(--el-transition-fade-linear);
}

.fade-in-linear-enter-from,
.fade-in-linear-leave-to {
    opacity: 0;
}

.el-fade-in-linear-enter-active,
.el-fade-in-linear-leave-active {
    transition: var(--el-transition-fade-linear);
}

.el-fade-in-linear-enter-from,
.el-fade-in-linear-leave-to {
    opacity: 0;
}

.el-fade-in-enter-active,
.el-fade-in-leave-active {
    transition: all var(--el-transition-duration) cubic-bezier(.55, 0, .1, 1);
}

.el-fade-in-enter-from,
.el-fade-in-leave-active {
    opacity: 0;
}

.el-zoom-in-center-enter-active,
.el-zoom-in-center-leave-active {
    transition: all var(--el-transition-duration) cubic-bezier(.55, 0, .1, 1);
}

.el-zoom-in-center-enter-from,
.el-zoom-in-center-leave-active {
    opacity: 0;
    transform: scaleX(0);
}

.el-zoom-in-top-enter-active,
.el-zoom-in-top-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: var(--el-transition-md-fade);
    transform-origin: center top;
}

.el-zoom-in-top-enter-active[data-popper-placement^=top],
.el-zoom-in-top-leave-active[data-popper-placement^=top] {
    transform-origin: center bottom;
}

.el-zoom-in-top-enter-from,
.el-zoom-in-top-leave-active {
    opacity: 0;
    transform: scaleY(0);
}

.el-zoom-in-bottom-enter-active,
.el-zoom-in-bottom-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: var(--el-transition-md-fade);
    transform-origin: center bottom;
}

.el-zoom-in-bottom-enter-from,
.el-zoom-in-bottom-leave-active {
    opacity: 0;
    transform: scaleY(0);
}

.el-zoom-in-left-enter-active,
.el-zoom-in-left-leave-active {
    opacity: 1;
    transform: scale(1);
    transition: var(--el-transition-md-fade);
    transform-origin: top left;
}

.el-zoom-in-left-enter-from,
.el-zoom-in-left-leave-active {
    opacity: 0;
    transform: scale(.45);
}

.collapse-transition {
    transition: var(--el-transition-duration) height ease-in-out,
                var(--el-transition-duration) padding-top ease-in-out,
                var(--el-transition-duration) padding-bottom ease-in-out;
}

.el-collapse-transition-leave-active,
.el-collapse-transition-enter-active {
    transition: var(--el-transition-duration) max-height ease-in-out,
                var(--el-transition-duration) padding-top ease-in-out,
                var(--el-transition-duration) padding-bottom ease-in-out;
}

.horizontal-collapse-transition {
    transition: var(--el-transition-duration) width ease-in-out,
                var(--el-transition-duration) padding-left ease-in-out,
                var(--el-transition-duration) padding-right ease-in-out;
}

.el-list-enter-active,
.el-list-leave-active {
    transition: all 1s;
}

.el-list-enter-from,
.el-list-leave-to {
    opacity: 0;
    transform: translateY(-30px);
}

.el-list-leave-active {
    position: absolute !important;
}

.el-opacity-transition {
    transition: opacity var(--el-transition-duration) cubic-bezier(.55, 0, .1, 1);
}

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

.el-icon {
    --color: inherit;
    height: 1em;
    width: 1em;
    line-height: 1em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    fill: currentColor;
    color: var(--color);
    font-size: inherit;
}

.el-icon.is-loading {
    animation: rotating 2s linear infinite;
}

.el-icon svg {
    height: 1em;
    width: 1em;
}

.page {
    flex: 1;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,23,42,.06);
    transition: background .35s cubic-bezier(0.16, 1, 0.3, 1), border-color .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: background, border-color, box-shadow;
}

.topbar.is-scrolled {
    background: rgba(255,255,255,.92);
    border-bottom-color: rgba(15,23,42,.1);
    box-shadow: 0 2px 8px rgba(15,23,42,.06);
}

html.dark .topbar {
    background: rgba(20,20,20,.78);
    border-bottom-color: rgba(255,255,255,.06);
}

html.dark .topbar.is-scrolled {
    background: rgba(20,20,20,.92);
    border-bottom-color: rgba(255,255,255,.1);
}

.topbar__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}

.brand__logo {
    height: 32px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    flex: 1;
    justify-content: center;
    min-width: 360px;
}

.nav__item {
    color: rgba(15,23,42,.75);
    text-decoration: none !important;
    font-size: 14px;
    padding: 8px;
    border-radius: 10px;
    transition: background .25s cubic-bezier(0.16, 1, 0.3, 1), color .25s cubic-bezier(0.16, 1, 0.3, 1), transform .25s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: background, color, transform;
}

.nav__item:hover {
    transform: translateY(-1px);
    background: rgba(59,130,246,.08);
    color: rgba(15,23,42,.9);
    text-decoration: none;
}

.nav__item.is-active {
    color: #2563eb;
    background: rgba(37,99,235,.1);
    text-decoration: none;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar__menu-btn {
    display: none;
    border: none;
    background: transparent;
    padding: 6px;
    border-radius: 999px;
    cursor: pointer;
    color: rgba(15,23,42,.8);
}

.topbar__menu-btn:hover {
    background: rgba(15,23,42,.05);
}

.el-overlay {
    background-color: rgba(0,0,0,.5);
    height: 100%;
    inset: 0;
    overflow: auto;
    position: fixed;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.el-overlay.is-drawer {
    overflow: hidden;
}

.el-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.el-overlay .el-overlay-root {
    height: 0;
}

.el-drawer {
    --el-drawer-bg-color: #fff;
    --el-drawer-padding-primary: 20px;
    --el-drawer-dragger-size: 8px;
    background-color: var(--el-drawer-bg-color);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 320px;
    height: 100%;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 2001;
}

.el-drawer .btt,
.el-drawer .ltr,
.el-drawer .rtl,
.el-drawer .ttb {
    transform: translate(0);
}

.el-drawer__sr-focus:focus {
    outline: none !important;
}

.el-drawer__header {
    align-items: flex-start;
    color: #303133;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    overflow: hidden;
    padding: var(--el-drawer-padding-primary);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.el-drawer__logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.el-drawer__title {
    font-size: 16px;
    font-weight: 600;
    line-height: inherit;
    margin: 0;
    color: #303133;
}

.el-drawer__footer {
    overflow: hidden;
    padding: var(--el-drawer-padding-primary);
    padding-top: 16px;
    display: flex;
    gap: 12px;
    border-top: 1px solid rgba(0,0,0,.06);
}

.el-drawer__footer .el-button {
    flex: 1;
    height: 36px;
}

.el-drawer__close-btn {
    background-color: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    outline: none;
}

.el-drawer__close-btn:focus i,
.el-drawer__close-btn:hover i {
    color: #5D87FF;
}

.el-drawer__body {
    flex: 1;
    overflow: auto;
    padding: var(--el-drawer-padding-primary);
}

.el-drawer__body > * {
    box-sizing: border-box;
}

.el-drawer.is-dragging {
    transition: none;
}

.el-drawer__dragger {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.el-drawer__dragger,
.el-drawer__dragger:before {
    background-color: transparent;
    position: absolute;
    transition: all .2s;
}

.el-drawer__dragger:before {
    content: "";
}

.el-drawer__dragger:hover:before {
    background-color: #5D87FF;
}

.el-drawer.ltr,
.el-drawer.rtl {
    bottom: 0;
    height: 100%;
    top: 0;
}

.el-drawer.ltr > .el-drawer__dragger,
.el-drawer.rtl > .el-drawer__dragger {
    bottom: 0;
    cursor: ew-resize;
    height: 100%;
    top: 0;
    width: var(--el-drawer-dragger-size);
}

.el-drawer.ltr > .el-drawer__dragger:before,
.el-drawer.rtl > .el-drawer__dragger:before {
    bottom: 0;
    top: 0;
    width: 3px;
}

.el-drawer.btt,
.el-drawer.ttb {
    left: 0;
    right: 0;
    width: 100%;
}

.el-drawer.ltr {
    left: 0;
}

.el-drawer.ltr > .el-drawer__dragger {
    right: 0;
}

.el-drawer.ltr > .el-drawer__dragger:before {
    right: -2px;
}

.el-drawer.rtl {
    right: 0;
    transform: translateX(100%);
}

.el-drawer.rtl > .el-drawer__dragger {
    left: 0;
}

.el-drawer.rtl > .el-drawer__dragger:before {
    left: -2px;
}

.el-modal-drawer.is-penetrable {
    pointer-events: none;
}

.el-modal-drawer.is-penetrable .el-drawer {
    pointer-events: auto;
}

.el-drawer.is-open {
    transform: translateX(0);
}

.el-drawer__item {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    color: #606266;
    text-decoration: none !important;
    transition: background .2s ease, color .2s ease;
    line-height: 1.5;
}

.el-drawer__item:hover {
    color: #5D87FF;
    text-decoration: none;
}

.el-drawer__item.is-active {
    color: #5D87FF;
    font-weight: 500;
    text-decoration: none;
}

.el-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(15,23,42,.1);
    background: #fff;
    color: #0f172a;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none !important;
}

.el-button--primary {
    background: linear-gradient(135deg, #5D87FF 0%, #4361ee 100%);
    border-color: #5D87FF;
    color: #fff !important;
}

.el-button--primary,
.el-button--primary:hover,
.el-button--primary:focus,
.el-button--primary:active,
a.el-button--primary,
a.el-button--primary:hover,
a.el-button--primary:focus,
a.el-button--primary:active {
    color: #fff !important;
    text-decoration: none !important;
    outline: none;
}

.el-button--primary:hover {
    background: linear-gradient(135deg, #4361ee 0%, #3b5bdb 100%);
    border-color: #4361ee;
}

.el-button--large {
    padding: 12px 28px;
    font-size: 16px;
}

.hero {
    padding: 56px 18px 52px;
    min-height: 340px;
    color: #000;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-item {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.hero__bg-item.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 260px;
    position: relative;
    z-index: 1;
    padding-left: 32px;
}

.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.25);
    color: rgba(15,23,42,.7);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease;
    z-index: 3;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        8px 8px 16px rgba(15,23,42,.08),
        -8px -8px 16px rgba(255,255,255,.6),
        inset 1px 1px 2px rgba(255,255,255,.8),
        inset -1px -1px 2px rgba(15,23,42,.05);
}

.hero__arrow--left {
    left: 24px;
}

.hero__arrow--right {
    right: 24px;
}

.hero__arrow--left.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hero__arrow--right.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hero__arrow:hover {
    background: rgba(255,255,255,.45);
    color: rgba(15,23,42,.9);
    box-shadow: 
        12px 12px 24px rgba(15,23,42,.12),
        -12px -12px 24px rgba(255,255,255,.7),
        inset 2px 2px 4px rgba(255,255,255,.9),
        inset -2px -2px 4px rgba(15,23,42,.08);
    transform: translateY(-50%) scale(1.05);
}

.hero__content {
    position: absolute;
    top: 55%;
    left: 32px;
    transform: translateY(-48%);
    will-change: opacity, transform;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    width: calc(100% - 64px);
    max-width: 600px;
}

.hero__content--active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
    z-index: 1;
}

.hero__title {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: .4px;
    font-weight: 900;
}

.hero__subtitle {
    margin-top: 14px;
    color: #000;
    font-size: 15px;
    line-height: 1.8;
    max-width: 80%;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.hero__subtitle span {
    display: inline;
    white-space: normal;
    word-break: break-word;
}

.hero__cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__dots {
    position: absolute;
    right: 32px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: .6;
    transition: opacity .2s ease, transform .2s ease;
}

.hero-dot__inner {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(248,250,252,.82);
    transition: width .2s ease, background-color .2s ease;
}

.hero-dot.is-active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-dot.is-active .hero-dot__inner {
    width: 16px;
    background: #bfdbfe;
}

.whatsnew {
    background: transparent;
    border: none;
    border-radius: 0;
    margin: 10px auto 0;
    max-width: 1180px;
    padding: 0 18px;
}

.whatsnew__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(59,130,246,.15);
    border-radius: 8px;
    background: rgba(255,255,255,.6);
}

.whatsnew__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.whatsnew__scroll {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.whatsnew__content {
    white-space: nowrap;
    animation: whatsnew-scroll 20s linear infinite;
    font-size: 13px;
    color: #64748b;
}

@keyframes whatsnew-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gradient-section {
    position: relative;
    background: linear-gradient(to bottom left, rgba(253,242,248,.3) 0%, rgba(255,255,255,.8) 20%, rgba(255,255,255,.8) 80%, rgba(239,246,255,.3) 100%);
    overflow: hidden;
}

.gradient-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(253,242,248,.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gradient-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(239,246,255,.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section {
    padding: 60px 18px;
}

.section__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section__title {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: .2px;
    line-height: 1.4;
    color: #1e293b;
}

.section--feature {
    background: transparent;
    padding-top: 60px;
}

.tabs {
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 0;
}

.tab {
    border: 1px solid transparent;
    background: rgba(248,250,252,.9);
    border-radius: 999px;
    padding: 9px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(15,23,42,.75);
    transition: background .3s cubic-bezier(0.16, 1, 0.3, 1), border-color .3s cubic-bezier(0.16, 1, 0.3, 1), color .3s cubic-bezier(0.16, 1, 0.3, 1), transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: background, border-color, color, transform, box-shadow;
}

.tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,.12);
    background: rgba(239,246,255,.95);
    border-color: rgba(129,140,248,.5);
}

.tab.is-active {
    color: #1d4ed8;
    background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(59,130,246,.24));
    border-color: rgba(37,99,235,.5);
}

.tab__icon {
    font-size: 18px;
}

.tab__text {
    font-size: 15px;
    font-weight: 800;
    color: inherit;
    white-space: nowrap;
}

.feature-panel {
    margin-top: 26px;
    padding: 0;
    display: flex;
    column-gap: 18px;
    align-items: center;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.feature-panel__left {
    flex: 1 1 auto;
    min-width: 0;
}

.feature-panel__right {
    flex: 0 0 130px;
    width: 130px;
    min-height: 130px;
    overflow: visible;
}

.feature-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(59,130,246,.1), rgba(167,139,250,.1));
}

.feature-panels {
    position: relative;
}

.feature-panel {
    margin-top: 26px;
    padding: 0;
    display: flex;
    column-gap: 18px;
    align-items: center;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateX(40px) scale(0.98);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
    will-change: transform, opacity, visibility;
    z-index: 1;
}

.feature-panel.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.feature-panel.is-exiting {
    opacity: 0;
    transform: translateX(-40px) scale(0.98);
    visibility: hidden;
    z-index: 1;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-model {
    width: 100%;
    height: 130px;
    position: relative;
    background: transparent;
    border: none;
    overflow: hidden;
    margin-top: -10px;
}

.feature-model > div {
    width: 100%;
    height: 100%;
    position: relative;
}

.feature-model-container {
    position: relative;
    width: 130px;
    height: 130px;
    z-index: 10;
    overflow: visible;
}

.feature-model-container canvas {
    display: block;
    width: 130px !important;
    height: 130px !important;
    max-width: 130px;
    max-height: 130px;
}

.feature-model .model-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    touch-action: none;
}

.model-scene {
    position: absolute;
    inset: 0;
    perspective: 600px;
}

.model-box {
    position: absolute;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59,130,246,.6), rgba(167,139,250,.4));
    box-shadow: 0 8px 32px rgba(59,130,246,.2), inset 0 2px 4px rgba(255,255,255,.3);
}

.model-box--front {
    width: 100px;
    height: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateY(0deg);
    animation: boxFloat 4s ease-in-out infinite;
}

.model-box--middle {
    width: 80px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateY(120deg);
    animation: boxFloat 4s ease-in-out infinite 1s;
    opacity: .7;
}

.model-box--back {
    width: 60px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateY(240deg);
    animation: boxFloat 4s ease-in-out infinite 2s;
    opacity: .5;
}

.model-ring {
    position: absolute;
    border: 2px solid rgba(59,130,246,.3);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
}

.model-ring--outer {
    width: 180px;
    height: 180px;
    margin-left: -90px;
    margin-top: -90px;
    animation: ringRotate 15s linear infinite;
}

.model-ring--inner {
    width: 120px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    animation: ringRotate 10s linear infinite reverse;
}

.model-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(59,130,246,.8);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    animation: particleOrbit 6s ease-in-out infinite;
}

.model-particle--delay1 {
    animation-delay: 2s;
}

.model-particle--delay2 {
    animation-delay: 4s;
}

.feature-model--settle .model-box {
    background: linear-gradient(135deg, rgba(16,185,129,.6), rgba(59,130,246,.4));
}

.feature-model--settle .model-box--top {
    width: 80px;
    height: 40px;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    animation: boxFloatUp 3s ease-in-out infinite;
}

.feature-model--settle .model-box--center {
    width: 100px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: boxPulse 2s ease-in-out infinite;
}

.feature-model--settle .model-box--bottom {
    width: 80px;
    height: 40px;
    left: 50%;
    top: 70%;
    transform: translateX(-50%);
    animation: boxFloatDown 3s ease-in-out infinite;
}

.model-flow {
    position: absolute;
    width: 4px;
    height: 30px;
    background: linear-gradient(to top, rgba(16,185,129,.6), transparent);
    left: 50%;
    transform: translateX(-50%);
}

.model-flow--up {
    top: 45%;
    animation: flowUp 2s ease-in-out infinite;
}

.model-flow--down {
    top: 55%;
    background: linear-gradient(to bottom, rgba(59,130,246,.6), transparent);
    animation: flowDown 2s ease-in-out infinite;
}

.model-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(16,185,129,.8);
}

.model-dot--1 { left: 30%; top: 40%; animation: dotFloat 2s ease-in-out infinite; }
.model-dot--2 { left: 70%; top: 50%; animation: dotFloat 2s ease-in-out infinite 0.5s; }
.model-dot--3 { left: 50%; top: 60%; animation: dotFloat 2s ease-in-out infinite 1s; }

.feature-model--api .model-node {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99,102,241,.6), rgba(167,139,250,.4));
    box-shadow: 0 4px 20px rgba(99,102,241,.3);
}

.model-node--left {
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    animation: nodePulse 2s ease-in-out infinite;
}

.model-node--center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    animation: nodePulse 2s ease-in-out infinite 0.5s;
}

.model-node--right {
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    animation: nodePulse 2s ease-in-out infinite 1s;
}

.model-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(to right, rgba(99,102,241,.4), rgba(99,102,241,.8));
    top: 50%;
    transform: translateY(-50%);
}

.model-line--left {
    left: 32%;
    width: 36%;
}

.model-line--right {
    left: 58%;
    width: 36%;
}

.model-pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(99,102,241,.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: pulseMove 2s ease-in-out infinite;
}

.model-pulse--delay1 {
    animation-delay: 0.6s;
}

.model-pulse--delay2 {
    animation-delay: 1.2s;
}

.feature-model--risk .model-shield {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245,158,11,.6), rgba(239,68,68,.4));
    box-shadow: 0 8px 32px rgba(245,158,11,.3);
    animation: shieldRotate 8s linear infinite;
}

.feature-model--risk .model-shield::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,.4);
}

.model-grid {
    position: absolute;
    background: rgba(245,158,11,.2);
}

.model-grid--h1 {
    width: 180px;
    height: 2px;
    left: 50%;
    top: 35%;
    transform: translateX(-50%);
    animation: gridMove 3s ease-in-out infinite;
}

.model-grid--h2 {
    width: 160px;
    height: 2px;
    left: 50%;
    top: 65%;
    transform: translateX(-50%);
    animation: gridMove 3s ease-in-out infinite 1.5s;
}

.model-grid--v1 {
    width: 2px;
    height: 140px;
    left: 30%;
    top: 50%;
    transform: translateY(-50%);
    animation: gridMove 3s ease-in-out infinite;
}

.model-grid--v2 {
    width: 2px;
    height: 120px;
    left: 70%;
    top: 50%;
    transform: translateY(-50%);
    animation: gridMove 3s ease-in-out infinite 1.5s;
}

.model-alert {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(239,68,68,.8);
    animation: alertFlash 1.5s ease-in-out infinite;
}

.model-alert--1 { left: 25%; top: 30%; }
.model-alert--2 { right: 25%; top: 45%; animation-delay: 0.5s; }
.model-alert--3 { left: 60%; bottom: 30%; animation-delay: 1s; }

@keyframes boxFloat {
    0%, 100% { transform: translate(-50%, -50%) rotateY(0deg) translateY(0); }
    50% { transform: translate(-50%, -50%) rotateY(180deg) translateY(-10px); }
}

@keyframes ringRotate {
    0% { transform: rotateX(70deg) rotateZ(0deg); }
    100% { transform: rotateX(70deg) rotateZ(360deg); }
}

@keyframes particleOrbit {
    0% { transform: rotate(0deg) translateX(60px) rotate(0deg); opacity: .8; }
    50% { opacity: .3; }
    100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); opacity: .8; }
}

@keyframes boxFloatUp {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

@keyframes boxFloatDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

@keyframes boxPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes flowUp {
    0% { transform: translateX(-50%) translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(-50%) translateY(-40px); opacity: 0; }
}

@keyframes flowDown {
    0% { transform: translateX(-50%) translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(-50%) translateY(40px); opacity: 0; }
}

@keyframes dotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes nodePulse {
    0%, 100% { transform: translateY(-50%) scale(1); box-shadow: 0 4px 20px rgba(99,102,241,.3); }
    50% { transform: translateY(-50%) scale(1.1); box-shadow: 0 8px 30px rgba(99,102,241,.5); }
}

@keyframes pulseMove {
    0% { left: 30%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 70%; opacity: 0; }
}

@keyframes shieldRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes gridMove {
    0%, 100% { opacity: .3; transform: translateX(-50%) scaleX(0.8); }
    50% { opacity: .8; transform: translateX(-50%) scaleX(1); }
}

@keyframes alertFlash {
    0%, 100% { opacity: .3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.feature-panel__kicker {
    color: #2563eb;
    font-weight: 900;
    letter-spacing: .2px;
}

.feature-panel__title {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 900;
}

.feature-panel__desc {
    margin-top: 12px;
    color: rgba(15,23,42,.8);
    line-height: 1.9;
    font-size: 15px;
}

.tag-grid {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(255,255,255,.9);
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 13px;
    color: rgba(15,23,42,.75);
    white-space: nowrap;
}

.section--industry {
    background: transparent;
    margin-top: 0;
}

.card-grid {
    margin-top: 30px;
    display: flex;
    gap: 16px;
}

.card {
    border: 1px solid rgba(15,23,42,.06);
    background: rgba(255,255,255,.95);
    border-radius: 16px;
    padding: 22px 20px 18px;
    box-shadow: 0 16px 40px rgba(15,23,42,.08);
    flex: 1;
    min-width: 0;
    transition: flex .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1), transform .35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    will-change: flex, box-shadow, transform;
}

.card-grid:hover .card:not(:hover) {
    flex: 1;
}

.card:hover {
    flex: 2.5;
    box-shadow: 0 20px 50px rgba(15,23,42,.12);
    transform: translateY(-4px);
}

.card__img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transition: opacity .3s ease;
}

.card-grid:hover .card:not(:hover) .card__img-wrap {
    opacity: 1;
}

.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__content {
    position: relative;
    z-index: 1;
}

.card-grid:hover .card:not(:hover) .card__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
}

.card-grid:hover .card:not(:hover) .card__h,
.card-grid:hover .card:not(:hover) .card__sub {
    color: #fff;
}

.card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.card__title-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.card__h {
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
}

.card__sub {
    margin-top: 6px;
    color: rgba(15,23,42,.6);
    font-size: 12px;
}

.card__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 22px;
}

.card__icon--ecom {
    color: #3b82f6;
}

.card__icon--offline {
    color: #f97316;
}

.card__icon--saas {
    color: #22c55e;
}

.card__icon--media {
    color: #ec4899;
}

.card__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 22px;
}

.card-grid:hover .card:not(:hover) .card__icon {
    display: none;
}

.card__icon--ecom {
    color: #3b82f6;
}

.card__icon--offline {
    color: #f97316;
}

.card__icon--saas {
    color: #22c55e;
}

.card__icon--media {
    color: #ec4899;
}

.card__item {
    margin-top: 0;
    padding-top: 0;
    border-top: 1px dashed rgba(15,23,42,.1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .35s cubic-bezier(0.16, 1, 0.3, 1), margin-top .35s cubic-bezier(0.16, 1, 0.3, 1), padding-top .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card__item {
    margin-top: 16px;
    padding-top: 16px;
    max-height: 200px;
    opacity: 1;
}

.card__k {
    font-weight: 600;
    font-size: 13px;
    color: #0f172a;
}

.card__v {
    margin-top: 6px;
    color: rgba(15,23,42,.6);
    line-height: 1.6;
    font-size: 12px;
}

.section--globe {
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(180deg, rgba(248,250,252,.8), rgba(241,245,249,.7));
}

.globe-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 40px 0 56px;
}

.globe-header {
    text-align: center;
}

.globe-title {
    margin: 0;
    font-size: 30px;
    font-weight: 900;
    color: #1e293b;
    display: inline-block;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

.globe-subtitle {
    margin: 4px 0 0;
    font-size: 13px;
    color: #6b7280;
}

.globe-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1.3fr) minmax(0,2fr) minmax(0,1.3fr);
    align-items: center;
    gap: 24px;
}

.globe-text {
    position: relative;
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
    max-width: 320px;
    z-index: 2;
}

.globe-text h4 {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd, #60a5fa, #3b82f6);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flowGlow 1.8s cubic-bezier(.4,0,.2,1) infinite;
    display: inline-block;
}

.globe-text-left h4:nth-child(1) { animation-delay: 0s; }
.globe-text-left h4:nth-child(3) { animation-delay: 0.25s; }
.globe-text-left h4:nth-child(5) { animation-delay: 0.5s; }

.globe-text-right h4:nth-child(1) { animation-delay: 0.125s; }
.globe-text-right h4:nth-child(3) { animation-delay: 0.375s; }
.globe-text-right h4:nth-child(5) { animation-delay: 0.625s; }

@keyframes flowGlow {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.globe-text p {
    margin: 0 0 22px;
}

.globe-text-left {
    margin-right: -40px;
    text-align: right;
}

.globe-text-right {
    margin-left: -40px;
}

.globe {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe .earth-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#globe-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.section--tools {
    padding-top: 40px;
}

.tool-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
    align-items: stretch;
}

.tool {
    position: relative;
    border: 1px solid rgba(15,23,42,.06);
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(248,250,252,.9));
    border-radius: 18px;
    padding: 18px 18px 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color .3s cubic-bezier(0.16, 1, 0.3, 1), background .3s cubic-bezier(0.16, 1, 0.3, 1), transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: border-color, background, transform, box-shadow;
}

.tool:hover {
    border-color: rgba(37,99,235,.2);
    background: linear-gradient(to bottom right, #ecfdf5, #ffffff, #eff6ff);
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15,23,42,.1);
}

.tool__head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 18px;
    color: #0f172a;
    background: transparent;
    border: none;
}

.tool--api {
    --tool-color: #2563eb;
}

.tool--config {
    --tool-color: #8b5cf6;
}

.tool--risk {
    --tool-color: #f97316;
}

.tool--support {
    --tool-color: #10b981;
}

.tool--api .tool__icon,
.tool--config .tool__icon,
.tool--risk .tool__icon,
.tool--support .tool__icon {
    color: var(--tool-color);
}

.tool__t {
    font-weight: 900;
    font-size: 14px;
}

.tool__d {
    margin-top: 10px;
    color: rgba(15,23,42,.75);
    line-height: 1.85;
    font-size: 12px;
}

.section--partner {
    padding: 40px 0 20px;
    background: linear-gradient(180deg, rgba(15,23,42,.7), rgba(15,23,42,.9)),
                url('../images/container.jpg') center/cover no-repeat;
    color: #fff;
}

.partner__content {
    position: relative;
    z-index: 1;
    padding: 32px 32px 30px;
    max-width: 640px;
}

.partner__kicker {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(226,232,240,.9);
}

.partner__title {
    margin-top: 10px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: .4px;
}

.partner__desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(226,232,240,.9);
}

.partner__actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.partner__actions .el-button:not(.el-button--primary):hover {
    background: linear-gradient(to bottom right, #ecfdf5, #ffffff, #eff6ff);
    border-color: rgba(37,99,235,.2);
    color: #0f172a;
}

.footer {
    border-top: 1px solid rgba(15,23,42,.06);
    background: rgba(248,250,252,.7);
}

.footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 18px 72px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
    max-width: 360px;
}

.footer__logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.footer__copy {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(15,23,42,.7);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 38px;
    flex: 1;
    min-width: 0;
}

.footer-col__t {
    font-weight: 900;
    margin-bottom: 18px;
}

.footer-link {
    display: block;
    margin-top: 12px;
    text-decoration: none;
    color: rgba(15,23,42,.7);
    font-size: 12px;
    line-height: 2;
}

.footer-link:hover {
    color: #2563eb;
    text-decoration: none;
}

.footer__bottom {
    border-top: 1px solid rgba(15,23,42,.06);
    margin-top: 12px;
    padding: 14px 18px 18px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 12px;
    color: rgba(15,23,42,.75);
}

.footer__bottom-left,
.footer__bottom-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.footer-bottom__link {
    color: rgba(15,23,42,.75);
    text-decoration: none;
}

.footer-bottom__link:hover {
    color: #2563eb;
    text-decoration: none;
}

.footer__sep {
    color: rgba(148,163,184,.7);
}


@media(max-width: 1100px) {
    .nav {
        display: none;
    }
    .topbar__menu-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        width: 40px;
        height: 40px;
        padding: 8px;
        z-index: 100;
    }
    .top-actions {
        display: none;
    }
}

@media(max-width: 980px) {
    .feature-panel {
        flex-direction: column;
        row-gap: 18px;
        align-items: center;
    }
    .feature-panel__left {
        text-align: center;
        word-break: break-word;
        overflow-wrap: break-word;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .feature-panel__right {
        width: 130px;
        flex: 0 0 130px;
        min-height: 130px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .feature-panel__title {
        font-size: 20px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .feature-panel__desc {
        font-size: 14px;
        line-height: 1.7;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .feature-panel__kicker {
        font-size: 13px;
        white-space: normal;
    }
    .feature-model {
        height: 130px;
        margin-top: -10px;
        position: relative;
        width: 130px;
    }
    .feature-model-container {
        position: relative;
        right: auto;
        top: auto;
        width: 130px;
        height: 130px;
        margin: 0 auto;
    }
    .feature-model-container canvas {
        width: 130px !important;
        height: 130px !important;
        max-width: 130px;
        max-height: 130px;
    }
    .footer__inner {
        flex-wrap: wrap;
    }
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .tool-grid,
    .footer__links {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .card-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .card-grid .card {
        flex: unset;
    }
    .globe-layout {
        grid-template-columns: minmax(0,1fr);
    }
    .globe-text-left,
    .globe-text-right {
        text-align: left;
        margin: 0;
        max-width: none;
    }
}

@media(max-width: 560px) {
    .hero__title {
        font-size: 28px;
        line-height: 1.2;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hero__subtitle {
        font-size: 14px;
        line-height: 1.7;
        max-width: 80%;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .section__title {
        font-size: 22px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .feature-panel__title {
        font-size: 18px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .feature-panel__desc {
        font-size: 13px;
        line-height: 1.6;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .feature-panel__kicker {
        font-size: 12px;
        white-space: normal;
    }
    .tag-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    .tag {
        font-size: 12px;
        padding: 4px 10px;
        white-space: normal;
        word-break: break-word;
    }
    .card-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 10px;
    }
    .tool-grid,
    .footer__links {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .globe {
        min-height: 200px;
        max-height: 280px;
    }
    .globe .earth-video {
        max-height: 280px;
    }
    #globe-container {
        min-height: 200px;
        max-height: 280px;
    }
    .card {
        border: 1px solid rgba(15,23,42,.08);
        background: #ffffffbf;
        border-radius: 18px;
        padding: 20px 18px 16px;
        box-shadow: 0 12px 26px rgba(2,6,23,.06);
    }
    .card:nth-child(1) {
        background-image: linear-gradient(to bottom, rgba(255,255,255,.98), rgba(255,255,255,.95) 8%, rgba(255,255,255,.88) 24%, rgba(255,255,255,.65) 46%, transparent 82%), url(../images/image1.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .card:nth-child(2) {
        background-image: linear-gradient(to bottom, rgba(255,255,255,.98), rgba(255,255,255,.95) 8%, rgba(255,255,255,.88) 24%, rgba(255,255,255,.65) 46%, transparent 82%), url(../images/image2.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .card:nth-child(3) {
        background-image: linear-gradient(to bottom, rgba(255,255,255,.98), rgba(255,255,255,.95) 8%, rgba(255,255,255,.88) 24%, rgba(255,255,255,.65) 46%, transparent 82%), url(../images/image3.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .card:nth-child(4) {
        background-image: linear-gradient(to bottom, rgba(255,255,255,.98), rgba(255,255,255,.95) 8%, rgba(255,255,255,.88) 24%, rgba(255,255,255,.65) 46%, transparent 82%), url(../images/image4.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .card__item {
        display: none;
    }
    .hero__content {
        width: calc(100% - 32px);
        left: 16px;
    }
}
