:root {
    --xuanshu-color-brand: #4340df;
    --xuanshu-color-page: #f8f8fa;
    --xuanshu-color-text: #1a1a1f;
    --xuanshu-color-text-secondary: #666666;
    --xuanshu-color-border: rgba(0, 0, 0, 0.2);
    --xuanshu-primary: var(--xuanshu-color-brand);
    --xuanshu-bg: var(--xuanshu-color-page);
    --xuanshu-text: var(--xuanshu-color-text);
    --xuanshu-muted: var(--xuanshu-color-text-secondary);
    --xuanshu-border: var(--xuanshu-color-border);
    --xuanshu-white: #ffffff;
    --xuanshu-font-display: 80px;
    --xuanshu-font-section: 48px;
    --xuanshu-font-subtitle: 22px;
    --xuanshu-font-body: 16px;
    --xuanshu-font-label: 14px;
    --xuanshu-control-height: 52px;
    --xuanshu-control-font: 15px;
    --xuanshu-control-padding-x: 28px;
}

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

html {
    width: 100%;
    min-width: 320px;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    position: relative;
    width: 100%;
    min-width: 320px;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    background: var(--xuanshu-bg);
    color: var(--xuanshu-text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, "Source Han Sans CN", "Source Han Sans SC", "Source Han Sans", "Noto Sans CJK SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (hover: none) and (pointer: coarse) {
    html,
    body,
    body * {
        touch-action: manipulation;
    }
}

html.is-algorithm-modal-open,
body.is-algorithm-modal-open {
    overflow: hidden;
}

body.is-algorithm-modal-open {
    position: fixed;
    top: var(--algorithm-modal-scroll-offset, 0);
    left: 0;
    right: 0;
    width: 100%;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.xuanshu-docs-disabled-wrap {
    position: relative;
    display: inline-flex;
    width: max-content;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-docs-disabled {
    opacity: 0.3;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-docs-disabled-wrap > .xuanshu-docs-disabled {
    pointer-events: none;
}

.xuanshu-docs-tooltip {
    position: absolute;
    z-index: 20;
    bottom: calc(100% + 10px);
    left: 50%;
    width: max-content;
    padding: 7px 10px;
    border-radius: 6px;
    background: #222;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.333333;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: opacity 150ms ease, transform 150ms ease;
}

.xuanshu-docs-tooltip::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #222;
    content: "";
    transform: translate(-50%, -4px) rotate(45deg);
}

.xuanshu-docs-disabled-wrap:hover .xuanshu-docs-tooltip,
.xuanshu-docs-disabled-wrap:focus-within .xuanshu-docs-tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
}

button,
input,
textarea,
select {
    font: inherit;
}

.xuanshu-header.xuanshu-page-header {
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 92px;
    background: var(--xuanshu-bg);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.xuanshu-page-header.fixed-header {
    position: fixed;
    top: 0;
    background: rgba(248, 248, 250, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.xuanshu-page-header.nav-hidden {
    transform: translateY(calc(-100% - 1px));
}

.xuanshu-page-header-inner {
    width: 100%;
    height: 100%;
    padding: 34px 90px 0;
}

.xuanshu-page-header-nav {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 81px;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}

.xuanshu-page-header-nav a {
    white-space: nowrap;
}

.xuanshu-page-header-nav a:hover {
    color: var(--xuanshu-primary);
}

main > section,
main > div {
    overflow-anchor: none;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

button,
.xuanshu-primary-button,
.xuanshu-header-button,
.xuanshu-light-button {
    user-select: none;
    -webkit-user-select: none;
}

@media (max-width: 1023px), (max-height: 499px) {
    .xuanshu-header.xuanshu-page-header {
        top: 0;
        height: 80px;
        background: transparent;
    }

    .xuanshu-page-header-inner,
    .xuanshu-page-header-nav {
        display: none;
    }

    a,
    button,
    input,
    textarea,
    select,
    label,
    [role="button"],
    [role="tab"] {
        -webkit-tap-highlight-color: transparent;
    }
}

@media (min-width: 1024px) and (min-height: 500px) {
    .xuanshu-header.xuanshu-page-header {
        display: block;
    }
}

.xuanshu-side-nav {
    display: none;
}

@media (min-width: 1024px) and (min-height: 500px) {
    .xuanshu-header {
        display: none;
    }

    .xuanshu-side-nav {
        position: fixed;
        top: 50%;
        right: 20px;
        z-index: 80;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 36px;
        transform: translateY(-50%);
        color: #1a1a1a;
    }

    .xuanshu-side-nav a,
    .xuanshu-side-nav button {
        -webkit-tap-highlight-color: transparent;
    }

    .xuanshu-side-nav-control,
    .xuanshu-side-nav-dot {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
    }

    .xuanshu-side-nav-control-face {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(175, 176, 179, 0.3);
        border-radius: 50%;
        background: rgba(175, 176, 179, 0.08);
        color: #afb0b3;
        transition:
            border-color 180ms ease,
            background-color 180ms ease,
            color 180ms ease;
    }

    .xuanshu-side-nav-control-face svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .xuanshu-side-nav-control:hover .xuanshu-side-nav-control-face,
    .xuanshu-side-nav-control:focus-visible .xuanshu-side-nav-control-face,
    .xuanshu-side-nav-control:active .xuanshu-side-nav-control-face,
    .xuanshu-side-nav-more[aria-expanded="true"] .xuanshu-side-nav-control-face {
        border-color: var(--xuanshu-primary);
        background: var(--xuanshu-primary);
        color: #ffffff;
    }

    .xuanshu-side-nav-sections {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 8px 0;
    }

    .xuanshu-side-nav-dot {
        height: 32px;
    }

    .xuanshu-side-nav-dot-face {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(175, 176, 179, 0.3);
        transform: scale(1);
        transition: transform 320ms cubic-bezier(0.2, 1.7, 0.4, 1);
    }

    .xuanshu-side-nav-dot:hover .xuanshu-side-nav-dot-face,
    .xuanshu-side-nav-dot:focus-visible .xuanshu-side-nav-dot-face {
        background: var(--xuanshu-primary);
        transform: scale(1.2);
    }

    .xuanshu-side-nav-dot.is-active .xuanshu-side-nav-dot-face {
        background: var(--xuanshu-primary);
    }

    .xuanshu-side-nav-tooltip {
        position: absolute;
        top: 50%;
        right: 44px;
        width: max-content;
        color: #1a1a1a;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        pointer-events: none;
        opacity: 0;
        transform: translate(4px, -50%);
        transition:
            opacity 150ms ease,
            transform 180ms ease;
    }

    .xuanshu-side-nav-dot > .xuanshu-side-nav-tooltip {
        right: 40px;
        padding: 6px 14px;
        border-radius: 999px;
        background: rgba(248, 248, 250, 0.9);
    }

    .xuanshu-side-nav-control:hover .xuanshu-side-nav-tooltip,
    .xuanshu-side-nav-control:focus-visible .xuanshu-side-nav-tooltip,
    .xuanshu-side-nav-dot:hover .xuanshu-side-nav-tooltip,
    .xuanshu-side-nav-dot:focus-visible .xuanshu-side-nav-tooltip {
        opacity: 1;
        transform: translate(0, -50%);
    }

    .xuanshu-side-nav.is-menu-open .xuanshu-side-nav-tooltip {
        opacity: 0;
    }

    .xuanshu-side-nav-more-wrap {
        position: relative;
    }

    .xuanshu-side-nav-menu {
        position: absolute;
        right: 44px;
        bottom: 0;
        width: max-content;
        min-width: 120px;
        padding: 9px 8px;
        border: 1px solid rgba(175, 176, 179, 0.3);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .xuanshu-side-nav-menu[hidden] {
        display: none;
    }

    .xuanshu-side-nav-menu > a {
        display: flex;
        align-items: center;
        height: 36px;
        padding: 0 10px;
        border-radius: 4px;
        color: #1a1a1a;
        font-size: 13px;
        font-weight: 500;
        line-height: 1;
        white-space: nowrap;
        transition: background-color 150ms ease;
    }

    .xuanshu-side-nav-menu > a:hover:not([aria-disabled="true"]),
    .xuanshu-side-nav-menu > a:focus-visible:not([aria-disabled="true"]) {
        background: rgba(175, 176, 179, 0.2);
    }

    .xuanshu-side-nav-menu > a[aria-disabled="true"] {
        color: #aaaaaa;
        cursor: default;
    }
    .xuanshu-side-nav.is-dark {
        color: #f0f0f1;
    }

    .xuanshu-side-nav.is-dark .xuanshu-side-nav-control-face {
        border-color: rgba(175, 176, 179, 0.2);
        background: rgba(175, 176, 179, 0.08);
        color: #afb0b3;
    }

    .xuanshu-side-nav.is-dark .xuanshu-side-nav-control:hover .xuanshu-side-nav-control-face,
    .xuanshu-side-nav.is-dark .xuanshu-side-nav-control:focus-visible .xuanshu-side-nav-control-face,
    .xuanshu-side-nav.is-dark .xuanshu-side-nav-control:active .xuanshu-side-nav-control-face,
    .xuanshu-side-nav.is-dark .xuanshu-side-nav-more[aria-expanded="true"] .xuanshu-side-nav-control-face {
        border-color: var(--xuanshu-primary);
        background: var(--xuanshu-primary);
    }

    .xuanshu-side-nav.is-dark .xuanshu-side-nav-dot-face {
        background: rgba(175, 176, 179, 0.2);
    }

    .xuanshu-side-nav.is-dark .xuanshu-side-nav-dot:hover .xuanshu-side-nav-dot-face,
    .xuanshu-side-nav.is-dark .xuanshu-side-nav-dot:focus-visible .xuanshu-side-nav-dot-face,
    .xuanshu-side-nav.is-dark .xuanshu-side-nav-dot.is-active .xuanshu-side-nav-dot-face {
        background: var(--xuanshu-primary);
    }

    .xuanshu-side-nav.is-dark .xuanshu-side-nav-tooltip {
        color: #f0f0f1;
    }

    .xuanshu-side-nav.is-dark .xuanshu-side-nav-dot > .xuanshu-side-nav-tooltip {
        background: rgba(42, 42, 42, 0.9);
    }

    .xuanshu-side-nav.is-dark .xuanshu-side-nav-menu {
        border-color: rgba(175, 176, 179, 0.2);
        background: #1a1a1a;
    }

    .xuanshu-side-nav.is-dark .xuanshu-side-nav-menu > a {
        color: #f0f0f1;
    }

    .xuanshu-side-nav.is-dark .xuanshu-side-nav-menu > a[aria-disabled="true"] {
        color: #666666;
    }}

.xuanshu-container {
    width: calc(100% - 200px);
    max-width: 1240px;
    margin: 0 auto;
}

.xuanshu-header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 200px);
    max-width: 1240px;
    height: 92px;
    margin: 0 auto;
}

.xuanshu-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.xuanshu-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.xuanshu-header-button,
.xuanshu-primary-button,
.xuanshu-secondary-button,
.xuanshu-light-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--xuanshu-control-height);
    padding: 0 var(--xuanshu-control-padding-x);
    border-radius: 999px;
    background: var(--xuanshu-primary);
    color: #ffffff;
    font-size: var(--xuanshu-control-font);
    font-weight: var(--trusafe-font-weight-en-control);
    line-height: 1;
    border: 0;
    cursor: pointer;
}

.xuanshu-header-button {
    min-height: 44px;
    padding: 0 22px;
    font-size: 14px;
}

.xuanshu-light-button {
    background: #ffffff;
    color: var(--xuanshu-text);
}

.xuanshu-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--xuanshu-control-height);
    padding: 0 var(--xuanshu-control-padding-x);
    border: 1px solid #afb0b3;
    border-radius: 999px;
    background: transparent;
    color: var(--xuanshu-text);
    font-size: var(--xuanshu-control-font);
    font-weight: var(--trusafe-font-weight-en-control);
    line-height: 1;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-section {
    position: relative;
}

.xuanshu-hero {
    height: 100vh;
    height: 100svh;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.xuanshu-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
}

.xuanshu-hero-copy-wrap {
    width: 560px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.xuanshu-hero-visual {
    min-height: 0;
}

.xuanshu-kicker {
    margin: 0 0 31px;
    color: var(--xuanshu-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-kicker-pc-break {
    display: none;
}

.xuanshu-hero h1 {
    margin: 0 0 6px;
    font-size: 80px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-hero-copy {
    width: 500px;
    max-width: 100%;
    margin: 0 auto 40px;
    color: var(--xuanshu-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-hero-scroll-cue {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 7;
    display: flex;
    width: 24px;
    height: 52px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    opacity: 0;
    transform: translateX(-50%);
    pointer-events: none;
    will-change: opacity;
}

.xuanshu-hero-scroll-cue svg {
    display: block;
    width: 24px;
    flex: none;
    fill: currentColor;
}

.xuanshu-hero-scroll-mouse {
    height: 32px;
}

.xuanshu-hero-scroll-arrow {
    height: 8px;
    animation: xuanshu-hero-scroll-arrow 1400ms ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes xuanshu-hero-scroll-arrow {
    0% {
        opacity: 0;
        transform: translateY(-2px);
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
        transform: translateY(4px);
    }

    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

.xuanshu-hero .xuanshu-primary-button {
    min-height: 64px;
    padding: 0 40px;
    font-size: 17px;
    font-weight: 600;
}

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

.xuanshu-hero .xuanshu-secondary-button {
    min-height: 64px;
    padding: 0 40px;
    font-size: 17px;
}

.xuanshu-hero .xuanshu-docs-disabled {
    background: rgba(248, 248, 250, 0.3);
}

@media (min-width: 1024px) and (min-height: 500px) and (prefers-reduced-motion: no-preference) {
    .xuanshu-hero-copy-wrap > h1,
    .xuanshu-hero-copy-wrap > .xuanshu-kicker,
    .xuanshu-hero-copy-wrap > .xuanshu-hero-copy,
    .xuanshu-hero-copy-wrap > .xuanshu-hero-actions {
        animation: xuanshu-hero-copy-enter 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .xuanshu-hero-copy-wrap > h1 {
        animation-delay: 80ms;
    }

    .xuanshu-hero-copy-wrap > .xuanshu-kicker {
        animation-delay: 160ms;
    }

    .xuanshu-hero-copy-wrap > .xuanshu-hero-copy {
        animation-delay: 240ms;
    }

    .xuanshu-hero-copy-wrap > .xuanshu-hero-actions {
        animation-delay: 320ms;
    }
}

@keyframes xuanshu-hero-copy-enter {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1024px) and (min-height: 500px) and (max-height: 699px) {
    .xuanshu-hero {
        padding-top: 0;
    }

    .xuanshu-kicker {
        margin-bottom: clamp(12px, 2.8vh, 20px);
        font-size: 17px;
        line-height: 1.4;
    }

    .xuanshu-hero h1 {
        margin-bottom: 4px;
        font-size: clamp(54px, 11vh, 72px);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-hero-copy {
        margin-bottom: clamp(18px, 4vh, 28px);
        font-size: 14px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-hero .xuanshu-primary-button,
    .xuanshu-hero .xuanshu-secondary-button {
        min-height: 52px;
        padding-right: 28px;
        padding-left: 28px;
        font-size: 15px;
    }

}

@media (min-width: 1024px) and (min-height: 500px) {
    .xuanshu-kicker-pc-break {
        display: inline;
    }
}

.xuanshu-feature {
    --feature-heading-space: 0px;
    --feature-heading-y: 0px;
    --feature-scroll-distance: 4200px;
    --feature-page-edge: max(
        clamp(40px, 5.5vw, 80px),
        calc((100vw - 1600px) / 2)
    );
    position: relative;
    height: calc(var(--feature-heading-space) + 100vh + var(--feature-scroll-distance));
    height: calc(var(--feature-heading-space) + 100svh + var(--feature-scroll-distance));
    padding: 0;
    overflow: visible;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-feature-heading {
    position: fixed;
    left: var(--feature-page-edge);
    top: 101px;
    z-index: 4;
    width: 400px;
    height: auto;
    padding: 0;
    transform: translate3d(0, var(--feature-heading-y), 0);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 500ms ease,
        visibility 0s linear 500ms;
    will-change: transform, opacity;
}

.xuanshu-feature-heading h2 {
    width: 400px;
    max-width: 100%;
    margin: 0;
    color: var(--xuanshu-text);
    font-size: 48px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-feature-pin {
    position: sticky;
    top: 0;
    z-index: 3;
    height: 100vh;
    height: 100svh;
    min-height: 720px;
}

.xuanshu-feature-mobile {
    display: none;
}

.xuanshu-feature-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    height: 100%;
    gap: 0;
}

.xuanshu-feature-visual {
    position: fixed;
    left: 50vw;
    top: 50svh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    --visual-size: min(44.46vw, max(1px, calc(100svh - 176px)), 840px);
    width: var(--visual-size);
    height: var(--visual-size);
    aspect-ratio: 1 / 1;
    min-height: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    overflow: hidden;
    contain: paint;
    isolation: isolate;
    clip-path: circle(50% at 50% 50%);
    transform: translate(-50%, -50%);
    transition:
        opacity 500ms ease,
        visibility 0s linear 500ms;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-feature.is-journey-ready .xuanshu-feature-visual {
    opacity: 1;
    visibility: visible;
    transition:
        opacity 500ms ease,
        visibility 0s;
}

.xuanshu-feature.is-journey-ready .xuanshu-feature-heading,
.xuanshu-feature.is-journey-ready .xuanshu-feature-copy {
    opacity: 1;
    visibility: visible;
    transition:
        opacity 500ms ease,
        visibility 0s;
}

.xuanshu-feature.is-returning-to-hero .xuanshu-feature-heading,
.xuanshu-feature.is-returning-to-hero .xuanshu-feature-visual,
.xuanshu-feature.is-returning-to-hero .xuanshu-feature-copy {
    transition-duration: 180ms;
}

.xuanshu-feature.is-side-nav-leaving .xuanshu-feature-heading,
.xuanshu-feature.is-side-nav-leaving .xuanshu-feature-visual,
.xuanshu-feature.is-side-nav-leaving .xuanshu-feature-copy {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: none !important;
}

.xuanshu-feature-stage {
    --feature-desktop-stage-scale: 1;
    --feature-desktop-stage-margin-x: 0px;
    --feature-desktop-stage-margin-y: 0px;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    width: 660px;
    height: 535px;
    margin: var(--feature-desktop-stage-margin-y) var(--feature-desktop-stage-margin-x);
    border-radius: 20px;
    background: transparent;
    transform: scale(var(--feature-desktop-stage-scale));
    transform-origin: center;
}

.xuanshu-feature-progress {
    position: absolute;
    right: 0;
    bottom: max(4%, 28px);
    left: 0;
    z-index: 20;
    display: flex;
    gap: 8px;
    width: max-content;
    height: 8px;
    margin: 0 auto;
    pointer-events: none;
}

.xuanshu-feature-progress i {
    display: block;
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(170, 170, 170, 0.5);
    transition: background-color 200ms ease;
}

.xuanshu-feature-progress i.is-active {
    background: var(--xuanshu-primary);
}

.xuanshu-feature-grid {
    display: none;
}

.xuanshu-feature-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.xuanshu-feature-lines {
    position: absolute;
    inset: 0;
    z-index: 6;
    overflow: visible;
    opacity: var(--feature-line-opacity, 1);
    transition: opacity 208ms ease;
}

.xuanshu-feature-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.xuanshu-feature-lines path {
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xuanshu-feature-lines .xuanshu-feature-blocked-cross {
    stroke-width: 3;
    stroke-linecap: butt;
}

.xuanshu-feature-lines circle {
    stroke-width: 1.25;
}

.xuanshu-feature-frame {
    --node-x: 0px;
    --node-y: 0px;
    --node-opacity: 0;
    --node-scale: 1;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    width: 340px;
    height: 230px;
    padding: 0;
    border: 1px solid #979797;
    border-radius: 8px;
    background: #ecedf1;
    color: var(--xuanshu-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    opacity: var(--node-opacity);
    transform: translate3d(var(--node-x), var(--node-y), 0) scale(var(--node-scale));
    transform-origin: center;
    transition: opacity 288ms ease;
    will-change: transform, opacity;
    pointer-events: none;
}

.xuanshu-feature-frame span {
    position: absolute;
    left: 21px;
    top: -15px;
    display: block;
    width: max-content;
    height: 26px;
    padding: 2px 8px;
    background: #ecedf1;
    white-space: nowrap;
}

.xuanshu-feature-frame-tall {
    height: 413px;
    overflow: visible;
}

.xuanshu-feature-frame-tall::before {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -3px;
    z-index: 5;
    height: 150px;
    background: linear-gradient(180deg, rgba(236, 237, 241, 0) 0%, rgba(236, 237, 241, 0.96) 70%, #ecedf1 100%);
    pointer-events: none;
}

.xuanshu-feature-frame[data-feature-node="virtual-frame"] {
    border-width: 1px;
}

.xuanshu-feature-node,
.xuanshu-feature-gate {
    --node-x: 0px;
    --node-y: 0px;
    --node-w: 280px;
    --node-h: 70px;
    --node-radius: 8px;
    --node-opacity: 0;
    --node-scale: 1;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    width: var(--node-w);
    height: var(--node-h);
    padding: 0 24px 0 20px;
    border: 1px solid #afb0b3;
    border-radius: var(--node-radius);
    background: #ffffff;
    color: var(--xuanshu-text);
    opacity: var(--node-opacity);
    transform: translate3d(var(--node-x), var(--node-y), 0) scale(var(--node-scale));
    transform-origin: center;
    transition: width var(--feature-node-motion-duration, 480ms) cubic-bezier(0.65, 0, 0.35, 1), height var(--feature-node-motion-duration, 480ms) cubic-bezier(0.65, 0, 0.35, 1), opacity var(--feature-node-opacity-duration, 336ms) ease, transform var(--feature-node-motion-duration, 480ms) cubic-bezier(0.65, 0, 0.35, 1), border-color 336ms ease, background-color 336ms ease;
    will-change: transform, opacity;
}

.xuanshu-feature:not(.is-feature-ready) .xuanshu-feature-node,
.xuanshu-feature:not(.is-feature-ready) .xuanshu-feature-gate,
.xuanshu-feature:not(.is-feature-ready) .xuanshu-feature-frame,
.xuanshu-feature:not(.is-feature-ready) .xuanshu-feature-lines {
    transition: none;
}

.xuanshu-feature.is-feature-scrubbing .xuanshu-feature-node,
.xuanshu-feature.is-feature-scrubbing .xuanshu-feature-gate,
.xuanshu-feature.is-feature-scrubbing .xuanshu-feature-frame,
.xuanshu-feature.is-feature-scrubbing .xuanshu-feature-lines,
.xuanshu-feature.is-feature-scrubbing .xuanshu-feature-app-index {
    transition: none;
}

.xuanshu-feature-node[data-feature-node="app"] {
    --node-x: 190px;
    --node-y: 133px;
    --node-w: 280px;
    --node-h: 270px;
    --node-opacity: 1;
}

.xuanshu-feature-node[data-feature-node="protection"] {
    --node-x: 210px;
    --node-y: 213px;
    --node-w: 240px;
    --node-h: 70px;
    --node-opacity: 1;
}

.xuanshu-feature-node[data-feature-node="code"] {
    --node-x: 210px;
    --node-y: 314px;
    --node-w: 240px;
    --node-h: 70px;
    --node-opacity: 1;
    border-color: transparent;
}

.xuanshu-feature-node[data-feature-node="code"],
.xuanshu-feature-node[data-feature-node="protection"] {
    z-index: 5;
}

.xuanshu-feature-node[data-feature-node="app"].is-tall {
    z-index: 2;
}

.xuanshu-feature-node-primary {
    border-color: transparent;
    background: var(--xuanshu-primary);
    color: #ffffff;
}

.xuanshu-feature-node.is-tall,
.xuanshu-feature-node.is-collapsing-from-tall {
    align-items: flex-start;
    padding-top: 15px;
    transition: width 224ms cubic-bezier(0.4, 0, 0.2, 1), height 224ms cubic-bezier(0.4, 0, 0.2, 1), opacity 208ms ease, transform 224ms cubic-bezier(0.4, 0, 0.2, 1), border-color 208ms ease, background-color 208ms ease;
}

.xuanshu-feature-node.is-tall .xuanshu-feature-label,
.xuanshu-feature-node.is-collapsing-from-tall .xuanshu-feature-label {
    margin-top: 7.5px;
}

.xuanshu-feature-node-compact {
    width: var(--node-w);
}

.xuanshu-feature-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    color: var(--feature-icon-color, #1a1a1a);
}

.xuanshu-feature-icon svg {
    display: block;
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.xuanshu-feature-node[data-feature-node="protection"] {
    border-color: transparent;
    background: #f5f515;
}

.xuanshu-feature-node-primary {
    --feature-icon-color: #ffffff;
}

.xuanshu-feature-node-compact .xuanshu-feature-icon {
    --feature-icon-color: #1a1a1a;
}

.xuanshu-feature-node[data-feature-node="blocked"] {
    --feature-icon-color: #888888;
    border-color: #afb0b3;
    background: #ecedf1;
    color: #888888;
}

.xuanshu-feature-node.is-icon-only {
    justify-content: center;
    padding: 0;
}

.xuanshu-feature-node.is-icon-only .xuanshu-feature-icon {
    margin-right: 0;
}

.xuanshu-feature-node.is-icon-only .xuanshu-feature-label {
    display: none;
}

.xuanshu-feature-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
}

.xuanshu-feature-app-index {
    opacity: var(--feature-app-index-opacity, 0);
    transition: opacity 208ms ease;
}

.xuanshu-feature-gate {
    justify-content: center;
    width: var(--node-w);
    height: var(--node-h);
    padding: 0 24px;
    border-radius: 999px;
    background: #f5f515;
    color: var(--xuanshu-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.xuanshu-feature-node-monitor {
    justify-content: space-between;
    border-color: transparent;
    height: 65px;
    background: #1a1a1a;
    color: #ffffff;
}

.xuanshu-feature-dots {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.xuanshu-feature-dots i {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #40df60;
}

.xuanshu-feature-dots i:nth-child(1),
.xuanshu-feature-dots i:nth-child(3) {
    background: #ef3b4a;
    transform: translate3d(0, 0.2px, 0);
}

.xuanshu-feature-copy {
    position: fixed;
    right: var(--feature-page-edge);
    bottom: 99px;
    z-index: 3;
    flex: none;
    width: 320px;
    min-width: 0;
    max-width: calc(100% - 80px);
    height: 140px;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 500ms ease,
        visibility 0s linear 500ms;
}

.xuanshu-feature-copy article {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: var(--copy-opacity, 0);
    transform: none;
    transition: opacity 200ms ease;
    pointer-events: none;
}

.xuanshu-feature-copy article.is-active {
    opacity: 1;
}

.xuanshu-feature-copy h3,
.xuanshu-key-copy h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-subheading);
}

.xuanshu-feature-copy p,
.xuanshu-key-copy p {
    margin: 0;
    color: var(--xuanshu-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: var(--trusafe-line-en-body);
}

@media (min-width: 1024px) and (min-height: 500px) and (max-height: 699px) {
    .xuanshu-feature-heading {
        top: clamp(34px, 7vh, 48px);
    }

    .xuanshu-feature-heading h2 {
        font-size: clamp(38px, 7.2vh, 48px);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-feature-pin {
        min-height: 0;
    }

    .xuanshu-feature-visual {
        height: 100vh;
        min-height: 0;
        gap: 10px;
    }

    .xuanshu-feature-copy {
        bottom: clamp(52px, 10vh, 78px);
        height: 120px;
    }

    .xuanshu-feature-copy h3 {
        margin-bottom: 8px;
        font-size: 19px;
        line-height: var(--trusafe-line-en-subheading);
    }

    .xuanshu-feature-copy p {
        font-size: 14px;
        line-height: var(--trusafe-line-en-body);
    }
}

.xuanshu-compare-inner {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    width: calc(100% - 80px);
    max-width: 1200px;
    height: 100vh;
    height: 100svh;
    margin: 0 auto;
    padding-top: max(120px, calc((100vh - 454px) / 2));
    padding-top: max(120px, calc((100svh - 454px) / 2));
    gap: clamp(32px, 4.5vw, 54px);
    overflow: hidden;
}

.xuanshu-contact-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

.xuanshu-section-copy {
    flex: 0 0 406px;
}

.xuanshu-section-copy h2 {
    margin: 0 0 28px;
    font-size: 54px;
    font-weight: 800;
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-section-copy p {
    margin: 0;
    color: var(--xuanshu-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-compare {
    height: calc(100vh + var(--compare-scroll-distance, 0px));
    height: calc(100svh + var(--compare-scroll-distance, 0px));
    padding: 0;
    overflow: visible;
    background: #f2f2f4;
    clip-path: inset(0);
}

.xuanshu-compare::before {
    content: '';
    position: sticky;
    top: 0;
    display: block;
    height: 100vh;
    height: 100svh;
    margin-bottom: -100vh;
    margin-bottom: -100svh;
    background: #f2f2f4;
    pointer-events: none;
}

.xuanshu-compare-copy {
    flex: 0 1 34%;
    min-width: 0;
    max-width: 406px;
    padding-top: 0;
}

.xuanshu-compare-copy h2 {
    margin-bottom: 20px;
    color: var(--xuanshu-text);
    font-size: 48px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-compare-copy p {
    width: 100%;
}

.xuanshu-compare-legend {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 46px;
    padding-left: 4px;
    color: var(--xuanshu-text);
    font-size: 16px;
    font-weight: 500;
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-compare-legend span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.xuanshu-compare-legend i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.xuanshu-compare-legend .is-normal {
    border: 2px solid #888888;
    background: #eeeeee;
}

.xuanshu-compare-legend .is-secure {
    border: 2px solid var(--xuanshu-primary);
    background: #ffffff;
}

.xuanshu-compare-stage {
    position: relative;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 454px;
    overflow: visible;
}

.xuanshu-compare-track {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.xuanshu-compare-column {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    gap: 20px;
}

.xuanshu-compare-card {
    display: grid;
    width: 100%;
    min-height: 0;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    isolation: isolate;
}

.xuanshu-compare-title {
    margin: 0 0 8px;
    color: #666666;
    font-size: 13px;
    font-weight: 500;
    line-height: var(--trusafe-line-en-label);
}

.xuanshu-compare-value {
    margin: 0;
    color: var(--xuanshu-text);
    font-size: 15px;
    font-weight: 500;
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-compare-layer {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    padding: 30px;
    border-radius: 12px;
}

.xuanshu-compare-normal {
    border: 1px solid var(--xuanshu-border);
    background: transparent;
}

.xuanshu-compare-normal .xuanshu-compare-title {
    color: #aaaaaa;
    opacity: var(--normal-opacity, 1);
}

.xuanshu-compare-normal .xuanshu-compare-value {
    color: #888888;
    opacity: var(--normal-opacity, 1);
}

.xuanshu-compare-normal .xuanshu-compare-title,
.xuanshu-compare-normal .xuanshu-compare-value {
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-compare-secure {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(67, 64, 223, 0.3);
    background: #ffffff;
    clip-path: inset(0 var(--clip-right, 100%) 0 0);
    transition: clip-path 120ms linear;
    will-change: clip-path;
}

.is-compare-navigation-reset .xuanshu-compare-secure {
    transition: none;
}

.xuanshu-compare-secure .xuanshu-compare-title {
    color: #aaaaaa;
}

.xuanshu-compare-secure .xuanshu-compare-value {
    color: var(--xuanshu-text);
}

.xuanshu-compare-highlight {
    color: var(--xuanshu-primary);
    margin: 0 1px;
    font-weight: 700;
}

@media (min-width: 1024px) and (min-height: 500px) {
    .xuanshu-compare-inner {
        box-sizing: border-box;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 60px;
    }

}

@media (min-width: 1300px) and (min-height: 700px) {
    .xuanshu-compare-inner {
        display: grid;
        grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
        align-content: center;
        align-items: start;
        padding-top: 0;
    }
}

@media (min-width: 1024px) and (min-height: 500px) and (max-height: 699px) {
    .xuanshu-compare-inner {
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .xuanshu-compare-copy h2 {
        margin-bottom: 12px;
        font-size: clamp(38px, 7.2vh, 48px);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-compare-copy p {
        font-size: 14px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-compare-legend {
        margin-top: clamp(20px, 4.5vh, 30px);
    }

    .xuanshu-compare-stage {
        display: flex;
        height: auto;
        min-height: 0;
        align-items: center;
        overflow: visible;
    }

    .xuanshu-compare-track {
        align-items: flex-start;
        gap: 16px;
        padding-top: 0;
    }

    .xuanshu-compare-column {
        gap: 16px;
    }

    .xuanshu-compare-layer {
        padding: clamp(14px, 2.8vh, 20px);
    }

    .xuanshu-compare-title {
        margin-bottom: 4px;
        font-size: 12px;
        line-height: var(--trusafe-line-en-label);
    }

    .xuanshu-compare-value {
        font-size: 14px;
        line-height: var(--trusafe-line-en-body);
    }
}

.xuanshu-architecture {
    position: relative;
    --architecture-heading-y: 0px;
    --architecture-page-edge: max(
        clamp(60px, 5.56vw, 80px),
        calc((100vw - 1600px) / 2)
    );
    --architecture-scroll-distance: 4200px;
    --ripple-stage-width: min(675px, 52vw);
    --ripple-max-size: var(--ripple-stage-width);
    height: calc(100vh + var(--architecture-scroll-distance));
    height: calc(100svh + var(--architecture-scroll-distance));
    padding: 0;
    overflow: visible;
}

.xuanshu-architecture-inner {
    position: sticky;
    top: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100svh;
    min-height: 720px;
    z-index: 3;
}

.xuanshu-architecture-copy {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 500ms ease,
        visibility 0s linear 500ms;
}

.xuanshu-architecture-copy::before,
.xuanshu-architecture-copy::after {
    display: none;
}

.xuanshu-architecture-inner > h2 {
    position: absolute;
    left: var(--architecture-page-edge);
    top: 101px;
    z-index: 5;
    width: 400px;
    max-width: calc(100% - (var(--architecture-page-edge) * 2));
    margin: 0;
    color: var(--xuanshu-text);
    font-size: 48px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-heading);
    transform: translate3d(0, var(--architecture-heading-y), 0);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 500ms ease,
        visibility 0s linear 500ms;
    will-change: transform, opacity;
}

.xuanshu-architecture.is-journey-copy-visible .xuanshu-architecture-inner > h2,
.xuanshu-architecture.is-journey-copy-visible .xuanshu-architecture-copy {
    opacity: 1;
    visibility: visible;
    transition:
        opacity 500ms ease,
        visibility 0s;
}

.xuanshu-architecture-list {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: clamp(420px, 42vw, 680px);
    padding: clamp(109px, 15.125vh, 121px) var(--architecture-page-edge) clamp(55px, 7.5vh, 72px);
    overflow: visible;
    transform: none;
}

.xuanshu-architecture-column {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    max-width: 320px;
    flex-direction: column;
    gap: clamp(28px, 4vh, 36px);
}

.xuanshu-architecture-column-right {
    order: 3;
    align-self: flex-start;
}

.xuanshu-architecture-column-left {
    order: 1;
    align-self: flex-end;
    transform: translateY(-30px);
}

.xuanshu-architecture-item {
    position: relative;
    display: block;
    width: 100%;
    min-height: 115px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--xuanshu-text);
    text-align: left;
    cursor: default;
    opacity: 0.3;
    transform: none;
    transition: opacity 200ms ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.xuanshu-architecture-item.is-active {
    opacity: 1;
}

.xuanshu-architecture-item::before {
    display: none;
}

.xuanshu-architecture-number {
    display: none;
}

.xuanshu-architecture-number path {
    fill: currentColor;
}

.xuanshu-architecture-item[data-architecture-layer="2"] .xuanshu-architecture-number,
.xuanshu-architecture-item[data-architecture-layer="3"] .xuanshu-architecture-number {
    width: 39px;
}

.xuanshu-architecture-item[data-architecture-layer="4"] .xuanshu-architecture-number {
    width: 40px;
}

.xuanshu-architecture-text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin: 0;
}

.xuanshu-architecture-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin: 0;
}

.xuanshu-architecture-text em {
    display: block;
    width: 100%;
    margin: 0;
    color: var(--xuanshu-text);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: var(--trusafe-line-en-label);
    transition: color 200ms ease;
}

.xuanshu-architecture-item.is-active .xuanshu-architecture-text em {
    color: var(--xuanshu-primary);
}

.xuanshu-architecture-text strong {
    display: block;
    width: fit-content;
    margin: 0;
    color: var(--xuanshu-text);
    font-size: 22px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-subheading);
}

.xuanshu-architecture-text > span:not(.xuanshu-architecture-heading) {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    color: var(--xuanshu-text);
    font-size: 14px;
    font-weight: 400;
    line-height: var(--trusafe-line-en-body);
    opacity: 0;
    transition: opacity 200ms ease;
}

.xuanshu-architecture-item.is-description-visible
    .xuanshu-architecture-text > span:not(.xuanshu-architecture-heading) {
    opacity: 1;
}

@media (min-width: 1024px) and (min-height: 500px) and (max-height: 699px) {
    .xuanshu-architecture-inner {
        min-height: 0;
    }

    .xuanshu-architecture-inner > h2 {
        top: clamp(34px, 7vh, 48px);
        font-size: clamp(38px, 7.2vh, 48px);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-architecture-list {
        gap: clamp(340px, 38vw, 520px);
        padding: clamp(64px, 12vh, 82px) var(--architecture-page-edge) clamp(24px, 5vh, 38px);
    }

    .xuanshu-architecture-column {
        max-width: 260px;
        align-self: stretch;
        justify-content: space-between;
        gap: clamp(12px, 2.5vh, 20px);
    }

    .xuanshu-architecture-column-left {
        transform: none;
        padding-top: clamp(150px, 32vh, 210px);
    }

    .xuanshu-architecture-item {
        width: 100%;
        min-height: 0;
    }

    .xuanshu-architecture-text {
        gap: 5px;
    }

    .xuanshu-architecture-text em {
        display: none;
    }

    .xuanshu-architecture-heading {
        gap: 0;
    }

    .xuanshu-architecture-text strong {
        font-size: clamp(18px, 3.8vh, 22px);
        line-height: var(--trusafe-line-en-subheading);
    }

    .xuanshu-architecture-text > span:not(.xuanshu-architecture-heading) {
        font-size: 13px;
        line-height: var(--trusafe-line-en-body);
    }
}

@media (max-width: 1023px), (max-height: 499px) {
    .xuanshu-architecture-text > span:not(.xuanshu-architecture-heading) {
        opacity: 1;
        transition: none;
    }
}

.xuanshu-architecture-connectors {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    opacity: 1;
    transition: opacity 200ms ease;
    pointer-events: none;
}

.xuanshu-architecture-connectors.is-exiting {
    opacity: 0;
}

.xuanshu-architecture-connector path {
    fill: none;
    stroke: #afb0b3;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.xuanshu-architecture-connector circle {
    fill: var(--xuanshu-bg);
    stroke: #afb0b3;
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(0);
    transition: fill 200ms ease;
}

.xuanshu-architecture-connector.is-active circle {
    fill: var(--xuanshu-white);
}

.xuanshu-architecture-connectors.is-visible .xuanshu-architecture-connector path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.xuanshu-architecture-connectors.is-visible .xuanshu-architecture-connector circle {
    transform: scale(1);
    transition:
        transform 240ms cubic-bezier(0.22, 1, 0.36, 1) 500ms,
        fill 200ms ease;
}

.xuanshu-architecture-ripple {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: min(675px, 48vw);
    height: min(655px, calc(100vh - 80px));
    height: min(655px, calc(100svh - 80px));
    min-height: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.xuanshu-ripple-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    pointer-events: none;
}

.xuanshu-key {
    padding: 247px 0 244px;
    background: #111111;
    color: #ffffff;
}

.xuanshu-key-inner {
    text-align: center;
}

.xuanshu-key h2,
.xuanshu-section-heading h2 {
    margin: 0 0 24px;
    font-size: 54px;
    font-weight: 800;
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-key > .xuanshu-container > p,
.xuanshu-section-heading p {
    width: 880px;
    max-width: 100%;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-weight: 500;
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-key h2 {
    margin-bottom: 16px;
    color: #f0f0f1;
    font-weight: 700;
}

.xuanshu-key > .xuanshu-container > p {
    font-weight: 400;
}

.xuanshu-key-stage {
    position: relative;
    width: 880px;
    max-width: 100%;
    min-height: 318px;
    margin: 83px auto 0;
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 1000ms ease-out, transform 1000ms cubic-bezier(0.05, 0.88, 0.12, 1);
}

.xuanshu-key-stage.is-entered {
    opacity: 1;
    transform: translateY(0);
}

.xuanshu-key-visual {
    position: relative;
    width: 100%;
    height: 318px;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-key-stack {
    position: absolute;
    top: 62px;
    left: 15px;
    width: 450px;
    height: 222px;
}

.xuanshu-key-card {
    --key-x: 390px;
    --key-fill: rgba(202, 201, 255, 0.30);
    --key-glow-rgb: 107, 104, 255;
    --key-glow-alpha: 1;
    --key-active-alpha: 1;
    --number-x: 23px;
    --number-y: 149px;
    --number-w: 23px;
    --number-h: 34px;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 212px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    opacity: 0;
    transform: translateX(390px);
    transition: transform 800ms cubic-bezier(0.12, 0.78, 0.18, 1), opacity 220ms ease-out;
    -webkit-tap-highlight-color: transparent;
}

.xuanshu-key-card:nth-child(1) {
    --key-x: 0px;
    --key-fill: rgba(202, 201, 255, 0.10);
    --key-glow-alpha: 0.05;
    --key-active-alpha: 0.85;
    --number-x: 22px;
    --number-y: 154px;
    --number-w: 29px;
    --number-h: 35px;
}

.xuanshu-key-card:nth-child(2) {
    --key-x: 78px;
    --key-fill: rgba(202, 201, 255, 0.15);
    --key-glow-alpha: 0.1;
    --key-active-alpha: 0.88;
    --number-x: 22px;
    --number-y: 146px;
    --number-w: 29px;
    --number-h: 35px;
}

.xuanshu-key-card:nth-child(3) {
    --key-x: 156px;
    --key-fill: rgba(202, 201, 255, 0.20);
    --key-glow-alpha: 0.2;
    --key-active-alpha: 0.91;
    --number-x: 22px;
    --number-y: 146px;
    --number-w: 30px;
    --number-h: 37px;
}

.xuanshu-key-card:nth-child(4) {
    --key-x: 234px;
    --key-fill: rgba(202, 201, 255, 0.25);
    --key-glow-alpha: 0.35;
    --key-active-alpha: 0.94;
    --number-x: 23px;
    --number-y: 146px;
    --number-w: 29px;
    --number-h: 35px;
}

.xuanshu-key-card:nth-child(5) {
    --key-x: 312px;
    --key-fill: rgba(202, 201, 255, 0.30);
    --key-glow-alpha: 0.6;
    --key-active-alpha: 0.97;
    --number-x: 22px;
    --number-y: 146px;
    --number-w: 29px;
    --number-h: 38px;
}

.xuanshu-key-card:nth-child(6) {
    --key-x: 390px;
    --key-fill: rgba(202, 201, 255, 0.35);
    --key-glow-alpha: 1;
    --key-active-alpha: 1;
    --number-x: 23px;
    --number-y: 149px;
    --number-w: 23px;
    --number-h: 34px;
}

.xuanshu-key-stage.is-entered .xuanshu-key-card {
    opacity: 1;
}

.xuanshu-key-stage.is-skip-enter .xuanshu-key-card {
    transition: transform 500ms cubic-bezier(0.12, 0.78, 0.18, 1), opacity 0ms linear;
}

.xuanshu-key-stage.is-spread .xuanshu-key-card,
.xuanshu-key-stage.is-ready .xuanshu-key-card {
    transform: translateX(var(--key-x));
}

.xuanshu-key-stage.is-ready .xuanshu-key-card {
    transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease-out;
}

.xuanshu-key-stage.is-ready.is-ready-entering .xuanshu-key-card {
    transition-duration: 740ms, 680ms;
}

.xuanshu-key-stage.is-ready .xuanshu-key-card.is-active {
    transform: translateX(var(--key-x)) translateY(-10px);
}

.xuanshu-key-card-face {
    position: absolute;
    inset: 0;
    display: block;
    background: var(--key-fill);
    clip-path: polygon(0 0, 100% 16%, 100% 100%, 0 84%);
    box-shadow: inset -2px 0 0 rgba(var(--key-glow-rgb), var(--key-glow-alpha));
    transition: background 260ms ease, box-shadow 380ms ease, opacity 380ms ease;
}

.xuanshu-key-stage:not(.is-lit) .xuanshu-key-card-face {
    box-shadow: none;
}

.xuanshu-key-stage.is-ready .xuanshu-key-card.is-active .xuanshu-key-card-face {
    background: rgba(231, 246, 19, var(--key-active-alpha));
    box-shadow: 0 0 40px 0 rgba(231, 246, 19, 0.5);
}

.xuanshu-key-number {
    position: absolute;
    left: var(--number-x);
    top: var(--number-y);
    width: var(--number-w);
    height: var(--number-h);
    opacity: 0;
    transition: opacity 420ms ease;
    pointer-events: none;
}

.xuanshu-key-number path {
    fill: currentColor;
}

.xuanshu-key-stage.is-lit .xuanshu-key-number {
    opacity: 0.2;
}

.xuanshu-key-stage.is-ready .xuanshu-key-number {
    transition-duration: 140ms;
}

.xuanshu-key-stage.is-ready .xuanshu-key-card.is-active .xuanshu-key-number {
    color: #1a1a1a;
    opacity: 1;
}

.xuanshu-key-brackets {
    position: absolute;
    top: 0;
    left: calc(10px + var(--active-key-x, 0px));
    width: 70px;
    height: 316px;
    opacity: 0;
    pointer-events: none;
    transition: left 280ms ease, opacity 360ms ease;
}

.xuanshu-key-bracket {
    position: absolute;
    left: 0;
    width: 70px;
    height: 20px;
    overflow: visible;
}

.xuanshu-key-bracket path {
    fill: none;
    stroke: rgba(170, 170, 170, 0.15);
    stroke-width: 8;
    stroke-linejoin: miter;
    stroke-linecap: square;
}

.xuanshu-key-bracket-top {
    top: 0;
    transform: translateY(-30px);
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.xuanshu-key-bracket-bottom {
    bottom: 0;
    transform: translateY(30px);
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.xuanshu-key-stage.is-ready.is-ready-entering .xuanshu-key-brackets {
    transition-duration: 860ms, 860ms;
}

.xuanshu-key-stage.is-ready.is-ready-entering .xuanshu-key-bracket {
    transition-duration: 1020ms;
}

.xuanshu-key-stage.is-ready .xuanshu-key-brackets {
    opacity: 1;
}

.xuanshu-key-stage.is-ready .xuanshu-key-bracket {
    transform: translateY(0);
}

.xuanshu-key-core {
    position: absolute;
    top: 145px;
    left: 507px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    background:
        radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.85) 0 13%, rgba(255, 255, 255, 0) 35%),
        radial-gradient(circle at 40% 36%, #8582ff 0, #6b68ff 47%, #4d49d6 100%);
    box-shadow: 0 0 60px 0 rgba(107, 104, 255, 0.5), 0 0 100px #6b68ff, inset -4px -4px 8px rgba(0, 0, 0, 0.5);
    transition: opacity 1700ms ease-out, transform 2200ms cubic-bezier(0.16, 0.72, 0.12, 1);
}

.xuanshu-key-core::after {
    content: '';
    position: absolute;
    top: 5px;
    left: -2px;
    width: 28px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    filter: blur(6px);
}

.xuanshu-key-stage.is-lit .xuanshu-key-core,
.xuanshu-key-stage.is-ready .xuanshu-key-core {
    opacity: 1;
    transform: translateY(0);
}

.xuanshu-key-stage.is-ready .xuanshu-key-core {
    animation: xuanshu-key-core-float 5.4s ease-in-out 1800ms infinite;
}

@keyframes xuanshu-key-core-float {
    0%,
    100% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(-10px);
    }

    72% {
        transform: translateY(4px);
    }
}

.xuanshu-key-copy {
    position: absolute;
    top: 94px;
    left: 631px;
    width: 320px;
    text-align: left;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 360ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.xuanshu-key-stage.is-ready.is-ready-entering .xuanshu-key-copy {
    transition-duration: 860ms, 1020ms;
}

.xuanshu-key-stage.is-ready .xuanshu-key-copy {
    opacity: 1;
    transform: translateY(0);
}

.xuanshu-key-copy h3 {
    margin: 0 0 2px;
    color: #f0f0f1;
    font-size: 32px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-subheading);
}

.xuanshu-key-optional {
    color: rgba(255, 255, 255, 0.3);
}

.xuanshu-key-copy p {
    margin: 0;
    color: #f0f0f1;
    font-size: 17px;
    font-weight: 400;
    line-height: var(--trusafe-line-en-body);
    white-space: pre-line;
}

.xuanshu-key-copy .xuanshu-key-subtitle {
    margin-bottom: 16px;
    color: #9d9cff;
    font-weight: 500;
    line-height: var(--trusafe-line-en-body);
}

@media (min-width: 1200px) and (min-height: 500px) {
    .xuanshu-key-stage {
        left: -60px;
    }

    .xuanshu-key-copy {
        width: 400px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) and (min-height: 500px) {
    .xuanshu-key-stage {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        width: 880px;
        min-height: 0;
    }

    .xuanshu-key-visual {
        flex: 0 0 auto;
        width: min(100%, 880px);
    }

    .xuanshu-key-stack {
        left: 171px;
    }

    .xuanshu-key-brackets {
        left: calc(166px + var(--active-key-x, 0px));
    }

    .xuanshu-key-core {
        left: 663px;
    }

    .xuanshu-key-copy {
        position: relative;
        top: auto;
        left: auto;
        width: min(480px, 100%);
        min-height: 200px;
        margin: 0 auto;
        text-align: center;
    }

    .xuanshu-compare-inner {
        align-items: center;
        width: calc(100% - 80px);
        max-width: none;
        margin-right: auto;
        margin-left: auto;
        padding-top: 0;
        gap: clamp(24px, 2.7vw, 32px);
    }

    .xuanshu-compare-copy {
        flex: 0 1 38%;
        max-width: 380px;
    }

    .xuanshu-compare-copy h2 {
        font-size: clamp(38px, 3.7vw, 44px);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-compare-stage {
        flex: 1 1 0;
        min-width: 0;
    }

}

.xuanshu-algorithm {
    padding: 160px 0 0;
}

.xuanshu-platforms {
    padding: 200px 0 40px;
    background: var(--trusafe-bg-page-gray);
}

.xuanshu-platforms .xuanshu-section-heading h2 {
    font-size: var(--xuanshu-font-section);
    font-weight: var(--trusafe-font-weight-en-heading);
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-platforms .xuanshu-section-heading p {
    width: 704px;
    max-width: 100%;
    margin: 0 auto;
    color: var(--xuanshu-muted);
    font-size: var(--xuanshu-font-body);
    font-weight: var(--trusafe-font-weight-en-body);
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 160px);
    justify-content: space-between;
    column-gap: 0;
    row-gap: 50px;
    width: 880px;
    max-width: 100%;
    margin: 80px auto 0;
}

.xuanshu-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    text-align: center;
}

.xuanshu-platform-card-face {
    display: grid;
    place-items: center;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    background: #ffffff;
}

.xuanshu-platform-icon,
.xuanshu-platform-icon svg {
    display: block;
    width: 64px;
    height: 64px;
}

.xuanshu-platform-card h3 {
    margin: 20px 0 0;
    color: #444444;
    font-size: 18px;
    font-weight: var(--trusafe-font-weight-en-label);
    line-height: var(--trusafe-line-en-label);
    white-space: nowrap;
}

.xuanshu-algorithm .xuanshu-section-heading h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-algorithm .xuanshu-section-heading p {
    width: 704px;
    max-width: 100%;
    margin: 0 auto;
    font-weight: 400;
}

.xuanshu-section-heading {
    text-align: center;
}

.xuanshu-section-heading p {
    color: var(--xuanshu-muted);
}

.xuanshu-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 1190px;
    max-width: 100%;
    margin: 44px auto 0;
    padding: 0;
    list-style: none;
}

.xuanshu-chip-list li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: #ffffff;
    color: var(--xuanshu-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    transition: border-color 0.2s ease;
}

.xuanshu-chip-list li * {
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.xuanshu-chip-list li:hover {
    border-color: var(--xuanshu-primary);
}

.xuanshu-chip-icon {
    display: none;
}

.xuanshu-algorithm-pop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    box-sizing: content-box;
    width: 227px;
    aspect-ratio: 1000 / 1516;
    padding: 4px;
    border-radius: 4px;
    outline: 1px solid var(--xuanshu-text);
    background: #ffffff;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(var(--pop-x, 0), var(--pop-y, 0), 0);
    visibility: hidden;
    transition: opacity 100ms ease, visibility 0s linear 100ms;
}

.xuanshu-algorithm-pop.is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 200ms ease, visibility 0s linear 0s;
}

.xuanshu-algorithm-pop img {
    display: block;
    width: 227px;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-algorithm-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 100ms ease, visibility 0s linear 100ms;
}

.xuanshu-algorithm-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 200ms ease, visibility 0s linear 0s;
}

.xuanshu-algorithm-modal-dialog {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(10px);
}

.xuanshu-algorithm-modal-frame {
    box-sizing: border-box;
    width: min(calc(100vw - 80px), 520px);
    padding: 4px;
    border: 1px solid var(--xuanshu-text);
    background: #ffffff;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25);
}

.xuanshu-algorithm-modal-dialog img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-algorithm-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-top: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: var(--xuanshu-text);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-algorithm-modal-close svg {
    width: 28px;
    height: 28px;
}

.xuanshu-algorithm-modal-close path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

@media (min-width: 1024px) and (min-height: 500px) {
    .xuanshu-algorithm-modal {
        display: none;
    }

    .xuanshu-architecture {
        margin-top: 60px;
    }
}

.xuanshu-contact {
    padding: 200px 0 100px;
    background: #f6f6f8;
}

.xuanshu-contact .xuanshu-section-copy h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-contact-email {
    display: flex;
    align-items: center;
    width: min(100%, 386px);
    min-height: 88px;
    margin-top: 40px;
    padding: 20px 22px;
    border: 1px solid #afb0b380;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    transition: opacity 200ms ease;
    user-select: none;
    -webkit-user-select: none;
}

.xuanshu-contact-email:hover,
.xuanshu-contact-email:focus-visible {
    opacity: 0.7;
}

.xuanshu-contact-email-icon {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    place-items: center;
}

.xuanshu-contact-email-icon svg {
    width: 32px;
    height: 32px;
}

.xuanshu-contact-email-copy {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.xuanshu-contact-email-title {
    color: #AAAAAA;
    font-size: 12px;
    font-weight: 600;
    line-height: var(--trusafe-line-en-label);
}

.xuanshu-contact-email-address {
    color: #444444;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    overflow-wrap: anywhere;
    user-select: text;
    -webkit-user-select: text;
}

.xuanshu-contact-inner {
    align-items: flex-start;
    width: min(calc(100% - 240px), 1200px);
    max-width: 1200px;
    gap: 5.16%;
}

.xuanshu-contact-form {
    position: relative;
    flex: 1 1 60.65%;
    max-width: 732px;
    min-height: 578px;
    padding: 65px 60px 68px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
}

.xuanshu-form-row {
    display: flex;
    gap: 32px;
    width: 100%;
}

.xuanshu-contact-field {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 18px;
}

.xuanshu-business-row .xuanshu-field-company {
    flex: 2 1 0;
}

.xuanshu-business-row .xuanshu-field-phone {
    flex: 1 1 0;
}

.xuanshu-field-full {
    width: 100%;
}

.xuanshu-contact-field label {
    display: block;
    margin-bottom: 15px;
    color: var(--xuanshu-text);
    font-size: 14px;
    font-weight: 500;
    line-height: var(--trusafe-line-en-label);
}

.xuanshu-contact-field label span {
    color: #ef3b4a;
}

.xuanshu-contact-field input,
.xuanshu-contact-field textarea {
    display: block;
    width: 100%;
    height: 56px;
    padding: 17px 18px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: rgba(164, 163, 225, 0.04);
    color: var(--xuanshu-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    outline: none;
    appearance: none;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}

.xuanshu-contact-field textarea {
    min-height: 52px;
    overflow: hidden;
    resize: none;
}

.xuanshu-contact-field input:focus,
.xuanshu-contact-field textarea:focus {
    border-color: var(--xuanshu-primary);
}

.xuanshu-contact-field.has-error input,
.xuanshu-contact-field.has-error textarea {
    border-color: #ef3b4a;
}

.xuanshu-field-error {
    min-height: 16px;
    margin: 6px 0 0;
    color: #ef3b4a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0;
}

.xuanshu-contact-field.has-error .xuanshu-field-error {
    opacity: 1;
}

.xuanshu-contact-submit {
    width: 240px;
    height: 56px;
    min-height: 56px;
    margin-top: 36px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: #4340df;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
}

.xuanshu-contact-submit:disabled {
    cursor: default;
    opacity: 0.7;
}

.xuanshu-contact-success {
    position: absolute;
    left: 60px;
    bottom: 34px;
    min-height: 18px;
    margin: 0;
    color: var(--xuanshu-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.xuanshu-contact-success.is-error {
    color: #ef3b4a;
}

.xuanshu-final-cta {
    padding: 0 0 120px;
}

.xuanshu-final-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: min(100%, 1200px);
    min-height: 392px;
    margin: 0 auto;
    padding: 80px 40px 64px;
    border-radius: 40px;
    background: #151348;
    color: #ffffff;
    text-align: center;
}

.xuanshu-final-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, #28268f 0%, #121238 100%);
}

.xuanshu-final-liquid {
    position: absolute;
    inset: -34%;
    z-index: 1;
    display: block;
    opacity: 0.96;
    pointer-events: none;
    filter: blur(18px);
    transform: translateZ(0);
}

.xuanshu-final-liquid::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 7, 36, 0.16) 0%, rgba(7, 7, 36, 0.34) 100%);
}

.xuanshu-final-liquid span {
    position: absolute;
    display: block;
    width: 48%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle at 45% 45%, rgba(138, 133, 255, 0.72) 0%, rgba(91, 86, 236, 0.34) 36%, rgba(91, 86, 236, 0) 66%);
    will-change: transform;
    animation: xuanshu-final-liquid-drift 8s ease-in-out infinite alternate;
}

.xuanshu-final-liquid span:nth-child(1) {
    left: -6%;
    top: 20%;
    width: 54%;
    background: radial-gradient(circle at 50% 50%, rgba(116, 111, 255, 0.76) 0%, rgba(66, 62, 218, 0.36) 38%, rgba(66, 62, 218, 0) 66%);
    animation-duration: 8s;
}

.xuanshu-final-liquid span:nth-child(2) {
    right: 0;
    top: 0;
    width: 46%;
    background: radial-gradient(circle at 50% 50%, rgba(31, 27, 126, 0.92) 0%, rgba(23, 21, 90, 0.58) 40%, rgba(23, 21, 90, 0) 70%);
    animation-name: xuanshu-final-liquid-cross;
    animation-duration: 9s;
}

.xuanshu-final-liquid span:nth-child(3) {
    left: 34%;
    bottom: -16%;
    width: 58%;
    background: radial-gradient(circle at 50% 50%, rgba(5, 5, 30, 0.86) 0%, rgba(10, 9, 45, 0.64) 42%, rgba(10, 9, 45, 0) 72%);
    animation-duration: 11s;
    animation-delay: -4s;
}

.xuanshu-final-liquid span:nth-child(4) {
    left: 26%;
    top: 22%;
    width: 34%;
    background: radial-gradient(circle at 50% 50%, rgba(181, 178, 255, 0.46) 0%, rgba(121, 116, 255, 0.22) 34%, rgba(121, 116, 255, 0) 62%);
    animation-name: xuanshu-final-liquid-pulse;
    animation-duration: 7s;
    animation-delay: -2s;
}

@keyframes xuanshu-final-liquid-drift {
    0% {
        transform: translate3d(-8%, -4%, 0) scale(0.9, 0.78) rotate(0deg);
    }

    45% {
        transform: translate3d(34%, -20%, 0) scale(1.32, 0.9) rotate(26deg);
    }

    100% {
        transform: translate3d(58%, 14%, 0) scale(0.86, 1.22) rotate(-18deg);
    }
}

@keyframes xuanshu-final-liquid-cross {
    0% {
        transform: translate3d(16%, -8%, 0) scale(1.12, 0.84) rotate(-12deg);
    }

    50% {
        transform: translate3d(-44%, 28%, 0) scale(1.36, 1) rotate(16deg);
    }

    100% {
        transform: translate3d(-12%, 54%, 0) scale(0.9, 1.32) rotate(-24deg);
    }
}

@keyframes xuanshu-final-liquid-pulse {
    0% {
        transform: translate3d(-28%, 14%, 0) scale(0.76);
    }

    50% {
        transform: translate3d(46%, -26%, 0) scale(1.48);
    }

    100% {
        transform: translate3d(-8%, 36%, 0) scale(0.9);
    }
}

@media (prefers-reduced-motion: reduce) {
    .xuanshu-final-liquid span {
        animation: none;
    }
}

.xuanshu-final-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xuanshu-final-panel h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-final-panel p {
    margin: 0 0 40px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-final-panel .xuanshu-light-button {
    min-width: 179px;
    min-height: 64px;
    padding: 0 36px;
    background: #ffffff;
    color: var(--xuanshu-text);
    font-size: 17px;
    font-weight: 600;
}

.xuanshu-footer {
    padding: 0 0 100px;
    color: #8a8b92;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.xuanshu-footer-inner {
    position: relative;
    padding-top: 27px;
}

.xuanshu-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.xuanshu-footer-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.5px;
    background: rgba(0, 0, 0, 0.2);
}

.xuanshu-footer nav {
    display: flex;
    gap: 42px;
}

.xuanshu-footer p {
    margin: 0;
}

@media (max-width: 1023px), (max-height: 499px) {
    .xuanshu-container,
    .xuanshu-contact-inner,
    .xuanshu-header-inner {
        width: calc(100% - 60px);
    }

    .xuanshu-header {
        top: 0;
    }

    .xuanshu-header-inner {
        height: 88px;
    }

    .xuanshu-hero {
        min-height: 620px;
        padding-top: 150px;
    }

    .xuanshu-hero-inner {
        display: block;
    }

    .xuanshu-hero-copy-wrap {
        width: 100%;
        margin-left: 0;
        flex-basis: auto;
    }

    .xuanshu-hero-visual {
        display: none;
    }

    .xuanshu-hero-scroll-cue {
        display: none;
    }

    .xuanshu-hero h1 {
        font-size: 46px;
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-kicker {
        font-size: 18px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-compare-inner,
    .xuanshu-feature-inner,
    .xuanshu-key-stage,
    .xuanshu-contact-inner,
    .xuanshu-form-row,
    .xuanshu-footer-content {
        display: block;
    }

    .xuanshu-feature {
        height: auto;
        padding: 90px 0 110px;
    }

    .xuanshu-feature-heading {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        padding-top: 0;
        margin-bottom: 78px;
        opacity: 1;
        visibility: visible;
        transition: none;
        transform: none;
    }

    .xuanshu-feature-heading h2 {
        width: 100%;
        font-size: 32px;
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-feature-pin {
        position: relative;
        top: auto;
        display: block;
        height: auto;
        min-height: 0;
    }

    .xuanshu-feature-pin .xuanshu-feature-visual,
    .xuanshu-feature-pin .xuanshu-feature-copy {
        display: none;
    }

    .xuanshu-feature-mobile {
        display: block;
        width: 100%;
    }

    .xuanshu-feature-mobile-step {
        margin-bottom: 70px;
    }

    .xuanshu-feature-mobile-step:last-child {
        margin-bottom: 0;
    }

    .xuanshu-feature-mobile-visual {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 400px;
        overflow: hidden;
        background:
            radial-gradient(circle, rgba(0, 0, 0, 0.08) 0 1px, transparent 1.2px) 0 0 / 24px 24px,
            #ecedf1;
    }

    .xuanshu-feature-mobile-step:last-child .xuanshu-feature-mobile-visual {
        height: 400px;
    }

    .xuanshu-feature-mobile-stage {
        position: absolute;
        left: 50%;
        top: 50%;
        flex: none;
        overflow: visible;
        background: transparent;
        transform: translate3d(-50%, -50%, 0) scale(var(--feature-mobile-stage-scale, 0.8));
        transform-origin: center center;
    }

    .xuanshu-feature-mobile-stage .xuanshu-feature-node,
    .xuanshu-feature-mobile-stage .xuanshu-feature-gate,
    .xuanshu-feature-mobile-stage .xuanshu-feature-frame,
    .xuanshu-feature-mobile-stage .xuanshu-feature-lines,
    .xuanshu-feature-mobile-stage .xuanshu-feature-app-index {
        transition: none;
    }

    .xuanshu-feature-mobile-stage .xuanshu-feature-node.is-mobile-icon-only {
        justify-content: center;
        padding: 0;
    }

    .xuanshu-feature-mobile-stage .xuanshu-feature-node.is-mobile-icon-only .xuanshu-feature-icon {
        margin-right: 0;
    }

    .xuanshu-feature-mobile-stage .xuanshu-feature-node.is-mobile-icon-only .xuanshu-feature-label {
        display: none;
    }

    .xuanshu-feature-mobile-stage .xuanshu-feature-node[data-feature-node="blocked"] {
        --feature-icon-color: #888888;
    }

    .xuanshu-feature-mobile-copy {
        position: relative;
        z-index: 2;
        width: 100%;
        margin-top: 20px;
        padding: 0 30px;
    }

    .xuanshu-feature-mobile-copy h3 {
        margin: 0 0 7px;
        color: var(--xuanshu-text);
        font-size: 20px;
        font-weight: 700;
        line-height: var(--trusafe-line-en-subheading);
    }

    .xuanshu-feature-mobile-copy p {
        margin: 0;
        color: var(--xuanshu-muted);
        font-size: 14px;
        font-weight: var(--trusafe-font-weight-en-body);
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-architecture {
        height: auto;
        min-height: 0;
        padding: 100px 0 0;
        overflow: visible;
        background: #f2f2f4;
    }

    .xuanshu-architecture-inner {
        position: relative;
        top: auto;
        display: block;
        height: auto;
        min-height: 0;
        padding-top: 0;
    }

    .xuanshu-architecture-copy,
    .xuanshu-architecture-list {
        width: 100%;
        min-height: 0;
    }

    .xuanshu-architecture-copy {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        height: auto;
        opacity: 1;
        visibility: visible;
        transition: none;
    }

    .xuanshu-architecture-connectors {
        display: none;
    }

    .xuanshu-architecture-inner > h2 {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        transition: none;
        transform: none;
        font-size: 32px;
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-architecture-copy {
        margin-top: 40px;
    }

    .xuanshu-architecture-list {
        position: relative;
        inset: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: calc(100% + 22px);
        height: auto;
        padding: 0;
        margin-left: -11px;
        overflow: visible;
        clip-path: none;
    }

    .xuanshu-architecture-column {
        display: contents;
    }

    .xuanshu-architecture-copy::after {
        display: none;
    }

    .xuanshu-architecture-item {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 0 5px 0 10px;
        opacity: 1;
        pointer-events: none;
        transition: none;
    }

    .xuanshu-architecture-item::before {
        content: "";
        position: absolute;
        left: 0;
        display: block;
        top: 26px;
        width: 100%;
        height: 1px;
        background: var(--xuanshu-border);
        transform: scaleY(0.5);
        transform-origin: center top;
    }

    .xuanshu-architecture-number,
    .xuanshu-architecture-item[data-architecture-layer="2"] .xuanshu-architecture-number,
    .xuanshu-architecture-item[data-architecture-layer="3"] .xuanshu-architecture-number,
    .xuanshu-architecture-item[data-architecture-layer="4"] .xuanshu-architecture-number {
        display: none;
    }

    .xuanshu-architecture-text {
        display: grid;
        grid-template-columns: minmax(100px, 120px) minmax(0, 1fr);
        grid-template-rows: 18px auto;
        column-gap: 20px;
        row-gap: 26px;
        width: 100%;
        margin: 0;
    }

    .xuanshu-architecture-heading {
        display: contents;
    }

    .xuanshu-architecture-text em {
        grid-column: 1 / -1;
        grid-row: 1;
        margin: 0;
        color: var(--xuanshu-primary);
        font-size: 12px;
        line-height: var(--trusafe-line-en-label);
    }

    .xuanshu-architecture-text strong {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
        font-size: 17px;
        line-height: var(--trusafe-line-en-subheading);
    }

    .xuanshu-architecture-text > span:not(.xuanshu-architecture-heading) {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
        font-size: 14px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-architecture-ripple {
        display: none;
    }

    .xuanshu-compare {
        height: auto;
        min-height: 0;
        padding-top: 120px;
        overflow: visible;
    }

    .xuanshu-compare-inner {
        position: relative;
        top: auto;
        width: calc(100% - 60px);
        max-width: none;
        height: auto;
        padding-top: 0;
        overflow: visible;
    }

    .xuanshu-compare::before {
        display: none;
    }

    .xuanshu-compare-copy {
        max-width: none;
        padding-top: 0;
        margin-bottom: 20px;
    }

    .xuanshu-compare-copy h2 {
        margin-bottom: 16px;
        font-size: 32px;
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-compare-copy p {
        width: 100%;
        font-size: 15px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-compare-legend {
        margin-top: 40px;
        padding-left: 0;
        gap: 40px;
        font-size: 16px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-compare-stage {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .xuanshu-compare-track {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 0;
        padding-top: 0;
        transform: none;
    }

    .xuanshu-compare-column {
        display: contents;
    }

    .xuanshu-compare-card[data-compare-mobile-order="1"] {
        order: 1;
    }

    .xuanshu-compare-card[data-compare-mobile-order="2"] {
        order: 2;
    }

    .xuanshu-compare-card[data-compare-mobile-order="3"] {
        order: 3;
    }

    .xuanshu-compare-card[data-compare-mobile-order="4"] {
        order: 4;
    }

    .xuanshu-compare-card[data-compare-mobile-order="5"] {
        order: 5;
    }

    .xuanshu-compare-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-bottom: 20px;
    }

    .xuanshu-feature,
    .xuanshu-compare,
    .xuanshu-algorithm,
    .xuanshu-contact {
        padding-bottom: 120px;
    }

    .xuanshu-compare-card {
        min-height: 0;
        margin-bottom: 20px;
    }

    .xuanshu-compare-layer {
        padding: 30px 25px;
    }

    .xuanshu-compare-secure {
        transition: none;
    }

    .xuanshu-compare-secure .xuanshu-compare-value {
        font-size: 15px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-section-copy,
    .xuanshu-key-copy {
        width: 100%;
    }

    .xuanshu-section-copy {
        margin-bottom: 44px;
    }

    .xuanshu-section-copy h2,
    .xuanshu-key h2,
    .xuanshu-section-heading h2 {
        font-size: 38px;
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-key-stage {
        margin-top: 70px;
    }

    .xuanshu-key-copy {
        margin-top: 44px;
        text-align: center;
    }

    .xuanshu-key {
        min-height: 800px;
        padding: 120px 0 111px;
    }

    .xuanshu-key-inner {
        text-align: center;
    }

    .xuanshu-key h2 {
        width: 100%;
        margin-bottom: 16px;
        font-size: 32px;
        line-height: var(--trusafe-line-en-heading);
        text-align: center;
    }

    .xuanshu-key > .xuanshu-container > p {
        width: 100%;
        margin: 0;
        font-size: 15px;
        line-height: var(--trusafe-line-en-body);
        text-align: center;
    }

    .xuanshu-key-stage {
        width: 100%;
        min-height: 0;
        margin-top: 60px;
    }

    .xuanshu-key-visual {
        width: 100%;
        height: 221px;
    }

    .xuanshu-key-stack {
        top: 35px;
        left: 50%;
        width: 450px;
        height: 222px;
        transform: translateX(-50%) scale(var(--key-mobile-scale, 0.7));
        transform-origin: top center;
    }

    .xuanshu-key-card {
        transform: translateX(195px);
    }

    .xuanshu-key-stage.is-spread .xuanshu-key-card,
    .xuanshu-key-stage.is-ready .xuanshu-key-card {
        transform: translateX(var(--key-x));
    }

    .xuanshu-key-stage.is-ready .xuanshu-key-card.is-active {
        transform: translateX(var(--key-x)) translateY(-12px);
    }

    .xuanshu-key-brackets {
        top: calc(35px - (62px * var(--key-mobile-scale, 0.7)));
        left: var(--active-key-mobile-left, 0px);
        width: 70px;
        height: 316px;
        transform: scale(var(--key-mobile-scale, 0.7));
        transform-origin: top left;
    }

    .xuanshu-key-core {
        display: none;
    }

    .xuanshu-key-copy {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-height: var(--key-copy-min-height, 200px);
        margin-top: 41px;
        text-align: center;
    }

    .xuanshu-key-copy h3 {
        margin-bottom: 4px;
        font-size: 24px;
        line-height: var(--trusafe-line-en-subheading);
    }

    .xuanshu-key-copy p {
        font-size: 16px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-key-copy .xuanshu-key-subtitle {
        margin-bottom: 16px;
    }

    .xuanshu-algorithm {
        padding: 120px 0 0;
    }

    .xuanshu-algorithm .xuanshu-container {
        width: calc(100% - 60px);
    }

    .xuanshu-section-heading {
        text-align: left;
    }

    .xuanshu-algorithm .xuanshu-section-heading h2 {
        margin-bottom: 16px;
        font-size: 32px;
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-algorithm .xuanshu-section-heading p {
        width: 100%;
        margin: 0;
        font-size: 15px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-chip-list {
        display: block;
        width: 100%;
        margin-top: 40px;
    }

    .xuanshu-chip-list li {
        display: block;
        width: fit-content;
        max-width: 100%;
        min-height: 19px;
        margin-bottom: 20px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--xuanshu-text);
        font-size: 13px;
        font-weight: 500;
        line-height: 1.5;
        white-space: normal;
    }

    .xuanshu-chip-list li:hover {
        border-color: transparent;
    }

    .xuanshu-chip-text {
        display: inline;
    }

    .xuanshu-chip-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 15px;
        height: 13px;
        margin-left: 4px;
        vertical-align: -1px;
    }

    .xuanshu-chip-icon svg {
        width: 15px;
        height: 13px;
    }

    .xuanshu-chip-icon path {
        fill: var(--xuanshu-primary);
    }

    .xuanshu-contact {
        position: relative;
        z-index: 2;
        padding: 169px 0 0;
        background: transparent;
    }

    .xuanshu-contact::before {
        content: "";
        position: absolute;
        inset: 0 0 20px;
        z-index: 0;
        background: #f6f6f8;
        pointer-events: none;
    }

    .xuanshu-contact-inner {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .xuanshu-contact .xuanshu-section-copy {
        width: calc(100% - 60px);
        margin: 0 auto 40px;
    }

    .xuanshu-contact .xuanshu-section-copy h2 {
        margin-bottom: 16px;
        font-size: 32px;
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-contact .xuanshu-section-copy p {
        font-size: 15px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-contact-email {
        width: min(100%, 315px);
        min-height: 80px;
        margin-top: 40px;
        padding: 20px;
    }

    .xuanshu-contact-email-title {
        font-size: 12px;
        line-height: var(--trusafe-line-en-label);
    }

    .xuanshu-contact-email-address {
        font-size: 15px;
        line-height: 1.2;
    }

    .xuanshu-contact-form {
        position: relative;
        z-index: 2;
        max-width: none;
        min-height: 0;
        padding: 40px 30px 80px;
        border-radius: 20px;
        box-shadow: none;
    }

    .xuanshu-form-row {
        display: block;
    }

    .xuanshu-contact-field,
    .xuanshu-business-row .xuanshu-field-company,
    .xuanshu-business-row .xuanshu-field-phone {
        width: 100%;
        margin-bottom: 28px;
    }

    .xuanshu-contact-field label {
        margin-bottom: 15px;
        font-size: 15px;
        line-height: var(--trusafe-line-en-label);
    }

    .xuanshu-contact-submit {
        width: 100%;
        margin-top: 36px;
    }

    .xuanshu-contact-success {
        position: static;
        margin: 16px 0 0;
    }

    .xuanshu-final-cta {
        position: relative;
        z-index: 1;
        margin-top: -20px;
        margin-bottom: -1px;
        padding: 0;
    }

    .xuanshu-final-cta .xuanshu-container {
        width: 100%;
        max-width: none;
    }

    .xuanshu-final-panel {
        width: 100%;
        min-height: 480px;
        padding: 140px 30px 128px;
        border-radius: 0;
    }

    .xuanshu-final-panel h2 {
        margin-bottom: 20px;
        font-size: 32px;
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-final-panel p {
        width: 285px;
        max-width: 100%;
        margin-bottom: 40px;
        font-size: 15px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-final-panel .xuanshu-light-button {
        min-width: 0;
        width: 179px;
        min-height: 64px;
        font-size: 17px;
    }

    .xuanshu-footer {
        padding: 60px 0 80px;
        font-size: 12px;
        line-height: 1.5;
    }

    .xuanshu-footer-inner {
        width: calc(100% - 60px);
        padding-top: 34px;
    }

    .xuanshu-footer-content {
        padding: 0 8px;
    }

    .xuanshu-footer nav {
        gap: 48px;
        margin-bottom: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xuanshu-compare-secure {
        transition: none;
    }

    .xuanshu-hero-scroll-arrow {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .xuanshu-key-stage.is-ready .xuanshu-key-core {
        animation: none;
    }

    .xuanshu-feature-stage-two-arrow {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

body {
    font-weight: var(--trusafe-font-weight-en-body);
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-kicker,
.xuanshu-key-copy .xuanshu-key-subtitle {
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-hero h1 {
    font-size: var(--xuanshu-font-display);
    font-weight: var(--trusafe-font-weight-en-display);
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-feature-heading h2,
.xuanshu-architecture-inner > h2,
.xuanshu-compare-copy h2,
.xuanshu-key-inner > h2,
.xuanshu-section-heading h2,
.xuanshu-contact .xuanshu-section-copy h2,
.xuanshu-final-panel h2 {
    font-weight: var(--trusafe-font-weight-en-heading);
    line-height: var(--trusafe-line-en-heading);
}

.xuanshu-kicker,
.xuanshu-architecture-heading em,
.xuanshu-compare-title,
.xuanshu-contact-field label {
    font-weight: var(--trusafe-font-weight-en-label);
}

.xuanshu-architecture-heading em {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.xuanshu-hero-copy,
.xuanshu-feature-copy p,
.xuanshu-architecture-text > span:last-child,
.xuanshu-compare-copy > p,
.xuanshu-key-inner > p,
.xuanshu-key-copy > p,
.xuanshu-section-heading > p,
.xuanshu-contact .xuanshu-section-copy > p,
.xuanshu-final-panel p {
    font-weight: var(--trusafe-font-weight-en-body);
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-feature-copy h3,
.xuanshu-architecture-heading strong,
.xuanshu-key-copy h3 {
    font-weight: var(--trusafe-font-weight-en-heading);
    line-height: var(--trusafe-line-en-subheading);
}

.xuanshu-architecture-heading em,
.xuanshu-compare-title,
.xuanshu-contact-email-title,
.footer-col-title {
    line-height: var(--trusafe-line-en-label);
}

.xuanshu-contact-field input,
.xuanshu-contact-field textarea {
    font-weight: var(--trusafe-font-weight-en-body);
    line-height: var(--trusafe-line-en-body);
}

.xuanshu-contact-submit {
    height: 56px;
    min-height: 56px;
    font-size: 17px;
    font-weight: 600;
}

.xuanshu-mobile-drawer,
.xuanshu-mobile-menu-button,
.xuanshu-mobile-drawer-overlay {
    display: none;
}

@media (max-width: 1023px), (max-height: 499px) {
    :root {
        --xuanshu-font-section: 32px;
        --xuanshu-font-subtitle: 20px;
        --xuanshu-font-body: 15px;
        --xuanshu-control-height: 48px;
        --xuanshu-control-font: 14px;
        --xuanshu-control-padding-x: 20px;
    }

    .xuanshu-header-actions {
        gap: 8px;
    }

    .xuanshu-header-button {
        min-height: 40px;
        padding: 0 16px;
        font-size: 13px;
    }

    .xuanshu-hero .xuanshu-primary-button,
    .xuanshu-hero .xuanshu-secondary-button,
    .xuanshu-final-panel .xuanshu-light-button {
        min-height: 52px;
        padding: 0 22px;
        font-size: 15px;
    }

    .xuanshu-feature-heading h2,
    .xuanshu-architecture-inner > h2,
    .xuanshu-compare-copy h2,
    .xuanshu-key-inner > h2,
    .xuanshu-section-heading h2,
    .xuanshu-contact .xuanshu-section-copy h2,
    .xuanshu-final-panel h2 {
        font-size: var(--xuanshu-font-section);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-feature-heading h2 + p,
    .xuanshu-architecture-inner > h2 + p,
    .xuanshu-compare-copy h2 + p,
    .xuanshu-key-inner > h2 + p,
    .xuanshu-section-heading h2 + p,
    .xuanshu-contact .xuanshu-section-copy h2 + p,
    .xuanshu-final-panel h2 + p {
        margin-top: 16px;
    }

    .xuanshu-feature-mobile-copy h3,
    .xuanshu-key-copy h3 {
        font-size: var(--xuanshu-font-subtitle);
        line-height: var(--trusafe-line-en-subheading);
    }

    .xuanshu-feature-mobile-copy p,
    .xuanshu-architecture-text > span:last-child,
    .xuanshu-compare-copy > p,
    .xuanshu-key-inner > p,
    .xuanshu-key-copy > p,
    .xuanshu-section-heading > p,
    .xuanshu-contact .xuanshu-section-copy > p,
    .xuanshu-final-panel p {
        font-size: var(--xuanshu-font-body);
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-contact-field label {
        font-size: var(--xuanshu-font-label);
        line-height: var(--trusafe-line-en-label);
    }
}

@media (max-width: 1023px), (max-height: 499px) {
    html.nav-open,
    body.nav-open {
        overflow: hidden;
    }

    .xuanshu-header {
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        z-index: 1004;
        width: 100%;
        height: 80px;
        transform: translateY(0);
        transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .xuanshu-header.fixed-header {
        position: fixed;
        background: rgba(246, 246, 248, 0.94);
        border-bottom: 0.5px solid rgba(26, 26, 31, 0.08);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .xuanshu-header.nav-hidden {
        transform: translateY(calc(-100% - 1px));
    }

    html.nav-open .xuanshu-header,
    html.nav-closing .xuanshu-header {
        transform: translateY(0);
    }

    .xuanshu-header-inner {
        width: 100%;
        height: 80px;
    }

    .xuanshu-logo,
    .xuanshu-header-actions {
        display: none;
    }

    .xuanshu-mobile-menu-button {
        position: absolute;
        top: 21px;
        right: 20px;
        z-index: 1003;
        display: block;
        width: 36px;
        height: 36px;
        padding: 4px;
        border: 0;
        border-radius: 50%;
        background: transparent;
        color: #1a1a1f;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .xuanshu-mobile-menu-button svg {
        display: block;
        width: 28px;
        height: 28px;
        fill: currentColor;
        overflow: visible;
    }

    .xuanshu-mobile-menu-line {
        transform-box: fill-box;
        transform-origin: center;
        transition:
            transform 240ms ease,
            opacity 180ms ease;
    }

    html.nav-open .xuanshu-mobile-menu-line-top {
        animation: xuanshu-menu-top-to-close 240ms ease forwards;
    }

    html.nav-open .xuanshu-mobile-menu-line-middle {
        opacity: 0;
    }

    html.nav-open .xuanshu-mobile-menu-line-bottom {
        animation: xuanshu-menu-bottom-to-close 240ms ease forwards;
    }

    @keyframes xuanshu-menu-top-to-close {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }

        50% {
            transform: translate(0, 5px) rotate(0deg);
        }

        100% {
            transform: translate(0, 5px) rotate(45deg);
        }
    }

    @keyframes xuanshu-menu-bottom-to-close {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }

        50% {
            transform: translate(0, -5px) rotate(0deg);
        }

        100% {
            transform: translate(0, -5px) rotate(-45deg);
        }
    }

    .xuanshu-mobile-drawer {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1002;
        display: flex;
        width: 100%;
        height: calc(100vh - 98px);
        height: calc(100dvh - 98px);
        min-height: 360px;
        flex-direction: column;
        overflow: hidden;
        padding: 60px 0 110px;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        clip-path: inset(0 0 100% 0);
        pointer-events: none;
        transition:
            clip-path 0s linear 1s,
            opacity 220ms ease,
            visibility 0s linear 1s;
        will-change: clip-path, opacity;
    }

    .xuanshu-mobile-drawer:not(:has(.xuanshu-mobile-drawer-actions)) {
        padding-bottom: 32px;
    }

    html.nav-open .xuanshu-mobile-drawer {
        opacity: 1;
        visibility: visible;
        clip-path: inset(0 0 -100px 0);
        pointer-events: auto;
        transition:
            clip-path 1s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 120ms ease,
            visibility 0s;
    }

    html.nav-closing .xuanshu-mobile-drawer {
        opacity: 1;
        visibility: visible;
        clip-path: inset(0 0 100% 0);
        pointer-events: none;
        transition:
            clip-path 1s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0s linear 1s;
    }

    .xuanshu-mobile-drawer-content {
        position: relative;
        z-index: 1;
        min-height: 0;
        flex: 1;
        overflow-y: auto;
        padding: 0 30px 32px;
        opacity: 0;
        transition: opacity 1000ms ease;
        -webkit-overflow-scrolling: touch;
    }

    html.nav-open .xuanshu-mobile-drawer-content,
    html.nav-open .xuanshu-mobile-drawer-actions {
        opacity: 1;
    }

    html.nav-closing .xuanshu-mobile-drawer-content,
    html.nav-closing .xuanshu-mobile-drawer-actions {
        opacity: 0;
    }

    .xuanshu-mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .xuanshu-mobile-nav-links a {
        display: block;
        width: 100%;
        padding: 4px 0;
        color: #1a1a1f;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.1;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
    }

    .xuanshu-mobile-drawer-actions {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        height: 112px;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 1000ms ease;
    }

    .xuanshu-mobile-drawer-overlay {
        position: fixed;
        inset: 0;
        z-index: 999;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 500ms ease,
            visibility 0s linear 1s;
        -webkit-tap-highlight-color: transparent;
    }

    html.nav-open .xuanshu-mobile-drawer-overlay,
    html.nav-closing .xuanshu-mobile-drawer-overlay {
        visibility: visible;
    }

    html.nav-open .xuanshu-mobile-drawer-overlay {
        opacity: 1;
        pointer-events: auto;
        transition:
            opacity 500ms ease,
            visibility 0s;
    }

    html.nav-closing .xuanshu-mobile-drawer-overlay {
        opacity: 0;
        pointer-events: none;
    }

    .xuanshu-hero {
        height: 100vh;
        height: 100svh;
        min-height: 633px;
        padding-top: 80px;
    }

    .xuanshu-hero-inner {
        display: flex;
        min-height: 100%;
        align-items: center;
    }

    .xuanshu-hero-copy-wrap {
        width: 100%;
        margin: 0;
        text-align: left;
    }

    .xuanshu-hero h1 {
        margin: 0 0 10px;
        font-size: 60px;
        font-weight: 700;
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-hero .xuanshu-kicker {
        margin: 0 0 21px 2px;
        font-size: 18px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-hero-copy {
        width: 100%;
        margin: 0 0 40px 2px;
        font-size: 16px;
        font-weight: 500;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .xuanshu-hero .xuanshu-primary-button,
    .xuanshu-hero .xuanshu-secondary-button {
        width: 200px;
        min-height: 62px;
        padding: 0 20px;
        font-size: 15px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) and (min-height: 500px) {
    .xuanshu-feature-heading {
        width: 360px;
    }

    .xuanshu-feature-copy {
        width: 270px;
    }

    .xuanshu-feature-heading h2 {
        width: 100%;
        font-size: clamp(40px, 4.1vw, 46px);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-feature-copy h3 {
        margin-bottom: 8px;
        font-size: 19px;
        line-height: var(--trusafe-line-en-subheading);
    }

    .xuanshu-feature-copy p {
        font-size: 14px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-chip-list {
        gap: 16px;
    }

    .xuanshu-chip-list li {
        min-height: 52px;
        padding-right: 24px;
        padding-left: 24px;
        font-size: 14px;
        line-height: 1.4;
    }

}

@media (min-width: 1024px) and (max-width: 1299px) and (min-height: 500px) {
    .xuanshu-contact-inner {
        gap: 4%;
    }

    .xuanshu-contact .xuanshu-section-copy {
        flex: 0 1 31%;
        min-width: 0;
    }

    .xuanshu-contact .xuanshu-section-copy h2 {
        font-size: clamp(38px, 3.4vw, 44px);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-contact .xuanshu-section-copy p {
        font-size: 15px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-contact-form {
        flex: 1 1 65%;
        max-width: none;
    }
}

@media (min-width: 1600px) and (min-height: 900px) {
    .xuanshu-hero-copy-wrap {
        transform: translateY(-5vh) scale(var(--xuanshu-hero-scale, 1));
        transform-origin: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) and (min-height: 500px) and (orientation: portrait) {
    .xuanshu-hero {
        height: min(100svh, 720px);
        min-height: 620px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) and (min-height: 500px) {
    .xuanshu-key {
        padding-top: 156px;
        padding-bottom: 144px;
    }
}

@media (max-width: 767px), (max-height: 499px) {
    .xuanshu-key-copy [data-key-body] {
        width: calc(100vw - 60px);
        max-width: 369px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1600px) and (min-height: 900px) {

    .xuanshu-compare-inner {
        width: min(calc(100% - 160px), clamp(1200px, min(83.33vw, 150vh), 1620px));
        max-width: none;
        gap: clamp(54px, min(3.75vw, 6vh), 72.9px);
    }

    .xuanshu-compare-copy {
        max-width: clamp(406px, min(28.19vw, 45.11vh), 548.1px);
    }

    .xuanshu-compare-copy h2 {
        margin-bottom: clamp(20px, min(1.39vw, 2.22vh), 27px);
        font-size: clamp(48px, min(3.33vw, 5.33vh), 64.8px);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-compare-copy p {
        font-size: clamp(16px, min(1.11vw, 1.78vh), 21.6px);
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-compare-legend {
        gap: clamp(40px, min(2.78vw, 4.44vh), 54px);
        margin-top: clamp(46px, min(3.19vw, 5.11vh), 62.1px);
        font-size: clamp(16px, min(1.11vw, 1.78vh), 21.6px);
    }

    .xuanshu-compare-legend i {
        width: clamp(12px, min(0.83vw, 1.33vh), 16.2px);
        height: clamp(12px, min(0.83vw, 1.33vh), 16.2px);
    }

    .xuanshu-compare-stage {
        min-height: clamp(454px, min(31.53vw, 50.44vh), 612.9px);
    }

    .xuanshu-compare-track,
    .xuanshu-compare-column {
        gap: clamp(20px, min(1.39vw, 2.22vh), 27px);
    }

    .xuanshu-compare-layer {
        padding: clamp(30px, min(2.08vw, 3.33vh), 40.5px);
        border-radius: clamp(12px, min(0.83vw, 1.33vh), 16.2px);
    }

    .xuanshu-compare-title {
        margin-bottom: clamp(8px, min(0.56vw, 0.89vh), 10.8px);
        font-size: clamp(13px, min(0.9vw, 1.44vh), 17.55px);
    }

    .xuanshu-compare-value {
        font-size: clamp(15px, min(1.04vw, 1.67vh), 20.25px);
        line-height: var(--trusafe-line-en-body);
    }
}

@media (max-height: 499px) and (orientation: landscape) {
    .xuanshu-mobile-drawer-content {
        padding-right: calc(30px + env(safe-area-inset-right));
        padding-left: calc(30px + env(safe-area-inset-left));
    }

    .xuanshu-mobile-menu-button {
        right: calc(20px + env(safe-area-inset-right));
    }

    .xuanshu-mobile-drawer-actions {
        padding-right: env(safe-area-inset-right);
        padding-left: env(safe-area-inset-left);
    }

    .xuanshu-footer-inner {
        width: auto;
        margin-right: calc(30px + env(safe-area-inset-right));
        margin-left: calc(30px + env(safe-area-inset-left));
    }

    .xuanshu-download-page .xuanshu-download-footer,
    .xuanshu-about-page .xuanshu-about-footer,
    .xuanshu-contact-page .xuanshu-contact-page-footer {
        padding-right: calc(30px + env(safe-area-inset-right));
        padding-left: calc(30px + env(safe-area-inset-left));
    }

    .xuanshu-hero-inner,
    .xuanshu-feature-inner,
    .xuanshu-compare-inner,
    .xuanshu-algorithm .xuanshu-container,
    .xuanshu-platforms > .xuanshu-container,
    .xuanshu-key-inner {
        width: auto;
        margin-right: calc(30px + env(safe-area-inset-right));
        margin-left: calc(30px + env(safe-area-inset-left));
    }

    .xuanshu-feature-mobile-copy {
        padding-right: calc(30px + env(safe-area-inset-right));
        padding-left: calc(30px + env(safe-area-inset-left));
    }

    .xuanshu-architecture-inner {
        width: auto;
        margin-right: calc(30px + env(safe-area-inset-right));
        margin-left: calc(30px + env(safe-area-inset-left));
    }

    .xuanshu-contact .xuanshu-section-copy {
        width: auto;
        margin-right: calc(30px + env(safe-area-inset-right));
        margin-left: calc(30px + env(safe-area-inset-left));
    }

    .xuanshu-contact-form {
        padding-right: calc(30px + env(safe-area-inset-right));
        padding-left: calc(30px + env(safe-area-inset-left));
    }
}

/* Align the shared TruSafe header geometry with the other desktop pages. */
@media (min-width: 1024px) and (min-height: 500px) {
    .xuanshu-page .top-nav,
    .xuanshu-download-page .top-nav {
        height: 92px;
    }

    .xuanshu-page .top-nav .nav-container,
    .xuanshu-download-page .top-nav .nav-container {
        height: 92px;
        min-height: 92px;
    }

    /* Keep the Xuanshu home header in the page's visual background when revealed. */
    .xuanshu-page .top-nav.fixed-nav::before {
        background: var(--xuanshu-bg);
    }

}

@media (max-width: 1023px), (max-height: 499px) {
    .xuanshu-page .top-nav .nav-container,
    .xuanshu-download-page .top-nav .nav-container {
        height: auto;
        min-height: 0;
    }
}

@media (max-width: 1023px), (max-height: 499px) {
    .xuanshu-platforms {
        padding: 120px 0 40px;
    }

    .xuanshu-platforms .xuanshu-section-heading {
        text-align: center;
    }

    .xuanshu-platforms .xuanshu-section-heading h2 {
        margin-bottom: 16px;
        font-size: var(--xuanshu-font-section);
        line-height: var(--trusafe-line-en-heading);
    }

    .xuanshu-platforms .xuanshu-section-heading p {
        width: 100%;
        margin: 0;
        font-size: var(--xuanshu-font-body);
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-platform-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px 16px;
        width: 100%;
        margin-top: 48px;
    }

    .xuanshu-platform-card {
        flex: 0 0 auto;
        width: min(160px, calc((100% - 16px) / 2));
    }

    .xuanshu-platform-card-face {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        border-radius: 20px;
    }

    .xuanshu-platform-card h3 {
        margin-top: 16px;
        font-size: var(--xuanshu-font-body);
        line-height: var(--trusafe-line-en-label);
        white-space: normal;
    }
}

@media (max-width: 571px) and (orientation: portrait) {
    .xuanshu-feature-mobile-step:first-child .xuanshu-feature-mobile-stage {
        transform: translate3d(calc(-50% - 8px), -50%, 0) scale(var(--feature-mobile-stage-scale-first, var(--feature-mobile-stage-scale, 0.8)));
    }

    .xuanshu-platform-grid {
        column-gap: 16px;
    }

    .xuanshu-platform-card {
        width: calc((100% - 32px) / 3);
    }

    .xuanshu-platform-card-face {
        border-radius: 16px;
    }

    .xuanshu-platform-icon,
    .xuanshu-platform-icon svg {
        width: 48px;
        height: 48px;
    }

    .xuanshu-platform-card h3 {
        margin-top: 12px;
        font-size: 14px;
    }
}

@media (min-width: 1024px) and (min-height: 500px) {
    .xuanshu-feature-heading-exclusion {
        display: block;
        float: right;
        pointer-events: none;
    }

    .xuanshu-feature-copy {
        right: auto;
        left: var(--feature-copy-left, auto);
        width: var(--feature-copy-width, 320px);
        max-width: none;
        height: var(--feature-copy-height, 140px);
    }

    .xuanshu-feature[data-feature-copy-density="default"] .xuanshu-feature-copy h3 {
        margin-bottom: 14px;
        font-size: 22px;
        line-height: var(--trusafe-line-en-subheading);
    }

    .xuanshu-feature[data-feature-copy-density="default"] .xuanshu-feature-copy p {
        font-size: 15px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-feature[data-feature-copy-density="compact"] .xuanshu-feature-copy h3 {
        margin-bottom: 8px;
        font-size: 19px;
        line-height: var(--trusafe-line-en-subheading);
    }

    .xuanshu-feature[data-feature-copy-density="compact"] .xuanshu-feature-copy p {
        font-size: 14px;
        line-height: var(--trusafe-line-en-body);
    }

    .xuanshu-feature[data-feature-copy-density="dense"] .xuanshu-feature-copy h3 {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 1.45;
    }

    .xuanshu-feature[data-feature-copy-density="dense"] .xuanshu-feature-copy p {
        font-size: 13.5px;
        line-height: 1.55;
    }
}

@supports not (shape-outside: polygon(0 0, 100% 0, 100% 100%)) {
    @media (min-width: 1024px) and (min-height: 500px) {
        .xuanshu-feature-heading-exclusion {
            display: none;
            float: none;
        }
    }
}

/* Feature stages are independent snapshots; only the active snapshot enters. */
.xuanshu-feature-stage-view {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 1;
    transform: none;
    transition: opacity 120ms ease;
}

.xuanshu-feature-stage-view.is-entering {
    opacity: 0;
}

.xuanshu-feature-stage-view.is-active {
    opacity: 1;
}

.xuanshu-feature-mobile-stage {
    position: absolute;
    inset: auto;
    left: 50%;
    top: 50%;
    width: 660px;
    height: 535px;
    margin: 0;
    overflow: visible;
    background: transparent;
    transform: translate3d(-50%, -50%, 0) scale(var(--feature-mobile-stage-scale, 0.8));
    transform-origin: center center;
}

.xuanshu-feature-mobile-stage.is-mobile-stage-two {
    transform: translate3d(calc(-50% - 8px), -50%, 0) scale(var(--feature-mobile-stage-scale, 0.8));
}

.xuanshu-feature-snapshot-group {
    position: absolute;
    inset: 0;
    translate: 0 0;
    will-change: translate;
}

.xuanshu-feature-stage-view.is-active:not(.xuanshu-feature-mobile-stage):not(.is-static-stage) > .xuanshu-feature-snapshot-group {
    animation: xuanshu-feature-snapshot-translate-up 1s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.xuanshu-feature-stage-view.is-active:not(.xuanshu-feature-mobile-stage):not(.is-static-stage) > .xuanshu-feature-snapshot-group > .xuanshu-feature-snapshot-item:not(.xuanshu-feature-snapshot-custom-entry),
.xuanshu-feature-stage-view.is-active:not(.xuanshu-feature-mobile-stage):not(.is-static-stage) > .xuanshu-feature-snapshot-group > .xuanshu-feature-lines {
    animation: xuanshu-feature-snapshot-fade-in 1s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.xuanshu-feature-stage-view.is-active:not(.xuanshu-feature-mobile-stage):not(.is-static-stage) .xuanshu-feature-stage-two-arrow {
    animation: xuanshu-feature-stage-two-arrow 1400ms ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
    will-change: transform, opacity;
}

@keyframes xuanshu-feature-snapshot-translate-up {
    from { translate: 0 12px; }
    to { translate: 0 0; }
}

@keyframes xuanshu-feature-snapshot-fade-in {
    from { opacity: 0; }
    to { opacity: var(--snapshot-opacity, 1); }
}

@keyframes xuanshu-feature-stage-two-arrow {
    0% {
        opacity: 0;
        transform: translateY(-2px);
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
        transform: translateY(4px);
    }

    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

.xuanshu-feature-stage-two-content {
    position: absolute;
    inset: 0;
}

.xuanshu-feature-stage-two-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    border: 1px solid #afb0b3;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    opacity: var(--snapshot-opacity, 1);
}

.xuanshu-feature-stage-two-card.is-whitebox {
    padding: 0 19px;
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
}

.xuanshu-feature-stage-two-card.is-tls {
    justify-content: center;
    border-radius: 999px;
    background: #f5f515;
    font-size: 15px;
    font-weight: 600;
    line-height: 14px;
}

.xuanshu-feature-stage-two-card.is-storage,
.xuanshu-feature-stage-two-card.is-compute {
    padding: 0 19px;
    border-color: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
}

.xuanshu-feature-stage-two-card.is-storage {
    background: #1a1a1a;
}

.xuanshu-feature-stage-two-card.is-compute {
    background: #4340df;
}

.xuanshu-feature-stage-two-icon {
    display: block;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.xuanshu-feature-stage-two-icon svg {
    display: block;
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.xuanshu-feature-stage-two-label {
    display: block;
    white-space: nowrap;
}

.xuanshu-feature-stage-two-key {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    border: 1px solid #afb0b3;
    border-radius: 50%;
    background: #ecedf1;
    opacity: var(--snapshot-opacity, 1);
}

.xuanshu-feature-stage-two-key svg {
    display: block;
    width: 48px;
    height: 48px;
}

.xuanshu-feature-stage-two-lines {
    z-index: 2;
}

.xuanshu-feature-stage-two-markers {
    z-index: 4;
}

.xuanshu-feature-snapshot-lines {
    z-index: 6;
}

.xuanshu-feature-stage-two-lines path {
    stroke: #afb0b3;
}

.xuanshu-feature-stage-two-markers circle {
    stroke: #afb0b3;
}

.xuanshu-feature-copy article {
    transition-duration: 120ms;
}

@media (max-width: 1023px), (max-height: 499px) {
    .xuanshu-feature-mobile-stage {
        background: transparent;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xuanshu-feature-stage-view,
    .xuanshu-feature-copy article {
        transition: none;
    }

    .xuanshu-feature-stage-view.is-active:not(.xuanshu-feature-mobile-stage) > .xuanshu-feature-snapshot-group,
    .xuanshu-feature-stage-view.is-active:not(.xuanshu-feature-mobile-stage) > .xuanshu-feature-snapshot-group > .xuanshu-feature-snapshot-item,
    .xuanshu-feature-stage-view.is-active:not(.xuanshu-feature-mobile-stage) > .xuanshu-feature-snapshot-group > .xuanshu-feature-lines,
    .xuanshu-feature-stage-view.is-active:not(.xuanshu-feature-mobile-stage) .xuanshu-feature-stage-two-arrow {
        animation: none;
    }
}
html:lang(en) .xuanshu-feature-stage-two-card.is-whitebox,
html:lang(en) .xuanshu-feature-stage-two-card.is-storage,
html:lang(en) .xuanshu-feature-stage-two-card.is-compute {
    line-height: var(--trusafe-line-en-label);
}

html:lang(en) .xuanshu-feature-stage-two-card.is-tls {
    line-height: var(--trusafe-line-en-label);
}
