:root {
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    --primary: var(--el-color-primary);
    --primary-light: var(--el-color-primary-light-3);
    --accent: var(--el-color-primary-light-3);
    --text: var(--el-text-color-primary, #303133);
    --text-light: var(--el-text-color-secondary, #909399);
    --text-white: rgba(255, 255, 255, 0.95);
    --radius: 20px;
    --radius-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html:has(.site-body),
html:has(.site-body) body.site-body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html:has(.site-body)::-webkit-scrollbar,
html:has(.site-body) body.site-body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
    background: transparent;
}

html:has(.site-body)::-webkit-scrollbar-thumb,
html:has(.site-body) body.site-body::-webkit-scrollbar-thumb,
html:has(.site-body)::-webkit-scrollbar-track,
html:has(.site-body) body.site-body::-webkit-scrollbar-track {
    display: none !important;
    background: transparent;
}

body.site-body {
    margin: 0;
    min-height: 100vh;
    font-family: "PingFang SC", "SF Pro SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: #0f172a;
    overflow-x: hidden;
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0f172a 0%, var(--el-bg-color-page) 35%, var(--el-color-primary-dark-2) 60%, var(--el-color-primary-dark-2) 100%);
}

.site-bg::before,
.site-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 12s ease-in-out infinite;
}

.site-bg::before {
    width: 600px;
    height: 600px;
    background: var(--el-color-primary);
    top: -10%;
    left: -5%;
}

.site-bg::after {
    width: 500px;
    height: 500px;
    background: var(--el-color-primary-light-3);
    bottom: -10%;
    right: -5%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

/* Site-wide scroll reveal & motion */
.xyn-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--xyn-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.xyn-reveal--visible {
    opacity: 1;
    transform: none;
    will-change: auto;
}

.xyn-reveal--fade {
    transform: translateY(14px);
}

.xyn-reveal--left {
    transform: translateX(-36px);
}

.xyn-reveal--right {
    transform: translateX(36px);
}

.xyn-reveal--scale {
    transform: scale(0.94);
}

.xyn-reveal--hero {
    transform: translateY(22px);
}

.page-hero-bg,
.market-hero-bg,
.doc-hero-bg,
.news-hero-bg {
    animation: xynHeroBgDrift 24s ease-in-out infinite alternate;
}

@keyframes xynHeroBgDrift {
    0% { transform: scale(1) translateX(0); }
    100% { transform: scale(1.05) translateX(-1%); }
}

@media (prefers-reduced-motion: reduce) {
    .xyn-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .page-hero-bg,
    .market-hero-bg,
    .doc-hero-bg,
    .news-hero-bg {
        animation: none;
    }
}

html.xyn-reduced-motion .xyn-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

html.xyn-reduced-motion .page-hero-bg,
html.xyn-reduced-motion .market-hero-bg,
html.xyn-reduced-motion .doc-hero-bg,
html.xyn-reduced-motion .news-hero-bg {
    animation: none;
}

/* Reveal & motion — tablet */
@media (max-width: 992px) {
    .xyn-reveal {
        transform: translateY(20px);
        transition-duration: 0.55s;
    }

    .xyn-reveal--fade,
    .xyn-reveal--left,
    .xyn-reveal--right {
        transform: translateY(14px);
    }

    .xyn-reveal--hero {
        transform: translateY(16px);
    }

    .home-adv-visual {
        justify-content: center;
    }

    .home-adv-illustration {
        max-width: 320px;
        height: 220px;
        margin: 0 auto;
    }

    .home-adv-ai-orbit {
        width: 136px;
        height: 136px;
        margin: -68px 0 0 -68px;
    }

    .home-adv-ai-core {
        width: 76px;
        height: 76px;
        margin: -38px 0 0 -38px;
    }

    .home-adv-ai-core-inner {
        width: 62px;
        height: 62px;
    }

    .home-adv-ai-core-inner i {
        font-size: 20px;
    }

    .home-adv-ai-card--chart {
        width: 104px;
        padding: 8px 10px;
    }

    .home-adv-ai-card--chat {
        width: 112px;
        padding: 10px 12px;
    }

    .home-adv-ai-bars {
        height: 40px;
    }
}

/* Reveal & motion — mobile */
@media (max-width: 768px) {
    .xyn-reveal {
        transform: translateY(14px);
        transition-duration: 0.45s;
    }

    .xyn-reveal--fade,
    .xyn-reveal--left,
    .xyn-reveal--right {
        transform: translateY(10px);
    }

    .xyn-reveal--scale {
        transform: scale(0.97);
    }

    .xyn-reveal--hero {
        transform: translateY(10px);
    }

    .page-hero-bg,
    .market-hero-bg,
    .doc-hero-bg,
    .news-hero-bg {
        animation: none;
    }

    .home-adv-illustration {
        max-width: 280px;
        height: 196px;
        overflow: hidden;
    }

    .home-adv-ai {
        animation-duration: 8s;
    }

    .home-adv-ai-glow {
        width: 160px;
        height: 160px;
    }

    .home-adv-ai-orbit {
        width: 116px;
        height: 116px;
        margin: -58px 0 0 -58px;
        left: 54%;
    }

    .home-adv-ai-core {
        width: 64px;
        height: 64px;
        margin: -32px 0 0 -32px;
        left: 54%;
    }

    .home-adv-ai-core-inner {
        width: 52px;
        height: 52px;
    }

    .home-adv-ai-core-inner i {
        font-size: 17px;
    }

    .home-adv-ai-core-inner em {
        font-size: 9px;
    }

    .home-adv-ai-orbit-dot {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }

    .home-adv-ai-card--chart {
        width: 86px;
        top: 4%;
        left: 0;
        padding: 7px 8px;
    }

    .home-adv-ai-card--chat {
        width: 94px;
        bottom: 6%;
        right: 0;
        padding: 8px 10px;
    }

    .home-adv-ai-bars {
        height: 32px;
        gap: 4px;
    }

    .home-adv-ai-particle {
        display: none;
    }

    .home-adv-ai-network {
        opacity: 0.75;
    }

    .home-engines-panel {
        padding: 12px;
    }

    .home-engines-panel-glow {
        display: none;
    }

    .home-engine-panel-desc {
        font-size: 13px;
        line-height: 1.7;
        margin-top: 16px;
    }

    .home-mock-flow {
        padding-bottom: 12px;
    }

    .home-mock-perm-row,
    .home-mock-ledger-head,
    .home-mock-ledger-row {
        padding: 8px 10px;
        gap: 6px;
    }
}

/* Touch devices: disable hover lift, keep color transitions */
@media (hover: none), (pointer: coarse) {
    .content-card:hover:not(.sidenav-panel):not(.user-panel),
    .glass-card:hover:not(.content-card):not(.sidenav-panel):not(.user-panel):not(.glass-card--static):not(.empty-state),
    .market-app-card:hover,
    .pricing-card:hover,
    .home-adv-card:hover,
    .home-eco-card:hover,
    .home-solution-card:hover,
    .home-news-card:hover,
    .news-list-item:hover,
    .news-hot-item:hover .news-hot-thumb img,
    .home-adv-stat:hover,
    .home-app-card:hover,
    .home-quick-item:hover .home-quick-icon,
    .footer-col a:hover,
    .user-sidenav-item:hover {
        transform: none;
    }
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--el-color-primary-alpha-20);
    border-color: rgba(255, 255, 255, 0.35);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.site-header.scrolled {
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.18);
}

.site-nav-mobile-tools {
    display: none;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.lang-dropdown-mobile { display: none; }

.site-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-menu > li { position: relative; }

.site-menu-mobile-only { display: none !important; }

.site-nav-desktop-only { display: inline-flex; }

.site-menu > li.has-dropdown {
    position: relative;
}

.nav-dropdown-head {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px 10px 16px;
    border-radius: var(--radius-sm);
    transition: color 0.25s, background 0.25s;
    cursor: pointer;
}

.nav-dropdown-head > .nav-link-main {
    flex: 0 1 auto;
    padding: 0;
    font-size: 15px;
    font-weight: inherit;
    line-height: inherit;
    white-space: nowrap;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: inherit;
    opacity: 0.65;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    transition: transform 0.25s;
}

.site-menu > li > a,
.site-menu > li > .nav-link-main {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all 0.25s;
}

.site-menu > li > .nav-link-main,
.site-menu .nav-link-main,
.site-menu .nav-dropdown-toggle {
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: none;
}

.site-menu > li > .nav-link-main,
.site-menu .nav-link-main {
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    color: inherit;
}

.site-menu .nav-dropdown-toggle {
    background: transparent;
    border: none;
    font-family: inherit;
    cursor: pointer;
    color: inherit;
}

.site-menu > li > a:hover,
.site-menu > li > .nav-link-main:hover,
.site-menu > li.has-dropdown:hover .nav-dropdown-head,
.site-menu > li.has-dropdown.open .nav-dropdown-head {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.site-menu > li.active > a,
.site-menu > li.active > .nav-link-main,
.site-menu > li.has-dropdown.active .nav-dropdown-head {
    color: #fff;
    background: transparent;
    font-weight: 600;
}

.site-menu > li.has-dropdown:hover .nav-dropdown-head > .nav-link-main,
.site-menu > li.has-dropdown:hover .nav-dropdown-toggle,
.site-menu > li.has-dropdown.open .nav-dropdown-head > .nav-link-main,
.site-menu > li.has-dropdown.open .nav-dropdown-toggle {
    color: inherit;
    background: transparent;
}

.site-menu > li.has-dropdown:hover .nav-dropdown-toggle,
.site-menu > li.has-dropdown.open .nav-dropdown-toggle {
    opacity: 1;
}

.site-menu > li.has-dropdown:hover .nav-dropdown-toggle i,
.site-menu > li.has-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.site-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    width: 100%;
    min-width: 180px;
    padding: 8px;
    margin-top: 4px;
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s;
    list-style: none;
}

.site-menu > li:hover .dropdown-menu,
.site-menu > li.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-menu .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
}

.site-menu .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lang-switch {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lang-dropdown-trigger:hover,
.lang-dropdown:focus-within .lang-dropdown-trigger {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.lang-dropdown-caret {
    font-size: 12px;
    opacity: 0.75;
    transition: transform 0.2s;
}

.lang-dropdown:hover .lang-dropdown-caret,
.lang-dropdown:focus-within .lang-dropdown-caret {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 320px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1100;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    max-height: min(70vh, 520px);
    overflow-y: auto;
}

.lang-dropdown-menu > li {
    min-width: 0;
}

.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown:focus-within .lang-dropdown-menu,
.lang-dropdown-mobile.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-trigger--icon {
    padding: 8px 10px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}

.lang-dropdown-trigger--icon .lang-dropdown-current,
.lang-dropdown-trigger--icon .lang-dropdown-caret {
    display: none;
}

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.lang-flag-icon {
    flex-shrink: 0;
    width: 20px;
    line-height: 15px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.lang-dropdown-trigger .lang-flag-icon {
    width: 18px;
    line-height: 13px;
}

.lang-dropdown-trigger--icon .lang-flag-icon {
    width: 22px;
    line-height: 16px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.lang-dropdown-label {
    min-width: 0;
}

.lang-dropdown-menu a:hover,
.lang-dropdown-menu a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.currency-dropdown-mobile { display: none; }

.currency-dropdown {
    position: relative;
}

.currency-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.currency-dropdown-trigger:hover,
.currency-dropdown:focus-within .currency-dropdown-trigger,
.currency-dropdown.open .currency-dropdown-trigger {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.currency-dropdown-caret {
    font-size: 12px;
    opacity: 0.75;
    transition: transform 0.2s;
}

.currency-dropdown:hover .currency-dropdown-caret,
.currency-dropdown:focus-within .currency-dropdown-caret,
.currency-dropdown.open .currency-dropdown-caret {
    transform: rotate(180deg);
}

.currency-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 168px;
    max-height: 320px;
    overflow-y: auto;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1100;
}

.currency-dropdown:hover .currency-dropdown-menu,
.currency-dropdown:focus-within .currency-dropdown-menu,
.currency-dropdown.open .currency-dropdown-menu,
.currency-dropdown-mobile.open .currency-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-dropdown-trigger--icon {
    padding: 8px 10px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}

.currency-dropdown-trigger--icon .currency-dropdown-current,
.currency-dropdown-trigger--icon .currency-dropdown-caret {
    display: none;
}

.currency-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.currency-dropdown-menu a:hover,
.currency-dropdown-menu a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.lang-mobile-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.sub-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.market-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 64px;
    background: #eef3f9;
}

.market-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: center;
}

.market-hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.market-hero-copy p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.75;
    color: #64748b;
}

.market-hero-copy p:last-of-type {
    margin-bottom: 24px;
}

.market-hero-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px var(--el-color-primary-alpha-35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.market-hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px var(--el-color-primary-alpha-40);
    color: #fff;
}

.market-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.market-deco-scene {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
}

.market-deco-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff 0%, var(--el-color-primary-light-9) 100%);
    box-shadow: 0 12px 32px var(--el-color-primary-alpha-12);
    color: var(--el-color-primary);
    font-weight: 700;
}

.market-deco-cloud {
    top: 8%;
    left: 18%;
    width: 72px;
    height: 72px;
    font-size: 30px;
    border-radius: 20px;
    transform: rotate(-8deg);
}

.market-deco-cube {
    top: 28%;
    right: 12%;
    width: 88px;
    height: 88px;
    font-size: 18px;
    letter-spacing: 0.04em;
    transform: rotate(6deg);
}

.market-deco-target {
    bottom: 22%;
    left: 8%;
    width: 64px;
    height: 64px;
    font-size: 26px;
    border-radius: 50%;
    transform: rotate(-4deg);
}

.market-deco-magnet {
    bottom: 10%;
    right: 22%;
    width: 56px;
    height: 56px;
    font-size: 22px;
    border-radius: 14px;
    transform: rotate(12deg);
}

.market-hero-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.market-side-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.market-side-card:hover {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-10);
    transform: translateY(-2px);
}

.market-side-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.market-side-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.market-side-text span {
    font-size: 13px;
    color: var(--el-color-primary);
}

.market-side-text span i {
    font-size: 12px;
}

.market-side-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--el-color-primary-light-9);
    color: var(--el-color-primary);
    font-size: 18px;
}

.market-section {
    padding-top: 32px;
}

.market-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 14px;
}

.market-toolbar-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.market-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.market-filters a {
    padding: 8px 18px;
    border-radius: 50px;
    color: #64748b;
    background: #f1f5f9;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

.market-filters a:hover,
.market-filters a.active {
    background: var(--el-color-primary);
    color: #fff;
}

.market-search {
    position: relative;
    flex-shrink: 0;
    width: min(280px, 100%);
}

.market-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
}

.market-search input {
    width: 100%;
    padding: 10px 16px 10px 38px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: #334155;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.market-search input::placeholder { color: #94a3b8; }

.market-search input:focus {
    border-color: var(--el-color-primary-light-5);
    background: #fff;
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.market-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.market-app-card {
    display: flex;
    flex-direction: column;
    padding: 22px 20px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.market-app-card:hover {
    transform: translateY(-4px);
    border-color: var(--el-color-primary-light-7);
    box-shadow: 0 12px 32px var(--el-color-primary-alpha-10);
}

.market-app-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.market-app-icon {
    flex-shrink: 0;
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

.market-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-app-icon-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--el-color-primary);
    font-size: 20px;
}

.market-app-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-width: 0;
}

.market-app-tag {
    padding: 3px 10px;
    background: var(--el-color-primary-light-9);
    border-radius: 50px;
    color: var(--el-color-primary);
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.market-app-rating {
    font-size: 12px;
    font-weight: 600;
    color: var(--el-color-warning);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.market-app-rating i {
    margin-right: 0;
    font-size: 11px;
}

.market-app-rating .fa-star-o {
    color: #cbd5e1;
}

.market-app-rating em {
    margin-left: 4px;
    font-style: normal;
    color: #64748b;
    font-weight: 500;
}

.market-app-name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.market-app-summary {
    flex: 1;
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.market-app-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: #94a3b8;
}

.market-app-price {
    margin-left: auto;
    font-weight: 600;
    color: var(--el-color-danger);
}

.market-app-free {
    margin-left: auto;
    font-weight: 600;
    color: var(--el-color-success);
}

.market-empty {
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    color: #64748b;
}

@media (max-width: 1200px) {
    .market-hero-inner { grid-template-columns: 1fr 1fr; }
    .market-hero-side { grid-column: 2; flex-direction: column; }
    .market-side-card { flex: none; }
    .market-app-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .market-hero-inner { grid-template-columns: 1fr; }
    .market-hero-side { grid-column: 1; flex-direction: column; }
    .market-app-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .market-app-grid { grid-template-columns: 1fr; }
    .market-hero-side { flex-direction: column; }
}

.app-card-tag {
    display: inline-block;
    padding: 2px 10px;
    background: var(--el-color-primary-alpha-25);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 12px;
    margin-bottom: 8px;
}

.compare-section {
    margin-top: 60px;
    padding: 40px;
}

.compare-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
}

.compare-table-wrap {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th,
.compare-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.compare-table thead th {
    color: var(--text-white);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
}

.compare-table tbody th {
    text-align: left;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.compare-table td {
    color: #34d399;
    font-weight: 600;
}

.compare-table td.no {
    color: rgba(255, 255, 255, 0.25);
}

.auth-flow {
    margin-top: 60px;
    text-align: center;
}

.auth-flow .section-title {
    margin-bottom: 40px;
}

.auth-flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.auth-step {
    padding: 28px 24px;
    min-width: 160px;
    flex: 1;
    max-width: 220px;
}

.auth-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--el-color-primary-alpha-30), var(--el-color-primary-alpha-30));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #a5b4fc;
}

.auth-step h3 {
    color: var(--text-white);
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

.auth-step-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
}


.faq-section {
    margin-top: 60px;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
}

.site-nav-actions { display: flex; align-items: center; gap: 8px; }

.site-nav-actions .btn-glass {
    padding: 8px 14px;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary-glass {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 20px var(--el-color-primary-alpha-40);
}

.btn-primary-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--el-color-primary-alpha-50);
    color: #fff;
}

.btn-success-glass {
    background: linear-gradient(135deg, var(--el-color-success), var(--el-color-success));
    color: #fff;
    box-shadow: 0 4px 16px var(--el-color-success-alpha-35);
}

.btn-success-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--el-color-success-alpha-45);
    color: #fff;
}

.site-nav-actions .btn-primary-glass {
    box-shadow: 0 2px 10px var(--el-color-primary-alpha-30);
}

.site-nav-actions .btn-primary-glass:hover {
    transform: none;
    box-shadow: 0 4px 14px var(--el-color-primary-alpha-40);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.site-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}


.site-main {
    padding-top: 72px;
    min-height: calc(100vh - 72px);
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


.hero-section {
    padding: 80px 0 100px;
    text-align: center;
}

.hero-slide {
    padding: 60px 40px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, var(--el-color-primary-light-7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--el-color-primary-alpha-20);
    border: 1px solid var(--el-color-primary-alpha-30);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 12px;
}

.section-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-item {
    padding: 32px 28px;
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--el-color-primary-alpha-30), var(--el-color-primary-alpha-30));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #a5b4fc;
}

.feature-item h3 {
    color: var(--text-white);
    font-size: 20px;
    margin: 0 0 12px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card-grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}


.news-card {
    overflow: hidden;
    padding: 0;
}

.news-card-img {
    height: 180px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-body { padding: 24px; }

.news-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.news-card-tag {
    padding: 2px 10px;
    background: var(--el-color-primary-alpha-25);
    border-radius: 50px;
    color: #a5b4fc;
}

.news-card-title {
    margin: 0 0 10px;
    font-size: 18px;
}

.news-card-title a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.2s;
}

