:root {
    --site-primary: #1261ff;
    --site-primary-light: #2bacff;
    --site-text: #151617;
    --site-text-secondary: #546079;
    --site-muted: #8a95a8;
    --site-border: #e5edff;
    --site-bg: #ffffff;
    --site-bg-soft: #f8fafc;
    --site-radius: 16px;
    --site-gradient: linear-gradient(270deg, #24a4ff 0%, #1261ff 100%);
}

.help-center-hero {
    padding: 148px 0 56px;
    background:
            radial-gradient(circle at left top, rgba(36, 164, 255, 0.18) 0, rgba(36, 164, 255, 0) 34%),
            radial-gradient(circle at right 18%, rgba(18, 97, 255, 0.14) 0, rgba(18, 97, 255, 0) 28%),
            linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.help-center-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
    gap: 40px;
    align-items: center;
}

.help-center-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(18, 97, 255, 0.1);
    color: var(--site-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.help-center-hero__copy h1 {
    font-size: 52px;
    line-height: 1.14;
    margin-bottom: 18px;
}

.help-center-hero__copy p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--site-text-secondary);
}

.help-center-hero__art {
    display: flex;
    justify-content: flex-end;
}

.help-center-hero__art img {
    width: min(100%, 460px);
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(16, 24, 40, 0.08));
}

.help-center-body {
    padding: 0 0 88px;
    background:
            linear-gradient(180deg, rgba(248, 250, 252, 0.6) 0%, rgba(255, 255, 255, 0) 16%),
            #ffffff;
}

.help-center-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.help-center-sidebar {
    position: sticky;
    top: 104px;
}

.help-center-sidebar__panel {
    padding: 22px 20px;
    border-radius: 24px;
    border: 1px solid rgba(18, 97, 255, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
    max-height: calc(100vh - 128px);
    overflow: auto;
}

.help-center-tree {
    display: grid;
    gap: 12px;
}

.help-center-tree__group {
    border-radius: 18px;
    border: 1px solid rgba(18, 97, 255, 0.08);
    background: #ffffff;
    overflow: hidden;
}

.help-center-tree__group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--site-text);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.help-center-tree__arrow {
    color: var(--site-muted);
    transition: transform 0.2s ease;
}

.help-center-tree__group.is-expanded .help-center-tree__arrow {
    transform: rotate(0deg);
}

.help-center-tree__group:not(.is-expanded) .help-center-tree__arrow {
    transform: rotate(-90deg);
}

.help-center-tree__pages {
    display: grid;
    gap: 6px;
    padding: 0 10px 10px;
}

.help-center-tree__group:not(.is-expanded) .help-center-tree__pages {
    display: none;
}