.news-card-title a:hover { color: #a5b4fc; }

.news-card-summary {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.app-card {
    padding: 28px;
    text-align: center;
}

.app-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.app-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-card-name {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.app-card-name a {
    color: inherit;
    text-decoration: none;
}

.app-card-summary {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0 0 16px;
    line-height: 1.5;
}

.app-card-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--el-color-warning);
}

.app-card-price.free { color: #34d399; }

.app-card-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.pricing-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: none;
    position: relative;
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(90deg, #6ee7b7, #14b8a6, #5eead4, #6ee7b7);
    background-size: 300% 100%;
    animation: pricing-card-border-flow 10s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.pricing-card:nth-child(4n + 2)::before {
    background: linear-gradient(90deg, #60a5fa, #2563eb, #93c5fd, #60a5fa);
    background-size: 300% 100%;
}

.pricing-card:nth-child(4n + 3)::before,
.pricing-card.recommend::before {
    background: linear-gradient(90deg, #c084fc, #7c3aed, #ddd6fe, #c084fc);
    background-size: 300% 100%;
    animation-duration: 8s;
}

.pricing-card:nth-child(4n)::before {
    background: linear-gradient(90deg, #fbbf24, #d4af37, #fde68a, #b45309, #fbbf24);
    background-size: 400% 100%;
    animation-duration: 7s;
}

/* 套餐标识配色：saas=绿 base=蓝 ai=紫 only=黑金 */
.pricing-card.saas::before {
    background: linear-gradient(90deg, #6ee7b7, #14b8a6, #5eead4, #6ee7b7);
    background-size: 300% 100%;
    animation-duration: 8s;
}

.pricing-card.base::before {
    background: linear-gradient(90deg, #60a5fa, #2563eb, #93c5fd, #60a5fa);
    background-size: 300% 100%;
    animation-duration: 8s;
}

.pricing-card.ai::before,
.pricing-card.smart::before {
    background: linear-gradient(90deg, #c084fc, #7c3aed, #ddd6fe, #c084fc);
    background-size: 300% 100%;
    animation-duration: 8s;
}

.pricing-card.only::before,
.pricing-card.exclusive::before {
    background: linear-gradient(90deg, #fbbf24, #d4af37, #fde68a, #b45309, #fbbf24);
    background-size: 400% 100%;
    animation-duration: 7s;
}

@keyframes pricing-card-border-flow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card::before {
        animation: none;
        background-position: 0 50%;
    }
}

.pricing-card-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 148px;
    padding: 22px 16px 20px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
}

.pricing-card-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%) -12px 0 / 24px 24px,
        linear-gradient(225deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) -12px 0 / 24px 24px;
    pointer-events: none;
}

.pricing-card:nth-child(4n + 1) .pricing-card-head {
    background: linear-gradient(145deg, #2dd4bf 0%, #0d9488 100%);
}

.pricing-card:nth-child(4n + 2) .pricing-card-head {
    background: linear-gradient(145deg, #60a5fa 0%, #2563eb 100%);
}

.pricing-card:nth-child(4n + 3) .pricing-card-head,
.pricing-card.recommend .pricing-card-head {
    background: linear-gradient(145deg, #c084fc 0%, #7c3aed 55%, #6d28d9 100%);
}

.pricing-card:nth-child(4n) .pricing-card-head {
    background:
        linear-gradient(135deg, rgba(251, 191, 36, 0.14) 25%, transparent 25%) -12px 0 / 24px 24px,
        linear-gradient(225deg, rgba(251, 191, 36, 0.08) 25%, transparent 25%) -12px 0 / 24px 24px,
        linear-gradient(145deg, #1c1917 0%, #0c0a09 45%, #292524 100%);
    box-shadow: inset 0 1px 0 rgba(251, 191, 36, 0.25);
}

.pricing-card.saas .pricing-card-head {
    background: linear-gradient(145deg, #2dd4bf 0%, #0d9488 100%);
}

.pricing-card.base .pricing-card-head {
    background: linear-gradient(145deg, #60a5fa 0%, #2563eb 100%);
}

.pricing-card.ai .pricing-card-head,
.pricing-card.smart .pricing-card-head {
    background: linear-gradient(145deg, #c084fc 0%, #7c3aed 55%, #6d28d9 100%);
}

.pricing-card.only .pricing-card-head,
.pricing-card.exclusive .pricing-card-head {
    background:
        linear-gradient(135deg, rgba(251, 191, 36, 0.14) 25%, transparent 25%) -12px 0 / 24px 24px,
        linear-gradient(225deg, rgba(251, 191, 36, 0.08) 25%, transparent 25%) -12px 0 / 24px 24px,
        linear-gradient(145deg, #1c1917 0%, #0c0a09 45%, #292524 100%);
    box-shadow: inset 0 1px 0 rgba(251, 191, 36, 0.25);
}

.pricing-card.only .pricing-card-head::after,
.pricing-card.exclusive .pricing-card-head::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37 20%, #fbbf24 50%, #d4af37 80%, transparent);
    pointer-events: none;
}

.pricing-card.saas .pricing-cta {
    background: linear-gradient(135deg, #2dd4bf, #0d9488);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.28);
}

.pricing-card.base .pricing-cta {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.pricing-card.ai .pricing-cta,
.pricing-card.smart .pricing-cta {
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.pricing-card.only .pricing-cta,
.pricing-card.exclusive .pricing-cta {
    background: linear-gradient(135deg, #3f3f46 0%, #18181b 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.pricing-card.only .pricing-cta:hover,
.pricing-card.exclusive .pricing-cta:hover {
    color: #fff;
}

.pricing-card.saas .pricing-price .amount {
    color: #0d9488;
}

.pricing-card.base .pricing-price .amount {
    color: #2563eb;
}

.pricing-card.ai .pricing-price .amount,
.pricing-card.smart .pricing-price .amount {
    color: #7c3aed;
}

.pricing-card.only .pricing-price .amount,
.pricing-card.exclusive .pricing-price .amount {
    color: #b45309;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    padding: 4px 12px;
    background: var(--el-color-danger);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 10px 0 8px;
}

.pricing-head-main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    max-height: 58px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.pricing-head-main--standard {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.pricing-head-main--standard .pricing-name {
    grid-column: 2;
    text-align: center;
    padding: 0 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pricing-head-main--standard .pricing-tip-picker--users {
    grid-column: 1;
    justify-self: start;
}

.pricing-head-main--standard .pricing-tip-picker--years {
    grid-column: 3;
    justify-self: end;
}

.pricing-tip-picker {
    position: relative;
    z-index: 1;
}

.pricing-tip-picker.is-open {
    z-index: 10050;
}

.pricing-tip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 4px 12px;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}

.pricing-tip-btn:hover,
.pricing-tip-picker.is-open .pricing-tip-btn {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.75);
}

.pricing-tip-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    z-index: 10051;
    min-width: 96px;
    max-height: 160px;
    padding: 6px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.pricing-tip-picker--users .pricing-tip-menu {
    left: 0;
    right: auto;
    transform: none;
}

.pricing-tip-picker--years .pricing-tip-menu {
    left: auto;
    right: 0;
    transform: none;
    grid-template-columns: 1fr;
    min-width: 72px;
}

.pricing-tip-picker.is-open .pricing-tip-menu {
    display: grid;
}

.pricing-tip-option {
    padding: 5px 6px;
    border: none;
    border-radius: 5px;
    background: #f8fafc;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
}

.pricing-tip-option:hover {
    background: var(--el-color-primary-light-9);
    color: var(--el-color-primary);
}

.pricing-tip-option.is-active {
    background: var(--el-color-primary);
    color: #fff;
}

.pricing-name {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pricing-tagline {
    position: relative;
    z-index: 1;
    display: inline-block;
    max-width: 100%;
    margin: 0 0 8px;
    padding: 2px 10px;
    border: 0.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 3px;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-desc {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 40px;
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pricing-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: 24px 20px 28px;
}

.pricing-card-price-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 92px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin-bottom: 6px;
    text-align: center;
}

.pricing-price-main {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.2;
    white-space: nowrap;
}

.pricing-price .amount {
    font-size: 1em;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.pricing-price .unit {
    font-size: 0.47em;
    margin-left: 2px;
    font-weight: 500;
    line-height: 1.2;
    color: #64748b;
    white-space: nowrap;
    vertical-align: baseline;
}

.pricing-original {
    height: 20px;
    margin-bottom: 14px;
    text-align: center;
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 13px;
    line-height: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-original--placeholder {
    visibility: hidden;
    text-decoration: none;
    margin-bottom: 14px;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0 14px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.pricing-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    color: #fff;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-feat-name {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.pricing-feat-meta {
    flex-shrink: 0;
    margin-left: auto;
    font-weight: 600;
    color: #334155;
    text-align: right;
    white-space: nowrap;
}

.pricing-feat-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 3px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.pricing-features li.included .pricing-feat-icon {
    background: var(--el-color-primary-light-3);
}

.pricing-features li.included .pricing-feat-icon::before {
    content: '✓';
}

.pricing-features li.excluded .pricing-feat-icon {
    background: var(--el-color-danger);
}

.pricing-features li.excluded .pricing-feat-icon::before {
    content: '✕';
}

.pricing-features li.excluded .pricing-feat-name,
.pricing-features li.excluded .pricing-feat-meta {
    color: #94a3b8;
}

.pricing-features li.included .pricing-feat-meta {
    color: var(--el-color-primary);
}

.pricing-config {
    margin: 0 0 14px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.pricing-select-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pricing-select-col label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.pricing-select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.pricing-select:focus {
    outline: none;
    border-color: var(--el-color-primary);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-15);
}

.pricing-calc-hint {
    margin: 10px 0 0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.pricing-picker {
    margin-bottom: 12px;
}

.pricing-picker h4 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.pricing-picker h4 small {
    font-weight: 500;
    color: #64748b;
}

.pricing-picker-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 140px;
    overflow-y: auto;
}

.pricing-picker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    margin: 0;
}

.pricing-picker-item input {
    flex-shrink: 0;
}

.pricing-picker-name {
    flex: 1;
    color: #334155;
}

.pricing-picker-price {
    color: var(--el-color-primary);
    font-weight: 600;
    white-space: nowrap;
}

.compare-group-row th {
    background: #f1f5f9;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    padding: 12px 16px !important;
}


.pricing-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pricing-modal.is-open {
    display: flex;
}

body.pricing-modal-open {
    overflow: hidden;
}

.pricing-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.pricing-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
}

.pricing-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.pricing-modal-close:hover {
    background: #e2e8f0;
    color: #334155;
}

.pricing-modal-title {
    margin: 0;
    padding: 24px 48px 0 24px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.pricing-modal-body {
    padding: 16px 24px;
    overflow-y: auto;
}

.pricing-modal-body .pricing-config {
    margin: 0;
}

.pricing-modal-body .pricing-picker-list {
    max-height: 180px;
}

.pricing-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px 24px;
    border-top: 1px solid #e2e8f0;
}

.pricing-modal-total span {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.pricing-modal-total strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--el-color-primary);
}

.pricing-modal-confirm {
    flex-shrink: 0;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--el-color-primary-alpha-35);
}

.pricing-modal-confirm:hover {
    filter: brightness(1.05);
}

@media (max-width: 1200px) {
    .pricing-grid,
    .pricing-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}


.pricing-block-title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.pricing-compare,
.pricing-auth-flow,
.pricing-faq {
    margin-top: 56px;
}

.pricing-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.pricing-compare-panel {
    padding: 8px 0;
}

.pricing-compare-panel .compare-table th,
.pricing-compare-panel .compare-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 14px;
}

.pricing-compare-panel .compare-table thead th {
    color: #0f172a;
    font-weight: 600;
    background: #f8fafc;
}

.pricing-compare-panel .compare-table tbody th {
    text-align: left;
    color: #334155;
    font-weight: 500;
}

.pricing-compare-panel .compare-table td {
    font-weight: 600;
}

.pricing-compare-panel .compare-table td:nth-child(2) {
    color: #0d9488;
}

.pricing-compare-panel .compare-table td:nth-child(3) {
    color: #2563eb;
}

.pricing-compare-panel .compare-table td:nth-child(4) {
    color: #7c3aed;
}

.pricing-compare-panel .compare-table td:nth-child(5) {
    color: #b45309;
}

.pricing-compare-panel .compare-table td.no {
    color: #cbd5e1;
}

.pricing-auth-panel {
    padding: 40px 32px;
}

.pricing-auth-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.pricing-auth-step {
    flex: 1;
    min-width: 0;
    max-width: 220px;
    text-align: center;
}

.pricing-auth-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--el-color-primary-light-8) 0%, var(--el-color-primary-light-9) 55%, var(--el-color-primary-light-7) 100%);
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-14), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    font-size: 28px;
    color: var(--el-color-primary);
}

.pricing-auth-step h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.pricing-auth-step p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
}

.pricing-auth-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    padding-top: 24px;
    color: var(--el-color-primary-light-5);
    font-size: 26px;
}

.pricing-faq-panel {
    padding: 8px 0;
}

.pricing-faq-list {
    display: flex;
    flex-direction: column;
}

.pricing-faq-item {
    border-bottom: 1px solid #f1f5f9;
}

.pricing-faq-item:last-child {
    border-bottom: none;
}

.pricing-faq-item summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    cursor: pointer;
    list-style: none;
    transition: background 0.25s ease;
}

.pricing-faq-item summary:hover {
    background: #f8fafc;
}

.pricing-faq-item summary::-webkit-details-marker {
    display: none;
}

.pricing-faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--el-color-primary-light-8), var(--el-color-primary-light-9));
    color: var(--el-color-primary);
    font-size: 16px;
}

.pricing-faq-question {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.5;
    text-align: left;
}

.pricing-faq-question em {
    font-style: normal;
    color: var(--el-color-primary);
    margin-right: 4px;
}

.pricing-faq-chevron {
    flex-shrink: 0;
    color: #94a3b8;
    font-size: 18px;
    transition: transform 0.2s;
}

.pricing-faq-item:not([open]) .pricing-faq-chevron {
    transform: rotate(-90deg);
}

.pricing-faq-answer {
    padding: 0 28px 22px 76px;
}

.pricing-faq-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #64748b;
}

@media (max-width: 992px) {
    .pricing-auth-steps {
        flex-direction: column;
        align-items: center;
    }

    .pricing-auth-step {
        max-width: 320px;
    }

    .pricing-auth-arrow {
        padding: 0;
        transform: rotate(90deg);
    }

    .pricing-faq-answer {
        padding-left: 28px;
    }
}

@media (max-width: 640px) {
    .pricing-auth-panel {
        padding: 28px 20px;
    }

    .pricing-faq-item summary {
        padding: 16px 20px;
        gap: 10px;
    }

    .pricing-faq-answer {
        padding: 0 20px 18px 20px;
    }
}


.news-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.news-deco-scene {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1.1;
}

.news-deco-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff 0%, var(--el-color-primary-light-9) 100%);
    box-shadow: 0 12px 32px var(--el-color-primary-alpha-12);
    color: var(--el-color-primary);
    font-weight: 700;
}

.news-deco-play {
    top: 10%;
    left: 10%;
    width: 72px;
    height: 72px;
    font-size: 28px;
    border-radius: 50%;
}

.news-deco-block {
    top: 30%;
    right: 8%;
    width: 88px;
    height: 88px;
    font-size: 16px;
    letter-spacing: 0.08em;
    transform: rotate(8deg);
}

.news-deco-wave {
    bottom: 12%;
    left: 24%;
    width: 64px;
    height: 64px;
    font-size: 24px;
    border-radius: 14px;
    transform: rotate(-6deg);
}

.news-section {
    padding-top: 32px;
}

.news-toolbar {
    margin-bottom: 28px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.news-main,
.news-sidebar {
    min-width: 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-list-item {
    padding: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.news-list-link {
    display: flex;
    gap: 20px;
    color: inherit;
    text-decoration: none;
}

.news-list-link:hover,
.news-list-link:focus {
    color: inherit;
    text-decoration: none;
}

.news-list-item:hover {
    border-color: var(--el-color-primary-light-7);
    box-shadow: 0 10px 28px var(--el-color-primary-alpha-10);
    transform: translateY(-2px);
}

.news-list-thumb {
    flex-shrink: 0;
    display: block;
    width: 200px;
    height: 132px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--el-color-primary-light-8), var(--el-color-primary-light-9));
}

.news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

.news-list-item:hover .news-list-thumb img {
    transform: scale(1.05);
}

.news-list-thumb-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--el-color-primary);
    font-size: 32px;
}

.news-list-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.news-list-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    color: #0f172a;
    transition: color 0.2s;
}

.news-list-item:hover .news-list-title {
    color: var(--el-color-primary);
}

.news-list-summary {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    font-size: 13px;
}

.news-list-foot time {
    color: #94a3b8;
}

.news-list-more {
    color: var(--el-color-primary);
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
}

.news-list-more i {
    transition: transform 0.2s;
}

.news-list-item:hover .news-list-more i {
    transform: translateX(3px);
}

.news-empty {
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    color: #64748b;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-side-block {
    padding: 22px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.news-side-title {
    position: relative;
    margin: 0 0 18px;
    padding-left: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

.news-side-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 4px;
    border-radius: 2px;
    background: var(--el-color-primary);
}

.news-hot-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-hot-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
}

.news-hot-thumb {
    display: block;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--el-color-primary-light-8), var(--el-color-primary-light-9));
}

.news-hot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-hot-item:hover .news-hot-thumb img {
    transform: scale(1.05);
}

.news-hot-thumb-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--el-color-primary);
    font-size: 28px;
}

.news-hot-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    color: #334155;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.news-hot-item:hover .news-hot-title {
    color: var(--el-color-primary);
}

@media (max-width: 1100px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-sidebar {
        display: grid;
        grid-template-columns: 1fr;
    }

    .news-hot-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .news-section {
        padding-top: 28px;
    }

    .news-list-thumb {
        width: 168px;
        height: 112px;
    }

    .news-list-title {
        font-size: 17px;
    }

    .news-hot-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero-bg,
    .market-hero-bg,
    .doc-hero-bg {
        background-position: top right;
    }

    .page-hero-copy,
    .doc-hero-copy {
        max-width: 100%;
    }

    .page-hero > .site-container,
    .doc-hero > .site-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-hero,
    .market-hero,
    .news-hero,
    .doc-hero {
        padding: 36px 0 40px;
    }

    .doc-hero.news-hero .doc-hero-copy h1 {
        font-size: clamp(26px, 7vw, 34px);
    }

    .news-section {
        padding-top: 20px;
    }

    .news-toolbar {
        margin-bottom: 20px;
        padding: 12px;
        overflow: hidden;
    }

    .news-toolbar .market-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding-bottom: 2px;
    }

    .news-toolbar .market-filters::-webkit-scrollbar {
        display: none;
    }

    .news-toolbar .market-filters a {
        flex-shrink: 0;
        padding: 7px 14px;
        font-size: 13px;
    }

    .news-layout {
        gap: 20px;
    }

    .news-list {
        gap: 16px;
    }

    .news-list-item {
        padding: 16px;
    }

    .news-list-link {
        flex-direction: column;
        gap: 14px;
    }

    .news-list-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .news-list-title {
        font-size: 16px;
        -webkit-line-clamp: 3;
    }

    .news-list-summary {
        font-size: 13px;
        -webkit-line-clamp: 3;
        margin-bottom: 10px;
    }

    .news-list-foot {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
    }

    .news-section .pagination-wrap {
        margin-top: 28px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .news-section .pagination-wrap::-webkit-scrollbar {
        display: none;
    }

    .news-section .pagination-wrap ul {
        flex-wrap: nowrap;
    }

    .news-section .pagination-wrap li a,
    .news-section .pagination-wrap li span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }

    .news-sidebar {
        grid-template-columns: 1fr;
    }

    .news-side-block {
        padding: 18px 16px;
    }

    .news-hot-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-hot-thumb {
        height: 160px;
    }

    .news-empty {
        padding: 36px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .news-list-item {
        padding: 14px;
    }

    .news-list-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-list-more {
        white-space: normal;
    }

    .news-hot-thumb {
        height: 140px;
    }
}


.page-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 64px;
    text-align: left;
    background: #eef3f9;
}

.page-hero-bg,
.market-hero-bg,
.news-hero-bg,
.doc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #eef3f9;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    pointer-events: none;
}

.page-hero > .site-container,
.market-hero > .site-container,
.news-hero > .site-container,
.doc-hero > .site-container {
    position: relative;
    z-index: 1;
}

.page-hero-copy,
.doc-hero-copy {
    max-width: 520px;
}

.page-hero-copy h1,
.doc-hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.page-hero-copy p,
.doc-hero-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #64748b;
}

.page-hero-bg--about { background-image: url('../img/nav/changelog.png'); }
.page-hero-bg--custom { background-image: url('../img/nav/made.png'); }
.page-hero-bg--news { background-image: url('../img/nav/news.png'); }
.page-hero-bg--market { background-image: url('../img/nav/market.png'); }
.page-hero-bg--help { background-image: url('../img/nav/help.png'); }
.page-hero-bg--changelog { background-image: url('../img/nav/changelog.png'); }
.page-hero-bg--pricing { background-image: url('../img/nav/market.png'); }


.section-below-hero,
.page-hero + .section,
.market-hero + .section,
.news-hero + .section,
.doc-hero + .section {
    padding-top: 32px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    padding: 16px 20px;
}

.filter-bar a {
    padding: 8px 18px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s;
}

.filter-bar a:hover,
.filter-bar a.active {
    background: var(--el-color-primary-alpha-30);
    border-color: var(--el-color-primary-alpha-50);
    color: #fff;
}

.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.search-bar input::placeholder { color: rgba(255, 255, 255, 0.4); }

.search-bar input:focus {
    border-color: var(--el-color-primary-alpha-50);
    background: rgba(255, 255, 255, 0.12);
}


.detail-card {
    padding: 40px;
    margin-bottom: 32px;
}

.detail-title {
    color: var(--text-white);
    font-size: 28px;
    margin: 0 0 16px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.detail-cover {
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.detail-cover img { width: 100%; display: block; }

.detail-content,
.article-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
}

.detail-content h2,
.detail-content h3,
.article-content h2,
.article-content h3 {
    color: var(--text-white);
    margin-top: 28px;
}

.detail-content p,
.article-content p { margin-bottom: 16px; }

.detail-content ul,
.article-content ul {
    padding-left: 20px;
}

.detail-content li,
.article-content li { margin-bottom: 8px; }

.detail-content code,
.article-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}


.help-group { margin-bottom: 40px; }

.help-group-title {
    color: var(--text-white);
    font-size: 20px;
    margin: 0 0 16px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

.help-list { list-style: none; padding: 0; margin: 0; }

.help-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.help-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s;
}

.help-list a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding-left: 28px;
}

.help-list a::after {
    content: '→';
    opacity: 0.4;
}


.changelog-list { position: relative; }

.changelog-item {
    padding: 28px 32px;
    margin-bottom: 20px;
    position: relative;
}

.changelog-version {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.changelog-title {
    color: var(--text-white);
    font-size: 20px;
    margin: 0 0 8px;
}

.changelog-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}


.doc-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 64px;
    background: #eef3f9;
}

.doc-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.doc-deco-scene {
    position: relative;
    width: min(100%, 320px);
    height: 200px;
}

.doc-deco-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px var(--el-color-primary-alpha-12);
    color: var(--el-color-primary);
    font-weight: 700;
}

.doc-deco-search {
    width: 72px;
    height: 72px;
    top: 20px;
    left: 20px;
    font-size: 28px;
}

.doc-deco-doc,
.doc-deco-version {
    width: 120px;
    height: 72px;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    letter-spacing: 0.08em;
}

.doc-deco-card,
.doc-deco-tag {
    width: 64px;
    height: 64px;
    top: 24px;
    right: 24px;
    font-size: 24px;
}

.doc-deco-rocket {
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 48px;
    font-size: 22px;
    color: var(--el-color-warning);
}

.doc-section {
    padding: 32px 0 64px;
    margin-top: 0;
}

.doc-panel {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    min-height: 560px;
}

.doc-panel-empty {
    display: block;
    padding: 48px;
}

.doc-panel-empty .empty-state-img {
    display: block;
    width: 200px;
    max-width: 60%;
    height: auto;
    margin: 0 auto 16px;
}

.doc-panel-empty .empty-state p {
    margin: 0;
}

.doc-sidebar {
    padding: 28px 24px 28px 32px;
    border-right: 1px solid #f1f5f9;
}

.doc-sidebar-title {
    margin: 0 0 16px;
    padding: 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.doc-search {
    position: relative;
    margin-bottom: 20px;
}

.doc-search input {
    width: 100%;
    padding: 10px 36px 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #334155;
    background: #fff;
    outline: none;
}

.doc-search input:focus {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.doc-search input::placeholder { color: #94a3b8; }

.doc-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.doc-nav-group { margin-bottom: 8px; }

.doc-nav-group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.doc-nav-group-toggle:hover { background: #f1f5f9; }

.doc-nav-group-toggle i {
    color: #94a3b8;
    transition: transform 0.2s;
}

.doc-nav-group.is-open .doc-nav-group-toggle i { transform: rotate(180deg); }

.doc-nav-list {
    list-style: none;
    margin: 0;
    padding: 0 0 8px 8px;
    display: none;
}

.doc-nav-group.is-open .doc-nav-list { display: block; }

.doc-nav-item {
    display: block;
    padding: 10px 12px;
    margin-bottom: 2px;
    border-radius: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: background 0.2s, color 0.2s;
}

.doc-nav-item:hover {
    background: #f1f5f9;
    color: var(--el-color-primary);
}

.doc-nav-item.is-active {
    background: var(--el-color-primary-light-9);
    color: var(--el-color-primary);
    font-weight: 600;
}

.doc-index-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 8px;
}

.doc-index-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.doc-index-item:hover { background: #f1f5f9; }

.doc-index-item.is-active {
    background: var(--el-color-primary-light-9);
}

.doc-index-version {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.doc-index-item.is-active .doc-index-version { color: var(--el-color-primary); }

.doc-index-date {
    flex-shrink: 0;
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

.doc-main {
    padding: 32px 40px 40px;
    overflow: auto;
}

.doc-article[hidden] { display: none !important; }

.doc-article-head {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.doc-article-title {
    position: relative;
    margin: 0;
    padding-left: 14px;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.doc-article-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 4px;
    background: var(--el-color-primary);
}

.doc-version-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.changelog-entry-title {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f172a;
}

.changelog-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.changelog-article .doc-article-title.changelog-section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.changelog-section:not(.changelog-preview-section) > .changelog-section-title {
    margin-bottom: 14px;
}

.changelog-section-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.changelog-entry-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

.changelog-section + .changelog-section {
    margin-top: 28px;
}

.changelog-preview-section .doc-version-badge {
    padding: 3px 10px;
    font-size: 12px;
}

.changelog-preview-summary {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.changelog-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.changelog-preview-card {
    --preview-color: #3b71e8;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.changelog-preview-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 14px 12px 10px;
    background: #fff;
}

.changelog-preview-card-icon i {
    font-size: 30px;
    line-height: 1;
    color: var(--preview-color);
}

.changelog-preview-card-body {
    flex: 1;
    padding: 10px 12px 12px;
    background: #f8fafc;
}

.changelog-preview-card-title {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.changelog-preview-card-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.changelog-preview-card-accent {
    height: 3px;
    background: var(--preview-color);
}

@media (max-width: 1200px) {
    .changelog-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .changelog-preview-grid { grid-template-columns: 1fr; }
    .changelog-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .changelog-section-meta {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 960px) {
    .doc-panel { grid-template-columns: 1fr; }
    .doc-sidebar {
        padding: 24px 20px;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .doc-main { padding: 24px 20px 28px; }
}


.form-card { padding: 40px; }

.form-card-title {
    color: var(--text-white);
    margin: 0 0 24px;
    font-size: 20px;
}

.custom-intro h2 {
    color: var(--text-white);
    margin: 0 0 16px;
    font-size: 22px;
}

.custom-intro p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0 0 20px;
}

.custom-intro-feats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.custom-intro-feats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.custom-intro-feats li::before {
    content: '\f00c';
    font-family: FontAwesome;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 12px;
    color: var(--el-color-primary-light-5);
}

.custom-intro-flow-lead {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    width: 100%;
    margin: 28px 0 0;
    padding: 16px 0 4px;
    border-top: 1px solid #f1f5f9;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    background: transparent;
}

.custom-intro-flow-lead:focus-visible {
    outline: none;
}

.custom-intro-flow-lead-text {
    display: inline-block;
    padding-top: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--el-color-primary);
    transition: transform 0.25s ease;
}

.custom-intro-flow-lead:hover .custom-intro-flow-lead-text,
.custom-intro-flow-lead:focus-visible .custom-intro-flow-lead-text {
    transform: scale(1.08);
}

.custom-intro-flow-lead-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.custom-intro-flow-lead-line {
    display: block;
    width: 1px;
    height: 18px;
    border-radius: 1px;
    background: linear-gradient(180deg, var(--el-color-primary-light-5), var(--el-color-primary));
}

.custom-intro-flow-lead-icon {
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    color: var(--el-color-primary);
    opacity: 1;
    animation: customFlowScrollHint 1.6s ease-in-out infinite;
}

@keyframes customFlowScrollHint {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50% { transform: translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .custom-intro-flow-lead-icon {
        animation: none;
        opacity: 0.85;
    }

    .custom-intro-flow-lead:hover .custom-intro-flow-lead-text,
    .custom-intro-flow-lead:focus-visible .custom-intro-flow-lead-text {
        transform: none;
    }
}

#custom-flow-title {
    scroll-margin-top: 96px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group label.required::after {
    content: ' *';
    color: var(--el-color-danger);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--el-color-primary-alpha-50);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-wrap ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrap li a,
.pagination-wrap li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
}

.pagination-wrap li.active span,
.pagination-wrap li a:hover {
    background: var(--el-color-primary-alpha-30);
    border-color: var(--el-color-primary-alpha-50);
    color: #fff;
}


.site-footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
    margin: 12px 0 0;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 16px;
    margin: 0 0 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}


.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.empty-state-img {
    display: block;
    width: 200px;
    max-width: 60%;
    height: auto;
    margin: 0 auto 16px;
}

.empty-state p {
    margin: 0;
}


@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

.custom-layout {
    max-width: 1080px;
    margin: 0 auto;
}

.custom-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.custom-panel-intro {
    display: flex;
    flex-direction: column;
    padding: 36px 36px 20px;
    min-width: 0;
}

.custom-panel-intro .custom-intro-flow-lead {
    margin-top: auto;
}

.custom-panel-form.form-card {
    padding: 36px 32px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 1px solid #f1f5f9;
}

.custom-panel-form .form-card-title {
    margin-bottom: 20px;
}

.custom-panel-form .form-group {
    margin-bottom: 16px;
}

.custom-panel-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.custom-flow-panel {
    padding: 40px 32px 36px;
}

.home-section.home-engines.custom-flow-section .pricing-block-title {
    margin-bottom: 32px;
}

.custom-flow-overview {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #f1f5f9;
}

.custom-flow-overview .pricing-auth-step {
    cursor: pointer;
}

.custom-flow-overview .pricing-auth-step h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #0f172a;
    transition: color 0.25s ease;
}

.custom-flow-overview .pricing-auth-step-icon {
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.custom-flow-overview .pricing-auth-step:hover h3 {
    color: var(--el-color-primary);
}

.custom-flow-overview .pricing-auth-step:hover .pricing-auth-step-icon {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(145deg, var(--el-color-primary-light-7) 0%, var(--el-color-primary-light-8) 55%, var(--el-color-primary-light-5) 100%);
    box-shadow: 0 14px 32px var(--el-color-primary-alpha-20), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.custom-flow-phases {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.custom-flow-phase {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.custom-flow-phase:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.custom-flow-phase-head {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 76px;
    padding: 14px 12px;
    background: linear-gradient(135deg, var(--el-color-primary-light-9) 0%, #fff 100%);
    border-bottom: 1px solid var(--el-color-primary-light-8);
}

.custom-flow-phase-num {
    flex-shrink: 0;
    width: 36px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--el-color-primary);
    opacity: 0.9;
}

.custom-flow-phase-meta {
    min-width: 0;
}

.custom-flow-phase-meta strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
}

.custom-flow-phase-meta em {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-style: normal;
    line-height: 1.35;
    color: #64748b;
}

.custom-flow-phase-chevron {
    display: flex;
    justify-content: center;
    padding: 6px 0 8px;
    color: var(--el-color-primary-light-5);
    font-size: 16px;
    background: #fff;
}

.custom-flow-phase-list {
    list-style: none;
    margin: 0;
    padding: 0 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.custom-flow-phase-list li {
    padding: 10px 10px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    color: #475569;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.custom-flow-phase-list li:hover {
    color: var(--el-color-primary);
    background: var(--el-color-primary-light-9);
    border-color: var(--el-color-primary-light-7);
}

@media (max-width: 1200px) {
    .custom-flow-phases {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .custom-flow-phases {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .custom-panel {
        grid-template-columns: 1fr;
    }

    .custom-panel-intro {
        padding: 28px 24px 16px;
    }

    .custom-panel-form.form-card {
        padding: 28px 24px;
        border-left: none;
        border-top: 1px solid #f1f5f9;
    }
}

@media (max-width: 768px) {
    .custom-flow-panel {
        padding: 28px 20px 24px;
    }

    .custom-flow-overview {
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .custom-flow-phases {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .custom-flow-phase-head {
        min-height: 68px;
    }

    .custom-flow-phase-num {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .site-nav-mobile-tools { display: flex; }

    .lang-dropdown-mobile { display: block; }
    .lang-dropdown-mobile .lang-dropdown-menu {
        min-width: 240px;
        grid-template-columns: 1fr;
        right: 0;
        left: auto;
    }
    .currency-dropdown-mobile { display: block; }

    .site-toggle { display: block; }

    .site-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        padding: 16px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    body.page-saas .site-menu {
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    }

    .site-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-menu > li { width: 100%; }

    .site-menu > li > a { padding: 14px 16px; }

    .site-menu > li.has-dropdown { width: 100%; }

    .nav-dropdown-head {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        background: transparent;
        border: none;
        box-shadow: none;
        transition: color 0.25s, background 0.25s;
    }

    .nav-dropdown-head > .nav-link-main {
        flex: 1;
        padding: 0;
        margin: 0;
        font-size: 15px;
        font-weight: inherit;
        line-height: inherit;
        color: inherit;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        flex-shrink: 0;
        min-width: auto;
        font-size: 14px;
        color: inherit;
        opacity: 0.55;
        background: transparent;
        border: none;
        box-shadow: none;
        transition: opacity 0.25s, transform 0.25s;
    }

    .nav-dropdown-head:hover,
    .site-menu > li.has-dropdown.open .nav-dropdown-head {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

    .site-menu > li.has-dropdown.active .nav-dropdown-head {
        color: #fff;
        background: transparent;
        font-weight: 600;
    }

    .site-menu > li.has-dropdown.open .nav-dropdown-head > .nav-link-main,
    .site-menu > li.has-dropdown.open .nav-dropdown-toggle {
        color: inherit;
        background: transparent;
    }

    .site-menu > li.has-dropdown.open .nav-dropdown-toggle {
        opacity: 1;
    }

    .site-menu > li.has-dropdown.open .nav-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .site-menu .dropdown-menu {
        position: static;
        display: none;
        margin: 0;
        padding: 0 0 4px 12px;
        width: 100%;
        min-width: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        list-style: none;
    }

    .site-menu > li.has-dropdown.open .dropdown-menu { display: block; }

    .site-menu .dropdown-menu li { margin: 0; }

    .site-menu .dropdown-menu a {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: var(--radius-sm);
    }

    .site-menu-mobile-only {
        display: block !important;
        width: 100%;
    }

    .site-nav-desktop-only {
        display: none !important;
    }

    .site-nav { gap: 8px; }

    .site-nav-actions { display: none !important; }

    .market-toolbar { flex-direction: column; align-items: stretch; }
    .market-search { width: 100%; }
    .market-app-grid { grid-template-columns: repeat(2, 1fr); }

    .auth-flow-steps { flex-direction: column; }

    .auth-step-arrow { transform: rotate(90deg); }

    .hero-section { padding: 40px 0 60px; }

    .hero-slide { padding: 40px 20px; }

    .section { padding: 50px 0; }

    .footer-grid { grid-template-columns: 1fr; }

    .detail-card { padding: 24px; }

    body.page-saas .page-detail-section .site-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    body.page-saas .detail-card.content-card {
        padding: 16px 0;
    }

    .card-grid { grid-template-columns: 1fr; }

    body.page-home .home-section-head { flex-direction: column; align-items: flex-start; }
    body.page-home .home-hero-slide-inner {
        min-height: 460px;
        padding-bottom: 100px;
        justify-content: center;
        text-align: center;
    }

    body.page-home .home-hero-copy {
        max-width: 100%;
    }

    body.page-home .home-hero-actions {
        justify-content: center;
    }
    body.page-home .home-quick-grid { grid-template-columns: 1fr 1fr; }
    body.page-home .home-ecosystem-layout { grid-template-columns: 1fr; overflow-x: clip; overflow-y: visible; }
    body.page-home .home-eco-hub { width: 300px; height: 300px; margin: 24px auto; overflow: hidden; }
    body.page-home .home-eco-pill { font-size: 11px; padding: 4px 10px 4px 4px; }
    body.page-home .home-eco-pill-icon { width: 22px; height: 22px; font-size: 10px; }
    body.page-home .home-eco-pill-pm { top: 8%; left: 16%; }
    body.page-home .home-eco-pill-zero { top: 40%; left: 4%; }
    body.page-home .home-eco-pill-crm { top: 24%; left: 20%; }
    body.page-home .home-eco-pill-flow { bottom: 28%; left: 16%; }
    body.page-home .home-eco-pill-om { bottom: 12%; left: 24%; }
    body.page-home .home-eco-pill-tenant { top: 50%; right: 4%; }
    body.page-home .home-eco-pill-oa { top: 18%; right: 12%; }
    body.page-home .home-eco-pill-scene { bottom: 8%; right: 8%; }
    body.page-home .home-adv-top { grid-template-columns: 1fr; }
    body.page-home .home-adv-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.page-home .home-adv-visual { justify-content: center; min-height: 180px; }
    body.page-home .home-adv-cards { grid-template-columns: 1fr; }
    body.page-home .home-engines-layout { grid-template-columns: 1fr; }
    body.page-home .home-app-grid,
    body.page-home .home-news-grid { grid-template-columns: 1fr; }
}


body.page-saas {
    background: #eef3f9;
    color: #334155;
}

body.page-saas .site-bg { display: none; }

body.page-saas .site-header {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 4px 24px rgba(15, 23, 42, 0.05);
}

body.page-saas .site-header.scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 8px 32px rgba(15, 23, 42, 0.08);
}

body.page-saas .site-logo { color: #0f172a; }

body.page-saas .site-menu > li > a { color: #64748b; }

body.page-saas .site-menu > li > a:hover {
    color: #334155;
    background: transparent;
}

body.page-saas .site-menu > li.active > a {
    color: var(--el-color-primary);
    background: transparent;
    font-weight: 600;
}

body.page-saas .site-menu > li.has-dropdown .nav-dropdown-head {
    color: #64748b;
}

body.page-saas .site-menu > li.has-dropdown:hover .nav-dropdown-head,
body.page-saas .site-menu > li.has-dropdown.open .nav-dropdown-head {
    color: #334155;
    background: transparent;
}

body.page-saas .site-menu > li.has-dropdown.active .nav-dropdown-head {
    color: var(--el-color-primary);
    background: transparent;
    font-weight: 600;
}

body.page-saas .site-menu .dropdown-menu {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 12px 40px rgba(15, 23, 42, 0.1);
}

body.page-saas .site-menu .dropdown-menu a { color: #475569; }
body.page-saas .site-menu .dropdown-menu a:hover { background: #f1f5f9; color: var(--el-color-primary); }

body.page-saas .site-menu > li.has-dropdown.open .nav-dropdown-head > .nav-link-main,
body.page-saas .site-menu > li.has-dropdown.open .nav-dropdown-toggle,
body.page-saas .site-menu > li.has-dropdown:hover .nav-dropdown-head > .nav-link-main,
body.page-saas .site-menu > li.has-dropdown:hover .nav-dropdown-toggle {
    color: inherit;
    background: transparent;
}

body.page-saas .lang-switch { background: #f1f5f9; border-color: #e2e8f0; }

body.page-saas .lang-btn { color: #64748b; }
body.page-saas .lang-btn:hover,
body.page-saas .lang-btn.active { background: #fff; color: var(--el-color-primary); }

body.page-saas .lang-dropdown-trigger {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-color: rgba(255, 255, 255, 0.55);
    color: #475569;
}

body.page-saas .lang-dropdown-trigger:hover,
body.page-saas .lang-dropdown:focus-within .lang-dropdown-trigger {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(203, 213, 225, 0.8);
    color: var(--el-color-primary);
}

body.page-saas .lang-dropdown-menu {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    min-width: 340px;
}

body.page-saas .lang-dropdown-menu a { color: #475569; }
body.page-saas .lang-dropdown-menu a:hover,
body.page-saas .lang-dropdown-menu a.active {
    background: var(--el-color-primary-light-9);
    color: var(--el-color-primary);
}

body.page-saas .lang-mobile-label { color: #94a3b8; }

body.page-saas .site-toggle { color: #334155; }

body.page-saas .lang-dropdown-mobile .lang-dropdown-trigger--icon {
    background: transparent;
    border-color: transparent;
    color: #334155;
}

body.page-saas .lang-dropdown-mobile .lang-dropdown-trigger--icon:hover,
body.page-saas .lang-dropdown-mobile.open .lang-dropdown-trigger--icon {
    background: #f1f5f9;
    color: var(--el-color-primary);
}

body.page-saas .currency-dropdown-trigger {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-color: rgba(255, 255, 255, 0.55);
    color: #475569;
}

body.page-saas .currency-dropdown-trigger:hover,
body.page-saas .currency-dropdown:focus-within .currency-dropdown-trigger,
body.page-saas .currency-dropdown.open .currency-dropdown-trigger {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(203, 213, 225, 0.8);
    color: var(--el-color-primary);
}

body.page-saas .currency-dropdown-menu {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

body.page-saas .currency-dropdown-menu a { color: #475569; }
body.page-saas .currency-dropdown-menu a:hover,
body.page-saas .currency-dropdown-menu a.active {
    background: var(--el-color-primary-light-9);
    color: var(--el-color-primary);
}

body.page-saas .currency-dropdown-mobile .currency-dropdown-trigger--icon {
    background: transparent;
    border-color: transparent;
    color: #334155;
}

body.page-saas .currency-dropdown-mobile .currency-dropdown-trigger--icon:hover,
body.page-saas .currency-dropdown-mobile.open .currency-dropdown-trigger--icon {
    background: #f1f5f9;
    color: var(--el-color-primary);
}

body.page-saas .btn-outline-glass {
    background: #fff;
    color: #334155;
    border-color: #cbd5e1;
}

body.page-saas .btn-outline-glass:hover { background: #f8fafc; color: var(--el-color-primary); }

body.page-saas .btn-primary-glass {
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    box-shadow: 0 4px 14px var(--el-color-primary-alpha-35);
}

body.page-saas .site-nav-actions .btn-primary-glass {
    box-shadow: 0 2px 8px var(--el-color-primary-alpha-28);
}

body.page-saas .site-nav-actions .btn-primary-glass:hover {
    box-shadow: 0 4px 12px var(--el-color-primary-alpha-35);
}

body.page-saas .site-footer {
    background: #0a1628;
    margin-top: 0;
    border-top: none;
}

body.page-saas .site-footer .site-logo { color: #fff; }

body.page-saas .glass,
body.page-saas .glass-card {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

body.page-saas .glass-card:hover:not(.content-card):not(.glass-card--static):not(.sidenav-panel):not(.user-panel):not(.empty-state) {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

body.page-saas .page-hero {
    padding: 48px 0 64px;
    background: #eef3f9;
    text-align: left;
}

body.page-saas .page-hero-copy h1 {
    color: #0f172a;
}

body.page-saas .page-hero-copy p {
    color: #64748b;
}

body.page-saas .section { padding: 48px 0 64px; }

body.page-saas .section.app-detail-section,
body.page-saas .section.order-create-section {
    padding-top: 0;
}
body.page-saas .section-title { color: #0f172a; }
body.page-saas .section-desc { color: #64748b; }
body.page-saas .section-label { background: var(--el-color-primary-light-9); border-color: var(--el-color-primary-light-7); color: var(--el-color-primary); }

body.page-saas .market-hero {
    background: #eef3f9;
}

body.page-saas .market-hero-copy h1 { color: #0f172a; }
body.page-saas .market-hero-copy p { color: #64748b; }
body.page-saas .market-side-card { background: #fff; }
body.page-saas .market-side-text strong { color: #0f172a; }
body.page-saas .market-side-text span { color: var(--el-color-primary); }
body.page-saas .market-side-icon { background: var(--el-color-primary-light-9); color: var(--el-color-primary); }

body.page-saas .search-bar input {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
}

body.page-saas .search-bar input::placeholder { color: #94a3b8; }

body.page-saas .search-bar input:focus {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

body.page-saas .filter-bar {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
}

body.page-saas .filter-bar a {
    color: #64748b;
    border-color: #e2e8f0;
    background: #f8fafc;
}

body.page-saas .filter-bar a:hover,
body.page-saas .filter-bar a.active {
    background: var(--el-color-primary);
    border-color: var(--el-color-primary);
    color: #fff;
}

body.page-saas .market-toolbar {
    background: #fff;
    border-color: #e2e8f0;
}

body.page-saas .market-app-card {
    background: #fff;
    border-color: #e2e8f0;
}

body.page-saas .market-app-name { color: #0f172a; }
body.page-saas .market-app-summary { color: #64748b; }
body.page-saas .market-app-tag { background: var(--el-color-primary-light-9); color: var(--el-color-primary); }
body.page-saas .market-app-foot { color: #94a3b8; border-top-color: #f1f5f9; }

body.page-saas .app-detail-title { color: #0f172a; }
body.page-saas .app-detail-summary { color: #64748b; }
body.page-saas .app-detail-meta-item { color: #64748b; }
body.page-saas .app-detail-head-foot.market-app-foot { border-top-color: #f1f5f9; }
body.page-saas .app-detail-info-row { border-bottom-color: #f1f5f9; }
body.page-saas .app-detail-info-row dt { color: #64748b; }
body.page-saas .app-detail-info-row dd { color: #0f172a; }
body.page-saas .app-detail-version-label { color: #64748b; }
body.page-saas .app-detail-version-item.is-current .app-detail-version-label { color: var(--el-color-primary); }
body.page-saas .app-detail-version-empty { color: #94a3b8; }

body.page-saas .news-card-tag { background: var(--el-color-primary-light-9); color: var(--el-color-primary); }
body.page-saas .news-card-meta { color: #94a3b8; }
body.page-saas .news-card-title a { color: #0f172a; }
body.page-saas .news-card-title a:hover { color: var(--el-color-primary); }
body.page-saas .news-card-summary { color: #64748b; }

body.page-saas .doc-hero.news-hero { background: #eef3f9; }
body.page-saas .doc-hero.news-hero .doc-hero-copy h1 { color: #0f172a; }
body.page-saas .doc-hero.news-hero .doc-hero-copy p { color: #64748b; }
body.page-saas .news-toolbar { background: #fff; border-color: #e2e8f0; }
body.page-saas .news-list-item { background: #fff; border-color: #e2e8f0; }
body.page-saas .news-list-title { color: #0f172a; }
body.page-saas .news-list-summary { color: #64748b; }
body.page-saas .news-side-block { background: #fff; border-color: #e2e8f0; }
body.page-saas .news-side-title { color: #0f172a; }
body.page-saas .news-hot-title { color: #334155; }


.page-detail-section {
    padding-top: 32px;
    padding-bottom: 64px;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.news-detail-main {
    padding: 36px 40px;
}

.news-detail-title {
    margin: 0 0 16px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #94a3b8;
}

.news-detail-summary {
    position: relative;
    margin-bottom: 28px;
    padding: 22px 24px 22px 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--el-color-primary-light-9) 0%, #f8fbff 100%);
    border: 1px solid var(--el-color-primary-light-8);
}

.news-detail-summary-icon {
    position: absolute;
    left: 22px;
    top: 22px;
    font-size: 22px;
    color: var(--el-color-primary-light-5);
    line-height: 1;
}

.news-detail-summary p {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: #475569;
    font-style: italic;
}

.news-detail-cover {
    margin-bottom: 28px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.news-detail-cover img {
    display: block;
    width: 100%;
}

.news-detail-sidebar {
    position: sticky;
    top: 88px;
}

@media (max-width: 1100px) {
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .news-detail-main {
        padding: 24px 20px;
    }

    .news-detail-summary {
        padding: 18px 18px 18px 48px;
    }

    .news-detail-summary-icon {
        left: 16px;
        top: 18px;
        font-size: 18px;
    }

    .news-detail-sidebar {
        grid-template-columns: 1fr;
    }
}

body.page-saas .news-cloud-tag { background: #f1f5f9; color: #64748b; }

body.page-saas .app-card-name,
body.page-saas .app-card-name a { color: #0f172a; }
body.page-saas .app-card-summary { color: #64748b; }
body.page-saas .app-card-price { color: var(--el-color-warning); }
body.page-saas .app-card-price.free { color: var(--el-color-success); }
body.page-saas .app-card-meta { color: #94a3b8; }
body.page-saas .app-card-icon { border-color: #e2e8f0; }
body.page-saas .app-card-tag { background: var(--el-color-primary-light-9); color: var(--el-color-primary); }

body.page-saas .pricing-card {
    background: #fff;
}

body.page-saas .pricing-card.saas,
body.page-saas .pricing-card.recommend {
    box-shadow: 0 12px 40px rgba(65, 193, 135, 0.1);
}

body.page-saas .pricing-card.base {
    box-shadow: 0 12px 40px var(--el-color-primary-alpha-15);
}

body.page-saas .pricing-card.ai,
body.page-saas .pricing-card.smart {
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.18);
}

body.page-saas .pricing-card.only,
body.page-saas .pricing-card.exclusive {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(212, 175, 55, 0.15);
}

body.page-saas .pricing-name { color: #fff; }
body.page-saas .pricing-card.saas .pricing-price .amount { color: #0d9488; }
body.page-saas .pricing-card.base .pricing-price .amount { color: #2563eb; }
body.page-saas .pricing-card.ai .pricing-price .amount,
body.page-saas .pricing-card.smart .pricing-price .amount { color: #7c3aed; }
body.page-saas .pricing-card.only .pricing-price .amount,
body.page-saas .pricing-card.exclusive .pricing-price .amount { color: #b45309; }
body.page-saas .pricing-price .unit { color: #64748b; }
body.page-saas .pricing-original { color: #94a3b8; }
body.page-saas .pricing-features li { color: #475569; }
body.page-saas .pricing-features li.excluded .pricing-feat-name,
body.page-saas .pricing-features li.excluded .pricing-feat-meta { color: #94a3b8; }

body.page-saas .compare-section {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

body.page-saas .pricing-panel {
    background: #fff;
    border-color: #e2e8f0;
}

body.page-saas .pricing-block-title { color: #0f172a; }

body.page-saas .compare-table th,
body.page-saas .compare-table td { color: #475569; border-bottom-color: #f1f5f9; }
body.page-saas .compare-table thead th { color: #0f172a; background: #f8fafc; }
body.page-saas .compare-table tbody th { color: #334155; }
body.page-saas .compare-table td:nth-child(2) { color: #0d9488; }
body.page-saas .compare-table td:nth-child(3) { color: #2563eb; }
body.page-saas .compare-table td:nth-child(4) { color: #7c3aed; }
body.page-saas .compare-table td:nth-child(5) { color: #b45309; }
body.page-saas .compare-table td.no { color: #cbd5e1; }

body.page-saas .pricing-auth-step-icon {
    background: linear-gradient(145deg, var(--el-color-primary-light-8) 0%, var(--el-color-primary-light-9) 55%, var(--el-color-primary-light-7) 100%);
    color: var(--el-color-primary);
}

body.page-saas .pricing-auth-step h3 { color: #0f172a; }
body.page-saas .pricing-auth-step p { color: #94a3b8; }
body.page-saas .custom-flow-overview .pricing-auth-step:hover h3 { color: var(--el-color-primary); }
body.page-saas .pricing-auth-arrow { color: var(--el-color-primary-light-5); }

body.page-saas .pricing-faq-question { color: #0f172a; }
body.page-saas .pricing-faq-question em { color: var(--el-color-primary); }
body.page-saas .pricing-faq-chevron { color: #94a3b8; }
body.page-saas .pricing-faq-answer p { color: #64748b; }
body.page-saas .pricing-faq-item { border-bottom-color: #f1f5f9; }

body.page-saas .help-group-title { color: #0f172a; border-left-color: var(--el-color-primary); }
body.page-saas .help-list li { border-bottom-color: #f1f5f9; }
body.page-saas .help-list a { color: #475569; }
body.page-saas .help-list a:hover { background: #f8fafc; color: var(--el-color-primary); }

body.page-saas .changelog-title { color: #0f172a; }
body.page-saas .changelog-date { color: #94a3b8; }

body.page-saas .detail-title { color: #0f172a; }
body.page-saas .detail-meta { color: #94a3b8; border-bottom-color: #e2e8f0; }
body.page-saas .detail-content,
body.page-saas .article-content { color: #475569; }
body.page-saas .detail-content h2,
body.page-saas .detail-content h3,
body.page-saas .article-content h2,
body.page-saas .article-content h3 { color: #0f172a; }
body.page-saas .detail-content code,
body.page-saas .article-content code { background: #f1f5f9; color: #334155; }

body.page-saas .detail-card.content-card {
    padding: 36px 40px;
}

body.page-saas .detail-app-tags { color: #94a3b8; font-size: 13px; margin-left: 8px; }
body.page-saas .detail-app-meta { color: #94a3b8; font-size: 14px; padding-top: 8px; }
body.page-saas .detail-app-meta span { margin-right: 16px; }
body.page-saas .detail-app-header { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 24px; }
body.page-saas .detail-app-info { flex: 1; min-width: 200px; }
body.page-saas .detail-app-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
body.page-saas .detail-back {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
body.page-saas .detail-related-head { margin-bottom: 24px; }
body.page-saas .detail-related-head .section-title { font-size: 24px; }


.page-breadcrumb,
.app-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.page-breadcrumb-link,
.app-detail-breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #64748b;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}

.page-breadcrumb-link:hover,
.app-detail-breadcrumb-link:hover {
    color: var(--el-color-primary);
}

.page-breadcrumb-sep,
.app-detail-breadcrumb-sep {
    color: #cbd5e1;
    user-select: none;
}

.page-breadcrumb-current,
.app-detail-breadcrumb-current {
    color: #0f172a;
    font-weight: 500;
    max-width: min(100%, 520px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.page-saas .content-card:hover:not(.sidenav-panel):not(.user-panel):not(.glass-card--static) {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

body.page-saas .glass-card.content-card:hover,
body.page-saas .glass-card--static:hover {
    transform: none;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    border-color: #e2e8f0;
}

.detail-prose,
.detail-prose.article-content {
    color: #334155;
    font-size: 15px;
    line-height: 1.9;
}

.detail-prose h2,
.detail-prose h3,
.detail-prose h4,
.detail-prose.article-content h2,
.detail-prose.article-content h3,
.detail-prose.article-content h4 {
    margin-top: 28px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
}

.detail-prose p,
.detail-prose.article-content p {
    margin-bottom: 16px;
}

.detail-prose ul,
.detail-prose ol,
.detail-prose.article-content ul,
.detail-prose.article-content ol {
    padding-left: 1.4em;
    margin-bottom: 16px;
}

.detail-prose li,
.detail-prose.article-content li {
    margin-bottom: 8px;
}

.detail-prose img,
.detail-prose.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.app-detail-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px 32px;
    margin-bottom: 24px;
}

.app-detail-icon {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    flex-shrink: 0;
}

.app-detail-icon.market-app-icon {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--el-color-primary-light-8), var(--el-color-primary-light-9));
}

.app-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-detail-icon .market-app-icon-fallback {
    font-size: 34px;
}

.app-detail-title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.app-detail-summary {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    max-width: 720px;
}

.app-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    margin-bottom: 14px;
}

.app-detail-head-foot.market-app-foot {
    margin-top: 0;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.app-detail-meta-row .market-app-tag {
    max-width: none;
    font-size: 13px;
    padding: 4px 12px;
}

.app-detail-meta-row .market-app-rating {
    font-size: 13px;
}

.app-detail-info-row dd .market-app-price,
.app-detail-info-row dd .market-app-free {
    margin-left: 0;
}

.app-detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}

.app-detail-meta-item .fa {
    color: #94a3b8;
}

.app-detail-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #64748b;
}

.app-detail-rating .fa-star {
    color: var(--el-color-warning);
    font-size: 13px;
}

.app-detail-rating .fa-star-half-o,
.app-detail-rating .fa-star-o {
    color: var(--el-color-warning);
    font-size: 13px;
}

.app-detail-rating .fa-star-o {
    color: #cbd5e1;
}

.app-detail-rating em {
    font-style: normal;
    color: #64748b;
}

.app-detail-head-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-width: 148px;
}

.app-detail-install-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-28);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    cursor: pointer;
    font: inherit;
}

.app-detail-install-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px var(--el-color-primary-alpha-34);
    color: #fff;
}

.app-detail-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.app-detail-demo-btn:hover {
    border-color: var(--el-color-primary-light-5);
    color: var(--el-color-primary);
}

.app-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: start;
}

.app-detail-block {
    padding: 28px 32px;
    margin-bottom: 24px;
}

.app-detail-block:last-child {
    margin-bottom: 0;
}

.app-detail-block .news-side-title {
    margin-bottom: 22px;
}

.app-detail-screenshots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.app-detail-shot {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
    border: 1px solid #e2e8f0;
}

.app-detail-shot-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.app-detail-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-detail-intro img,
.app-detail-intro .article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 12px 0;
}

.app-detail-info-rating.market-app-rating {
    font-size: 14px;
}

.app-detail-info-rating.market-app-rating i {
    font-size: 13px;
}

.app-detail-info-row--framework dd {
    display: flex;
    align-items: center;
}

.app-detail-framework-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--el-color-primary-alpha-08), var(--el-color-primary-alpha-12));
    border: 1px solid var(--el-color-primary-alpha-16);
    color: var(--el-color-primary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.app-detail-framework-tag .fa {
    font-size: 11px;
    opacity: 0.85;
}

.app-detail-framework-tag--empty {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #94a3b8;
    font-weight: 500;
}

.app-detail-version-framework-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--el-color-primary-alpha-08), var(--el-color-primary-alpha-12));
    border: 1px solid var(--el-color-primary-alpha-16);
    color: var(--el-color-primary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.app-detail-version-framework-tag--empty {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #94a3b8;
    font-weight: 500;
}

.app-detail-version-framework-tag .fa {
    font-size: 10px;
    opacity: 0.9;
}

.app-detail-shot-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--el-color-primary-light-3);
    font-size: 42px;
}

.app-detail-intro.detail-prose img,
.app-detail-intro.detail-prose.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 12px 0;
}

.app-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-detail-sidebar.news-detail-sidebar {
    position: sticky;
    top: 88px;
}

.app-detail-info-list {
    margin: 0;
}

.app-detail-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.app-detail-info-row:first-child {
    padding-top: 0;
}

.app-detail-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.app-detail-info-row dt {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
}

.app-detail-info-row dd {
    margin: 0;
    font-size: 14px;
    color: #0f172a;
    font-weight: 500;
    text-align: right;
}

.app-detail-info-mark {
    display: inline-block;
    padding: 2px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    background: #f1f5f9;
    border-radius: 6px;
    word-break: break-all;
}

.app-detail-version-list {
    margin: 0;
}

.app-detail-version-item {
    display: grid;
    grid-template-columns: 58px 20px minmax(0, 1fr);
    gap: 0 10px;
    align-items: start;
    padding-bottom: 20px;
}

.app-detail-version-item:last-child {
    padding-bottom: 0;
}

.app-detail-version-label {
    padding-top: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-align: right;
    line-height: 1.3;
    word-break: break-all;
}

.app-detail-version-item.is-current .app-detail-version-label {
    color: var(--el-color-primary);
}

.app-detail-version-track {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 100%;
}

.app-detail-version-track::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: -20px;
    width: 2px;
    background: #e2e8f0;
}

.app-detail-version-item:last-child .app-detail-version-track::before {
    display: none;
}

.app-detail-version-dot {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    box-shadow: 0 0 0 4px #fff;
    flex-shrink: 0;
}

.app-detail-version-item.is-current .app-detail-version-dot {
    background: var(--el-color-primary);
}

.app-detail-version-content {
    min-width: 0;
}

.app-detail-version-head {
    margin-bottom: 8px;
}

.app-detail-version-head-main {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.app-detail-version-no {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.app-detail-version-item.is-current .app-detail-version-no {
    color: var(--el-color-primary);
}

.app-detail-version-date {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #94a3b8;
}

.app-detail-version-note {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.app-detail-version-title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.app-detail-version-body {
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.app-detail-version-body p:last-child {
    margin-bottom: 0;
}

.app-detail-version-badge {
    display: inline-block;
    padding: 1px 8px;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    color: var(--el-color-primary);
    background: var(--el-color-primary-light-9);
    border-radius: 999px;
    vertical-align: middle;
}

.app-detail-version-empty {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
}

.app-detail-related {
    margin-top: 40px;
}

.app-detail-related-title {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.app-detail-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .app-detail-layout {
        grid-template-columns: 1fr;
    }

    .app-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-detail-sidebar.news-detail-sidebar {
        position: static;
    }

    .app-detail-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .app-detail-header {
        grid-template-columns: auto 1fr;
        padding: 22px 20px;
    }

    .app-detail-head-action {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .app-detail-install-btn,
    .app-detail-demo-btn {
        flex: 1;
    }

    .app-detail-screenshots {
        grid-template-columns: 1fr;
    }

    .app-detail-block {
        padding: 22px 20px;
    }

    .app-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .app-detail-related-grid {
        grid-template-columns: 1fr;
    }
}

body.page-saas .form-card-title { color: #0f172a; }
body.page-saas .custom-intro h2 { color: #0f172a; }
body.page-saas .custom-intro p { color: #64748b; }
body.page-saas .custom-intro-feats li {
    color: #475569;
    background: #f8fafc;
    border-color: #eef2f7;
}
body.page-saas .custom-intro-feats li::before { color: var(--el-color-primary); }
body.page-saas .form-group label { color: #475569; }
body.page-saas .form-group input,
body.page-saas .form-group textarea,
body.page-saas .form-group select {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
}

body.page-saas .form-group input:focus,
body.page-saas .form-group textarea:focus,
body.page-saas .form-group select:focus {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

body.page-saas .pagination-wrap li a,
body.page-saas .pagination-wrap li span {
    background: #fff;
    border-color: #e2e8f0;
    color: #64748b;
}

body.page-saas .pagination-wrap li.active span,
body.page-saas .pagination-wrap li a:hover {
    background: var(--el-color-primary);
    border-color: var(--el-color-primary);
    color: #fff;
}

body.page-saas .empty-state { color: #94a3b8; }
body.page-saas .feature-item h3 { color: #0f172a; }
body.page-saas .feature-item p { color: #64748b; }
body.page-saas .feature-icon { background: linear-gradient(135deg, var(--el-color-primary-light-8), var(--el-color-primary-light-9)); color: var(--el-color-primary); }


body.page-home .site-main { padding-top: 72px; }


.home-hero-v2 {
    position: relative;
    background: #eef3f9;
}

.home-hero-carousel {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.home-hero-slides {
    position: relative;
    min-height: 520px;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.home-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-hero-slide-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(147, 197, 253, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(191, 219, 254, 0.35) 0%, transparent 55%),
        linear-gradient(180deg, var(--el-color-primary-light-8) 0%, #eef3f9 70%, #eef3f9 100%);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.home-hero-slide-bg--fallback {
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(147, 197, 253, 0.45) 0%, transparent 60%),
        linear-gradient(180deg, var(--el-color-primary-light-8) 0%, #eef3f9 70%, #eef3f9 100%);
}

.home-hero-slide-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding: 56px 0 120px;
}

.home-hero-copy {
    max-width: 560px;
}

.home-hero-title {
    margin: 0 0 18px;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-hero-desc {
    margin: 0 0 28px;
    font-size: 16px;
    color: #64748b;
    line-height: 1.85;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.home-btn-primary {
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    color: #fff;
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-32);
}

.home-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px var(--el-color-primary-alpha-38);
    color: #fff;
}

.home-btn-outline {
    background: #fff;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.home-btn-outline:hover {
    background: #f8fafc;
    color: var(--el-color-primary);
    border-color: var(--el-color-primary-light-5);
}

.home-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 96px;
    z-index: 3;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.home-hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--el-color-primary-alpha-25);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.home-hero-dot.is-active {
    background: var(--el-color-primary);
    transform: scale(1.15);
}

.home-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--el-color-primary);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.home-hero-arrow:hover {
    background: #fff;
    transform: scale(1.05);
}

.home-hero-arrow--prev { left: 24px; }
.home-hero-arrow--next { right: 24px; }


.home-quick-bar {
    position: relative;
    z-index: 4;
    margin-top: -72px;
}

.home-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.home-quick-item {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 88px;
    padding: 18px 20px;
    border: 1px solid #e8eef5;
    border-radius: 12px;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.home-quick-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(145deg, var(--el-color-primary-light-3), var(--el-color-primary-light-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: background 0.25s, color 0.25s;
}

.home-quick-item:hover .home-quick-icon {
    background: linear-gradient(145deg, var(--el-color-primary), var(--el-color-primary-light-3));
    color: #fff;
}

.home-quick-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.home-quick-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-quick-wreath {
    display: none;
}

.home-quick-wreath--left {
    transform: scaleX(-1);
}

.home-quick-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    transition: color 0.25s;
}

.home-quick-item:hover .home-quick-text strong {
    color: var(--el-color-primary);
}

.home-quick-text em {
    font-style: normal;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
    transition: color 0.25s;
}

.home-quick-item:hover .home-quick-text em {
    color: var(--el-color-primary-light-3);
}


.home-section {
    padding: 64px 0;
}

.home-section-title {
    margin: 0 0 12px;
    text-align: center;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.home-section-title.left { text-align: left; }

.home-section-desc {
    margin: 0 0 40px;
    text-align: center;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.home-section-desc.left {
    text-align: left;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.home-section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.home-link-more {
    color: var(--el-color-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.home-link-more:hover { text-decoration: underline; }


.home-solution {
    background-color: #f4f8fc;
    background-image:
        linear-gradient(rgba(186, 203, 220, 0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(186, 203, 220, 0.28) 1px, transparent 1px),
        radial-gradient(ellipse 90% 55% at 50% 0%, rgba(219, 234, 254, 0.55), transparent 72%);
    background-size: 32px 32px, 32px 32px, 100% 100%;
}

.home-solution-timeline {
    position: relative;
    margin-top: 56px;
    padding: 8px 0 16px;
}

.home-solution-wave {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    z-index: 0;
    pointer-events: none;
}

.home-solution-wave-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.home-solution-stages {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    min-height: 400px;
}

.home-solution-stage {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    min-height: 400px;
}

.home-solution-stage-above,
.home-solution-stage-below {
    display: flex;
    justify-content: center;
}

.home-solution-stage-above {
    align-items: flex-end;
    padding-bottom: 16px;
}

.home-solution-stage-below {
    align-items: flex-start;
    padding-top: 16px;
}

.home-solution-stage-axis {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.home-solution-node {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--el-color-primary) 0%, #38bdf8 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px var(--el-color-primary-alpha-35);
    position: relative;
    z-index: 2;
}

.home-solution-card {
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
    padding: 22px 18px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.home-solution-card:hover .home-solution-card-icon {
    background: linear-gradient(145deg, var(--el-color-primary-light-7), var(--el-color-primary-light-8));
    color: var(--el-color-primary);
}

.home-solution-card-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    background: linear-gradient(145deg, var(--el-color-primary-light-9), var(--el-color-primary-light-8));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--el-color-primary-light-3);
    transition: background 0.3s ease, color 0.3s ease;
}

.home-solution-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.home-solution-card p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.75;
}

@media (max-width: 992px) {
    body.page-home .home-solution-timeline {
        overflow-x: visible;
        margin-top: 32px;
        padding: 0;
    }

    body.page-home .home-solution-wave {
        display: none;
    }

    body.page-home .home-solution-stages {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 0;
        min-height: auto;
    }

    body.page-home .home-solution-stage {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        min-height: auto;
        padding: 8px 0;
    }

    body.page-home .home-solution-stage-above:empty,
    body.page-home .home-solution-stage-below:empty {
        display: none;
    }

    body.page-home .home-solution-stage-above,
    body.page-home .home-solution-stage-below {
        flex: 1;
        min-width: 0;
        padding: 0;
        align-items: stretch;
    }

    body.page-home .home-solution-stage-axis {
        order: -1;
        flex-shrink: 0;
        height: auto;
        position: relative;
        padding-top: 4px;
    }

    body.page-home .home-solution-stage:not(:last-child) .home-solution-stage-axis::after {
        content: '';
        position: absolute;
        top: 38px;
        left: 50%;
        width: 2px;
        height: calc(100% + 16px);
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(99, 102, 241, 0.35), rgba(147, 197, 253, 0.2));
    }

    body.page-home .home-solution-card {
        max-width: none;
        width: 100%;
    }
}


.home-ecosystem { background: #fff; }

.home-ecosystem .home-section-title {
    margin-bottom: 48px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.home-ecosystem-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(340px, 420px) minmax(220px, 280px);
    gap: 28px 36px;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.home-eco-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.home-eco-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-eco-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.home-eco-card:hover .home-eco-card-icon {
    background: linear-gradient(145deg, var(--el-color-primary-light-7), var(--el-color-primary-light-8));
    color: var(--el-color-primary);
}

.home-eco-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    background: linear-gradient(145deg, var(--el-color-primary-light-9), var(--el-color-primary-light-8));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--el-color-primary-light-3);
    transition: background 0.3s ease, color 0.3s ease;
}

.home-eco-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.home-eco-card p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.75;
}

.home-eco-hub {
    position: relative;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    margin: 0 auto;
    overflow: hidden;
    pointer-events: none;
}

.home-eco-hub-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72%;
    height: 72%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 219, 254, 0.55) 0%, rgba(219, 234, 254, 0.2) 45%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.home-eco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(147, 197, 253, 0.45);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.home-eco-ring-1 {
    width: 100%;
    height: 100%;
    border-style: dashed;
    border-color: rgba(147, 197, 253, 0.35);
}

.home-eco-ring-1::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--el-color-primary-alpha-35);
    border-right-color: var(--el-color-primary-alpha-15);
    transform: rotate(-30deg);
}

.home-eco-ring-2 {
    width: 76%;
    height: 76%;
    border-style: dashed;
    border-color: rgba(147, 197, 253, 0.5);
}

.home-eco-ring-2::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: var(--el-color-primary-alpha-30);
    border-left-color: var(--el-color-primary-alpha-12);
    transform: rotate(45deg);
}

.home-eco-ring-3 {
    width: 54%;
    height: 54%;
    border-color: rgba(191, 219, 254, 0.7);
}

.home-eco-ring-4 {
    width: 34%;
    height: 34%;
    border-color: rgba(191, 219, 254, 0.5);
}

.home-eco-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--el-color-primary-light-3);
    box-shadow: 0 0 6px var(--el-color-primary-alpha-50);
}

.home-eco-dot-1 { top: 8%; left: 62%; }
.home-eco-dot-2 { bottom: 18%; right: 12%; }
.home-eco-dot-3 { top: 22%; left: 10%; }
.home-eco-dot-4 { bottom: 28%; right: 8%; }
.home-eco-dot-5 { top: 50%; right: -2px; transform: translateY(-50%); }

.home-eco-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.home-eco-logo {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
}

.home-eco-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 5px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
    z-index: 3;
}

.home-eco-pill-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
}

.home-eco-pill-icon-red { background: linear-gradient(135deg, var(--el-color-danger), var(--el-color-danger)); }
.home-eco-pill-icon-orange { background: linear-gradient(135deg, #fb923c, #f97316); }
.home-eco-pill-icon-blue { background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary-light-3)); }
.home-eco-pill-icon-green { background: linear-gradient(135deg, #4ade80, var(--el-color-success)); }

.home-eco-pill-pm { top: 6%; left: 14%; }
.home-eco-pill-zero { top: 38%; left: 0; }
.home-eco-pill-crm { top: 22%; left: 18%; }
.home-eco-pill-flow { bottom: 30%; left: 14%; }
.home-eco-pill-om { bottom: 14%; left: 22%; }
.home-eco-pill-tenant { top: 50%; right: 2%; transform: translateY(-50%); }
.home-eco-pill-oa { top: 16%; right: 10%; }
.home-eco-pill-scene { bottom: 10%; right: 6%; }


.home-advantages {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dce9f8 0%, #edf4fc 42%, #f5f9ff 100%);
}

.home-adv-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-adv-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--el-color-primary-alpha-06) 1px, transparent 1px),
        linear-gradient(90deg, var(--el-color-primary-alpha-06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 20%, transparent 75%);
}

.home-adv-bg-cube {
    position: absolute;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(191, 219, 254, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-12);
    transform: rotate(12deg);
}

.home-adv-bg-cube-1 { width: 36px; height: 36px; top: 18%; left: 8%; opacity: 0.7; }
.home-adv-bg-cube-2 { width: 28px; height: 28px; top: 32%; left: 14%; opacity: 0.5; transform: rotate(-18deg); }
.home-adv-bg-cube-3 { width: 22px; height: 22px; bottom: 28%; left: 6%; opacity: 0.45; transform: rotate(24deg); }

.home-adv-bg-glow {
    position: absolute;
    top: 10%;
    right: 8%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.35) 0%, rgba(147, 197, 253, 0) 68%);
}

.home-adv-inner {
    position: relative;
    z-index: 1;
}

.home-adv-head {
    margin-bottom: 36px;
}

.home-adv-head .home-section-title {
    margin-bottom: 8px;
    font-weight: 700;
    color: #1a1a1a;
}

.home-adv-subtitle {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.home-adv-top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 28px 40px;
    align-items: center;
    margin-bottom: 32px;
}

.home-adv-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-adv-stat {
    padding: 18px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px var(--el-color-primary-alpha-08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-adv-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px var(--el-color-primary-alpha-14);
}

.home-adv-stat strong {
    display: block;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.home-adv-stat-pct {
    color: var(--el-color-primary);
}

.home-adv-stat-pct > span { font-size: 0.85em; }

.home-adv-stat-verb {
    color: #1a1a1a;
    font-size: 0.72em;
    font-weight: 600;
}

.home-adv-stat em {
    display: block;
    font-style: normal;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.home-adv-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 220px;
}

.home-adv-illustration {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 260px;
}

.home-adv-ai { animation: homeAdvAiFloat 6s ease-in-out infinite; }

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

.home-adv-ai-glow {
    position: absolute;
    top: 50%;
    left: 55%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.35) 0%, rgba(139, 92, 246, 0.12) 45%, transparent 70%);
    animation: homeAdvAiGlow 4s ease-in-out infinite;
}

@keyframes homeAdvAiGlow {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.home-adv-ai-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-adv-ai-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    transform-origin: left center;
    animation: homeAdvAiLineFlow 3s ease-in-out infinite;
}

.home-adv-ai-line--1 { top: 38%; left: 18%; width: 42%; transform: rotate(-12deg); animation-delay: 0s; }
.home-adv-ai-line--2 { top: 52%; left: 22%; width: 38%; transform: rotate(8deg); animation-delay: 0.6s; }
.home-adv-ai-line--3 { top: 62%; left: 28%; width: 32%; transform: rotate(-5deg); animation-delay: 1.2s; }
.home-adv-ai-line--4 { top: 44%; left: 55%; width: 28%; transform: rotate(22deg); animation-delay: 0.3s; }

@keyframes homeAdvAiLineFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.9; }
}

.home-adv-ai-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--el-color-primary-light-3);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    animation: homeAdvAiNodePulse 2.5s ease-in-out infinite;
}

.home-adv-ai-node--1 { top: 36%; left: 16%; animation-delay: 0s; }
.home-adv-ai-node--2 { top: 50%; left: 58%; animation-delay: 0.5s; }
.home-adv-ai-node--3 { top: 68%; left: 24%; animation-delay: 1s; }
.home-adv-ai-node--4 { top: 42%; left: 78%; animation-delay: 1.5s; }

@keyframes homeAdvAiNodePulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 1; }
}

.home-adv-ai-orbit {
    position: absolute;
    top: 50%;
    left: 58%;
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    border: 1px dashed rgba(96, 165, 250, 0.25);
    border-radius: 50%;
    animation: homeAdvAiOrbitSpin 20s linear infinite;
}

.home-adv-ai-orbit-dot {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, #eff6ff);
    border: 1px solid rgba(147, 197, 253, 0.6);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--el-color-primary-light-3);
    animation: homeAdvAiOrbitCounter 20s linear infinite;
}

.home-adv-ai-orbit-dot:nth-child(1) { top: -14px; left: 50%; margin-left: -14px; }
.home-adv-ai-orbit-dot:nth-child(2) { bottom: 20%; right: -14px; }
.home-adv-ai-orbit-dot:nth-child(3) { bottom: 20%; left: -14px; }

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

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

.home-adv-ai-core {
    position: absolute;
    top: 50%;
    left: 58%;
    width: 88px;
    height: 88px;
    margin: -44px 0 0 -44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-adv-ai-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(96, 165, 250, 0.4);
    animation: homeAdvAiPulse 3s ease-out infinite;
}

.home-adv-ai-pulse--2 { animation-delay: 1.5s; }

@keyframes homeAdvAiPulse {
    0% { transform: scale(0.85); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.home-adv-ai-core-inner {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #6366f1 0%, var(--el-color-primary) 50%, #3b82f6 100%);
    box-shadow:
        0 0 30px rgba(99, 102, 241, 0.45),
        0 8px 24px rgba(59, 130, 246, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #fff;
    animation: homeAdvAiCoreShine 4s ease-in-out infinite;
}

.home-adv-ai-core-inner i { font-size: 22px; line-height: 1; }

.home-adv-ai-core-inner em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.95;
}

@keyframes homeAdvAiCoreShine {
    0%, 100% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.45), 0 8px 24px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.55), 0 8px 28px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
}

.home-adv-ai-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.home-adv-ai-card--chart {
    top: 8%;
    left: 0;
    width: 120px;
    padding: 10px 12px;
    animation: homeAdvAiCardFloat 5s ease-in-out infinite;
}

.home-adv-ai-card--chat {
    bottom: 10%;
    right: 0;
    width: 130px;
    padding: 12px 14px;
    animation: homeAdvAiCardFloat 5s ease-in-out infinite 1.2s;
}

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

.home-adv-ai-card-label {
    display: block;
    width: 50%;
    height: 6px;
    background: linear-gradient(90deg, var(--el-color-primary-light-3), var(--el-color-primary-light-5));
    border-radius: 3px;
    margin-bottom: 10px;
}

.home-adv-ai-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 48px;
}

.home-adv-ai-bars span {
    flex: 1;
    height: var(--h, 50%);
    background: linear-gradient(180deg, var(--el-color-primary-light-3), var(--el-color-primary-light-7));
    border-radius: 3px 3px 0 0;
    animation: homeAdvAiBarPulse 2.5s ease-in-out infinite;
}

.home-adv-ai-bars span:nth-child(1) { animation-delay: 0s; }
.home-adv-ai-bars span:nth-child(2) { animation-delay: 0.3s; }
.home-adv-ai-bars span:nth-child(3) { animation-delay: 0.6s; }
.home-adv-ai-bars span:nth-child(4) { animation-delay: 0.9s; }

@keyframes homeAdvAiBarPulse {
    0%, 100% { opacity: 0.7; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.08); }
}

.home-adv-ai-chat-line {
    display: block;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 8px;
}

.home-adv-ai-chat-line.short { width: 65%; }

.home-adv-ai-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 4px;
}

.home-adv-ai-typing i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--el-color-primary-light-3);
    animation: homeAdvAiTyping 1.4s ease-in-out infinite;
}

.home-adv-ai-typing i:nth-child(1) { animation-delay: 0s; }
.home-adv-ai-typing i:nth-child(2) { animation-delay: 0.2s; }
.home-adv-ai-typing i:nth-child(3) { animation-delay: 0.4s; }

@keyframes homeAdvAiTyping {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.home-adv-ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.7);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.home-adv-ai-particle--1 { top: 20%; left: 40%; animation: homeAdvAiParticle 4s ease-in-out infinite; }
.home-adv-ai-particle--2 { top: 70%; left: 45%; animation: homeAdvAiParticle 5s ease-in-out infinite 1s; }
.home-adv-ai-particle--3 { top: 35%; left: 85%; animation: homeAdvAiParticle 4.5s ease-in-out infinite 2s; }

@keyframes homeAdvAiParticle {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(8px, -12px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .home-adv-ai,
    .home-adv-ai-glow,
    .home-adv-ai-line,
    .home-adv-ai-node,
    .home-adv-ai-orbit,
    .home-adv-ai-orbit-dot,
    .home-adv-ai-pulse,
    .home-adv-ai-core-inner,
    .home-adv-ai-card--chart,
    .home-adv-ai-card--chat,
    .home-adv-ai-bars span,
    .home-adv-ai-typing i,
    .home-adv-ai-particle {
        animation: none;
    }
}

.home-adv-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.home-adv-card {
    position: relative;
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 28px 24px 32px;
    box-shadow: 0 6px 24px var(--el-color-primary-alpha-10);
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px var(--el-color-primary-alpha-18);
}

.home-adv-card--reverse {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 24px;
}

.home-adv-card--reverse .home-adv-card-body {
    position: relative;
    z-index: 1;
}

.home-adv-card--reverse .home-adv-num {
    align-self: flex-end;
    margin: 12px 0 0;
    line-height: 0.9;
}

.home-adv-num {
    display: block;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 800;
    color: var(--el-color-primary-alpha-14);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.home-adv-card h3 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}

.home-adv-card p {
    margin: 0;
    font-size: 13px;
    color: #444;
    line-height: 1.75;
}


.home-engines {
    background-color: #f5f9fd;
    background-image:
        linear-gradient(rgba(147, 197, 253, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 197, 253, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
}

.home-engines-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 40px;
    align-items: start;
}

.home-engines-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    overflow: hidden;
}

.home-engine-tab {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 22px 20px;
    border: none;
    border-bottom: 1px solid rgba(147, 197, 253, 0.25);
    border-radius: 0;
    background: transparent;
    cursor: default;
    text-align: left;
    transition: background 0.25s;
    font-family: inherit;
}

.home-engine-tab:last-child { border-bottom: none; }

.home-engine-tab:hover,
.home-engine-tab.active {
    background: linear-gradient(90deg, rgba(219, 234, 254, 0.9) 0%, rgba(239, 246, 255, 0.4) 100%);
}

.home-engine-num {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: rgba(148, 163, 184, 0.55);
    min-width: 44px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.25s;
}

.home-engine-tab:hover .home-engine-num,
.home-engine-tab.active .home-engine-num {
    color: var(--el-color-primary);
}

.home-engine-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.home-engine-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.home-engine-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.home-engines-panel {
    position: relative;
    min-height: 380px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(239, 246, 255, 0.6) 100%);
    border: 1px solid rgba(147, 197, 253, 0.35);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.08);
}

.home-engines-panel-glow {
    position: absolute;
    inset: 10% 5% 5%;
    background: radial-gradient(ellipse at 60% 40%, rgba(96, 165, 250, 0.18) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.home-engine-pane {
    display: none;
    position: relative;
    z-index: 1;
    animation: homeFadeIn 0.35s ease;
}

.home-engine-pane.active { display: block; }

.home-engine-panel-desc {
    margin: 20px 0 0;
    padding: 0 8px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    text-align: center;
}

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

.home-engine-mock {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.home-mock-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.home-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.home-mock-dot:nth-child(1) { background: #f87171; }
.home-mock-dot:nth-child(2) { background: #fbbf24; }
.home-mock-dot:nth-child(3) { background: #34d399; }

.home-mock-url {
    flex: 1;
    height: 22px;
    margin-left: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.home-mock-body {
    display: flex;
    min-height: 300px;
}

.home-mock-sidebar {
    width: 52px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
}

.home-mock-nav-item {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(148, 163, 184, 0.7);
    transition: background 0.2s, color 0.2s;
}

.home-mock-nav-item.active {
    background: rgba(59, 130, 246, 0.25);
    color: #93c5fd;
}

.home-mock-content {
    flex: 1;
    padding: 22px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Workflow */
.home-mock--workflow { gap: 20px; }

.home-mock-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-bottom: 18px;
}

.home-mock-flow-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #94a3b8;
    flex-shrink: 0;
    position: relative;
}

.home-mock-flow-node em {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
}

.home-mock-flow-node.done {
    background: linear-gradient(135deg, #34d399, #10b981);
    border-color: #10b981;
    color: #fff;
}

.home-mock-flow-node.done em { background: #a7f3d0; }

.home-mock-flow-node.active {
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    border-color: var(--el-color-primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.home-mock-flow-node.active em { background: var(--el-color-primary-light-5); }

.home-mock-flow-line {
    width: 36px;
    height: 2px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.home-mock-flow-line.done { background: linear-gradient(90deg, #10b981, #34d399); }
.home-mock-flow-line.active { background: linear-gradient(90deg, #34d399, var(--el-color-primary-light-3)); }

.home-mock-flow-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.home-mock-flow-card-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.home-mock-flow-card-bar.short { width: 55%; }

.home-mock-flow-card-btn {
    align-self: flex-end;
    width: 64px;
    height: 24px;
    background: linear-gradient(90deg, var(--el-color-primary-light-3), var(--el-color-primary));
    border-radius: 6px;
    margin-top: 4px;
}

/* Ledger */
.home-mock-ledger-table {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.home-mock-ledger-head,
.home-mock-ledger-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 0.8fr 0.6fr;
    gap: 10px;
    padding: 10px 14px;
    align-items: center;
}

.home-mock-ledger-head {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.home-mock-ledger-head span,
.home-mock-ledger-row > span:not(.home-mock-badge) {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.home-mock-ledger-head span { background: #cbd5e1; height: 6px; }

.home-mock-ledger-row { border-bottom: 1px solid #f1f5f9; }
.home-mock-ledger-row:last-child { border-bottom: none; }

.home-mock-badge {
    height: 18px !important;
    border-radius: 9px !important;
}

.home-mock-badge.green { background: linear-gradient(90deg, #a7f3d0, #6ee7b7) !important; }
.home-mock-badge.blue { background: linear-gradient(90deg, #bfdbfe, #93c5fd) !important; }
.home-mock-badge.orange { background: linear-gradient(90deg, #fed7aa, #fdba74) !important; }

/* Report */
.home-mock--report { gap: 16px; }

.home-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.home-mock-stat {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-mock-stat strong {
    height: 14px;
    width: 60%;
    background: linear-gradient(90deg, var(--el-color-primary-light-3), var(--el-color-primary-light-5));
    border-radius: 4px;
}

.home-mock-stat em {
    height: 6px;
    width: 80%;
    background: #e2e8f0;
    border-radius: 3px;
}

.home-mock-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.home-mock-bars span {
    flex: 1;
    height: var(--h, 50%);
    background: linear-gradient(180deg, var(--el-color-primary-light-3) 0%, var(--el-color-primary-light-7) 100%);
    border-radius: 4px 4px 0 0;
    min-height: 12px;
}

.home-mock-bars span:nth-child(even) {
    background: linear-gradient(180deg, #60a5fa 0%, #bfdbfe 100%);
}

/* Print */
.home-mock--print { align-items: center; }

.home-mock-doc {
    width: 72%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.home-mock-doc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f8fafc;
    border-bottom: 1px dashed #e2e8f0;
}

.home-mock-doc-head > span {
    width: 40%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.home-mock-doc-icon {
    width: 28px !important;
    height: 28px;
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary)) !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.home-mock-doc-body {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-mock-doc-body span {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.home-mock-doc-body span.short { width: 65%; }

/* Permission */
.home-mock-perm-grid {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.home-mock-perm-row {
    display: grid;
    grid-template-columns: 1.5fr 0.6fr 0.6fr;
    gap: 10px;
    padding: 10px 14px;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.home-mock-perm-row:last-child { border-bottom: none; }
.home-mock-perm-row.head { background: #f1f5f9; }

.home-mock-perm-row > span:first-child {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.home-mock-perm-row.head > span { background: #cbd5e1; height: 6px; }

.home-mock-perm-row > span:not(:first-child) {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    justify-self: center;
}

.home-mock-perm-row > span.on {
    background: linear-gradient(135deg, #34d399, #10b981);
    border-color: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Message */
.home-mock-msg-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-mock-msg-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.home-mock-msg-item.unread {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(90deg, rgba(239, 246, 255, 0.8) 0%, #fff 100%);
}

.home-mock-msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.home-mock-msg-avatar.blue { background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary)); }
.home-mock-msg-avatar.green { background: linear-gradient(135deg, #34d399, #10b981); }

.home-mock-msg-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.home-mock-msg-body span {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.home-mock-msg-body span.short { width: 55%; }

.home-mock-msg-time {
    width: 32px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    flex-shrink: 0;
}


.home-industry { background: #fff; }

.home-industry-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.home-industry-tab {
    padding: 10px 22px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    background: #f8fafc;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.home-industry-tab:hover {
    border-color: var(--el-color-primary-light-5);
    color: var(--el-color-primary);
}

.home-industry-tab.active {
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px var(--el-color-primary-alpha-30);
}

.home-industry-panels { position: relative; }

.home-industry-pane {
    display: none;
    animation: homeFadeIn 0.35s ease;
}

.home-industry-pane.active { display: block; }

.home-industry-pane > p {
    margin: 20px 0 0;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.home-industry-diagram {
    background: linear-gradient(180deg, #f8fafc 0%, var(--el-color-primary-light-9) 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 32px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.home-diag-layer {
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.home-diag-top {
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    color: #fff;
    box-shadow: 0 4px 16px var(--el-color-primary-alpha-25);
}

.home-diag-mid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--el-color-primary-light-7);
    padding: 20px 16px;
}

.home-diag-mid span {
    padding: 10px 16px;
    background: var(--el-color-primary-light-9);
    border: 1px solid var(--el-color-primary-light-8);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--el-color-primary-dark-2);
}

.home-diag-mid.cols-3 span { flex: 1; min-width: 140px; max-width: 220px; }

.home-diag-base {
    background: #1e293b;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
}


.home-apps { background: #f8fafc; }

.home-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-app-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.home-app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.home-app-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 14px;
    overflow: hidden;
}

.home-app-icon img { width: 100%; height: 100%; object-fit: cover; }

.home-app-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.home-app-card h3 a {
    color: #0f172a;
    text-decoration: none;
}

.home-app-card h3 a:hover { color: var(--el-color-primary); }

.home-app-card p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-news {
    position: relative;
    background: #fff;
    padding-bottom: 80px;
    overflow: hidden;
}

.home-news-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-news-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(720px, 92vw);
    height: min(720px, 92vw);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.22) 0%, rgba(147, 197, 253, 0.06) 42%, transparent 72%);
    animation: homeNewsGlowDiffuse 10s ease-in-out infinite;
}

.home-news .site-container {
    position: relative;
    z-index: 1;
}

@keyframes homeNewsGlowDiffuse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.65; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

html.xyn-reduced-motion .home-news-bg-glow {
    animation: none;
    opacity: 0.75;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-news-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.home-news-img {
    display: block;
    height: 160px;
    overflow: hidden;
}

.home-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.home-news-card:hover .home-news-img img { transform: scale(1.05); }

.home-news-body { padding: 20px; }

.home-news-body time {
    font-size: 12px;
    color: #94a3b8;
}

.home-news-body h3 {
    margin: 8px 0 10px;
    font-size: 16px;
    line-height: 1.4;
}

.home-news-body h3 a {
    color: #0f172a;
    text-decoration: none;
}

.home-news-body h3 a:hover { color: var(--el-color-primary); }

.home-news-body p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    body.page-home .home-hero-slide-inner {
        grid-template-columns: 1fr;
        padding-bottom: 100px;
        justify-content: center;
        text-align: center;
    }

    body.page-home .home-hero-copy { max-width: 100%; }
    body.page-home .home-hero-actions { justify-content: center; }
    body.page-home .home-quick-grid { grid-template-columns: repeat(2, 1fr); }
    body.page-home .home-hero-arrow { display: none; }
    body.page-home .home-ecosystem-layout { grid-template-columns: 1fr; overflow-x: clip; overflow-y: visible; }
    body.page-home .home-eco-hub { width: 340px; height: 340px; margin: 0 auto 24px; order: -1; overflow: hidden; }
    body.page-home .home-adv-top { grid-template-columns: 1fr; }
    body.page-home .home-adv-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.page-home .home-adv-visual { justify-content: center; }
    body.page-home .home-adv-cards { grid-template-columns: repeat(2, 1fr); }
    body.page-home .home-engines-layout { grid-template-columns: 1fr; }
    body.page-home .home-engines-tabs { flex-direction: row; flex-wrap: wrap; }
    body.page-home .home-engine-tab { flex: 1; min-width: calc(50% - 4px); }
    body.page-home .home-app-grid { grid-template-columns: repeat(2, 1fr); }
    body.page-home .home-news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body.page-saas .site-menu {
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    }

    body.page-saas .site-menu .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
    }

    body.page-saas .site-menu .dropdown-menu a {
        color: #64748b;
        font-size: 14px;
    }

    body.page-saas .site-menu .dropdown-menu a:hover {
        color: var(--el-color-primary);
        background: var(--el-color-primary-light-9);
    }

    body.page-saas .nav-dropdown-head:hover .nav-dropdown-toggle,
    body.page-saas .site-menu > li.has-dropdown.open .nav-dropdown-toggle {
        opacity: 1;
    }

    body.page-home {
        overscroll-behavior-x: none;
    }

    body.page-home .site-main {
        overflow-x: hidden;
        max-width: 100%;
    }

    body.page-home .home-hero-v2,
    body.page-home .home-section {
        overflow-x: clip;
        max-width: 100%;
        touch-action: pan-y;
    }

    body.page-home .home-eco-hub {
        width: min(300px, 100%);
    }

    body.page-home .home-ecosystem,
    body.page-home .home-ecosystem-layout {
        touch-action: pan-y;
        overflow-x: clip;
        overflow-y: visible;
    }

    body.page-home .home-adv-visual,
    body.page-home .home-engines-panel,
    body.page-home .home-engine-mock {
        max-width: 100%;
        overflow-x: clip;
        overflow-y: visible;
    }

    body.page-home .home-quick-grid { grid-template-columns: 1fr; }
    body.page-home .home-adv-cards { grid-template-columns: 1fr; }
    body.page-home .home-engine-tab { min-width: 100%; }
    body.page-home .home-engines-panel { padding: 14px; min-height: 320px; }
    body.page-home .home-mock-body { min-height: 260px; }
    body.page-home .home-mock-content { padding: 16px; }
    body.page-home .home-mock-flow-node { width: 32px; height: 32px; font-size: 11px; }
    body.page-home .home-mock-flow-line { width: 24px; }
    body.page-home .home-mock-stats { grid-template-columns: 1fr; }
    body.page-home .home-mock-bars { height: 90px; }
    body.page-home .home-industry-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    body.page-home .home-industry-tab { flex-shrink: 0; }
    body.page-home .home-news-grid { grid-template-columns: 1fr; }
    body.page-home .home-app-grid { grid-template-columns: 1fr; }

    body.page-auth .auth-section { padding: 32px 12px 48px; }
    body.page-auth .auth-section .site-container { width: 100%; max-width: 100%; }
    body.page-auth .auth-body { padding: 28px 20px 32px; }
    body.page-auth .auth-type-radios { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    body.page-auth .auth-section .site-container {
        width: min(55%, 480px);
    }
}


body.page-auth .site-main {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
}

.auth-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px 64px;
    background: linear-gradient(180deg, var(--el-color-primary-light-8) 0%, #eef3f9 45%, #eef3f9 100%);
}

body.page-auth .auth-section .site-container {
    width: 30%;
    min-width: 320px;
    max-width: 440px;
    padding: 0;
}

.auth-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.auth-tabs a {
    display: block;
    padding: 18px 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.auth-tabs a:hover {
    color: var(--el-color-primary);
    background: #f1f5f9;
}

.auth-tabs a.active {
    color: var(--el-color-primary);
    background: #fff;
    box-shadow: inset 0 -2px 0 var(--el-color-primary);
}

.auth-body { padding: 36px 40px 40px; }

.auth-title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    margin: 0 0 28px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.auth-form { margin: 0; }

.auth-field { margin-bottom: 20px; }

.auth-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.auth-label.required::after {
    content: ' *';
    color: var(--el-color-danger);
}

.auth-input,
body.page-auth .form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.auth-input:focus,
body.page-auth .form-control:focus {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.auth-input-group.input-group {
    display: flex;
    width: 100%;
}

.auth-mobile-group {
    display: flex;
    width: 100%;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-mobile-group:focus-within {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.auth-mobile-code,
body.page-auth .auth-mobile-code.form-control {
    flex: 0 0 108px;
    width: 108px;
    min-width: 108px;
    height: auto;
    min-height: 46px;
    padding: 0 28px 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
    background-color: transparent;
    border: none;
    border-right: 1px solid #e2e8f0;
    border-radius: 0;
    outline: none;
    box-sizing: border-box;
    box-shadow: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.auth-mobile-code:focus,
body.page-auth .auth-mobile-code.form-control:focus {
    border: none;
    border-right: 1px solid #e2e8f0;
    box-shadow: none;
}

.auth-mobile-input {
    flex: 1;
    min-width: 0;
    min-height: 46px;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent;
}

.auth-mobile-input:focus {
    border: none !important;
    box-shadow: none !important;
}

.mobile-code-flag {
    width: 18px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.mobile-code-picker {
    position: relative;
    flex: 0 0 auto;
    min-width: 112px;
    max-width: 140px;
    border-right: 1px solid #e2e8f0;
}

.mobile-code-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-height: 46px;
    padding: 0 10px 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
    background: transparent;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.mobile-code-trigger::after {
    content: '';
    width: 12px;
    height: 12px;
    margin-left: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.mobile-code-trigger:disabled {
    cursor: default;
}

.mobile-code-trigger-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    line-height: 1.2;
}

.mobile-code-trigger-name {
    max-width: 72px;
    font-size: 11px;
    font-weight: 400;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-code-trigger-dial {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
}

.mobile-code-dropdown,
.mobile-code-dropdown--portal {
    position: fixed;
    z-index: 10060;
    width: 260px;
    max-width: calc(100vw - 16px);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
    overflow: hidden;
}

.mobile-code-search-wrap {
    padding: 6px 8px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.mobile-code-search,
.mobile-code-search.form-control {
    height: 28px;
    min-height: 28px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: none;
}

.mobile-code-search:focus {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 0 0 2px var(--el-color-primary-alpha-12);
}

.mobile-code-list {
    list-style: none;
    margin: 0;
    padding: 2px 0;
    max-height: 220px;
    overflow-y: auto;
}

.mobile-code-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #334155;
    cursor: pointer;
}

.mobile-code-item:hover,
.mobile-code-item.is-active {
    background: var(--el-color-primary-alpha-08, rgba(64, 158, 255, 0.08));
}

.mobile-code-item-name {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-code-item-dial {
    color: #64748b;
    font-size: 12px;
    white-space: nowrap;
}

.mobile-code-readonly-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-code-readonly-text {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}

.mobile-code-picker.is-disabled .mobile-code-trigger::after {
    display: none;
}

.auth-input-group .auth-input,
.auth-input-group .form-control,
body.page-auth .auth-input-group .auth-input,
body.page-auth .auth-input-group .form-control {
    flex: 1;
    border-radius: 10px 0 0 10px;
    min-width: 0;
}

.auth-input-group .input-group-btn {
    display: flex;
    flex-shrink: 0;
}

.auth-input-group .input-group-btn .btn,
.auth-input-group .input-group-btn img {
    height: 46px;
    border-radius: 0 10px 10px 0;
    border: 1px solid #e2e8f0;
    border-left: none;
}

.auth-input-group .input-group-btn .btn-captcha,
body.page-auth .btn-info.btn-captcha {
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border: none;
}

.auth-input-group .input-group-btn .btn-captcha.disabled,
body.page-auth .btn-info.btn-captcha.disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.78;
}

.auth-input-group .input-group-btn img {
    cursor: pointer;
    object-fit: cover;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
}

.auth-check input { margin: 0; accent-color: var(--el-color-primary); }

.auth-link {
    font-size: 14px;
    color: var(--el-color-primary);
    text-decoration: none;
}

.auth-link:hover { text-decoration: underline; }

.auth-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}

.auth-btn:first-of-type { margin-top: 0; }

body.page-auth .btn-primary,
.auth-btn-primary {
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    color: #fff;
    box-shadow: 0 4px 16px var(--el-color-primary-alpha-35);
}

body.page-auth .btn-primary:hover,
.auth-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-40);
    color: #fff;
}

body.page-auth .btn-default,
.auth-btn-secondary {
    background: #fff;
    color: #475569;
    border: 1px solid #e2e8f0;
}

body.page-auth .btn-default:hover,
.auth-btn-secondary:hover {
    background: #f8fafc;
    color: var(--el-color-primary);
    border-color: #cbd5e1;
}

body.page-auth .btn-block { width: 100%; }

body.page-auth .auth-form .n-bootstrap .n-right {
    position: relative;
    top: auto;
    left: auto;
    text-align: left;
    margin-top: 4px;
}

body.page-auth .auth-form .msg-box {
    display: block;
    position: relative;
    margin-top: 4px;
}

body.page-auth .auth-form .auth-input-group + .msg-box {
    margin-top: 6px;
}

body.page-auth .auth-form .auth-mobile-group + .msg-box {
    margin-top: 6px;
}

/* 验证码/手机号行内误插入的提示隐藏，统一显示在输入组下方 msg-box */
body.page-auth .auth-form .auth-input-group > .msg-box,
body.page-auth .auth-form .auth-input-group > .n-right,
body.page-auth .auth-form .auth-mobile-group > .msg-box,
body.page-auth .auth-form .auth-mobile-group > .n-right {
    display: none !important;
}

body.page-auth .auth-form .msg-wrap,
body.page-auth .auth-form .n-error,
body.page-auth .auth-form .n-error .n-msg,
body.page-auth .auth-form .n-msg {
    font-size: 12px;
    line-height: 1.4;
    color: var(--el-color-danger);
}

body.page-auth .auth-form .msg-box .msg-wrap .n-error,
body.page-auth .auth-form .msg-box .msg-wrap .n-ok,
body.page-auth .auth-form .msg-box .msg-wrap .n-tip {
    padding: 0;
    background: none;
    box-shadow: none;
}

body.page-auth .auth-form .n-icon {
    display: none;
}

.auth-type-radios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.auth-type-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-type-option:has(input:checked) {
    background: var(--el-color-primary-light-9);
    border-color: var(--el-color-primary-light-5);
    color: var(--el-color-primary);
    font-weight: 600;
}

.auth-type-option input {
    margin: 0;
    accent-color: var(--el-color-primary);
}

.auth-field-type.hide { display: none; }


.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

.col-xs-12 { flex: 0 0 100%; max-width: 100%; }
.col-xs-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-xs-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-xs-3 { flex: 0 0 25%; max-width: 25%; }

@media (min-width: 768px) {
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
}

@media (min-width: 992px) {
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
}

.pull-right { float: right; }
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }


#content-container.user-center-page {
    padding-top: 8px;
    max-width: 100%;
    box-sizing: border-box;
}

.user-center-page .row {
    align-items: flex-start;
    gap: 0;
    max-width: 100%;
}

.sidenav-panel {
    padding: 16px;
    margin-bottom: 20px;
    position: sticky;
    top: 88px;
}

.user-panel {
    padding: 32px 36px;
    min-height: 420px;
}

.user-panel .panel-body {
    padding: 0;
}

.page-header,
.user-page-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin: 0 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.user-page-title,
.page-header {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.user-page-user-no {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    font-family: "SF Mono", "Fira Code", monospace;
    white-space: nowrap;
}

.page-header-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

body.page-saas .user-panel .btn-outline-glass {
    background: #fff;
    color: #475569;
    border: 1px solid #e2e8f0;
}

body.page-saas .user-panel .btn-outline-glass:hover {
    background: #f8fafc;
    color: var(--el-color-primary);
    border-color: #cbd5e1;
}


.user-profile-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, var(--el-color-primary-light-9) 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.user-profile-avatar {
    flex-shrink: 0;
}

.user-avatar-img {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.user-profile-avatar a:hover .user-avatar-img {
    transform: scale(1.04);
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-20);
}

.user-profile-info {
    flex: 1;
    min-width: 0;
}

.user-nickname {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
}

.user-nickname a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.user-nickname a:hover {
    color: var(--el-color-primary);
}

.user-bio {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.user-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.user-stat-item {
    padding: 18px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.user-stat-item:hover {
    border-color: var(--el-color-primary-light-7);
    box-shadow: 0 4px 12px var(--el-color-primary-alpha-08);
}

.user-stat-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}

.user-stat-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    word-break: break-all;
}

.user-stat-value a {
    text-decoration: none;
}

.text-primary {
    color: var(--el-color-primary) !important;
    font-weight: 700;
}


.user-form {
    max-width: 560px;
}

.user-form .auth-mobile-group {
    display: flex;
    width: 100%;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.user-form .auth-mobile-group:focus-within {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.user-form .mobile-code-picker {
    min-width: 100px;
    max-width: 128px;
}

.element-layer-body .mobile-code-dropdown,
#element-layer-root .mobile-code-dropdown {
    z-index: 10070;
}

.user-form .auth-mobile-code,
.user-form .auth-mobile-code.form-control {
    flex: 0 0 80px;
    width: 80px;
    min-width: 80px;
    height: auto;
    min-height: 46px;
    padding: 0 22px 0 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
    background-color: transparent;
    border: none;
    border-right: 1px solid #e2e8f0;
    border-radius: 0;
    outline: none;
    box-sizing: border-box;
    box-shadow: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    cursor: pointer;
}

.user-form .auth-mobile-code:focus,
.user-form .auth-mobile-code.form-control:focus {
    border: none;
    border-right: 1px solid #e2e8f0;
    box-shadow: none;
}

.user-form .auth-mobile-input {
    flex: 1;
    min-width: 0;
    min-height: 46px;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent;
}

.user-form .auth-mobile-input:focus {
    border: none !important;
    box-shadow: none !important;
}

.user-form .user-mobile-field {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.user-form .user-mobile-field .auth-mobile-group {
    flex: 1;
    min-width: 0;
    border-radius: 10px 0 0 10px;
}

.user-form .user-mobile-field .auth-mobile-group.user-mobile-readonly {
    background: #f8fafc;
}

.user-form .user-mobile-field .auth-mobile-group.user-mobile-readonly .auth-mobile-prefix {
    flex: 0 0 auto;
    padding: 0 16px;
    min-height: 46px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
    border-right: 1px solid #e2e8f0;
    line-height: 1;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.user-form .user-mobile-field .auth-mobile-group.user-mobile-readonly .auth-mobile-input:disabled {
    opacity: 1;
    color: #334155;
    -webkit-text-fill-color: #334155;
    cursor: default;
    background-color: transparent;
}

.user-form .user-mobile-field .input-group-btn {
    display: flex;
}

.user-form .user-mobile-field .input-group-btn .btn {
    height: 100%;
    min-height: 46px;
    border-radius: 0 10px 10px 0;
    margin-left: -1px;
}

.user-form .form-layer .auth-mobile-group + .msg-box,
.element-layer-body .form-layer .auth-mobile-group + .msg-box {
    display: block;
    margin-top: 6px;
}

.user-form .user-avatar-picker {
    position: relative;
    display: inline-flex;
    width: 96px;
    height: 96px;
    cursor: pointer;
}

.user-form .user-avatar-picker .user-avatar-img {
    width: 96px;
    height: 96px;
}

.user-form .user-avatar-picker:hover .user-avatar-img {
    transform: scale(1.04);
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-20);
}

.user-form .user-avatar-picker .user-avatar-hint {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    padding: 0 6px;
    border-radius: 50%;
    pointer-events: none;
}

.user-form .user-avatar-picker:hover .user-avatar-hint {
    display: flex;
}

.user-form .user-avatar-picker .faupload {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}

.user-form-group {
    margin-bottom: 22px;
}

.user-form-group::before,
.user-form-group::after {
    content: " ";
    display: table;
}

.user-form-group::after {
    clear: both;
}

.user-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.user-form .auth-input,
.user-form .form-control {
    display: block;
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    color: #334155;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.user-form .auth-input:focus,
.user-form .form-control:focus {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.user-form .auth-input:disabled,
.user-form .form-control:disabled {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
}

.user-form .auth-mobile-group .auth-input.auth-mobile-input,
.user-form .auth-mobile-group .form-control.auth-mobile-input {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent;
}

.user-form .auth-mobile-group .auth-input.auth-mobile-input:focus,
.user-form .auth-mobile-group .form-control.auth-mobile-input:focus {
    border: none !important;
    box-shadow: none !important;
}

.user-form .auth-mobile-group.user-mobile-field--popup,
.user-form .user-mobile-field--popup .auth-mobile-group {
    flex: none;
    width: 100%;
    border-radius: 10px;
}

.user-form .auth-mobile-group.user-mobile-field--popup .mobile-code-picker,
.user-form .user-mobile-field--popup .mobile-code-picker,
.form-layer.user-form .auth-mobile-group .mobile-code-picker {
    display: block;
    flex-shrink: 0;
}

.user-change-panel,
.user-mobile-change-panel {
    display: none !important;
}

.user-form .auth-input-group.input-group {
    display: flex;
    width: 100%;
}

.user-form .auth-input-group .auth-input,
.user-form .auth-input-group .form-control,
body.page-auth .user-form .auth-input-group .auth-input,
body.page-auth .user-form .auth-input-group .form-control {
    flex: 1;
    border-radius: 10px 0 0 10px;
    min-width: 0;
}

.user-form .auth-input-group .input-group-btn {
    display: flex;
    flex-shrink: 0;
    padding: 0;
    border: none;
}

.user-form .auth-input-group .input-group-btn .btn {
    height: auto;
    padding: 11px 16px;
    border-radius: 0 10px 10px 0;
    border: 1px solid #e2e8f0;
    border-left: none;
    background: linear-gradient(135deg, var(--el-color-primary-light-3), var(--el-color-primary));
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.user-form .auth-input-group .input-group-btn .btn:hover {
    color: #fff;
    opacity: 0.92;
}

.user-form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}


.user-center-page .msg-box,
.user-center-page .form-layer .msg-box {
    display: block;
    position: relative;
    margin-top: 4px;
}

.user-center-page .user-form .n-bootstrap .n-right,
.user-center-page .form-layer .n-bootstrap .n-right {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    text-align: left;
    margin-top: 4px;
}

.user-center-page .msg-wrap,
.user-center-page .n-error,
.user-center-page .n-error .n-msg,
.user-center-page .n-msg,
.user-center-page .form-layer .msg-wrap,
.user-center-page .form-layer .n-error,
.user-center-page .form-layer .n-error .n-msg,
.user-center-page .form-layer .n-msg {
    font-size: 12px;
    line-height: 1.4;
    color: var(--el-color-danger);
}

.user-center-page .msg-box .msg-wrap .n-error,
.user-center-page .msg-box .msg-wrap .n-ok,
.user-center-page .msg-box .msg-wrap .n-tip,
.user-center-page .form-layer .msg-box .msg-wrap .n-error,
.user-center-page .form-layer .msg-box .msg-wrap .n-ok,
.user-center-page .form-layer .msg-box .msg-wrap .n-tip {
    padding: 0;
    background: none;
    box-shadow: none;
}

.user-center-page .n-icon,
.user-center-page .form-layer .n-icon {
    display: none;
}

.user-center-page .n-tip,
.user-center-page .n-tip .n-msg,
.user-center-page .form-layer .n-tip,
.user-center-page .form-layer .n-tip .n-msg {
    font-size: 12px;
    color: #94a3b8;
}


.btn-outline-primary-glass {
    background: #fff;
    color: var(--el-color-primary);
    border: 1px solid var(--el-color-primary-light-5);
    box-shadow: none;
}

.btn-outline-primary-glass:hover,
.btn-outline-primary-glass:focus {
    background: var(--el-color-primary-light-9);
    color: var(--el-color-primary-dark-2);
    border-color: var(--el-color-primary);
}

body.page-saas .user-panel .btn-outline-primary-glass,
body.dialog-attachment-page .btn-outline-primary-glass {
    background: #fff;
    color: var(--el-color-primary);
    border: 1px solid var(--el-color-primary-light-5);
}

body.page-saas .user-panel .btn-outline-primary-glass:hover,
body.dialog-attachment-page .btn-outline-primary-glass:hover {
    background: var(--el-color-primary-light-9);
    color: var(--el-color-primary-dark-2);
    border-color: var(--el-color-primary);
}

.user-attachment-panel {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.user-attachment-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 18px;
}

.user-attachment-toolbar__actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    justify-self: start;
    min-width: 0;
}

.user-attachment-toolbar .user-attachment-search {
    justify-self: end;
    width: 240px;
    max-width: 100%;
}

.user-attachment-list {
    position: relative;
}

.user-attachment-list .empty-state {
    color: #94a3b8;
}

.user-attachment-list .empty-state[hidden] {
    display: none !important;
}

.user-attachment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 12px;
}

.user-attachment-grid:not(:empty) + .empty-state {
    display: none !important;
}

.user-attachment-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 176px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.user-attachment-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.user-attachment-card.is-selected,
.user-attachment-card--selectable:has(.user-attachment-card__checkbox:checked) {
    border-color: var(--el-color-primary);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.user-attachment-card__check {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    margin: 0;
    cursor: pointer;
}

.user-attachment-card__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.user-attachment-card__checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: rgba(255, 255, 255, 0.94);
    color: #fff;
    font-size: 11px;
}

.user-attachment-card__checkbox:checked + .user-attachment-card__checkmark {
    border-color: var(--el-color-primary);
    background: var(--el-color-primary);
}

.user-attachment-card__checkbox:checked + .user-attachment-card__checkmark::before {
    content: "\f00c";
    font-family: FontAwesome;
}

.user-attachment-card__preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 108px;
    background: #f8fafc;
    border-bottom: 1px solid #eef2f7;
}

.user-attachment-card__preview-trigger,
.user-attachment-card__preview a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.user-attachment-card__preview-trigger {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    border: 0;
    background: transparent;
}

.user-attachment-card__preview img {
    max-width: 100%;
    max-height: 98px;
    object-fit: contain;
}

.user-attachment-card__file img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.user-attachment-card__body {
    flex: 1;
    padding: 10px 12px 12px;
}

.user-attachment-card__name {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-attachment-card__meta {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.user-attachment-panel[data-dialog="1"] .user-attachment-card:not(.user-attachment-card--selectable) {
    cursor: pointer;
}

.user-attachment-panel[data-dialog="1"] .user-attachment-card__name {
    cursor: pointer;
}

#attachment-choose:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.user-attachment-pagination.pagination-wrap {
    margin-top: 24px;
}

.user-attachment-pagination.pagination-wrap[hidden] {
    display: none !important;
}

.user-attachment-page .user-attachment-pagination.pagination-wrap li a,
.user-attachment-page .user-attachment-pagination.pagination-wrap li span,
body.dialog-attachment-page .user-attachment-pagination.pagination-wrap li a,
body.dialog-attachment-page .user-attachment-pagination.pagination-wrap li span {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.user-attachment-page .user-attachment-pagination.pagination-wrap li.active span,
.user-attachment-page .user-attachment-pagination.pagination-wrap li a:hover,
body.dialog-attachment-page .user-attachment-pagination.pagination-wrap li.active span,
body.dialog-attachment-page .user-attachment-pagination.pagination-wrap li a:hover {
    background: var(--el-color-primary-alpha-12);
    border-color: var(--el-color-primary-light-5);
    color: var(--el-color-primary);
}

.user-attachment-page .user-attachment-pagination.pagination-wrap li.disabled span,
body.dialog-attachment-page .user-attachment-pagination.pagination-wrap li.disabled span {
    opacity: 0.45;
    cursor: not-allowed;
}

body.dialog-attachment-page {
    margin: 0;
    padding: 16px;
    min-height: 100vh;
    background: #f8fafc !important;
    color: #1e293b;
}

body.dialog-attachment-page .user-attachment-panel {
    margin: 0;
}

body.dialog-attachment-page .user-center-filters {
    margin-bottom: 16px;
}

body.dialog-attachment-page .user-attachment-toolbar {
    margin-bottom: 14px;
}

body.dialog-attachment-page .user-attachment-toolbar .user-attachment-search {
    width: 200px;
}

body.dialog-attachment-page .user-attachment-grid {
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
}

body.dialog-attachment-page .empty-state {
    color: #94a3b8;
}

@media (max-width: 575px) {
    .user-attachment-toolbar {
        grid-template-columns: 1fr;
    }

    .user-attachment-toolbar__actions {
        flex-wrap: wrap;
    }

    .user-attachment-toolbar .user-attachment-search {
        justify-self: stretch;
        width: 100%;
    }

    .user-attachment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.logout-section .auth-visual {
    margin-bottom: 20px;
}

.logout-section .auth-title {
    font-size: 20px;
}

.logout-section .auth-subtitle {
    margin-bottom: 24px;
}

.logout-section .auth-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logout-section .auth-btn {
    margin-top: 0;
}


.form-layer {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    margin: 0;
    box-sizing: border-box;
}

.form-layer .form-body {
    flex: 1 1 auto;
    width: 100%;
    padding: 4px 0 0;
    position: static;
    overflow: visible;
}

.form-layer .form-footer {
    flex-shrink: 0;
    width: 100%;
    margin: 0;
    padding: 16px 0 0;
    position: static;
    background: transparent;
    border-top: none;
    box-sizing: border-box;
}

.form-layer .form-footer .btn-glass {
    width: 100%;
    justify-content: center;
}

.form-layer .form-footer .form-group {
    margin-left: 0;
    margin-right: 0;
}

.element-layer-body {
    padding: 0;
    box-sizing: border-box;
}

.element-layer-body .form-layer .user-form-group:last-child {
    margin-bottom: 0;
}

.element-layer-body .form-layer .auth-input-group .input-group-btn .btn-captcha {
    min-width: 108px;
    text-align: center;
}

.el-dialog__body .element-layer-body {
    padding: 0;
}

/* 修改邮箱/手机号弹窗：校验提示红色、显示在输入框下方 */
.element-layer-body .form-layer.user-form .msg-box,
#element-layer-root .form-layer.user-form .msg-box {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 4px;
}

.element-layer-body .form-layer.user-form .n-bootstrap .n-right,
#element-layer-root .form-layer.user-form .n-bootstrap .n-right,
.element-layer-body .form-layer.user-form .msg-box .n-right,
#element-layer-root .form-layer.user-form .msg-box .n-right {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 4px 0 0;
    text-align: left;
    line-height: 1.4;
    vertical-align: baseline;
}

.element-layer-body .form-layer.user-form .msg-box .msg-wrap,
#element-layer-root .form-layer.user-form .msg-box .msg-wrap {
    display: block;
    margin: 0;
}

.element-layer-body .form-layer.user-form .n-error,
.element-layer-body .form-layer.user-form .n-error .n-msg,
.element-layer-body .form-layer.user-form .msg-box .n-error,
.element-layer-body .form-layer.user-form .msg-box .n-error .n-msg,
#element-layer-root .form-layer.user-form .n-error,
#element-layer-root .form-layer.user-form .n-error .n-msg,
#element-layer-root .form-layer.user-form .msg-box .n-error,
#element-layer-root .form-layer.user-form .msg-box .n-error .n-msg {
    color: var(--el-color-danger);
    font-size: 12px;
}

.element-layer-body .form-layer.user-form .msg-box .msg-wrap .n-error,
.element-layer-body .form-layer.user-form .msg-box .msg-wrap .n-ok,
.element-layer-body .form-layer.user-form .msg-box .msg-wrap .n-tip,
#element-layer-root .form-layer.user-form .msg-box .msg-wrap .n-error,
#element-layer-root .form-layer.user-form .msg-box .msg-wrap .n-ok,
#element-layer-root .form-layer.user-form .msg-box .msg-wrap .n-tip {
    padding: 0;
    background: none;
    box-shadow: none;
    color: var(--el-color-danger);
}

.element-layer-body .form-layer.user-form .n-icon,
.element-layer-body .form-layer.user-form .n-arrow,
#element-layer-root .form-layer.user-form .n-icon,
#element-layer-root .form-layer.user-form .n-arrow {
    display: none;
}

.element-layer-body .form-layer.user-form .auth-input-group + .msg-box,
#element-layer-root .form-layer.user-form .auth-input-group + .msg-box {
    margin-top: 6px;
}

/* 验证码行内误插入的提示隐藏，统一显示在输入组下方 msg-box */
.user-form .auth-input-group > .msg-box,
.user-form .auth-input-group > .n-right,
.element-layer-body .form-layer.user-form .auth-input-group > .msg-box,
.element-layer-body .form-layer.user-form .auth-input-group > .n-right,
#element-layer-root .form-layer.user-form .auth-input-group > .msg-box,
#element-layer-root .form-layer.user-form .auth-input-group > .n-right {
    display: none !important;
}

@media (max-width: 991px) {
    .sidenav-panel {
        position: static;
        margin-bottom: 16px;
    }

    .user-panel {
        padding: 24px 20px;
    }
}

@media (max-width: 767px) {
    .user-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .user-stats-grid {
        grid-template-columns: 1fr;
    }

    .page-header,
    .user-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .developer-apps-page .user-page-header-actions {
        align-self: flex-end;
        padding-top: 0;
    }

    .developer-apps-page .developer-app-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .developer-apps-page .developer-app-search {
        width: 100%;
    }

    .user-page-user-no {
        align-self: flex-start;
        white-space: normal;
        word-break: break-all;
    }

    .page-header-actions {
        width: 100%;
    }

    .page-header-actions .btn-glass {
        flex: 1;
        justify-content: center;
    }

    .user-form {
        max-width: none;
    }

    #content-container.user-center-page,
    body.page-saas:has(#content-container.user-center-page) .site-main {
        overflow-x: clip;
        max-width: 100%;
        touch-action: pan-y;
    }

    .user-center-page .row {
        margin-left: 0;
        margin-right: 0;
    }

    .user-center-page [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        min-width: 0;
        max-width: 100%;
    }

    .user-center-page .glass-card,
    .user-center-page .user-panel,
    .user-center-page .sidenav-panel,
    .user-center-page .panel-body {
        max-width: 100%;
        min-width: 0;
    }
}

.user-sidenav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-sidenav-heading {
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 4px;
}

.user-sidenav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-sidenav-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.user-sidenav-item:hover {
    background: var(--el-color-primary-alpha-06);
    color: var(--el-color-primary);
    transform: translateX(4px);
}

.user-sidenav-item.active {
    background: var(--el-color-primary);
    color: #fff;
    box-shadow: 0 4px 12px var(--el-color-primary-alpha-25);
}

.user-sidenav-item.active i {
    color: #fff;
}

.user-sidenav + .user-sidenav {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.user-sidenav-divider {
    height: 1px;
    margin: 8px 16px;
    background: #e2e8f0;
}

.market-app-developer {
    margin: 0 0 10px;
    font-size: 13px;
    color: #64748b;
}

.developer-guide-card {
    padding: 20px 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.22);
    margin-bottom: 24px;
}

.developer-guide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.developer-commission-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--el-color-primary-dark-2);
    background: linear-gradient(135deg, var(--el-color-primary-light-9) 0%, var(--el-color-primary-light-8) 100%);
    border: 1px solid var(--el-color-primary-alpha-25);
}

.developer-commission-badge strong {
    font-size: 16px;
    color: var(--el-color-primary-dark-2);
}

.developer-guide-content {
    font-size: 14px;
    line-height: 1.75;
    color: #334155;
}

.developer-guide-content h3,
.developer-guide-content h4 {
    margin: 1.25em 0 0.5em;
    font-size: 15px;
    color: #0f172a;
}

.developer-guide-content h3:first-child,
.developer-guide-content h4:first-child {
    margin-top: 0;
}

.developer-guide-content p,
.developer-guide-content ul,
.developer-guide-content ol {
    margin: 0 0 0.75em;
}

.developer-guide-fallback {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
}

.developer-guide-card--plain {
    margin-bottom: 0;
}

.developer-status-card {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    margin-bottom: 24px;
}

.developer-status-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.developer-status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.developer-section-title {
    margin: 0 0 12px;
    font-size: 16px;
}

.developer-app-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.developer-app-empty {
    margin: 48px 0;
    text-align: center;
    font-size: 14px;
}

.developer-apps-page .user-page-header {
    align-items: flex-start;
}

.developer-apps-page .user-page-header-actions {
    flex-shrink: 0;
    padding-top: 2px;
}

.developer-apps-page .developer-app-filters {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.developer-apps-page .developer-app-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.developer-apps-page .developer-app-search {
    flex-shrink: 0;
    width: min(280px, 100%);
}

.developer-app-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.developer-app-info {
    flex: 1;
    min-width: 0;
}

.developer-app-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.developer-app-name {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.developer-app-mark {
    margin: 0 0 6px;
    font-size: 13px;
}

.developer-app-item--full {
    flex-direction: column;
    align-items: stretch;
}

.developer-app-corner {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    max-width: 58%;
    overflow: visible;
}

.developer-app-type {
    display: inline-block;
    padding: 2px 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #4338ca;
    background: #eef2ff;
    border-radius: 999px;
    white-space: nowrap;
}

.developer-app-mark-badge code,
.developer-app-mark-corner code,
.developer-app-mark code {
    padding: 2px 8px;
    font-size: 12px;
    color: #475569;
    background: #f1f5f9;
    border-radius: 999px;
    word-break: break-all;
}

.developer-app-main {
    flex: 1;
    width: 100%;
    min-width: 0;
    padding-right: 240px;
}

.developer-app-item .developer-app-actions {
    flex-shrink: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.developer-app-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.developer-app-footer .developer-app-meta {
    flex: 1;
    min-width: 0;
}

.developer-apps-page .developer-app-footer .developer-app-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.developer-apps-page .developer-app-actions .btn-glass {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 999px;
    gap: 4px;
}

.developer-apps-page .developer-app-actions .btn-primary-glass {
    box-shadow: 0 2px 8px var(--el-color-primary-alpha-28);
}

.developer-apps-page .developer-app-actions .btn-primary-glass:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--el-color-primary-alpha-34);
}

.developer-app-offline {
    color: #94a3b8;
    font-style: normal;
}

.developer-pluginpack-desc {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

.developer-pluginpack-modules {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow-y: auto;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.developer-pluginpack-module-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px 10px;
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.developer-pluginpack-module-item input {
    margin-top: 3px;
}

.developer-pluginpack-module-name {
    font-weight: 600;
    color: #0f172a;
}

.developer-pluginpack-module-meta {
    font-size: 13px;
    color: #64748b;
}

.developer-pluginpack-module-desc {
    flex: 1 1 100%;
    margin-left: 22px;
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
}

.developer-pluginpack-module-item--all {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.developer-pluginpack-empty-actions {
    margin-top: 16px;
}

@media (max-width: 767px) {
    .developer-app-main {
        padding-right: 0;
        padding-top: 56px;
    }

    .developer-app-corner {
        top: 16px;
        right: 18px;
        left: 18px;
        max-width: none;
    }

    .developer-app-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .developer-app-footer .developer-app-actions {
        justify-content: flex-start;
        margin-left: 0;
    }
}

.developer-app-summary {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.developer-app-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    font-size: 13px;
    color: #64748b;
}

.developer-app-meta .market-app-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.developer-app-meta .market-app-rating em {
    font-style: normal;
}

.developer-app-audit--draft {
    color: #64748b;
    background: #f1f5f9;
}

.developer-app-audit--pending {
    color: var(--el-color-primary);
    background: var(--el-color-primary-light-8);
}

.developer-app-audit--approved {
    color: var(--el-color-success);
    background: #dcfce7;
}

.developer-app-audit--rejected {
    color: #c2410c;
    background: #ffedd5;
}

.developer-app-audit--has-tip {
    position: relative;
    cursor: help;
}

.developer-app-audit--has-tip::after {
    content: attr(data-tip);
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    min-width: 180px;
    max-width: 300px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    white-space: normal;
    word-break: break-word;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

.developer-app-audit--has-tip:hover::after {
    opacity: 1;
    visibility: visible;
}

.user-page-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.developer-version-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.developer-version-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.developer-version-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--el-color-primary-alpha-35);
    box-shadow: 0 10px 24px var(--el-color-primary-alpha-10);
}

.developer-version-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.developer-version-title {
    color: #475569;
    font-size: 14px;
}

.developer-version-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 13px;
    color: #64748b;
}

.developer-app-item {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 16px 18px;
    overflow: visible;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.developer-app-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--el-color-primary-alpha-35);
    box-shadow: 0 10px 24px var(--el-color-primary-alpha-10);
}

.developer-app-item--full {
    align-items: stretch;
}

.developer-app-audit {
    display: inline-block;
    margin-left: 0;
    padding: 2px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 999px;
    white-space: nowrap;
}

.developer-app-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.developer-app-reject {
    margin: 8px 0 0;
    font-size: 13px;
}

.developer-form--readonly .form-control[readonly],
.developer-form--readonly textarea[readonly] {
    background: rgba(248, 250, 252, 0.85);
    cursor: default;
}

.developer-apply-readonly-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.developer-apply-readonly-tip .fa {
    margin-top: 3px;
    color: var(--el-color-warning);
}

.developer-apply-readonly-tip--approved {
    color: #166534;
    background: #f0fdf4;
    border-color: var(--el-color-success-alpha-35);
}

.developer-apply-readonly-tip--approved .fa {
    color: var(--el-color-success);
}

.developer-form-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #e2e8f0;
}

.developer-form-tabs > li {
    margin-bottom: -1px;
}

.developer-form-tabs > li > a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.developer-form-tabs > li > a:hover {
    color: var(--el-color-primary);
    background: transparent;
    border-color: transparent;
}

.developer-form-tabs > li.active > a,
.developer-form-tabs > li.active > a:hover,
.developer-form-tabs > li.active > a:focus {
    color: var(--el-color-primary);
    border-bottom-color: var(--el-color-primary);
    font-weight: 600;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
}

.developer-form-tab-content {
    padding-top: 4px;
}

.developer-form-tab-content > .tab-pane {
    display: none;
}

.developer-form-tab-content > .tab-pane.active {
    display: block;
}

.developer-form .form-group {
    margin-bottom: 16px;
}

.developer-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.developer-form label.required::after {
    content: ' *';
    color: var(--el-color-danger);
}

.developer-form .auth-mobile-group {
    display: flex;
    width: 100%;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.developer-form .auth-mobile-group:focus-within {
    border-color: var(--el-color-primary-light-5);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.developer-form .auth-mobile-code,
.developer-form .auth-mobile-code.form-control {
    flex: 0 0 108px;
    width: 108px;
    min-width: 108px;
    height: auto;
    min-height: 46px;
    padding: 0 28px 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
    background-color: transparent;
    border: none;
    border-right: 1px solid #e2e8f0;
    border-radius: 0;
    outline: none;
    box-sizing: border-box;
    box-shadow: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.developer-form .auth-mobile-code:focus,
.developer-form .auth-mobile-code.form-control:focus {
    border: none;
    border-right: 1px solid #e2e8f0;
    box-shadow: none;
}

.developer-form .auth-mobile-input {
    flex: 1;
    min-width: 0;
    min-height: 46px;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent;
}

.developer-form .auth-mobile-input:focus {
    border: none !important;
    box-shadow: none !important;
}

.developer-form .developer-phone-group + .msg-box {
    display: block;
    margin-top: 6px;
}

.developer-form .developer-upload-field + .msg-box {
    display: block;
    margin-top: 6px;
}

/* 上传字段行内误插入的提示隐藏，统一显示在输入组下方 msg-box */
.developer-form .developer-upload-field > .msg-box,
.developer-form .developer-upload-field > .n-right {
    display: none !important;
}

.developer-form .developer-upload-field + .msg-box .n-right {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    text-align: left;
}

.developer-form--readonly .auth-mobile-code[disabled] {
    cursor: default;
    opacity: 1;
    color: #64748b;
}

.developer-form .help-block {
    margin: 6px 0 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    color: #64748b;
}

.developer-form .developer-upload-field {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.developer-form .developer-upload-field .form-control {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.developer-form .developer-upload-actions {
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
    padding: 0;
    background: transparent;
    border: 0;
}

.developer-form .developer-upload-actions > span {
    display: flex;
}

.developer-form .developer-upload-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    margin: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 0;
    border-left: 1px solid #e2e8f0;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
    cursor: pointer;
}

.developer-form .developer-upload-actions .btn .fa {
    color: #fff;
}

.developer-form .developer-upload-actions .btn-danger {
    background: var(--el-color-danger);
    color: #fff;
}

.developer-form .developer-upload-actions .btn-danger:hover {
    background: var(--el-color-danger);
    color: #fff;
}

.developer-form .developer-upload-actions .btn-primary {
    background: var(--el-color-primary);
    color: #fff;
}

.developer-form .developer-upload-actions .btn-primary:hover {
    background: var(--el-color-primary-dark-2);
    color: #fff;
}


.site-float-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 110;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    background: var(--el-color-primary);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-right: none;
    box-shadow: -4px 8px 28px var(--el-color-primary-alpha-45);
}

.site-float-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    min-width: 56px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.25s, background 0.25s;
}

.site-float-action i {
    font-size: 20px;
    line-height: 1;
}

.site-float-action:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.site-float-action + .site-float-action {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0;
}

.site-float-top[hidden] {
    display: none;
}

@media (max-width: 768px) {
    .site-float-actions {
        top: auto;
        bottom: 80px;
        transform: none;
        padding: 0;
        border-radius: 10px 0 0 10px;
    }

    .site-float-action {
        min-width: 48px;
        padding: 8px 6px;
        font-size: 11px;
    }

    .site-float-action i {
        font-size: 18px;
    }
}

.pricing-coupon-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
}

.pricing-coupon-float-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--el-color-warning), var(--el-color-warning));
    color: #1c1917;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
    cursor: pointer;
}

.pricing-coupon-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: 280px;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.pricing-coupon-panel h4 {
    margin: 0 0 10px;
    font-size: 14px;
}

.pricing-coupon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
}

.pricing-coupon-item {
    width: 100%;
    text-align: left;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    padding: 8px 10px;
    margin-bottom: 8px;
    cursor: pointer;
}

html.checkout-scroll-lock,
body.checkout-scroll-lock {
    overflow: hidden;
    overscroll-behavior: none;
}

body.checkout-scroll-lock {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

.pricing-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    touch-action: none;
}

.pricing-checkout-modal[hidden] {
    display: none !important;
}

.pricing-checkout-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    touch-action: none;
}

.pricing-checkout-dialog {
    position: relative;
    width: min(480px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.pricing-checkout-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
}

.pricing-checkout-summary {
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f8fafc;
}

.pricing-checkout-summary > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.pricing-checkout-discount {
    display: block;
    margin-bottom: 6px;
}

.pricing-checkout-discount[hidden] {
    display: none !important;
    margin: 0;
}

.pricing-checkout-discount__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-checkout-discount__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin-top: 6px;
    padding-left: 2px;
}

.pricing-checkout-discount__badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}

.pricing-checkout-discount__badge--percent {
    background: var(--el-color-primary-alpha-12);
    color: var(--el-color-primary);
}

.pricing-checkout-discount__badge--fixed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--el-color-danger);
}

.pricing-checkout-discount__row strong,
#checkout-discount-amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--el-color-danger);
}

.pricing-checkout-discount__value {
    font-size: 12px;
    font-weight: 700;
    color: var(--el-color-danger);
}

.pricing-checkout-discount__name {
    font-size: 12px;
    color: #64748b;
}

.pricing-checkout-total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
}

.pricing-checkout-total strong {
    color: var(--el-color-danger);
}

.pricing-checkout-coupon-row {
    display: flex;
    gap: 8px;
}

.pricing-checkout-coupon-row input {
    flex: 1;
}

.pricing-checkout-note {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pricing-checkout-purchase {
    margin: 0 0 16px;
}

.pricing-checkout-purchase__label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.pricing-checkout-purchase__card {
    padding: 16px 18px;
    border: 1px solid var(--el-color-primary-alpha-28);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--el-color-primary-alpha-08) 0%, var(--el-color-primary-alpha-06) 100%);
}

.pricing-checkout-purchase__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 24px;
}

.pricing-checkout-purchase__info {
    flex: 1 1 auto;
    min-width: 0;
}

.pricing-checkout-purchase__type {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 3px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--el-color-primary) 0%, var(--el-color-primary-dark-2) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pricing-checkout-purchase__title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.pricing-checkout-purchase__name {
    display: inline;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    word-break: break-word;
}

.pricing-checkout-purchase__card[class*="--plan-"] .pricing-checkout-purchase__name {
    font-size: 22px;
}

.pricing-checkout-purchase__subtitle {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: 0;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pricing-checkout-purchase__desc {
    margin: 10px 0 0;
    font-size: 13px;
    color: #475569;
    line-height: 1.55;
}

.pricing-checkout-purchase__price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex: 0 0 auto;
    gap: 2px;
    margin-top: 0;
    text-align: right;
    white-space: nowrap;
}

.pricing-checkout-purchase__amount {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-checkout-purchase__unit {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 640px) {
    .pricing-checkout-purchase__body {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-checkout-purchase__price-row {
        align-items: flex-start;
        text-align: left;
        padding-top: 4px;
        border-top: 1px solid rgba(148, 163, 184, 0.2);
    }
}

.pricing-checkout-purchase__card--plan-saas {
    border-color: rgba(13, 148, 136, 0.32);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(13, 148, 136, 0.06) 100%);
}

.pricing-checkout-purchase__card--plan-saas .pricing-checkout-purchase__subtitle {
    background: linear-gradient(145deg, #2dd4bf 0%, #0d9488 100%);
    color: #fff;
}

.pricing-checkout-purchase__card--plan-saas .pricing-checkout-purchase__amount {
    color: #0d9488;
}

.pricing-checkout-purchase__card--plan-base {
    border-color: rgba(37, 99, 235, 0.32);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(37, 99, 235, 0.06) 100%);
}

.pricing-checkout-purchase__card--plan-base .pricing-checkout-purchase__subtitle {
    background: linear-gradient(145deg, #60a5fa 0%, #2563eb 100%);
    color: #fff;
}

.pricing-checkout-purchase__card--plan-base .pricing-checkout-purchase__amount {
    color: #2563eb;
}

.pricing-checkout-purchase__card--plan-ai,
.pricing-checkout-purchase__card--plan-smart {
    border-color: rgba(124, 58, 237, 0.32);
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.12) 0%, rgba(124, 58, 237, 0.06) 100%);
}

.pricing-checkout-purchase__card--plan-ai .pricing-checkout-purchase__subtitle,
.pricing-checkout-purchase__card--plan-smart .pricing-checkout-purchase__subtitle {
    background: linear-gradient(145deg, #c084fc 0%, #7c3aed 55%, #6d28d9 100%);
    color: #fff;
}

.pricing-checkout-purchase__card--plan-ai .pricing-checkout-purchase__amount,
.pricing-checkout-purchase__card--plan-smart .pricing-checkout-purchase__amount {
    color: #7c3aed;
}

.pricing-checkout-purchase__card--plan-only,
.pricing-checkout-purchase__card--plan-exclusive {
    border-color: rgba(251, 191, 36, 0.35);
    background:
        linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(28, 25, 23, 0.04) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 249, 0.95) 100%);
}

.pricing-checkout-purchase__card--plan-only .pricing-checkout-purchase__subtitle,
.pricing-checkout-purchase__card--plan-exclusive .pricing-checkout-purchase__subtitle {
    background: linear-gradient(145deg, #1c1917 0%, #292524 100%);
    color: #fde68a;
    box-shadow: inset 0 1px 0 rgba(251, 191, 36, 0.25);
}

.pricing-checkout-purchase__card--plan-only .pricing-checkout-purchase__amount,
.pricing-checkout-purchase__card--plan-exclusive .pricing-checkout-purchase__amount {
    color: #b45309;
}

.pricing-checkout-options {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 16px;
}

.pricing-checkout-options-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
}

.pricing-checkout-options .form-group {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .pricing-checkout-options-row {
        grid-template-columns: 1fr;
    }
}

.pricing-checkout-slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.pricing-checkout-slider-head label {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.pricing-checkout-slider-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--el-color-primary);
    white-space: nowrap;
}

.pricing-checkout-slider {
    padding: 0 2px;
}

.pricing-checkout-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 20px;
    background: transparent;
    outline: none;
    cursor: pointer;
}

.pricing-checkout-range::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: #e2e8f0;
}

.pricing-checkout-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    margin-top: -7px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--el-color-primary) 0%, var(--el-color-primary-dark-2) 100%);
    box-shadow: 0 2px 8px var(--el-color-primary-alpha-45);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.pricing-checkout-range::-webkit-slider-thumb:hover {
    transform: scale(1.08);
}

.pricing-checkout-range::-moz-range-track {
    height: 6px;
    border: none;
    border-radius: 999px;
    background: #e2e8f0;
}

.pricing-checkout-range::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--el-color-primary) 0%, var(--el-color-primary-dark-2) 100%);
}

.pricing-checkout-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--el-color-primary) 0%, var(--el-color-primary-dark-2) 100%);
    box-shadow: 0 2px 8px var(--el-color-primary-alpha-45);
    cursor: pointer;
}

.pricing-checkout-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.pricing-checkout-unit-prices {
    margin-top: 4px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--el-color-primary-alpha-06);
    border: 1px solid var(--el-color-primary-alpha-12);
}

.pricing-checkout-unit-prices__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    font-size: 13px;
    color: #475569;
}

.pricing-checkout-unit-prices__row + .pricing-checkout-unit-prices__row {
    border-top: 1px dashed rgba(100, 116, 139, 0.18);
}

.pricing-checkout-unit-prices__label {
    flex: 1 1 auto;
}

.pricing-checkout-unit-prices__value {
    flex: 0 0 auto;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-checkout-purchase__extra {
    margin: 8px 0 0;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.pricing-checkout-submit {
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--el-color-primary) 0%, var(--el-color-primary-dark-2) 100%);
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-35);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.pricing-checkout-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 12px 28px var(--el-color-primary-alpha-40);
    color: #fff;
}

.pricing-checkout-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.order-create-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
    margin-top: 4px;
}

.order-create-panel {
    padding: 28px;
}

.order-create-panel .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.order-create-panel .form-group input[type="text"],
.order-create-panel .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.order-create-panel .form-group input[type="text"]:focus,
.order-create-panel .form-group textarea:focus {
    outline: none;
    border-color: var(--el-color-primary);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.order-create-coupons {
    position: sticky;
    top: 96px;
    padding: 20px;
}

.order-create-coupons__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.order-create-coupons__title i {
    margin-right: 6px;
    color: var(--el-color-primary);
}

.order-create-coupons .pricing-coupon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-create-coupon-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 12px 52px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
    color: #334155;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.order-create-coupon-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--el-color-primary);
}

.order-create-coupon-card--fixed::before {
    background: var(--el-color-danger);
}

.order-create-coupon-card--percent {
    border-color: var(--el-color-primary-alpha-22);
}

.order-create-coupon-card--fixed {
    border-color: rgba(239, 68, 68, 0.22);
}

.order-create-coupon-card:hover {
    border-color: var(--el-color-primary);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.order-create-coupon-card--fixed:hover {
    border-color: var(--el-color-danger);
}

.order-create-coupon-card.is-active {
    border-color: var(--el-color-success);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

.order-create-coupon-card__corner {
    position: absolute;
    top: 0;
    right: 0;
    padding: 3px 8px;
    border-radius: 0 10px 0 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.order-create-coupon-card--percent .order-create-coupon-card__corner {
    background: var(--el-color-primary-alpha-12);
    color: var(--el-color-primary);
}

.order-create-coupon-card--fixed .order-create-coupon-card__corner {
    background: rgba(239, 68, 68, 0.1);
    color: var(--el-color-danger);
}

.order-create-coupon-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    padding-right: 4px;
}

.order-create-coupon-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.order-create-coupon-card__meta-item {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.4;
}

.order-create-coupons .pricing-coupon-empty {
    padding: 12px 0;
    color: #94a3b8;
    font-size: 13px;
}

.order-create-coupons-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 12px 16px;
    text-align: center;
}

.order-create-coupons-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--el-color-primary-alpha-12);
    color: var(--el-color-primary);
    font-size: 28px;
}

.order-create-coupons-empty__btn {
    min-width: 120px;
    justify-content: center;
}

@media (max-width: 960px) {
    .order-create-layout {
        grid-template-columns: 1fr;
    }

    .order-create-coupons {
        position: static;
    }
}

.license-card {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 14px;
    background: #fff;
}

.coupon-section-title {
    margin: 28px 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.coupon-section-title:first-of-type {
    margin-top: 0;
}

.user-coupons-page__header {
    align-items: flex-start;
}

.user-coupons-page__header .user-page-header-actions {
    flex-shrink: 0;
    padding-top: 2px;
}

.coupon-claim-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.coupon-claim-modal[hidden] {
    display: none !important;
}

.coupon-claim-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.coupon-claim-modal__dialog {
    position: relative;
    width: min(440px, 100%);
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.coupon-claim-modal__dialog h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f172a;
}

.coupon-claim-modal__desc {
    margin: 0 0 18px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.coupon-claim-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.coupon-claim-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
}

.coupon-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.coupon-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
}

.coupon-stat--available {
    border-color: rgba(22, 163, 74, 0.22);
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.coupon-stat--used {
    border-color: #e2e8f0;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.coupon-stat__value {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}

.coupon-stat--available .coupon-stat__value {
    color: var(--el-color-success);
}

.coupon-stat__label {
    font-size: 13px;
    color: #64748b;
}

.coupon-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coupon-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 152px;
    gap: 0;
    color: inherit;
    text-decoration: none;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.coupon-card:hover,
.coupon-card:focus {
    color: inherit;
    text-decoration: none;
    border-color: var(--el-color-primary-alpha-45);
    box-shadow: 0 12px 28px var(--el-color-primary-alpha-12);
    transform: translateY(-2px);
}

.coupon-card--available {
    border-color: var(--el-color-primary-alpha-28);
}

.coupon-card--used {
    opacity: 0.92;
}

.coupon-card--type-percent .coupon-card__value-panel {
    background: linear-gradient(160deg, #f97316 0%, #ea580c 100%);
}

.coupon-card--type-fixed .coupon-card__value-panel {
    background: linear-gradient(160deg, var(--el-color-primary) 0%, var(--el-color-primary-dark-2) 100%);
}

.coupon-card--used .coupon-card__value-panel {
    background: linear-gradient(160deg, #94a3b8 0%, #64748b 100%);
}

.coupon-card__status {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.coupon-card__status--available {
    background: rgba(22, 163, 74, 0.1);
    color: var(--el-color-success);
}

.coupon-card__status--used {
    background: #f1f5f9;
    color: #64748b;
}

.coupon-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.coupon-card--used .coupon-card__body {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.coupon-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.coupon-card__name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    min-width: 0;
}

.coupon-card__code {
    margin: 0;
    display: inline-flex;
    align-self: flex-start;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--el-color-primary-alpha-10);
    color: var(--el-color-primary);
    font-size: 11px;
    font-weight: 600;
    font-family: "SF Mono", "Fira Code", monospace;
}

.coupon-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.coupon-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin: 0;
    min-width: 0;
}

.coupon-card__meta > div {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.coupon-card__meta dt {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
    white-space: nowrap;
}

.coupon-card__meta dd {
    margin: 0;
    font-size: 12px;
    color: #334155;
    font-weight: 500;
}

.coupon-card__action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--el-color-primary);
    white-space: nowrap;
}

.coupon-card__value-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 152px;
    min-width: 152px;
    max-width: 152px;
    padding: 12px 8px;
    color: #fff;
    text-align: center;
    border-left: 2px dashed rgba(255, 255, 255, 0.45);
}

.coupon-card__value-panel::before,
.coupon-card__value-panel::after {
    content: "";
    position: absolute;
    left: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dbe4f0;
    z-index: 1;
}

.coupon-card__value-panel::before {
    top: -9px;
}

.coupon-card__value-panel::after {
    bottom: -9px;
}

.coupon-card--available .coupon-card__value-panel::before,
.coupon-card--available .coupon-card__value-panel::after {
    border-color: var(--el-color-primary-alpha-28);
}

.coupon-card__value {
    width: 100%;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    font-variant-numeric: tabular-nums;
    white-space: normal;
    word-break: break-word;
}

.coupon-card__type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

.coupon-detail-card {
    border: 1px solid var(--el-color-primary-alpha-22);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
    padding: 20px;
    margin-bottom: 16px;
}

.coupon-detail-card--used {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.coupon-detail-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.coupon-detail-head__main {
    flex: 1;
    min-width: 0;
}

.coupon-detail-title-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.coupon-detail-title-wrap .coupon-card__status {
    position: static;
    top: auto;
    right: auto;
    flex-shrink: 0;
}

.coupon-detail-head__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.coupon-detail-title {
    margin: 0;
    font-size: 20px;
    color: #1a1a2e;
}

.coupon-detail-code {
    margin: 0;
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--el-color-primary-alpha-10);
    color: var(--el-color-primary);
    font-size: 13px;
    font-weight: 600;
    font-family: "SF Mono", "Fira Code", monospace;
}

.coupon-detail-value {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--el-color-danger);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.coupon-detail-order-link {
    color: var(--el-color-primary);
    font-weight: 600;
    text-decoration: none;
}

.coupon-detail-order-link:hover,
.coupon-detail-order-link:focus {
    color: var(--el-color-primary-dark-2);
    text-decoration: underline;
}

.coupon-detail-copy {
    margin-top: 4px;
}

.coupon-detail-copy__row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coupon-detail-copy__row .order-coupon-field {
    flex: 1;
    min-width: 0;
}

.coupon-detail-copy__btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.user-page-subtitle {
    margin: 6px 0 0;
    font-size: 14px;
    color: #64748b;
}

.framework-order-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.framework-order-card {
    position: relative;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) auto;
    gap: 0;
    color: inherit;
    text-decoration: none;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.framework-order-card__status {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    max-width: calc(100% - 24px);
}

.framework-order-card:hover,
.framework-order-card:focus {
    color: inherit;
    text-decoration: none;
    border-color: var(--el-color-primary-alpha-45);
    box-shadow: 0 12px 28px var(--el-color-primary-alpha-12);
    transform: translateY(-2px);
}

.framework-order-card--framework:not([class*="framework-order-card--plan-"]) .framework-order-card__badge,
.framework-order-card--renewal:not([class*="framework-order-card--plan-"]) .framework-order-card__badge {
    background: linear-gradient(160deg, var(--el-color-primary) 0%, var(--el-color-primary-dark-2) 100%);
}

.framework-order-card--plan-saas .framework-order-card__badge {
    background: linear-gradient(145deg, #2dd4bf 0%, #0d9488 100%);
}

.framework-order-card--plan-base .framework-order-card__badge {
    background: linear-gradient(145deg, #60a5fa 0%, #2563eb 100%);
}

.framework-order-card--plan-ai .framework-order-card__badge {
    background: linear-gradient(145deg, #c084fc 0%, #7c3aed 55%, #6d28d9 100%);
}

.framework-order-card--plan-only .framework-order-card__badge {
    background:
        linear-gradient(145deg, rgba(251, 191, 36, 0.18) 0%, transparent 55%),
        linear-gradient(145deg, #1c1917 0%, #0c0a09 45%, #292524 100%);
    box-shadow: inset 0 1px 0 rgba(251, 191, 36, 0.35);
    color: #fde68a;
}

.framework-order-card--market.framework-order-card--has-app-thumb .framework-order-card__badge {
    padding: 0;
    background: #f1f5f9;
}

.framework-order-card__app-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 108px;
    object-fit: cover;
}

.framework-order-card__app-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 108px;
    color: var(--el-color-primary);
    font-size: 32px;
    background: linear-gradient(135deg, var(--el-color-primary-light-8), var(--el-color-primary-light-9));
}

.framework-order-card--market:not(.framework-order-card--has-app-thumb) .framework-order-card__badge {
    background: linear-gradient(160deg, #0ea5e9 0%, var(--el-color-primary) 100%);
}

.framework-order-card--renewal:not([class*="framework-order-card--plan-"]) .framework-order-card__badge {
    background: linear-gradient(160deg, var(--el-color-warning) 0%, #ea580c 100%);
}

.framework-order-card__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 12px;
    color: #fff;
    text-align: center;
}

.framework-order-card__badge .fa {
    font-size: 28px;
    opacity: 0.95;
}

.framework-order-card__badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.framework-order-card__body {
    padding: 18px 20px;
    padding-right: 120px;
    min-width: 0;
    border-left: 1px solid #eef2f7;
    border-right: 1px solid #eef2f7;
}

.framework-order-card__head {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
}

.framework-order-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.framework-order-card__no {
    margin: 0 0 14px;
    font-size: 12px;
    color: #64748b;
    font-family: "SF Mono", "Fira Code", monospace;
    word-break: break-all;
}

.framework-order-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0;
}

.framework-order-card__meta > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.framework-order-card__meta dt {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.framework-order-card__meta dd {
    margin: 0;
    font-size: 13px;
    color: #334155;
    font-weight: 500;
}

.framework-order-card__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    padding-top: 42px;
    min-width: 140px;
}

.framework-order-card__amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--el-color-danger);
    white-space: nowrap;
}

.framework-order-card__action {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.framework-order-card:hover .framework-order-card__action {
    color: #2563eb;
}

.framework-order-card--plan-saas:hover .framework-order-card__action {
    color: #0d9488;
}

.framework-order-card--plan-base:hover .framework-order-card__action {
    color: #2563eb;
}

.framework-order-card--plan-ai:hover .framework-order-card__action {
    color: #7c3aed;
}

.framework-order-card--plan-only:hover .framework-order-card__action {
    color: #b45309;
}

.order-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.order-status--pending_voucher {
    color: var(--el-color-warning);
    background: #fff7ed;
}

.order-status--pending_review {
    color: var(--el-color-primary-dark-2);
    background: var(--el-color-primary-light-9);
}

.order-status--completed {
    color: var(--el-color-success);
    background: #f0fdf4;
}

.order-status--cancelled {
    color: #64748b;
    background: #f8fafc;
}

.user-page-header--stacked {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

.order-type-filters,
.user-center-filters {
    margin-bottom: 20px;
}

.license-card-type {
    display: inline-flex;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--el-color-primary-alpha-10);
    color: var(--el-color-primary);
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.license-card--market .license-card-type {
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7;
}

.license-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.license-card-name {
    display: block;
    font-size: 16px;
    color: #0f172a;
}

.license-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.license-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.license-no {
    flex-shrink: 0;
    font-size: 12px;
    color: #64748b;
    font-family: "SF Mono", "Fira Code", monospace;
    text-align: right;
}

.license-card-footer .license-card-type {
    margin-left: auto;
}

.order-detail-card,
.order-voucher-panel,
.order-voucher-preview-panel,
.order-coupon-panel {
    border: 1px solid var(--el-color-primary-alpha-22);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
    padding: 20px;
    margin-bottom: 16px;
}

.order-coupon-panel__applied {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--el-color-success);
}

.order-coupon-field__label {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.order-coupon-field {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 46px;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.order-coupon-field:focus-within {
    border-color: var(--el-color-primary-alpha-50);
    box-shadow: 0 0 0 3px var(--el-color-primary-alpha-12);
}

.order-coupon-field__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    flex-shrink: 0;
    color: var(--el-color-primary);
    font-size: 16px;
    background: var(--el-color-primary-alpha-06);
    border-right: 1px solid #eef2f7;
}

.order-coupon-field__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
}

.order-coupon-field__input::placeholder {
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    font-family: inherit;
}

.order-coupon-field-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-coupon-field-row .order-coupon-field {
    flex: 1;
    min-width: 0;
}

.order-coupon-apply__btn {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 46px;
    padding: 0 22px;
}

.order-coupon-apply__btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.order-detail-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.order-detail-head__main {
    flex: 1;
    min-width: 0;
}

.order-detail-head__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.order-detail-pay {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--el-color-primary-alpha-10) 0%, var(--el-color-primary-alpha-08) 100%);
    border: 1px solid var(--el-color-primary-alpha-22);
    box-shadow: 0 4px 14px var(--el-color-primary-alpha-10);
}

.order-detail-pay__label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.02em;
}

.order-detail-pay__amount {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--el-color-danger);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.order-detail-title {
    margin: 0 0 6px;
    font-size: 20px;
    color: #1a1a2e;
}

.order-detail-no {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    font-family: "SF Mono", "Fira Code", monospace;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.order-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-detail-item--full {
    grid-column: 1 / -1;
}

.order-detail-label {
    font-size: 12px;
    color: #94a3b8;
}

.order-detail-value {
    font-size: 14px;
    color: #334155;
    word-break: break-word;
}

.order-voucher-panel__title,
.order-voucher-preview-panel .order-voucher-panel__title {
    margin: 0 0 8px;
    font-size: 16px;
    color: #1a1a2e;
}

.order-voucher-panel__desc {
    margin: 0 0 16px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.order-voucher-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

.order-voucher-image-link {
    display: inline-block;
    max-width: 320px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.order-voucher-image-link img {
    display: block;
    width: 100%;
    height: auto;
}

.user-order-detail-page .order-detail-no {
    word-break: break-all;
}

.user-order-detail-page .user-page-header-actions {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .framework-order-card {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .framework-order-card__body {
        padding-right: 110px;
    }

    .framework-order-card__aside {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #eef2f7;
        min-width: 0;
        padding-top: 18px;
    }
}

@media (max-width: 767px) {
    .framework-order-card {
        grid-template-columns: 1fr;
    }

    .framework-order-card__badge {
        flex-direction: row;
        justify-content: flex-start;
        padding: 14px 16px;
    }

    .framework-order-card--has-app-thumb .framework-order-card__badge {
        flex-direction: column;
        justify-content: center;
        padding: 0;
        min-height: 72px;
    }

    .framework-order-card--has-app-thumb .framework-order-card__app-image,
    .framework-order-card--has-app-thumb .framework-order-card__app-fallback {
        min-height: 72px;
    }

    .framework-order-card__body {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid #eef2f7;
        padding-right: 16px;
    }

    .framework-order-card__meta {
        grid-template-columns: 1fr;
    }

    .order-detail-grid {
        grid-template-columns: 1fr;
    }

    .order-detail-pay__amount {
        font-size: 22px;
    }

    .coupon-stats {
        grid-template-columns: 1fr;
    }

    .coupon-card {
        grid-template-columns: 1fr;
    }

    .coupon-card__body {
        padding: 14px 16px;
        border-bottom: none;
    }

    .coupon-card__foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .coupon-card__value-panel {
        width: 100%;
        min-width: 0;
        max-width: none;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        padding: 12px 16px;
        border-left: 0;
        border-top: 2px dashed rgba(255, 255, 255, 0.45);
    }

    .coupon-card__value-panel::before,
    .coupon-card__value-panel::after {
        top: -9px;
        bottom: auto;
        left: auto;
        width: 16px;
        height: 16px;
    }

    .coupon-card__value-panel::before {
        left: -9px;
    }

    .coupon-card__value-panel::after {
        right: -9px;
    }

    .coupon-card__value {
        width: auto;
        max-width: none;
        white-space: nowrap;
    }

    .coupon-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .coupon-detail-head {
        flex-direction: column;
    }

    .coupon-detail-head__aside {
        align-items: flex-start;
    }

    .coupon-detail-value {
        font-size: 24px;
    }

    .coupon-detail-copy__row {
        flex-direction: column;
        align-items: stretch;
    }

    .coupon-detail-copy__btn {
        width: 100%;
        justify-content: center;
    }

    .order-coupon-field-row {
        flex-direction: column;
        align-items: stretch;
    }

    .order-coupon-apply__btn {
        width: 100%;
        justify-content: center;
    }
}

.order-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.license-section-title {
    margin: 24px 0 12px;
    font-size: 18px;
}

.developer-form .faupload-preview:empty {
    display: none;
    margin: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
}

.developer-form .bootstrap-tagsinput {
    display: block;
    width: 100%;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    line-height: 24px;
}

.developer-form .bootstrap-tagsinput input {
    border: none;
    box-shadow: none;
    outline: none;
    background: transparent;
    min-width: 120px;
    font-size: 14px;
    color: #0f172a;
}

.developer-form .bootstrap-tagsinput .tag {
    display: inline-flex;
    align-items: center;
    margin: 2px 6px 2px 0;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--el-color-primary-alpha-16), var(--el-color-primary-alpha-14));
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 600;
}

.developer-form .bootstrap-tagsinput .tag [data-role="remove"] {
    margin-left: 6px;
    cursor: pointer;
    opacity: 0.7;
}

.developer-form .bootstrap-tagsinput .tag [data-role="remove"]:hover {
    opacity: 1;
}

.developer-form .faupload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.developer-form .faupload-preview li,
.developer-form .faupload-preview li.col-xs-3 {
    position: relative;
    width: 120px;
    max-width: 120px;
    flex: 0 0 120px;
    margin: 0;
    padding: 0;
    float: none;
}

.developer-form .faupload-preview .thumbnail {
    display: block;
    margin: 0 0 8px;
    padding: 4px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    overflow: hidden;
    height: 100px;
    cursor: zoom-in;
}

.developer-form .faupload-preview a:first-child {
    height: auto;
}

.developer-form .faupload-preview a {
    display: block;
}

.developer-form .faupload-preview .thumbnail img,
.developer-form .faupload-preview a img {
    display: block;
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 4px;
}

.developer-form .faupload-preview .btn-trash {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    min-height: 28px;
    padding: 4px 10px;
    border: 0;
    border-radius: 6px;
    background: #fee2e2;
    color: var(--el-color-danger);
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.developer-form .faupload-preview .btn-trash .fa {
    font-size: 12px;
}

.developer-form .faupload-preview .btn-trash:hover {
    background: var(--el-color-danger);
    color: #fff;
    text-decoration: none;
}



.sidebar-toggle {
    display: none;
}


/* Status / jump / exception pages */
body.page-status {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.page-status .site-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 72px);
}

.status-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12vh 16px 8vh;
    background: linear-gradient(180deg, var(--el-color-primary-light-8) 0%, #eef3f9 45%, #eef3f9 100%);
}

.status-section .site-container {
    width: 100%;
    max-width: 480px;
    padding: 0;
    transform: translateY(2vh);
}

.status-card {
    text-align: center;
    padding: 48px 40px 44px;
}

.status-icon {
    margin-bottom: 28px;
}

.status-glass-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.status-glass-icon::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    filter: blur(12px);
    pointer-events: none;
}

.status-glass-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.35) 0%, transparent 55%);
    pointer-events: none;
}

.status-glass-icon i {
    position: relative;
    z-index: 1;
    font-size: 34px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.status-card--success .status-glass-icon {
    background: linear-gradient(145deg, rgba(220, 252, 231, 0.85), rgba(134, 239, 172, 0.45));
    border-color: var(--el-color-success-alpha-35);
    color: var(--el-color-success);
    box-shadow:
        0 12px 40px rgba(34, 197, 94, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.status-card--error .status-glass-icon {
    background: linear-gradient(145deg, rgba(254, 226, 226, 0.88), rgba(252, 165, 165, 0.42));
    border-color: rgba(239, 68, 68, 0.32);
    color: var(--el-color-danger);
    box-shadow:
        0 12px 40px rgba(239, 68, 68, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.status-card--info .status-glass-icon {
    background: linear-gradient(145deg, rgba(219, 234, 254, 0.9), rgba(147, 197, 253, 0.45));
    border-color: var(--el-color-primary-alpha-32);
    color: var(--el-color-primary-dark-2);
    box-shadow:
        0 12px 40px var(--el-color-primary-alpha-16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.status-title {
    margin: 0 0 12px;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.35;
    word-break: break-word;
}

.status-desc,
.status-jump {
    margin: 0 0 28px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.status-jump #wait {
    color: var(--el-color-primary);
    font-weight: 700;
}

.status-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0 auto 24px;
    max-width: 280px;
}

.status-debug {
    margin: 0 0 20px;
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
    color: var(--el-color-danger);
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    word-break: break-word;
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.status-actions .btn-glass {
    min-width: 132px;
    justify-content: center;
}

body.page-status .status-card--error .btn-primary-glass {
    background: linear-gradient(135deg, var(--el-color-danger), var(--el-color-danger));
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

body.page-status .status-card--error .btn-primary-glass:hover {
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.42);
}

@media (max-width: 768px) {
    .status-section { padding: 10vh 12px 6vh; }
    .status-section .site-container { transform: translateY(1.5vh); }
    .status-card { padding: 36px 24px 32px; }
    .status-actions { flex-direction: column; }
    .status-actions .btn-glass { width: 100%; max-width: 280px; }
}


/* About page */
.about-trust {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dce9f8 0%, #edf4fc 42%, #f5f9ff 100%);
}

.about-trust-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-trust-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--el-color-primary-alpha-06) 1px, transparent 1px),
        linear-gradient(90deg, var(--el-color-primary-alpha-06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 20%, transparent 75%);
}

.about-trust-bg-cube {
    position: absolute;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(191, 219, 254, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 24px var(--el-color-primary-alpha-12);
}

.about-trust-bg-cube-1 { width: 42px; height: 42px; top: 16%; right: 10%; transform: rotate(12deg); opacity: 0.75; }
.about-trust-bg-cube-2 { width: 30px; height: 30px; top: 34%; right: 18%; transform: rotate(-16deg); opacity: 0.55; }
.about-trust-bg-cube-3 { width: 24px; height: 24px; bottom: 32%; right: 8%; transform: rotate(22deg); opacity: 0.45; }

.about-trust-bg-glow {
    position: absolute;
    top: 8%;
    right: 6%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.4) 0%, rgba(147, 197, 253, 0) 68%);
}

.about-trust-inner {
    position: relative;
    z-index: 1;
    padding: 56px 0 40px;
    text-align: center;
}

.about-trust-head {
    margin-bottom: 36px;
}

.about-trust-title {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.about-trust-subtitle {
    margin: 0 auto;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.75;
    color: #64748b;
}

.about-trust-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-trust-card {
    padding: 22px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px var(--el-color-primary-alpha-08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.about-trust-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px var(--el-color-primary-alpha-14);
}

.about-trust-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
    color: #1e3a5f;
}

.about-trust-stats {
    position: relative;
    z-index: 2;
    background: #fff;
    border-top: 1px solid #e8eef5;
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.04);
}

.about-trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-trust-stat {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid #edf2f7;
}

.about-trust-stat:last-child {
    border-right: none;
}

.about-trust-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--el-color-primary);
}

.about-trust-stat em {
    display: block;
    font-style: normal;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.about-section-title {
    margin: 0 0 14px;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.about-section-title.center {
    text-align: center;
    margin-bottom: 36px;
}

.about-section-desc {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.75;
    color: #64748b;
}

.about-section-desc.center {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.about-orbit-section {
    padding: 64px 0;
    background: #f8fafc;
}

.about-orbit-layout {
    display: grid;
    grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
    gap: 48px 56px;
    align-items: center;
}

.about-orbit-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-orbit-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-orbit-hub {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    margin: 0;
}

.about-orbit-desc {
    margin: 24px 0 0;
    max-width: 360px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #64748b;
    text-align: center;
}

.about-orbit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72%;
    height: 72%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 219, 254, 0.6) 0%, rgba(219, 234, 254, 0.25) 45%, rgba(255, 255, 255, 0) 72%);
    animation: aboutOrbitGlow 4s ease-in-out infinite;
}

@keyframes aboutOrbitGlow {
    0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

.about-orbit-ring-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.about-orbit-ring-wrap--1 {
    width: 100%;
    height: 100%;
    animation: aboutOrbitSpin 28s linear infinite;
}

.about-orbit-ring-wrap--2 {
    width: 74%;
    height: 74%;
    animation: aboutOrbitSpin 36s linear infinite reverse;
}

.about-orbit-ring-wrap--3 {
    width: 50%;
    height: 50%;
    animation: aboutOrbitSpin 22s linear infinite;
}

.about-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(147, 197, 253, 0.45);
}

.about-orbit-ring--1 { border-color: rgba(147, 197, 253, 0.35); }
.about-orbit-ring--2 { border-color: rgba(147, 197, 253, 0.5); }
.about-orbit-ring--3 { border-color: rgba(191, 219, 254, 0.7); }

.about-orbit-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--el-color-primary);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 16px var(--el-color-primary-alpha-12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-orbit-ring-wrap--1 .about-orbit-icon { animation: aboutOrbitCounter28 28s linear infinite; }
.about-orbit-ring-wrap--2 .about-orbit-icon { animation: aboutOrbitCounter36 36s linear infinite; }
.about-orbit-ring-wrap--3 .about-orbit-icon { animation: aboutOrbitCounter22 22s linear infinite; }

.about-orbit-icon--a { top: 4%; left: 50%; margin-left: -18px; }
.about-orbit-icon--b { bottom: 12%; right: 8%; }
.about-orbit-icon--c { top: 10%; left: 6%; }
.about-orbit-icon--d { bottom: 8%; right: 10%; }
.about-orbit-icon--e { top: 50%; left: -4px; margin-top: -18px; }
.about-orbit-icon--f { top: 6%; right: 2%; }
.about-orbit-icon--g { bottom: 6%; right: 4%; }

@keyframes aboutOrbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

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

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

.about-orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.about-orbit-core-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(96, 165, 250, 0.35);
    animation: aboutOrbitPulse 3s ease-out infinite;
}

.about-orbit-core-pulse--2 { animation-delay: 1.5s; }

@keyframes aboutOrbitPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.about-orbit-logo {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    object-fit: contain;
    animation: aboutOrbitLogoFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.2));
}

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

.about-adv-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-adv-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px var(--el-color-primary-alpha-08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-adv-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--el-color-primary-alpha-20);
    box-shadow: 0 10px 28px var(--el-color-primary-alpha-14);
}

.about-adv-card-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--el-color-primary);
    background: var(--el-color-primary-alpha-10);
    border: 1px solid var(--el-color-primary-alpha-18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-adv-card-body {
    min-width: 0;
}

.about-adv-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
}

.about-adv-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #64748b;
}

.about-content-section {
    position: relative;
    padding: 48px 0 64px;
    background: #f8fafc;
    overflow: hidden;
}

.about-content-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-content-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--el-color-primary-alpha-06) 1px, transparent 1px),
        linear-gradient(90deg, var(--el-color-primary-alpha-06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.about-content-section > .site-container {
    position: relative;
    z-index: 1;
}

.about-content-heading {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
}

body.page-about .about-content-card.detail-card {
    padding: 40px;
}

@media (max-width: 992px) {
    .about-trust-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-orbit-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-orbit-left .about-orbit-visual {
        justify-content: center;
    }
    .about-orbit-desc {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .about-trust-inner { padding: 40px 0 28px; }
    .about-trust-cards { grid-template-columns: 1fr; }
    .about-trust-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-trust-stat:nth-child(2) { border-right: none; }
    .about-trust-stat:nth-child(1),
    .about-trust-stat:nth-child(2) { border-bottom: 1px solid #edf2f7; }
    .about-orbit-hub { max-width: 300px; }
    .about-orbit-icon { width: 32px; height: 32px; font-size: 12px; }
    .about-orbit-icon--a { margin-left: -16px; }
    .about-orbit-icon--e { margin-top: -16px; }
    .about-orbit-logo { width: 52px; height: 52px; }
    .about-orbit-core { width: 80px; height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
    .about-orbit-ring-wrap,
    .about-orbit-icon,
    .about-orbit-glow,
    .about-orbit-logo,
    .about-orbit-core-pulse {
        animation: none !important;
    }
}

/* Download page */
body.page-saas.page-download {
    overflow-x: hidden;
}

body.page-saas.page-download .site-main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 72px);
    height: auto;
    overflow-x: hidden;
    overflow-y: visible;
}

.download-page {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - 72px - 280px);
    padding: 32px 0 24px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
}

.download-page-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f2fc 45%, #f5f9ff 100%);
    pointer-events: none;
    overflow: hidden;
}

.download-page-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0) 70%);
}

.download-page-bg-circle--1 {
    width: 520px;
    height: 520px;
    top: -120px;
    left: -80px;
}

.download-page-bg-circle--2 {
    width: 420px;
    height: 420px;
    top: 40%;
    right: -120px;
}

.download-page-bg-circle--3 {
    width: 360px;
    height: 360px;
    bottom: -80px;
    left: 35%;
}

.download-page-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.download-hero {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 8px;
}

.download-hero-title {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.download-hero-subtitle {
    margin: 0 0 12px;
    font-size: clamp(13px, 1.6vw, 16px);
    line-height: 1.75;
    color: #64748b;
}

.download-web-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--el-color-primary, #3b71e8);
    text-decoration: none;
    transition: color 0.2s;
}

.download-web-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: clamp(8px, 1.2vw, 16px);
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding-top: 0;
}

.download-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-width: 0;
    min-height: 180px;
    padding: 20px 12px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #4d8ef5 0%, #3b71e8 55%, #2f63db 100%);
    box-shadow: 0 16px 40px rgba(59, 113, 232, 0.28);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.download-card--qr {
    overflow: visible;
    cursor: default;
}

.download-card--qr:hover {
    z-index: 5;
}

@media (max-width: 992px) {
    .download-card--qr:hover {
        z-index: 1;
    }
}

@media (hover: none) {
    .download-card-qr-popover {
        display: none;
    }
}

.download-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(59, 113, 232, 0.36);
}

.download-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 10px 5px 8px;
    border-radius: 0 0 12px 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    z-index: 2;
}

.download-card-action {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    z-index: 2;
}

.download-card-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 12px 0 16px;
}

.download-card-icon-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.download-card-icon-ring .fa {
    font-size: 30px;
    line-height: 1;
}

.download-card-icon-text {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: #cf0a2c;
}

.download-card--macos .download-card-icon-ring .fa,
.download-card--ios .download-card-icon-ring .fa {
    color: #111827;
}

.download-card--windows .download-card-icon-ring .fa {
    color: #0078d4;
}

.download-card--linux .download-card-icon-ring .fa {
    color: #fcc624;
}

.download-card--android .download-card-icon-ring .fa {
    color: #3ddc84;
}

.download-card--h5 .download-card-icon-ring .fa {
    color: #e44d26;
}

.download-card-label {
    margin: 0;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    word-break: break-word;
}

.download-card-qr-popover {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    z-index: 20;
    width: 168px;
    padding: 14px 14px 12px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.download-card-qr-popover::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 4px 4px 8px rgba(15, 23, 42, 0.06);
}

.download-card--qr:hover .download-card-qr-popover,
.download-card--qr:focus-within .download-card-qr-popover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.download-card-qr-image {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 auto 8px;
    object-fit: contain;
}

.download-card-qr-tip {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
    text-align: center;
}

.download-changelog-hint {
    margin: 24px 0 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.75;
    color: #64748b;
}

.download-changelog-hint a {
    color: var(--el-color-primary, #3b71e8);
    font-weight: 600;
    text-decoration: none;
}

.download-changelog-hint a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .download-card {
        min-height: 168px;
        padding: 18px 10px 14px;
    }

    .download-card-icon-ring {
        width: 58px;
        height: 58px;
    }

    .download-card-icon-ring .fa {
        font-size: 28px;
    }

    .download-card-icon-text {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    body.page-saas.page-download .download-page-inner.site-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    body.page-saas.page-download .download-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.page-saas.page-download .download-card:nth-child(7):last-child {
        grid-column: 1 / -1;
        width: calc(50% - 6px);
        max-width: 100%;
        justify-self: center;
    }

    .download-card {
        min-height: 152px;
        padding: 14px 8px 12px;
        border-radius: 16px;
    }

    .download-card-action {
        top: 10px;
        right: 10px;
        font-size: 12px;
    }

    .download-card-badge {
        font-size: 10px;
        padding: 4px 8px 4px 6px;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .download-card-icon {
        margin: 8px 0 10px;
    }

    .download-card-icon-ring {
        width: 50px;
        height: 50px;
    }

    .download-card-icon-ring .fa {
        font-size: 24px;
    }

    .download-card-icon-text {
        font-size: 20px;
    }

    .download-page-bg-circle--1 {
        width: 280px;
        height: 280px;
        top: -60px;
        left: -40px;
    }

    .download-page-bg-circle--2 {
        width: 240px;
        height: 240px;
        right: -60px;
    }

    .download-page-bg-circle--3 {
        width: 200px;
        height: 200px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    body.page-saas.page-download .download-page {
        padding: 24px 0 20px;
    }

    body.page-saas.page-download .download-hero {
        margin-bottom: 20px;
    }

    body.page-saas.page-download .download-card {
        min-height: 148px;
        padding: 16px 10px 14px;
    }

    body.page-saas.page-download .download-card-icon-ring {
        width: 54px;
        height: 54px;
    }

    body.page-saas.page-download .download-card-icon-ring .fa {
        font-size: 26px;
    }

    body.page-saas.page-download .download-card-icon-text {
        font-size: 22px;
    }

    body.page-saas.page-download .download-changelog-hint {
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    body.page-saas.page-download .download-page-inner.site-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    body.page-saas.page-download .download-cards {
        gap: 10px;
    }

    body.page-saas.page-download .download-card {
        min-height: 136px;
        padding: 14px 8px 12px;
    }

    body.page-saas.page-download .download-card-icon-ring {
        width: 48px;
        height: 48px;
    }

    body.page-saas.page-download .download-card-icon-ring .fa {
        font-size: 22px;
    }

    body.page-saas.page-download .download-card-icon-text {
        font-size: 18px;
    }
}

@media (max-height: 820px) {
    body.page-saas.page-download .download-page {
        min-height: calc(100vh - 72px - 240px);
        padding: 16px 0 12px;
    }

    body.page-saas.page-download .download-hero {
        margin-bottom: 18px;
    }

    body.page-saas.page-download .download-hero-title {
        font-size: clamp(24px, 3vw, 36px);
    }

    body.page-saas.page-download .download-card {
        min-height: 140px;
        padding: 14px 8px 12px;
    }

    body.page-saas.page-download .download-card-icon-ring {
        width: 56px;
        height: 56px;
    }

    body.page-saas.page-download .download-card-icon-ring .fa {
        font-size: 26px;
    }

    body.page-saas.page-download .download-changelog-hint {
        margin-top: 16px;
        font-size: 14px;
    }
}

html[data-theme="dark"] body.page-saas.page-download .download-page-bg {
    background: linear-gradient(180deg, #0f172a 0%, #111827 50%, #0b1220 100%);
}

html[data-theme="dark"] body.page-saas.page-download .download-hero-title {
    color: var(--saas-text, #f8fafc);
}

html[data-theme="dark"] body.page-saas.page-download .download-hero-subtitle {
    color: var(--saas-text-muted, #94a3b8);
}

html[data-theme="dark"] body.page-saas.page-download .download-card-qr-popover {
    background: var(--saas-surface, #1e293b);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] body.page-saas.page-download .download-card-qr-popover::after {
    background: var(--saas-surface, #1e293b);
}

html[data-theme="dark"] body.page-saas.page-download .download-card-qr-tip {
    color: var(--saas-text-muted, #94a3b8);
}

html[data-theme="dark"] body.page-saas.page-download .download-changelog-hint {
    color: var(--saas-text-muted, #94a3b8);
}