.help-center-tree__page {
    display: block;
    padding: 11px 14px;
    border-radius: 12px;
    color: var(--site-text-secondary);
    font-size: 14px;
    line-height: 1.5;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.help-center-tree__page:hover {
    background: #eef4ff;
    color: var(--site-primary);
    transform: translateX(4px);
}

.help-center-tree__page.is-active {
    background: linear-gradient(180deg, #eef4ff 0%, #e7f0ff 100%);
    color: var(--site-primary);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(18, 97, 255, 0.08);
}

.help-center-content {
    min-width: 0;
}

.help-center-article {
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
}

.help-center-current__head {
    margin-bottom: 28px;
}

.help-center-current__meta {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(18, 97, 255, 0.09);
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.help-center-current__head h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

.help-center-current__head p {
    color: var(--site-text-secondary);
    font-size: 16px;
    line-height: 1.9;
}

.help-center-current__body {
    min-height: 620px;
    color: var(--site-text);
    line-height: 1.9;
}

.help-center-current__body h1,
.help-center-current__body h2,
.help-center-current__body h3,
.help-center-current__body h4 {
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--site-text);
}

.help-center-current__body p,
.help-center-current__body ul,
.help-center-current__body ol,
.help-center-current__body blockquote {
    margin-bottom: 18px;
}

.help-center-current__body ul,
.help-center-current__body ol {
    padding-left: 22px;
}

.help-center-current__body li {
    margin-bottom: 10px;
    color: var(--site-text-secondary);
}

.help-center-current__body img {
    display: block;
    max-width: 100%;
    margin: 22px 0;
    border-radius: 16px;
    border: 1px solid rgba(18, 97, 255, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.help-center-current__body blockquote {
    margin-left: 0;
    padding: 14px 18px;
    border-left: 4px solid rgba(18, 97, 255, 0.3);
    border-radius: 16px;
    background: #f7faff;
    color: var(--site-text-secondary);
}

.help-center-current__body table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border: 1px solid rgba(18, 97, 255, 0.1);
    color: var(--site-text-secondary);
}

.help-center-current__body th,
.help-center-current__body td {
    padding: 12px 14px;
    border: 1px solid rgba(18, 97, 255, 0.1);
    text-align: left;
    vertical-align: top;
}

.help-center-current__body th {
    background: #f7faff;
    color: var(--site-text);
    font-weight: 700;
}

.help-center-current__body tr:nth-child(even) td {
    background: rgba(247, 250, 255, 0.55);
}

.help-center-current__pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.help-center-current__pager-item {
    display: grid;
    gap: 10px;
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid rgba(18, 97, 255, 0.08);
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.help-center-current__pager-item span {
    color: var(--site-muted);
    font-size: 13px;
}

.help-center-current__pager-item strong {
    color: var(--site-text);
    font-size: 16px;
    line-height: 1.7;
}

.help-center-current__pager-item.is-empty strong {
    color: var(--site-text-secondary);
}

@media (max-width: 1200px) {
    .help-center-hero__inner,
    .help-center-layout {
        grid-template-columns: 1fr;
    }

    .help-center-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .help-center-hero {
        padding: 126px 0 44px;
    }

    .help-center-hero__copy h1 {
        font-size: 34px;
    }

    .help-center-hero__copy p,
    .help-center-current__head p,
    .help-center-current__body li {
        font-size: 15px;
    }

    .help-center-hero__art,
    .help-center-article {
        padding: 22px;
        border-radius: 22px;
    }

    .help-center-hero__art {
        padding: 0;
        justify-content: center;
    }

    .help-center-current__head h2 {
        font-size: 24px;
    }

    .help-center-current__pager {
        grid-template-columns: 1fr;
    }
}

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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--site-text);
    background: var(--site-bg);
    line-height: 1.5;
}

body.modal-open {
    overflow: hidden;
}

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

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

.official-page {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.official-page--help-center {
    overflow: visible;
}

.official-page--error {
    background:
            radial-gradient(circle at 16% 18%, rgba(36, 164, 255, 0.16) 0, rgba(36, 164, 255, 0) 26%),
            radial-gradient(circle at 84% 14%, rgba(18, 97, 255, 0.12) 0, rgba(18, 97, 255, 0) 24%),
            linear-gradient(180deg, #f5f8ff 0%, #ffffff 36%);
}

.site-container {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
}

.gradient-text {
    background: var(--site-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-btn:hover {
    transform: translateY(-2px);
}

.site-btn--primary {
    color: #fff;
    background: var(--site-gradient);
    box-shadow: 0 8px 20px rgba(18, 97, 255, 0.24);
}

.site-btn--logged-in {
    color: var(--site-primary);
    background: #eef4ff;
    border-color: #c8dcff;
    box-shadow: none;
    cursor: default;
}

.site-btn--logged-in:hover {
    transform: none;
}

.site-btn--logged-in:disabled {
    opacity: 1;
}

.site-btn--outline {
    color: var(--site-primary);
    background: transparent;
    border-color: var(--site-primary);
}

.site-btn--large {
    min-width: 192px;
    height: 56px;
    font-size: 18px;
}

.site-error {
    padding: 148px 0 88px;
}

.site-error__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
    gap: 36px;
    align-items: stretch;
}

.site-error__content {
    padding: 48px;
    border-radius: 32px;
    border: 1px solid rgba(18, 97, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.94) 100%);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

.site-error__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(18, 97, 255, 0.1);
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-error__code {
    margin-top: 18px;
    font-size: clamp(78px, 11vw, 156px);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: rgba(18, 97, 255, 0.14);
}

.site-error__content h1 {
    margin-top: 10px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
}

.site-error__desc {
    max-width: 680px;
    color: var(--site-text-secondary);
    font-size: 17px;
    line-height: 1.9;
}

.site-error__desc {
    margin-top: 18px;
}

.site-error__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.site-error__card {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 100%;
    padding: 18px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 97, 255, 0.12) 0%, rgba(36, 164, 255, 0.08) 100%);
    border: 1px solid rgba(18, 97, 255, 0.1);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.08);
}

.site-error__card-ring {
    position: absolute;
    inset: auto auto 12% -12%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 28px solid rgba(18, 97, 255, 0.1);
}

.site-error__card::after {
    content: "";
    position: absolute;
    top: -42px;
    right: -28px;
    width: 176px;
    height: 176px;
    border-radius: 42px;
    background: linear-gradient(180deg, rgba(36, 164, 255, 0.28) 0%, rgba(18, 97, 255, 0.08) 100%);
    transform: rotate(24deg);
}

.site-error__card-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.site-error__card-panel h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.site-error__card-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(18, 97, 255, 0.08);
    color: var(--site-text);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-error__card-panel a::after {
    content: "→";
    color: var(--site-primary);
}

.site-error__card-panel a:hover {
    color: var(--site-primary);
    transform: translateX(4px);
}

.site-error__card-panel a:last-child {
    border-bottom: none;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    height: 72px;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(229, 237, 255, 0.8);
}

.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-logo {
    width: 108px;
    height: 26px;
    display: flex;
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.site-nav__link {
    font-size: 16px;
    color: var(--site-text);
    transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.active {
    color: var(--site-primary);
    font-weight: 600;
}

.site-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.site-phone img {
    width: 24px;
    height: 24px;
}

.site-user-menu {
    position: relative;
}

.site-user-menu[hidden] {
    display: none !important;
}

.site-user-menu__trigger {
    min-width: 168px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #d8e6ff;
    background: #fff;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--site-text);
    cursor: pointer;
}

.site-user-menu__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f0ff;
    color: var(--site-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    flex-shrink: 0;
}

.site-user-menu__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-user-menu__name {
    max-width: 96px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 500;
}

.site-user-menu__arrow {
    font-size: 12px;
    color: var(--site-muted);
    line-height: 1;
}

.site-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #e4ecff;
    background: #fff;
    box-shadow: 0 14px 32px rgba(15, 35, 95, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1200;
}

.site-user-menu__dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.site-user-menu:hover .site-user-menu__dropdown,
.site-user-menu:focus-within .site-user-menu__dropdown,
.site-user-menu.is-open .site-user-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.site-user-menu__item {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 12px;
    font-size: 14px;
    color: var(--site-text);
    cursor: pointer;
}

.site-user-menu__item:hover {
    background: #f2f6ff;
}

.site-user-menu__item--danger {
    color: #e34d59;
}

.floating-action {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 160px;
    border-radius: 28px;
    background: linear-gradient(180deg, #1261ff 0%, #1ea7ff 100%);
    border: 2px solid #fff;
    box-shadow: 0 8px 24px rgba(18, 97, 255, 0.3);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.floating-action:hover {
    transform: translateY(-50%) scale(1.03);
}

.floating-action__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.floating-action span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.contact-modal-shell {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.contact-modal-shell.is-visible {
    display: block;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.contact-modal {
    position: relative;
    width: min(520px, calc(100% - 40px));
    margin: 7vh auto 0;
    border-radius: 24px;
    padding: 44px 44px 36px;
    background: linear-gradient(1deg, #fff 67.25%, #ecf1ff 84.22%, #deedff 98.18%);
    box-shadow: 0 24px 80px rgba(15, 35, 95, 0.18);
}

.contact-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #f3f5f8;
    cursor: pointer;
}

.contact-modal h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-modal__subtitle {
    font-size: 14px;
    color: #6b6f76;
    margin-bottom: 20px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form__field {
    display: grid;
    gap: 6px;
}

.contact-form__field label {
    font-size: 14px;
    color: #34363c;
}

.contact-form__field label span {
    color: #ff4d4f;
    margin-left: 4px;
}

.contact-form__field input {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d9dde5;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__field input:focus {
    border-color: var(--site-primary);
    box-shadow: 0 0 0 2px rgba(18, 97, 255, 0.14);
}

.contact-form__error {
    min-height: 16px;
    font-size: 12px;
    color: #cf1322;
}

.contact-form__feedback {
    min-height: 18px;
    font-size: 13px;
}

.contact-form__feedback.success {
    color: #107c41;
}

.contact-form__feedback.error {
    color: #cf1322;
}

.contact-form__submit {
    width: 100%;
}

.site-footer {
    background: var(--site-bg-soft);
    padding: 72px 0 40px;
}

.site-footer__content {
    display: flex;
    justify-content: space-between;
    gap: 56px;
}

.site-footer__brand {
    max-width: 320px;
}

.site-footer__logo {
    width: 108px;
    margin-bottom: 20px;
}

.site-footer__desc {
    font-size: 14px;
}

.site-footer__label {
    margin-top: 32px;
    font-size: 14px;
    color: var(--site-text-secondary);
}

.site-footer__phone {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
}

.site-footer__links {
    display: flex;
    gap: 60px;
}

.site-footer__links section {
    display: grid;
    gap: 12px;
}

.site-footer__links h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.site-footer__links a {
    font-size: 14px;
    color: var(--site-text-secondary);
}

.site-footer__links a:hover {
    color: var(--site-primary);
}

.site-footer__bottom {
    margin-top: 40px;
}

.site-footer__line {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.site-footer__friend-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--site-text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.site-footer__friend-label {
    color: var(--site-text);
    font-weight: 600;
}

.site-footer__friend-row a {
    color: var(--site-text-secondary);
}

.site-footer__friend-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.site-footer__friend-row a:hover {
    color: var(--site-primary);
}

.site-footer__bottom p {
    text-align: center;
    font-size: 14px;
    color: var(--site-muted);
}

.news-hero {
    position: relative;
    padding: 148px 0 72px;
    background:
            radial-gradient(circle at left top, rgba(18, 97, 255, 0.12) 0, rgba(18, 97, 255, 0) 32%),
            radial-gradient(circle at right 18%, rgba(43, 172, 255, 0.14) 0, rgba(43, 172, 255, 0) 26%),
            linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.news-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/website/official/images/template-bg.png') center/cover no-repeat;
    opacity: 0.92;
}

.news-hero__content {
    position: relative;
    z-index: 1;
}

.news-hero__content h1 {
    font-size: 52px;
    margin-bottom: 18px;
}

.news-hero__content p {
    max-width: 1180px;
    color: var(--site-text-secondary);
    font-size: 18px;
    line-height: 1.9;
}

.news-page {
    padding: 0 0 88px;
}

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

.news-main {
    display: grid;
    gap: 16px;
}

.news-card {
    display: flex;
    flex-direction: column;
    height: 245px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(18, 97, 255, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.06);
}

.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--site-text-secondary);
    font-size: 14px;
}

.news-card__category {
    color: var(--site-primary);
    font-weight: 600;
}

.news-card__publish-time {
    color: var(--site-text-secondary);
}

.news-card h2 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.35;
}

.news-card h2 a:hover,
.news-card__more:hover,
.news-sidebar__list a:hover {
    color: var(--site-primary);
}

.news-card__summary {
    margin-bottom: 18px;
    color: var(--site-text-secondary);
    line-height: 1.8;
    flex: 1 1 auto;
    display: -webkit-box;
    min-height: calc(1.8em * 2);
    max-height: calc(1.8em * 2);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.news-card__read,
.news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card__read {
    color: var(--site-text-secondary);
    font-size: 14px;
}

.news-card__read svg,
.news-card__more svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.news-card__more {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--site-primary);
    font-weight: 600;
}

.news-card__more:hover {
    background: #dfeaff;
}

.news-main__empty {
    padding: 36px 28px;
    border-radius: 24px;
    border: 1px dashed rgba(18, 97, 255, 0.16);
    background: #f8fbff;
    color: var(--site-text-secondary);
    text-align: center;
}

.news-pagination {
    justify-content: flex-start;
}

.news-sidebar {
    display: grid;
    width: 370px;
    gap: 20px;
    justify-self: end;
    box-sizing: border-box;
}

.news-sidebar__section {
    width: 370px;
    box-sizing: border-box;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(18, 97, 255, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.news-sidebar__section--featured {
    padding-top: 18px;
}

.news-sidebar__head {
    margin-bottom: 16px;
}

.news-sidebar__head h2 {
    font-size: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-featured {
    position: relative;
}

.news-featured__item {
    display: none;
}

.news-featured__item.is-active {
    display: block;
}

.news-featured__cover {
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(160deg, #dce8ff 0%, #eef4ff 100%);
    aspect-ratio: 3 / 2;
}

.news-featured__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--site-primary);
    font-size: 20px;
    font-weight: 700;
}

.news-featured__item h3 {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.5;
    min-height: calc(1.5em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured__dots {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.news-featured__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 97, 255, 0.18);
    cursor: pointer;
}

.news-featured__dot.is-active {
    background: var(--site-primary);
}

.news-sidebar__empty {
    color: var(--site-text-secondary);
    font-size: 14px;
}

.news-sidebar__list {
    display: grid;
    gap: 12px;
}

.news-sidebar__list li {
    list-style: none;
    min-width: 0;
}

.news-sidebar__list a {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 2ch;
    color: var(--site-text);
    line-height: 1.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-sidebar__placeholder {
    display: block;
    min-height: 28px;
}

.news-sidebar__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-sidebar__filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--news-filter-border, rgba(18, 97, 255, 0.1));
    background: var(--news-filter-bg, #ffffff);
    color: var(--news-filter-color, var(--site-text));
    line-height: 1;
    font-size: 13px;
    transition: all 0.2s ease;
    max-width: 100%;
}

.news-sidebar__filter:hover {
    border-color: var(--news-filter-color, rgba(18, 97, 255, 0.3));
    color: var(--news-filter-color, var(--site-primary));
}

.news-sidebar__filter em {
    font-style: normal;
    color: inherit;
    font-size: 12px;
    opacity: 0.72;
}

.news-sidebar__filter span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-sidebar__filter.is-active {
    border-color: var(--news-filter-color, transparent);
    background: var(--news-filter-bg, #eaf1ff);
    color: var(--news-filter-color, var(--site-primary));
    font-weight: 600;
}

.news-sidebar__filter.is-active em {
    color: inherit;
}

.news-detail-hero {
    padding: 148px 0 40px;
    background:
            radial-gradient(circle at left top, rgba(18, 97, 255, 0.12) 0, rgba(18, 97, 255, 0) 32%),
            linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.news-detail__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    color: var(--site-text-secondary);
    font-size: 15px;
}

.news-detail__breadcrumb a {
    color: var(--site-text);
}

.news-detail__breadcrumb span {
    color: var(--site-text-secondary);
}

.news-detail-hero h1 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 16px;
    text-align: center;
    font-size: 40px;
    line-height: 1.28;
}

.news-detail__author {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--site-text-secondary);
    font-size: 15px;
}

.news-detail__author a {
    color: var(--site-primary);
    text-decoration: none;
    font-weight: 600;
}

.news-detail__cover {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.news-detail__cover img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.news-detail-content {
    padding: 0 0 88px;
}

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

.news-detail-main {
    display: grid;
    gap: 24px;
}

.news-detail-article {
    width: 860px;
    max-width: 860px;
    min-height: 600px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 28px;
    border: 1px solid rgba(18, 97, 255, 0.08);
    background: #ffffff;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
    color: var(--site-text);
    line-height: 1.95;
}

.news-detail-article__tagsline {
    margin-bottom: 20px;
    color: var(--site-text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.news-detail-article__tagslabel {
    color: var(--site-text);
    font-weight: 600;
}

.news-detail-article p,
.news-detail-article li {
    color: var(--site-text-secondary);
    line-height: 1.95;
}

.news-detail-article h1,
.news-detail-article h2,
.news-detail-article h3,
.news-detail-article h4 {
    margin: 26px 0 14px;
    color: var(--site-text);
}

.news-detail-article a {
    color: var(--site-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-detail-article ul,
.news-detail-article ol {
    margin: 16px 0;
    padding-left: 22px;
}

.news-detail-article blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    border-left: 4px solid rgba(18, 97, 255, 0.35);
    border-radius: 0 16px 16px 0;
    background: #f7faff;
}

.news-detail-article table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
}

.news-detail-article th,
.news-detail-article td {
    padding: 12px 14px;
    border: 1px solid rgba(18, 97, 255, 0.1);
    text-align: left;
}

.news-detail-article th {
    background: #f7faff;
    color: var(--site-text);
}

.news-detail-article img {
    max-width: 100%;
    border-radius: 18px;
    margin: 18px 0;
}

.news-detail-more {
    max-width: 860px;
    margin: 32px auto 0;
    display: grid;
    gap: 24px;
}

.news-detail-more__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.news-detail-more__card {
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(18, 97, 255, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    color: var(--site-text);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.news-detail-more__card strong {
    font-size: 16px;
    line-height: 1.7;
}

.news-detail-more__card--empty {
    color: var(--site-text-secondary);
}

.news-detail-more__label {
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.news-detail-more__reads {
    padding: 24px 26px;
    border-radius: 24px;
    border: 1px solid rgba(18, 97, 255, 0.1);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.news-detail-more__reads h2 {
    margin-bottom: 16px;
    font-size: 22px;
}

.news-detail-more__reads ul {
    display: grid;
    gap: 12px;
    padding-left: 0;
}

.news-detail-more__reads li {
    list-style: none;
}

.news-detail-more__reads a {
    display: block;
    color: var(--site-text);
    line-height: 1.8;
}

.news-detail-more__reads a:hover,
.news-detail-more__card:hover strong {
    color: var(--site-primary);
}

.news-detail-more__empty {
    color: var(--site-text-secondary);
}

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

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

    .news-sidebar {
        width: 100%;
    }

    .news-sidebar__section {
        width: 100%;
    }

    .news-detail-article {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .news-hero,
    .news-detail-hero {
        padding-top: 124px;
    }

    .news-hero__content h1 {
        font-size: 40px;
    }

    .news-card,
    .news-sidebar__section,
    .news-detail-article {
        padding: 22px;
    }

    .news-card h2,
    .news-detail-hero h1 {
        font-size: 30px;
    }

    .news-card__footer {
        justify-content: flex-start;
    }

    .news-detail__breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
    }

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

.site-cta {
    position: relative;
    padding: 136px 40px 92px;
    overflow: hidden;
}

.site-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-cta__content {
    position: relative;
    text-align: center;
}

.site-cta__content h2 {
    font-size: 40px;
    margin-bottom: 44px;
}

.site-cta__highlight {
    color: #146cff;
}

.site-cta__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.home-hero {
    position: relative;
    height: 100vh;
    min-height: 760px;
    padding-top: 72px;
}

.home-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 128px;
}

.home-hero__content h1 {
    font-size: 52px;
    line-height: 1.3;
}

.home-hero__content p {
    margin-top: 10px;
    font-size: 22px;
    color: var(--site-text-secondary);
}

.home-hero__content .site-btn {
    margin-top: 24px;
}

.home-showcase {
    padding: 20px 0 76px;
    background: #fff;
}

.home-showcase h2 {
    text-align: center;
    font-size: 40px;
}

.home-showcase__carousel {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

.home-showcase__mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 2;
    pointer-events: none;
}

.home-showcase__mask--left {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.home-showcase__mask--right {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.home-showcase__track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 28px 0;
    animation: showcase-scroll 32s linear infinite;
}

.home-showcase__track:hover {
    animation-play-state: paused;
}

@keyframes showcase-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc((-404px * 6)));
    }
}

.showcase-card {
    width: 380px;
    height: 416px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-card__body {
    padding: 28px 24px 0;
}

.showcase-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.showcase-card p {
    font-size: 18px;
    color: var(--site-text-secondary);
    line-height: 1.5;
}

.showcase-card__preview {
    width: 330px;
    margin: 0 auto 24px;
}

.home-showcase__more {
    margin-top: 8px;
    text-align: center;
}

.home-features {
    padding: 24px 0 0;
}

.home-features h2 {
    text-align: center;
    font-size: 40px;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 12px 0 54px;
    flex-wrap: wrap;
}

.feature-tabs__item {
    border: none;
    border-radius: 40px;
    background: transparent;
    padding: 12px 36px;
    font-size: 20px;
    cursor: pointer;
}

.feature-tabs__item.active {
    background: linear-gradient(135deg, #d0d6ff 0%, #cbdcff 100%);
    font-weight: 600;
}

.home-features__display {
    background: linear-gradient(85deg, #d1f0ff 0.1%, #bfd7ff 41.15%, #e3daff 74.45%, #9dbcff 109.08%);
    border-radius: 78px;
    min-height: 560px;
    padding: 30px 0;
}

.feature-panel {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.feature-panel.active {
    display: flex;
}

.feature-panel__text {
    width: 520px;
}

.feature-panel__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.feature-panel__text h3 {
    font-size: 36px;
    line-height: 1.4;
}

.feature-panel__text p {
    margin-top: 14px;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1.5;
    color: var(--site-text-secondary);
}

.feature-panel__image {
    width: min(620px, 48%);
}

.core-advantages {
    padding: 96px 0 0;
    background: var(--site-bg-soft);
}

.core-advantages h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 52px;
}

.core-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.core-advantages__card {
    background: #fff;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    padding: 30px 24px;
}

.core-advantages__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
}

.core-advantages__card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.core-advantages__card p {
    color: var(--site-text-secondary);
    font-size: 16px;
}

.core-advantages__card ul {
    margin-top: 18px;
    list-style: none;
    display: grid;
    gap: 8px;
}

.core-advantages__card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--site-text-secondary);
}

.core-advantages__card li img {
    width: 14px;
    height: 14px;
}

.solutions-hero {
    position: relative;
    padding: 150px 0 94px;
}

.solutions-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/website/official/images/solution/solution-bg.png') center/cover no-repeat;
}

.solutions-hero__content {
    position: relative;
    text-align: center;
}

.solutions-hero__content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.solutions-hero__content p {
    max-width: 980px;
    margin: 0 auto;
    font-size: 20px;
    color: #4b576c;
}

.solutions-hero__actions {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.solutions-grid-section {
    padding: 74px 0;
}

.solutions-grid-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 44px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.solution-card {
    border-radius: 14px;
    border: 1px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 24px;
    display: grid;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

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

.solution-card__head h3 {
    font-size: 22px;
    line-height: 1.4;
}

.solution-card__head img {
    width: 70px;
    height: 70px;
}

.solution-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 52px;
}

.solution-card__tags span {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    box-sizing: border-box;
}

.solution-card p {
    margin-top: 6px;
    color: var(--site-text-secondary);
    line-height: 1.9;
    font-size: 14px;
}

.solution-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 42px;
    border-radius: 8px;
    color: #fff;
    background: var(--card-theme);
    border: none;
    margin-top: 4px;
}

.solution-detail-hero {
    padding: 132px 0 72px;
    background:
            radial-gradient(circle at top left, rgba(121, 91, 255, 0.14), transparent 30%),
            linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.solution-detail-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    gap: 40px;
    align-items: center;
}

.solution-detail-hero__back {
    display: inline-flex;
    color: var(--site-primary);
    text-decoration: none;
    font-weight: 600;
}

.solution-detail-hero__back-row {
    display: flex;
    width: 100%;
    margin-bottom: 22px;
}

.solution-detail-hero__eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(121, 91, 255, 0.1);
    color: #5d44d4;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.solution-detail-hero__copy h1 {
    font-size: 44px;
    line-height: 1.18;
    margin-bottom: 18px;
}

.solution-detail-hero__copy p {
    color: var(--site-text-secondary);
    font-size: 17px;
    line-height: 1.9;
    max-width: 720px;
}

.solution-detail-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 30px;
}

.solution-detail-hero__tags span {
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3f6fb;
    color: #475569;
    font-size: 13px;
}

.solution-detail-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.solution-detail-hero__visual-card {
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.solution-detail-hero__visual-card img,
.solution-detail-scene__visual img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.solution-detail-section {
    padding: 76px 0;
}

.solution-detail-section--alt {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.solution-detail-section--capability-block {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(247, 250, 255, 0.78) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.solution-detail-section--capability-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/website/official/images/solution-detail/capability-section-bg.png') center/cover no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

.solution-detail-section--capability-block .site-container {
    position: relative;
    z-index: 1;
}

.solution-detail-section--cta {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.solution-detail-section__head {
    margin-bottom: 26px;
    text-align: center;
}

.solution-detail-section__head--left {
    text-align: left;
}

.solution-detail-section__head span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--site-primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.solution-detail-section__head h2 {
    font-size: 18px;
    line-height: 1.65;
    color: #111827;
}

.solution-detail-card {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.solution-detail-challenges,
.solution-detail-capabilities,
.solution-detail-faq {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.solution-detail-card {
    padding: 24px;
}

.solution-detail-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.solution-detail-card--faq h3 {
    font-size: 20px;
}

.solution-detail-card p {
    color: var(--site-text-secondary);
    line-height: 1.85;
    font-size: 15px;
}

.solution-detail-card--capability {
    display: grid;
    grid-template-rows: minmax(56px, auto) minmax(92px, auto) auto;
    align-content: start;
    background: linear-gradient(180deg, #eefdf5 0%, #ffffff 42%);
}

.solution-detail-card--capability h3,
.solution-detail-card--capability p {
    margin: 0;
}

.solution-detail-card--capability ul,
.solution-detail-scene__item ul {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.solution-detail-card--capability ul {
    margin-top: 0;
    padding-left: 2em;
}

.solution-detail-card--capability li,
.solution-detail-scene__item li {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

.solution-detail-scene {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
    align-items: start;
}

.solution-detail-scene__visual {
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, #f4f7ff 0%, #edf3ff 100%);
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
}

.solution-detail-scene__list {
    display: grid;
    gap: 16px;
}

.solution-detail-scene__carousel {
    display: grid;
    gap: 18px;
}

.solution-detail-scene__viewport {
    position: relative;
    min-height: 250px;
}

.solution-detail-scene__item {
    display: none;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 22px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.solution-detail-scene__item.is-active {
    display: grid;
}

.solution-detail-scene__item strong {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 97, 255, 0.08);
    color: var(--site-primary);
    font-size: 24px;
    font-weight: 700;
}

.solution-detail-scene__item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.solution-detail-scene__item p {
    color: var(--site-text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.solution-detail-scene__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-detail-scene__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: #d7e3f7;
    padding: 0;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease;
}

.solution-detail-scene__dot.is-active {
    width: 34px;
    background: var(--site-primary);
}

.solution-detail-scene__dot:hover {
    transform: scale(1.05);
}

.solution-detail-cta {
    text-align: center;
}

.solution-detail-cta h2 {
    font-size: 36px;
    margin-bottom: 14px;
}

.solution-detail-cta p {
    max-width: 820px;
    margin: 0 auto;
    color: var(--site-text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.solution-detail-cta__actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.templates-hero {
    position: relative;
    padding: 150px 0 94px;
}

.templates-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/website/official/images/template-bg.png') center/cover no-repeat;
}

.templates-hero__content {
    position: relative;
    text-align: center;
}

.templates-hero__content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.templates-hero__content p {
    max-width: 980px;
    margin: 0 auto 36px;
    font-size: 20px;
    color: var(--site-text-secondary);
}

.template-filter {
    padding: 34px 0;
    border-bottom: 1px solid var(--site-border);
}

.template-filter__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.template-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 9px 20px;
    border-radius: 20px;
    border: 1px solid var(--site-border);
    background: #fff;
    color: var(--site-text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: all .2s ease;
}

.template-filter__btn em {
    font-style: normal;
    color: #77829b;
}

.template-filter__btn.active {
    border: none;
    color: var(--site-text);
    font-weight: 600;
    background: linear-gradient(270deg, #d0d6ff 0%, #cbdcff 100%);
}

.template-center {
    padding: 56px 0;
}

.template-center__toolbar {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.template-center__search-form {
    width: min(460px, 100%);
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.template-center__search-input {
    flex: 1;
    height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(18, 97, 255, 0.14);
    background: rgba(255, 255, 255, 0.98);
    font-size: 14px;
    color: #22314d;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.template-center__search-input:focus {
    outline: none;
    border-color: rgba(18, 97, 255, 0.4);
    box-shadow: 0 0 0 4px rgba(18, 97, 255, 0.08);
}

.template-center__search-submit {
    flex: 0 0 auto;
    height: 44px;
    padding: 0 18px;
    border: none;
    border-radius: 14px;
    background: #1261ff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(18, 97, 255, 0.22);
}

.template-group {
    margin-bottom: 52px;
}

.template-group[hidden] {
    display: none !important;
}

.template-group__header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.template-group__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.template-search-result-head p {
    margin-top: 6px;
    font-size: 14px;
    color: var(--site-text-secondary);
    line-height: 1.7;
}

.template-group__header p {
    font-size: 14px;
    color: var(--site-text-secondary);
    line-height: 1.7;
}

.template-group__more {
    color: var(--site-primary);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
}

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

.template-center__section-head {
    position: relative;
    margin-bottom: 26px;
}

.template-center__section-head .solution-detail-section__head {
    margin-bottom: 0;
}

.template-center__more-action {
    position: absolute;
    right: 0;
    top: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--site-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}

.template-center__more-action:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.template-center__card {
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 260px;
    max-height: 260px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.template-center__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    border-color: rgba(18, 97, 255, 0.16);
}

.template-center__body {
    box-sizing: border-box;
    padding: 22px;
    flex: 0 0 210px;
    min-height: 210px;
    max-height: 210px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 12px;
    overflow: hidden;
}

.template-center__body h3 {
    font-size: 20px;
    line-height: 1.3;
}

.template-center__body p {
    font-size: 14px;
    color: var(--site-text-secondary);
    line-height: 1.6;
}

.template-center__meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.template-center__category,
.template-center__version {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(18, 97, 255, 0.08);
    color: var(--site-text-secondary);
}

.template-center__identity {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.template-center__identity > div:last-child {
    min-width: 0;
}

.template-center__logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dfe9ff 0%, #cfe1ff 100%);
    color: #1849d6;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}

.template-center__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template-center__logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: none;
    flex-shrink: 0;
    transform: scale(1.22);
    transform-origin: center;
}

.template-logo-icon {
    font-size: 28px;
    color: #fff;
    line-height: 1;
}

.template-logo-icon--hero {
    font-size: 36px;
}

.template-center__provider {
    margin-top: 4px;
    font-size: 12px !important;
}

.template-center__desc {
    margin: 0;
    min-height: calc(1.6em * 3);
    max-height: calc(1.6em * 3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}

.template-center__footer {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
    flex: 0 0 50px;
    min-height: 50px;
    max-height: 50px;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--site-primary);
    font-weight: 600;
}

.template-pagination {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.template-pagination__summary {
    color: #5a6b86;
    font-size: 14px;
}

.template-pagination__pages {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.template-pagination__nav,
.template-pagination__page {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(18, 97, 255, 0.12);
    background: #fff;
    color: #4d5f7f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .2s ease;
}

.template-pagination__nav:hover,
.template-pagination__page:hover {
    border-color: rgba(18, 97, 255, 0.28);
    color: #1261ff;
}

.template-pagination__ellipsis {
    min-width: 24px;
    text-align: center;
    color: #94a3b8;
}

.template-pagination__page.active {
    border-color: transparent;
    background: linear-gradient(180deg, #dfe7ff 0%, #cfdcff 100%);
    color: #163e9d;
    font-weight: 700;
}

.template-pagination__nav.is-disabled {
    color: #a0acc2;
    background: #f7f9fc;
    border-color: rgba(15, 23, 42, 0.06);
}

.template-pagination__jump {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5a6b86;
    font-size: 14px;
}

.template-pagination__jump-input {
    width: 68px;
    height: 42px;
    padding: 0 10px;
    border-radius: 12px;
    border: 1px solid rgba(18, 97, 255, 0.14);
    background: #fff;
    color: #22314d;
    text-align: center;
}

.template-pagination__jump-input:focus {
    outline: none;
    border-color: rgba(18, 97, 255, 0.35);
}

.template-pagination__jump-submit {
    height: 42px;
    padding: 0 14px;
    border: none;
    border-radius: 12px;
    background: #1261ff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.template-empty-state {
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px dashed rgba(18, 97, 255, 0.22);
    background: linear-gradient(180deg, rgba(241, 246, 255, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
    text-align: center;
    color: var(--site-text-secondary);
}

.template-detail-hero {
    padding: 128px 0 56px;
    background:
            radial-gradient(circle at top left, rgba(18, 97, 255, 0.12), transparent 36%),
            linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.template-detail-hero__back {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--site-primary);
    text-decoration: none;
    font-weight: 600;
}

.template-detail-hero__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.template-detail-hero__identity {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.template-detail-hero__logo {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(135deg, #dfe9ff 0%, #cfe1ff 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1849d6;
    font-size: 34px;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.template-detail-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template-detail-hero__logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: none;
    flex-shrink: 0;
    transform: scale(1.22);
    transform-origin: center;
}

.template-detail-hero__copy h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.template-detail-hero__copy p {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--site-text-secondary);
}

.template-detail-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.template-detail-hero__tags span {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(18, 97, 255, 0.08);
    color: #34508c;
    font-size: 13px;
}

.template-detail-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 220px;
}

.template-detail-hero__panels {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.template-detail-panel {
    padding: 24px 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.template-detail-panel h2 {
    font-size: 22px;
    margin-bottom: 14px;
}

.template-detail-panel p,
.template-detail-panel__list li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--site-text-secondary);
}

.template-detail-panel__list {
    display: grid;
    gap: 10px;
}

.template-detail-section {
    padding: 64px 0;
}

.template-detail-section--soft {
    background: linear-gradient(180deg, rgba(244, 248, 255, 0.82) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.template-detail-section__head {
    margin-bottom: 24px;
}

.template-detail-section__head--with-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.template-detail-section__head h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.template-center__more-action--inline {
    position: static;
    flex-shrink: 0;
    align-self: center;
}

.template-detail-section__head p {
    color: var(--site-text-secondary);
    font-size: 15px;
}

.template-workspace__stats {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.template-workspace__stat-card {
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(18, 97, 255, 0.08);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.template-workspace__stat-card span {
    display: block;
    font-size: 13px;
    color: #6b7a93;
    margin-bottom: 8px;
}

.template-workspace__stat-card strong {
    font-size: 30px;
    line-height: 1;
    color: #15233d;
}

.template-workspace {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.template-workspace__nav {
    position: sticky;
    top: 104px;
    padding: 22px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7f9ff 0%, #f0f5ff 100%);
    border: 1px solid rgba(18, 97, 255, 0.08);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
    max-height: calc(100vh - 140px);
    overflow: auto;
}

.template-workspace__nav-title {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 18px;
}

.template-workspace__nav-group + .template-workspace__nav-group {
    margin-top: 20px;
}

.template-workspace__nav-group h3 {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
}

.template-workspace__nav-item {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 16px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.template-workspace__nav-item:hover,
.template-workspace__nav-item.active {
    background: rgba(18, 97, 255, 0.1);
    transform: translateX(2px);
}

.template-workspace__nav-copy {
    min-width: 0;
}

.template-workspace__nav-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #162338;
    line-height: 1.35;
}

.template-workspace__nav-meta {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #6b7a93;
}

.template-workspace__nav-arrow {
    color: #2563eb;
    font-size: 16px;
    flex-shrink: 0;
}

.template-workspace__preview {
    min-width: 0;
}

.template-preview-panel {
    display: none;
}

.template-preview-panel.active {
    display: block;
}

.template-preview-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.template-preview-panel__breadcrumbs {
    font-size: 13px;
    color: #6b7a93;
    margin-bottom: 8px;
}

.template-preview-panel__header h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #162338;
}

.template-preview-panel__header-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.template-preview-panel__type,
.template-preview-panel__badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(18, 97, 255, 0.08);
    color: #3a4a66;
    font-size: 13px;
}

.template-preview-panel__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.template-preview-panel__screen {
    padding: 18px;
    border-radius: 26px;
    background: linear-gradient(180deg, #f7f9ff 0%, #f2f6ff 100%);
    border: 1px solid rgba(18, 97, 255, 0.08);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

.template-preview-panel__screen-bar {
    width: 84px;
    height: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.1);
    margin: 0 auto 16px;
}

.template-preview-panel__banner {
    padding: 26px 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, #27b5b8 0%, #4f8bff 100%);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.template-preview-panel__banner h4 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.template-preview-panel__banner p {
    max-width: 720px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.template-preview-panel__body {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 18px;
}

.template-preview-card {
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.template-preview-card--wide {
    min-width: 0;
}

.template-preview-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.template-preview-card__head h5 {
    font-size: 20px;
    color: #162338;
}

.template-preview-card__head span {
    font-size: 13px;
    color: #6b7a93;
}

.template-preview-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.template-preview-card__tags span {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f6fb;
    color: #475569;
}

.template-preview-card__rows {
    display: grid;
    gap: 14px;
}

.template-preview-row {
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(18, 97, 255, 0.08);
    padding: 14px 16px;
}

.template-preview-row__title {
    font-size: 13px;
    color: #6b7a93;
    margin-bottom: 10px;
}

.template-preview-row__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.template-preview-row__grid span {
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff;
    color: #20304b;
    font-size: 14px;
    line-height: 1.6;
    min-width: 0;
    word-break: break-word;
}

.template-preview-card__empty {
    padding: 16px;
    border-radius: 16px;
    background: #f6f8fc;
    color: #6b7a93;
    font-size: 14px;
    line-height: 1.8;
}

.template-preview-embed {
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(243, 247, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(201, 214, 243, 0.75);
    box-shadow: 0 28px 60px rgba(27, 69, 145, 0.08);
    overflow: hidden;
}

.template-detail-section--workspace > .site-container > .template-detail-section__head {
    display: none;
}

.template-preview-embed__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px 18px;
}

.template-preview-embed__meta {
    color: #5d6b88;
    font-size: 15px;
    line-height: 1.8;
}

.template-preview-embed__link {
    flex: 0 0 auto;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.template-preview-embed__link:hover {
    text-decoration: underline;
}

.template-preview-embed__frame-shell {
    padding: 0 24px 24px;
}

.template-preview-embed__frame {
    width: 100%;
    height: 980px;
    border: 0;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.92);
}

.template-preview-page {
    margin: 0;
    background: #ffffff;
}

.template-preview-app {
    min-height: 100vh;
    padding: 0;
    color: #162033;
}

.template-preview-app__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 56px;
    padding: 0 16px;
    background: #ffffff;
    border-bottom: 1px solid #ecedee;
}

.template-preview-app__topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.template-preview-app__topbar-name {
    font-size: 16px;
    font-weight: 500;
    color: #282c32;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.template-preview-app__topbar-right {
    color: #8b95a7;
    font-size: 13px;
    white-space: nowrap;
}

.template-preview-app__logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #4c6fff;
}

.template-preview-app__logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
}

.template-preview-app__page-type,
.template-preview-app__badges span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f2f5fb;
    color: #5d6b88;
    font-size: 13px;
}

.template-preview-app__workspace {
    display: flex;
    min-height: calc(100vh - 56px);
}

.template-preview-app__sidebar {
    width: 220px;
    flex: 0 0 220px;
    padding: 16px 15px 24px;
    background: linear-gradient(180deg, #f7f9fc -10.84%, #f1f2ff 28.86%, #f5f9ff 98.76%);
    border-right: 1px solid #ecedee;
}

.template-preview-app__sidebar-title {
    font-size: 14px;
    font-weight: 500;
    color: #282c32;
    margin-bottom: 18px;
}

.template-preview-app__group + .template-preview-app__group {
    margin-top: 16px;
}

.template-preview-app__group h2 {
    margin: 0 0 10px;
    color: #7d8aa4;
    font-size: 12px;
    font-weight: 600;
    padding-left: 18px;
}

.template-preview-app__menu-item {
    width: 100%;
    border: 0;
    background: transparent;
    display: block;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: background-color .2s ease;
}

.template-preview-app__menu-item:hover,
.template-preview-app__menu-item.active {
    background: rgba(37, 99, 235, 0.09);
}

.template-preview-app__menu-name {
    display: block;
    color: #282c32;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px;
}

.template-preview-app__menu-meta {
    color: #7d8aa4;
    font-size: 12px;
    line-height: 18px;
}

.template-preview-app__content {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
    background: #ffffff;
}

.template-preview-app__panel {
    display: none;
    height: 100%;
}

.template-preview-app__panel.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.template-preview-app__panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0 12px;
    background: #ffffff;
}

.template-preview-app__panel-header--page {
    flex: 0 0 auto;
}

.template-preview-app__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7d8aa4;
    font-size: 13px;
    margin-bottom: 8px;
}

.template-preview-app__panel-header h3 {
    margin: 0;
    font-size: 28px;
}

.template-preview-app__panel-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.template-preview-app__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.template-preview-app__surface {
    flex: 1;
    border-radius: 12px;
    background: linear-gradient(180deg, #f7faff 0%, #edf3ff 100%);
    padding: 16px;
}

.template-preview-app__surface-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.template-preview-app__surface-bar span {
    width: 52px;
    height: 6px;
    border-radius: 999px;
    background: #d4dceb;
}

.template-preview-app__detail-section,
.template-preview-app__data-section {
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #eef2f8;
}

.template-preview-app__data-section {
    margin-bottom: 18px;
}

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

.template-preview-app__section-head h5 {
    margin: 0;
    font-size: 22px;
}

.template-preview-app__section-head span {
    color: #7d8aa4;
    font-size: 13px;
}

.template-preview-app__row-form {
    display: none;
}

.template-preview-app__row-form.active {
    display: block;
}

.template-preview-app__form-empty {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f5f8fd;
    color: #6b7a93;
    line-height: 1.8;
    font-size: 14px;
}

.template-preview-app__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.template-preview-app__form-item {
    padding: 18px 18px 16px;
    border-radius: 8px;
    background: #f8fbff;
    box-shadow: inset 0 0 0 1px rgba(217, 219, 222, 0.9);
    min-width: 0;
}

.template-preview-app__form-label {
    margin-bottom: 10px;
    color: #5f6f8b;
    font-size: 13px;
    font-weight: 600;
}

.template-preview-app__form-value {
    color: #162033;
    font-size: 15px;
    line-height: 1.8;
    word-break: break-word;
    white-space: pre-wrap;
}

.template-preview-app__form-value.is-placeholder {
    color: #94a3b8;
}

.template-preview-app__form-value.is-runtime {
    color: #1d4ed8;
}

.template-preview-app__table-wrap {
    overflow-x: auto;
}

.template-preview-app__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 640px;
}

.template-preview-app__table thead th {
    padding: 12px 16px;
    background: #f5f7fb;
    color: #55657f;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #e2e8f3;
}

.template-preview-app__table thead th:first-child {
    border-top-left-radius: 16px;
}

.template-preview-app__table thead th:last-child {
    border-top-right-radius: 16px;
}

.template-preview-app__table tbody td {
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #eef2f8;
    color: #22314a;
    font-size: 13px;
    vertical-align: top;
}

.template-preview-app__data-row {
    cursor: pointer;
    transition: transform .2s ease;
}

.template-preview-app__data-row:hover td,
.template-preview-app__data-row.active td {
    background: #eef4ff;
}

.template-preview-app__data-row.active td {
    color: #1d2f55;
}

.template-preview-app__empty,
.template-preview-app__empty-data {
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    color: #6b7a93;
    line-height: 1.8;
    box-shadow: 0 20px 48px rgba(20, 44, 95, 0.08);
}

@media (max-width: 1080px) {
    .template-preview-app {
        padding: 0;
    }

    .template-preview-app__topbar {
        padding: 0 12px;
    }

    .template-preview-app__workspace {
        flex-direction: column;
    }

    .template-preview-app__sidebar {
        width: auto;
        flex: none;
        border-right: 0;
        border-bottom: 1px solid #ecedee;
    }

    .template-preview-app__panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .template-preview-app__panel-side {
        align-items: flex-start;
    }

    .template-preview-app__form-grid {
        grid-template-columns: 1fr;
    }
}

.template-menu-group + .template-menu-group {
    margin-top: 28px;
}

.template-menu-group__head h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.template-menu-group__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.template-menu-card {
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.template-menu-card__meta,
.template-menu-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.template-menu-card__meta span,
.template-menu-card__badges span {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f6fb;
    color: #5a6b86;
}

.template-menu-card h4 {
    font-size: 20px;
    margin: 16px 0 14px;
}

.template-menu-card__anchor {
    display: inline-flex;
    margin-top: 18px;
    text-decoration: none;
    color: var(--site-primary);
    font-weight: 600;
}

.template-dataset-card {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.template-dataset-card + .template-dataset-card {
    margin-top: 24px;
}

.template-dataset-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.template-dataset-card__head h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.template-dataset-card__head p {
    color: var(--site-text-secondary);
    font-size: 14px;
}

.template-dataset-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.template-dataset-card__badges span,
.template-dataset-card__fields span {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(18, 97, 255, 0.08);
    color: #4a5a76;
}

.template-dataset-card__fields {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.template-dataset-card__empty {
    padding: 24px;
    border-radius: 18px;
    background: #f6f8fc;
    color: var(--site-text-secondary);
    text-align: center;
}

.template-dataset-card__table-wrap {
    overflow-x: auto;
}

.template-dataset-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.template-dataset-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    color: #55657f;
    background: #f6f8fc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.template-dataset-table tbody td {
    padding: 16px;
    font-size: 14px;
    color: #20304b;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    vertical-align: top;
    line-height: 1.7;
}

.template-dataset-table tbody tr:last-child td {
    border-bottom: none;
}

.about-hero {
    position: relative;
    padding: 150px 0 94px;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/website/official/images/about-bg.png') center/cover no-repeat;
}

.about-hero__content {
    position: relative;
    text-align: center;
}

.about-hero__content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-hero__content p {
    margin: 0 auto;
    max-width: 820px;
    font-size: 20px;
    color: #4b576c;
}

.about-hero__actions {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-company {
    padding: 96px 0;
}

.about-company h2,
.about-products h2,
.about-why h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 52px;
}

.about-company__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-company__text h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.about-company__text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--site-text-secondary);
    margin-bottom: 12px;
}

.about-company__mission {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-company__mission article {
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-company__mission img {
    width: 74px;
    height: 74px;
}

.mission-card {
    background: linear-gradient(98deg, #f0f4ff 0%, #d3dcff 50.48%, #edebfe 99.9%);
}

.vision-card {
    background: linear-gradient(97deg, #e0efff -1.03%, #c0dcff 50.83%, #e4efff 102.35%);
}

.about-company__mission h4 {
    font-size: 24px;
    margin-bottom: 8px;
}

.mission-card h4 {
    color: #6955ff;
}

.vision-card h4 {
    color: #1973ff;
}

.about-company__mission p {
    color: var(--site-text-secondary);
    line-height: 1.8;
}

.about-products {
    padding: 96px 0;
    background: var(--site-bg-soft);
}

.about-products__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-products__quote {
    border-radius: 24px;
    padding: 44px;
    background: linear-gradient(135deg, rgba(30, 167, 255, 0.1) 0%, rgba(18, 97, 255, 0.1) 100%);
}

.about-products__quote p {
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-products__quote p:last-child {
    margin-bottom: 0;
}

.about-products__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-why {
    padding: 96px 0;
    background: url('/website/official/images/about/about-why-bg.png') center/cover no-repeat;
}

.about-why__diagram {
    position: relative;
    min-height: 430px;
}

.about-why__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: url('/website/official/images/about/about-why-center.png') center/cover no-repeat;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(18, 97, 255, 0.28);
}

.about-why__item {
    position: absolute;
}

.about-why__item.top-left {
    top: 0;
    left: 0;
}

.about-why__item.top-right {
    top: 0;
    right: 0;
}

.about-why__item.bottom-left {
    left: 0;
    bottom: 0;
}

.about-why__item.bottom-right {
    right: 0;
    bottom: 0;
}

.about-why__card {
    width: 332px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 40px rgba(59, 106, 226, 0.06), 0 8px 16px rgba(30, 63, 143, 0.02);
    backdrop-filter: blur(3px);
    padding: 24px;
}

.about-why__card h3 {
    font-size: 18px;
    color: #3370fc;
    margin-bottom: 8px;
}

.about-why__card p {
    font-size: 14px;
    color: #606266;
    line-height: 1.7;
}

.about-why__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.about-why__arrow.left-arrow {
    right: -68px;
}

.about-why__arrow.right-arrow {
    left: -68px;
}

@media (max-width: 1200px) {
    .site-container {
        width: calc(100% - 48px);
    }

    .site-error__layout {
        grid-template-columns: 1fr;
    }

    .site-nav {
        gap: 18px;
    }

    .core-advantages__grid,
    .template-center__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .template-center__section-head {
        display: grid;
        gap: 18px;
    }

    .template-center__more-action {
        position: static;
        justify-self: end;
    }

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

    .feature-panel {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .feature-panel__text,
    .feature-panel__image {
        width: 100%;
    }

    .about-company__main,
    .about-products__content,
    .about-company__mission {
        grid-template-columns: 1fr;
    }

    .solution-detail-hero__inner,
    .solution-detail-scene {
        grid-template-columns: 1fr;
    }

    .solution-detail-challenges,
    .solution-detail-capabilities,
    .solution-detail-faq {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-detail-card--capability {
        grid-template-rows: minmax(52px, auto) minmax(84px, auto) auto;
    }
}

@media (max-width: 768px) {
    .site-container {
        width: calc(100% - 32px);
    }

    .site-error {
        padding: 126px 0 64px;
    }

    .site-error__content,
    .site-error__card-panel {
        padding: 28px 22px;
    }

    .site-error__actions {
        flex-direction: column;
    }

    .site-error__actions .site-btn {
        width: 100%;
    }

    .site-header {
        height: auto;
        padding: 12px 0;
    }

    .site-header__inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }

    .site-header__actions {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .site-phone {
        display: none;
    }

    .site-user-menu {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .site-user-menu__trigger {
        min-width: 0;
        width: auto;
        max-width: 100%;
    }

    .site-user-menu__name {
        max-width: 72px;
    }

    .floating-action {
        width: 48px;
        height: 132px;
        right: 10px;
    }

    .home-hero {
        min-height: 640px;
    }

    .home-hero__content {
        padding-top: 110px;
    }

    .home-hero__content h1,
    .home-showcase h2,
    .home-features h2,
    .core-advantages h2,
    .solutions-grid-section h2,
    .templates-hero__content h1,
    .about-hero__content h1,
    .about-company h2,
    .about-products h2,
    .about-why h2,
    .site-cta__content h2,
    .solutions-hero__content h1 {
        font-size: 30px;
        line-height: 1.35;
    }

    .home-hero__content p,
    .templates-hero__content p,
    .about-hero__content p,
    .solutions-hero__content p {
        font-size: 16px;
    }

    .site-cta,
    .core-advantages,
    .about-company,
    .about-products,
    .about-why,
    .solutions-grid-section,
    .template-center {
        padding-top: 64px;
    }

    .site-cta__actions,
    .about-hero__actions,
    .solutions-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .site-btn {
        width: 100%;
        max-width: 320px;
    }

    .template-center__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .solution-detail-hero__copy h1 {
        font-size: 32px;
    }

    .solution-detail-section__head span {
        font-size: 30px;
    }

    .solution-detail-challenges,
    .solution-detail-capabilities,
    .solution-detail-faq {
        grid-template-columns: 1fr;
    }

    .solution-detail-card--capability {
        grid-template-rows: auto auto auto;
    }

    .solution-detail-scene__item {
        grid-template-columns: 1fr;
    }

    .solution-detail-scene__item strong {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .solution-detail-scene__dots {
        justify-content: center;
    }

    .template-center__search-form {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }

    .template-center__search-submit {
        width: 100%;
    }

    .template-pagination {
        align-items: stretch;
    }

    .template-pagination__jump {
        justify-content: center;
        flex-wrap: wrap;
    }

    .solutions-grid,
    .core-advantages__grid,
    .template-center__grid {
        grid-template-columns: 1fr;
    }

    .template-center__section-head {
        gap: 14px;
    }

    .template-center__more-action {
        justify-self: center;
        width: auto;
    }

    .template-group__header,
    .template-detail-hero__summary,
    .template-detail-hero__panels,
    .template-dataset-card__head {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .template-menu-group__grid {
        grid-template-columns: 1fr;
    }

    .template-detail-hero__copy h1 {
        font-size: 30px;
    }

    .template-detail-section__head h2,
    .template-menu-group__head h3,
    .template-dataset-card__head h3 {
        font-size: 26px;
    }

    .template-dataset-table {
        min-width: 560px;
    }

    .showcase-card {
        width: 320px;
        height: 390px;
    }

    @keyframes showcase-scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc((-344px * 6)));
        }
    }

    .feature-tabs__item {
        font-size: 16px;
        padding: 10px 20px;
    }

    .feature-panel__text h3 {
        font-size: 28px;
    }

    .feature-panel__text p {
        font-size: 18px;
    }

    .contact-modal {
        padding: 36px 24px 24px;
    }

    .site-footer__content {
        flex-direction: column;
        gap: 30px;
    }

    .site-footer__links {
        gap: 24px;
        flex-wrap: wrap;
    }

    .about-why__diagram {
        display: grid;
        gap: 16px;
    }

    .about-why__center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 180px;
        height: 180px;
        margin: 0 auto 10px;
    }

    .about-why__item {
        position: static;
    }

    .about-why__card {
        width: 100%;
    }

    .about-why__arrow {
        display: none;
    }
}
