/* ==================== 主官网内容与转化体系 2026 ==================== */

.site-header__inner {
    position: relative;
    gap: 28px;
}

.site-nav {
    gap: 22px;
}

.site-nav__group,
.site-nav__main {
    display: flex;
    align-items: center;
}

.site-nav__main {
    gap: 0;
}

.site-nav__main > button {
    width: 18px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #7b8494;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.site-nav__main > button svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 0.2s ease;
}

.site-nav__main > button:hover,
.site-nav__group.is-open .site-nav__main > button,
.site-nav__group:focus-within .site-nav__main > button {
    background: #f1f6ff;
    color: var(--site-primary);
}

.site-nav__main > button:focus-visible {
    outline: none;
    background: #f1f6ff;
    box-shadow: 0 0 0 2px rgba(18, 97, 255, 0.18);
    color: var(--site-primary);
}

.site-nav__group.is-open .site-nav__main > button svg,
.site-nav__group:focus-within .site-nav__main > button svg {
    transform: rotate(180deg);
}

.site-nav__group.is-open .site-nav__main > .site-nav__link,
.site-nav__group:focus-within .site-nav__main > .site-nav__link {
    color: var(--site-primary);
}

.site-mega {
    position: absolute;
    z-index: 20;
    top: calc(100% + 1px);
    left: 156px;
    right: 0;
    visibility: hidden;
    padding: 22px;
    border: 1px solid #e4eaf4;
    border-radius: 0 0 20px 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 48px rgba(19, 39, 82, 0.14);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
}

.site-nav__group.is-open .site-mega,
.site-nav__group:focus-within .site-mega {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.site-mega__intro {
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(145deg, #eef5ff 0%, #f8fbff 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-mega__intro > span {
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 700;
}

.site-mega__intro strong {
    margin-top: 10px;
    color: var(--site-text);
    font-size: 18px;
    line-height: 1.55;
}

.site-mega__intro a {
    margin-top: auto;
    padding-top: 24px;
    color: var(--site-primary);
    font-size: 14px;
    font-weight: 600;
}

.site-mega__links {
    display: grid;
    gap: 6px 10px;
}

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

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

.site-mega__links > a,
.site-mega__links > button {
    min-width: 0;
    padding: 12px 14px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--site-text);
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.site-mega__links > a:hover,
.site-mega__links > a:focus-visible,
.site-mega__links > button:hover,
.site-mega__links > button:focus-visible {
    outline: none;
    background: #f1f6ff;
    color: var(--site-primary);
}

.site-mega__links b {
    font-size: 15px;
    font-weight: 600;
}

.site-mega__links span {
    overflow: hidden;
    color: #718096;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav-toggle {
    display: none;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 36px;
}

.site-footer__logo img {
    width: 100%;
    height: auto;
}

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

.site-footer__bottom > p,
.site-footer__bottom > p a {
    color: #596579;
}

.site-section {
    padding: 96px 0;
    background: #fff;
}

.site-section--soft {
    background: #f7faff;
}

.site-section--dark {
    background:
            radial-gradient(circle at 10% 10%, rgba(72, 134, 255, 0.2), transparent 34%),
            linear-gradient(135deg, #132448 0%, #0b1834 100%);
    color: #fff;
}

.home-section-head:not(.home-section-head--inverse) > span,
.home-section-head--with-action:not(.home-section-head--inverse) > div > span {
    color: #0b55df;
}

.home-section-head--with-action {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
}

.home-section-head--with-action > div {
    max-width: 760px;
}

.home-section-head--with-action h2 {
    margin-bottom: 0;
}

.home-section-head--with-action > a {
    flex: 0 0 auto;
    padding-bottom: 8px;
    color: var(--site-primary);
    font-weight: 600;
}

.home-section-head--inverse h2,
.home-section-head--inverse p {
    color: #fff;
}

.home-section-head--inverse p {
    opacity: 0.72;
}

.site-btn--light {
    border-color: rgba(255, 255, 255, 0.6);
    background: #fff;
    color: #1a56bd;
}

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

.home-hero {
    min-height: 760px;
    padding-top: 136px;
}

.home-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 12px;
    border: 1px solid rgba(18, 97, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
}

.home-hero__content h1 {
    max-width: 660px;
    font-size: clamp(42px, 4vw, 62px);
    line-height: 1.17;
    letter-spacing: -0.035em;
}

.home-hero__content > p {
    max-width: 650px;
}

.home-hero__hint {
    margin-top: 14px;
    color: #718096 !important;
    font-size: 13px !important;
}

.home-proof {
    position: relative;
    z-index: 2;
    margin-top: -48px;
}

.home-proof__grid {
    min-height: 112px;
    border: 1px solid rgba(18, 97, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 50px rgba(26, 57, 112, 0.1);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-proof article {
    position: relative;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.home-proof article + article::before {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 0;
    width: 1px;
    background: #e8edf6;
    content: '';
}

.home-proof strong {
    color: var(--site-primary);
    font-size: 25px;
}

.home-proof span {
    color: #596579;
    font-size: 14px;
}

.home-pains {
    padding-top: 130px;
}

.home-pains__grid,
.home-roles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-pains__grid article,
.home-roles__grid article {
    min-height: 246px;
    padding: 28px 24px;
    border: 1px solid #e5ebf5;
    border-radius: 20px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-pains__grid article:hover,
.home-roles__grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(34, 63, 114, 0.09);
}

.home-pains__grid strong,
.home-roles__index {
    color: #5f7fb8;
    font-size: 34px;
    font-weight: 700;
}

.home-pains__grid h3,
.home-roles__grid h3 {
    margin-top: 26px;
    font-size: 20px;
}

.home-pains__grid p,
.home-roles__grid > article > p:not(.home-roles__role) {
    margin-top: 10px;
    color: var(--site-text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.home-loop__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.official-page--home .home-loop__steps::before {
    position: absolute;
    top: 31px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: linear-gradient(90deg, #bcd2ff, #3370fc, #bcd2ff);
    content: '';
}

.home-loop__steps li {
    position: relative;
    z-index: 1;
    padding: 0 10px;
    text-align: center;
}

.home-loop__steps li > span {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border: 6px solid #f7faff;
    border-radius: 50%;
    background: var(--site-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
}

.home-loop__steps strong {
    font-size: 16px;
}

.home-loop__steps p {
    margin-top: 8px;
    color: #596579;
    font-size: 13px;
    line-height: 1.65;
}

.home-loop__action {
    margin-top: 34px;
    text-align: center;
}

.home-loop__action a {
    color: var(--site-primary);
    font-weight: 600;
}

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

.home-capabilities__grid article {
    min-height: 324px;
    padding: 30px;
    border: 1px solid #e5ebf5;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.home-capabilities__grid img {
    object-fit: contain;
}

.home-capabilities__grid h3 {
    margin-top: 22px;
    font-size: 21px;
}

.home-capabilities__grid p {
    margin-top: 10px;
    color: #596579;
    line-height: 1.75;
}

.home-capabilities__grid ul {
    margin-top: 18px;
    list-style: none;
    display: grid;
    gap: 9px;
}

.home-capabilities__grid li {
    color: #718096;
    font-size: 14px;
}

.home-capabilities__grid li::before {
    margin-right: 8px;
    color: var(--site-primary);
    content: '✓';
}

.home-roles__role {
    margin-top: 18px;
    color: var(--site-primary);
    font-size: 14px;
    font-weight: 700;
}

.home-roles__grid h3 {
    margin-top: 8px;
}

.home-roles__grid article > div {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.home-roles__grid article > div span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #eef4ff;
    color: #315ea8;
    font-size: 12px;
}

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

.home-solution-card {
    min-height: 142px;
    padding: 22px;
    border: 1px solid color-mix(in srgb, var(--solution-color) 15%, #e8edf6);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--solution-bg), #fff 74%);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 20px;
    align-items: start;
    gap: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(27, 55, 100, 0.09);
}

.home-solution-card img {
    object-fit: contain;
}

.home-solution-card h3 {
    color: var(--site-text);
    font-size: 18px;
}

.home-solution-card p {
    margin-top: 7px;
    color: #718096;
    font-size: 13px;
    line-height: 1.65;
}

.home-solution-card > span {
    color: var(--solution-color);
    font-size: 18px;
}

.home-product {
    padding-top: 96px;
}

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

.home-showcase__grid .showcase-card {
    width: auto;
    min-height: 360px;
    border-radius: 22px;
}

.home-showcase__grid .showcase-card__body {
    padding: 24px 22px 0;
}

.home-showcase__grid .showcase-card h3 {
    font-size: 20px;
}

.home-showcase__grid .showcase-card p {
    font-size: 14px;
}

.home-governance__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 64px;
}

.home-governance__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-governance__grid article {
    min-height: 156px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    gap: 16px;
}

.home-governance__grid strong {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    background: rgba(96, 153, 255, 0.24);
    color: #bcd2ff;
    display: grid;
    place-items: center;
}

.home-governance__grid h3 {
    font-size: 18px;
}

.home-governance__grid p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
}

.home-delivery__timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
}

.home-delivery__timeline li {
    min-height: 222px;
    padding: 24px;
    border: 1px solid #e4eaf4;
    border-radius: 18px;
    background: #fff;
}

.home-delivery__timeline li > span {
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 700;
}

.home-delivery__timeline h3 {
    margin-top: 14px;
    font-size: 19px;
}

.home-delivery__timeline p {
    margin-top: 9px;
    color: #596579;
    font-size: 14px;
    line-height: 1.75;
}

.home-delivery__timeline small {
    display: block;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #edf1f7;
    color: #596579;
}

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

.practice-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: 26px;
    border: 1px solid color-mix(in srgb, var(--practice-color) 18%, #e5ebf5);
    border-radius: 20px;
    background: #fff;
    color: var(--site-text);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.practice-card::after {
    position: absolute;
    top: -40px;
    right: -36px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--practice-color) 12%, transparent);
    content: '';
}

.practice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(30, 57, 104, 0.1);
}

.practice-card > span {
    color: var(--practice-color);
    font-size: 13px;
    font-weight: 700;
}

.practice-card h2,
.practice-card h3 {
    margin-top: 12px;
    font-size: 22px;
}

.practice-card p {
    margin-top: 10px;
    color: #596579;
    font-size: 14px;
    line-height: 1.75;
}

.practice-card small {
    margin-top: 16px;
    color: #7a8699;
    line-height: 1.55;
}

.practice-card b {
    margin-top: auto;
    padding-top: 18px;
    color: var(--practice-color);
    font-size: 13px;
}

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

.resource-grid > a {
    min-height: 136px;
    padding: 20px;
    border: 1px solid #e5ebf5;
    border-radius: 16px;
    color: var(--site-text);
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    gap: 14px;
    align-items: start;
}

.resource-grid > a:hover {
    border-color: #bcd2ff;
    background: #f8fbff;
}

.resource-grid > a > strong {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: #eef4ff;
    color: var(--site-primary);
    display: grid;
    place-items: center;
    font-size: 12px;
}

.resource-grid h2,
.resource-grid h3 {
    font-size: 18px;
}

.resource-grid p {
    margin-top: 7px;
    color: #596579;
    font-size: 13px;
    line-height: 1.65;
}

.resource-grid > a > span {
    color: var(--site-primary);
}

.home-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 72px;
}

.home-faq__list {
    display: grid;
    gap: 10px;
}

.home-faq__list details {
    border: 1px solid #e2e9f4;
    border-radius: 14px;
    background: #fff;
}

.home-faq__list summary {
    position: relative;
    padding: 18px 48px 18px 20px;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 600;
}

.home-faq__list summary::-webkit-details-marker {
    display: none;
}

.home-faq__list summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--site-primary);
    font-size: 20px;
    content: '+';
    transform: translateY(-50%);
}

.home-faq__list details[open] summary::after {
    content: '−';
}

.home-faq__list details p {
    padding: 0 20px 18px;
    color: #596579;
    font-size: 14px;
    line-height: 1.8;
}

.site-cta--rich {
    padding-top: 112px;
}

.site-cta--rich .site-cta__content {
    max-width: 880px;
    margin: 0 auto;
}

.site-cta--rich .site-cta__content > span {
    color: var(--site-primary);
    font-weight: 700;
}

.site-cta--rich .site-cta__content h2 {
    margin: 14px 0;
}

.site-cta--rich .site-cta__content > p {
    margin-bottom: 34px;
    color: #596579;
    font-size: 16px;
}

/* 内容栏目 */

.official-content-page {
    background: #fff;
}

.content-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 92px;
    background:
            radial-gradient(circle at 78% 14%, rgba(87, 157, 255, 0.18), transparent 31%),
            linear-gradient(180deg, #f3f8ff 0%, #fff 100%);
}

.content-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    align-items: center;
    gap: 72px;
}

.content-hero__center {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.content-kicker {
    color: var(--site-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.content-hero h1 {
    margin-top: 18px;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.content-hero p {
    margin-top: 22px;
    color: #596579;
    font-size: 18px;
    line-height: 1.85;
}

.content-hero__actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
}

.content-hero__center .content-hero__actions {
    justify-content: center;
}

.content-back {
    display: block;
    margin-bottom: 22px;
    color: #718096;
    font-size: 14px;
}

.platform-map {
    position: relative;
    min-height: 420px;
    padding: 72px;
    border: 1px solid rgba(18, 97, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 60px rgba(33, 73, 138, 0.12);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.platform-map > span {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1261ff, #5b8cff);
    color: #fff;
    box-shadow: 0 16px 34px rgba(18, 97, 255, 0.3);
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
}

.platform-map > div {
    min-height: 76px;
    padding: 16px;
    border-radius: 14px;
    background: #eef4ff;
    color: #315ea8;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.platform-capability-list {
    display: grid;
    gap: 24px;
}

.platform-capability-list article {
    scroll-margin-top: 96px;
    min-height: 310px;
    padding: 40px;
    border: 1px solid #e4eaf4;
    border-radius: 24px;
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 58px;
}

.platform-capability-list article.is-reverse .platform-capability-list__visual {
    order: 2;
}

.platform-capability-list__visual {
    position: relative;
    min-height: 220px;
    border-radius: 22px;
    background: linear-gradient(145deg, #eaf2ff, #f8fbff);
    display: grid;
    place-items: center;
}

.platform-capability-list__visual span {
    position: absolute;
    top: 18px;
    left: 20px;
    color: rgba(18, 97, 255, 0.28);
    font-size: 36px;
    font-weight: 700;
}

.platform-capability-list article h2 {
    margin-top: 14px;
    font-size: 30px;
    line-height: 1.45;
}

.platform-capability-list article ul {
    margin-top: 20px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.platform-capability-list article li::before {
    margin-right: 9px;
    color: var(--site-primary);
    content: '✓';
}

.platform-boundary__grid,
.detail-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.platform-boundary__grid article {
    padding: 34px;
    border: 1px solid #e4eaf4;
    border-radius: 22px;
}

.platform-boundary__grid article > span {
    color: var(--site-primary);
    font-weight: 700;
}

.platform-boundary__grid h3 {
    margin-top: 12px;
    font-size: 23px;
}

.platform-boundary__grid ul {
    margin-top: 22px;
    padding-left: 20px;
    color: #596579;
    line-height: 2;
}

.practice-grid--catalog .practice-card {
    min-height: 290px;
}

.practice-method,
.service-preparation {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.practice-method article,
.service-preparation article {
    padding: 26px;
    border: 1px solid #e4eaf4;
    border-radius: 18px;
    background: #fff;
}

.practice-method strong {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #eef4ff;
    color: var(--site-primary);
    display: grid;
    place-items: center;
}

.practice-method h3,
.service-preparation h3 {
    margin-top: 20px;
}

.practice-method p,
.service-preparation p {
    margin-top: 9px;
    color: #596579;
    font-size: 14px;
    line-height: 1.75;
}

.practice-detail__audience {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.practice-detail__audience span {
    color: #718096;
    font-size: 13px;
}

.practice-detail__audience strong {
    color: var(--practice-color);
}

.practice-blueprint {
    min-height: 360px;
    padding: 34px;
    border: 1px solid color-mix(in srgb, var(--practice-color) 18%, #e4eaf4);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 50px rgba(31, 61, 112, 0.1);
    display: flex;
    flex-direction: column;
}

.practice-blueprint > span {
    color: var(--practice-color);
    font-weight: 700;
}

.practice-blueprint > div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.practice-blueprint b {
    padding: 16px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--practice-color) 11%, #fff);
    color: var(--practice-color);
    font-size: 14px;
}

.practice-blueprint i {
    color: #9aa5b6;
    font-style: normal;
}

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

.detail-card-grid article {
    min-height: 160px;
    padding: 26px;
    border: 1px solid #e4eaf4;
    border-radius: 18px;
}

.detail-card-grid strong {
    color: var(--practice-color);
}

.detail-card-grid p {
    margin-top: 22px;
    color: #445065;
    line-height: 1.8;
}

.detail-two-column--start {
    align-items: start;
}

.object-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.object-chip-grid span {
    padding: 12px 16px;
    border: 1px solid #dce5f2;
    border-radius: 12px;
    background: #fff;
    color: #445065;
}

.detail-check-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.detail-check-list li {
    position: relative;
    padding: 13px 16px 13px 42px;
    border-radius: 12px;
    background: #fff;
    color: #445065;
    line-height: 1.65;
}

.detail-check-list li::before {
    position: absolute;
    top: 14px;
    left: 16px;
    color: var(--site-primary);
    content: '✓';
}

.practice-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.practice-flow li {
    min-height: 150px;
    padding: 22px;
    border: 1px solid #e4eaf4;
    border-radius: 18px;
}

.practice-flow span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--practice-color) 12%, #fff);
    color: var(--practice-color);
    display: grid;
    place-items: center;
    font-weight: 700;
}

.practice-flow p {
    margin-top: 18px;
    color: #445065;
    line-height: 1.7;
}

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

.metric-blueprint article {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.metric-blueprint span {
    color: #8fb6ff;
}

.metric-blueprint h3 {
    margin-top: 28px;
    font-size: 18px;
}

.metric-blueprint p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.7;
}

.launch-checklist {
    display: grid;
    gap: 10px;
    list-style: none;
}

.launch-checklist li {
    padding: 14px 16px;
    border-bottom: 1px solid #e8edf5;
    display: flex;
    gap: 14px;
}

.launch-checklist span {
    color: var(--practice-color);
    font-weight: 700;
}

.practice-next {
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(145deg, #edf4ff, #f8fbff);
}

.practice-next > span {
    color: var(--site-primary);
    font-weight: 700;
}

.practice-next h2 {
    margin-top: 14px;
    font-size: 28px;
    line-height: 1.45;
}

.practice-next p {
    margin: 12px 0 24px;
    color: #596579;
    line-height: 1.75;
}

.practice-next .site-btn {
    width: 100%;
    margin-top: 10px;
}

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

.service-hero-visual {
    min-height: 390px;
    padding: 44px;
    border-radius: 32px;
    background: linear-gradient(145deg, #1766ff, #6b91ff);
    box-shadow: 0 28px 60px rgba(18, 97, 255, 0.22);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-hero-visual span {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 600;
}

.service-stage-list {
    display: grid;
    gap: 10px;
    list-style: none;
}

.service-stage-list li {
    min-height: 104px;
    padding: 18px 22px;
    border: 1px solid #e4eaf4;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 220px;
    align-items: center;
    gap: 18px;
}

.service-stage-list li > span {
    color: var(--site-primary);
    font-weight: 700;
}

.service-stage-list h3 {
    font-size: 18px;
}

.service-stage-list p {
    margin-top: 5px;
    color: #718096;
    font-size: 14px;
}

.service-stage-list strong {
    padding: 10px 12px;
    border-radius: 10px;
    background: #f2f6fc;
    color: #596579;
    text-align: center;
    font-size: 13px;
}

.service-preparation strong {
    color: var(--site-primary);
    font-size: 18px;
}

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

.resource-grid--catalog > a {
    min-height: 164px;
    padding: 26px;
}

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

.resource-path article {
    padding: 28px;
    border: 1px solid #e4eaf4;
    border-radius: 20px;
    background: #fff;
}

.resource-path article > span {
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 700;
}

.resource-path h3 {
    margin-top: 14px;
    font-size: 21px;
}

.resource-path p {
    margin-top: 10px;
    color: #596579;
    line-height: 1.75;
}

.resource-path article > div {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}

.resource-path a {
    color: var(--site-primary);
    font-size: 14px;
    font-weight: 600;
}

.resource-guide {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 72px;
}

.resource-guide h2 {
    margin-top: 14px;
    font-size: 36px;
}

.resource-guide p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.resource-guide ol {
    display: grid;
    gap: 10px;
    list-style-position: inside;
}

.resource-guide li {
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
}

/* 首页数据流操作系统动效：场景未初始化时内容保持可见，避免脚本失败影响阅读。 */
.official-page--home {
    --motion-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-ease-system: cubic-bezier(0.16, 1, 0.3, 1);
}

.official-page--home .home-hero__inner {
    z-index: 2;
}

.home-story {
    position: relative;
    min-width: 0;
    min-height: 520px;
}

.home-hero__visual {
    min-width: 0;
}

.home-story::before {
    position: absolute;
    inset: 5% -5% 2% 3%;
    border-radius: 44px;
    background:
        radial-gradient(circle at 18% 26%, rgba(51, 112, 252, 0.18), transparent 34%),
        radial-gradient(circle at 82% 76%, rgba(119, 92, 255, 0.14), transparent 38%);
    filter: blur(24px);
    pointer-events: none;
    content: '';
}

.home-story__console {
    position: absolute;
    z-index: 1;
    right: -40px;
    bottom: 0;
    width: min(720px, 100%);
    overflow: hidden;
    border: 1px solid rgba(205, 218, 241, 0.9);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 32px 72px rgba(39, 82, 157, 0.18);
    transform-origin: center;
}

.home-story__toolbar {
    position: relative;
    min-height: 58px;
    padding: 11px 14px 12px 18px;
    border-bottom: 1px solid #e8edf5;
    background: rgba(255, 255, 255, 0.98);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.home-story__controls {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.home-story__tabs {
    min-width: 0;
    padding: 3px;
    border-radius: 10px;
    background: #f3f6fb;
    display: flex;
    align-items: center;
    gap: 2px;
}

.home-story__tabs button {
    min-width: 0;
    height: 30px;
    padding: 0 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #778398;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.home-story__tabs button span {
    color: #a0aabc;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
}

.home-story__tabs button:hover {
    color: #315ea8;
}

.home-story__tabs button.is-active {
    background: #fff;
    box-shadow: 0 3px 10px rgba(48, 77, 128, 0.1);
    color: #1261ff;
}

.home-story__tabs button.is-active span {
    color: #7ca4ff;
}

.home-story__tabs button:focus-visible,
.home-story__toggle:focus-visible {
    outline: 2px solid rgba(18, 97, 255, 0.32);
    outline-offset: 2px;
}

.home-story__toggle {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #e1e8f2;
    border-radius: 9px;
    background: #fff;
    color: #60708b;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.home-story__toggle:hover {
    border-color: #b9cdf7;
    background: #f3f7ff;
    color: #1261ff;
}

.home-story__toggle:disabled {
    cursor: not-allowed;
    opacity: 0.46;
}

.home-story__toggle svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.home-story__toggle-play {
    display: none;
    fill: currentColor;
    stroke: none;
}

.home-story.is-story-manual-paused .home-story__toggle-pause {
    display: none;
}

.home-story.is-story-manual-paused .home-story__toggle-play {
    display: block;
}

.home-story__stage {
    position: relative;
    aspect-ratio: 31 / 20;
    overflow: hidden;
    background: #f2f5fa;
}

.home-story__panel {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    background: #f2f5fa;
}

.home-story__panel[hidden] {
    display: none;
}

.home-story__panel.is-active {
    z-index: 3;
    animation: home-story-panel-enter 0.56s var(--motion-ease-system) both;
}

.home-story__panel.is-leaving {
    z-index: 2;
    animation: home-story-panel-leave 0.46s ease both;
}

.home-story__panel > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* 首屏产品微交互舞台：产品状态本身承担动效，原始截图仅用于无脚本和减弱动画降级。 */
.home-story__brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.home-story__brand-mark {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    padding: 5px;
    border-radius: 9px;
    background: linear-gradient(145deg, #1261ff, #5b8cff);
    box-shadow: 0 6px 14px rgba(18, 97, 255, 0.2);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.home-story__brand-mark i {
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.94);
}

.home-story__brand > span:last-child {
    min-width: 0;
    display: grid;
}

.home-story__brand strong {
    color: #202b3c;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.home-story__brand small {
    margin-top: 1px;
    overflow: hidden;
    color: #8390a5;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-story__toolbar {
    grid-template-columns: minmax(156px, 0.62fr) minmax(0, 1fr);
    gap: 10px;
}

.home-story__controls {
    justify-content: flex-end;
}

.home-story__tabs {
    flex: 1 1 auto;
    padding: 0;
    background: transparent;
    gap: 4px;
}

.home-story__tabs button {
    position: relative;
    height: 34px;
    flex: 1 1 0;
    padding: 0 7px 5px;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f7fb;
    justify-content: center;
    gap: 4px;
}

.home-story__tabs button b {
    overflow: hidden;
    font: inherit;
    text-overflow: ellipsis;
}

.home-story__tabs button > i {
    position: absolute;
    right: 5px;
    bottom: 3px;
    left: 5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1261ff, #51a5ff);
    transform: scaleX(0);
    transform-origin: left center;
}

.home-story__tabs button.is-complete > i {
    background: #9db9eb;
    transform: scaleX(1);
}

.home-story__tabs button.is-active {
    background: #edf4ff;
    box-shadow: inset 0 0 0 1px rgba(18, 97, 255, 0.08);
}

.home-story__stage {
    isolation: isolate;
    background:
        linear-gradient(rgba(223, 231, 243, 0.45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 231, 243, 0.45) 1px, transparent 1px),
        #f4f7fb;
    background-size: 24px 24px;
}

.home-story__poster {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-story__scene-ui {
    position: absolute;
    inset: 0;
    display: none;
    overflow: hidden;
    background: #f4f7fb;
    color: #263247;
    font-size: 10px;
}

.home-story.is-enhanced .home-story__poster {
    display: none;
}

.home-story.is-enhanced .home-story__scene-ui {
    display: block;
}

.home-story.is-enhanced:not(.is-story-playing) .home-story__scene-ui * {
    animation-play-state: paused !important;
}

.home-story.is-enhanced .home-story__panel.is-active {
    animation: home-product-scene-in 0.56s var(--motion-ease-system) both;
}

.home-story.is-enhanced .home-story__panel.is-leaving {
    animation: home-product-scene-out 0.42s ease both;
}

.home-story.is-enhanced .home-story__panel[data-story-phase='transition'] .home-story__scene-ui {
    opacity: 0.72;
    transform: scale(0.975) translateX(-8px);
    transition: opacity 0.46s ease, transform 0.46s var(--motion-ease-system);
}

.story-appbar {
    height: 42px;
    padding: 0 14px;
    border-bottom: 1px solid #e8edf5;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    gap: 7px;
}

.story-appbar__back {
    width: 24px;
    height: 24px;
    color: #8a96a9;
    display: grid;
    place-items: center;
}

.story-appbar__back svg,
.story-appbar__icon svg {
    width: 15px;
    height: 15px;
}

.story-appbar__icon {
    width: 23px;
    height: 23px;
    border-radius: 7px;
    background: linear-gradient(145deg, #1261ff, #5ba5ff);
    color: #fff;
    display: grid;
    place-items: center;
}

.story-appbar__title {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.story-appbar__title strong {
    font-size: 11px;
}

.story-appbar__title small {
    padding-left: 7px;
    border-left: 1px solid #dde4ef;
    color: #7f8ca0;
    font-size: 8px;
}

.story-appbar__tool {
    margin-left: auto;
    min-height: 24px;
    padding: 0 7px;
    border-radius: 6px;
    color: #64728a;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
}

.story-appbar__tool svg {
    width: 13px;
    height: 13px;
}

.story-appbar__save {
    min-height: 22px;
    padding: 0 8px;
    border: 1px solid #dce6f5;
    border-radius: 999px;
    background: #f8faff;
    color: #54719e;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
}

.story-appbar__save > i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #19b381;
    box-shadow: 0 0 0 3px rgba(25, 179, 129, 0.1);
}

.story-result {
    position: absolute;
    z-index: 20;
    right: 16px;
    bottom: 16px;
    min-width: 156px;
    padding: 9px 12px;
    border: 1px solid rgba(48, 190, 135, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 36px rgba(28, 66, 119, 0.17);
    display: flex;
    align-items: center;
    gap: 9px;
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.96);
}

.story-result > i {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border-radius: 50%;
    background: #19b381;
    color: #fff;
    display: grid;
    place-items: center;
}

.story-result > i svg {
    width: 15px;
    height: 15px;
}

.story-result span {
    display: grid;
    gap: 2px;
}

.story-result strong {
    color: #263247;
    font-size: 10px;
}

.story-result small {
    color: #8390a5;
    font-size: 8px;
}

.home-story__panel[data-story-phase='result'] .story-result,
.home-story__panel[data-story-phase='transition'] .story-result {
    opacity: 1;
    transform: none;
    transition: opacity 0.32s ease, transform 0.4s var(--motion-ease-out);
}

.story-handoff {
    position: absolute;
    z-index: 18;
    min-height: 26px;
    padding: 0 8px;
    border: 1px solid rgba(18, 97, 255, 0.2);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 9px 22px rgba(18, 97, 255, 0.16);
    color: #426087;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    font-size: 8px;
}

.story-handoff > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1261ff;
    box-shadow: 0 0 0 3px rgba(18, 97, 255, 0.11);
}

.story-handoff > b {
    min-width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #edf4ff;
    color: #1261ff;
    display: grid;
    place-items: center;
    font-size: 8px;
}

.story-handoff--in {
    top: 52px;
    left: 12px;
    transform: translateX(-120%);
}

.story-handoff--out {
    right: 14px;
    bottom: 18px;
    transform: translateX(20px);
}

.home-story__panel[data-story-phase='enter'] .story-handoff--in {
    animation: home-product-token-in 0.64s var(--motion-ease-system) 0.12s both;
}

.home-story__panel[data-story-phase='transition'] .story-handoff--out {
    animation: home-product-token-out 0.58s var(--motion-ease-system) both;
}

/* 表单：按真实设计器的组件库、画布和右栏层级进行产品级缩略还原。 */
.story-form__designer-bar {
    height: 42px;
    padding: 0 10px;
    border-bottom: 1px solid #dee0e3;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-form__designer-title,
.story-form__designer-device,
.story-form__designer-actions {
    display: flex;
    align-items: center;
}

.story-form__designer-title {
    min-width: 0;
    gap: 5px;
}

.story-form__back {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 6px;
    color: #646a73;
    display: grid;
    place-items: center;
}

.story-form__back svg {
    width: 14px;
    height: 14px;
    display: block;
}

.story-form__app-icon {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    border-radius: 7px;
    background: linear-gradient(145deg, #0ea66b, #25bd83);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 700;
}

.story-form__designer-title strong {
    color: #1f2329;
    font-size: 10px;
    white-space: nowrap;
}

.story-form__designer-title small {
    padding-left: 6px;
    border-left: 1px solid #dee0e3;
    color: #3370eb;
    font-size: 7px;
    white-space: nowrap;
}

.story-form__designer-device {
    margin-left: auto;
    padding: 2px;
    border: 1px solid #e5e6eb;
    border-radius: 8px;
    background: #f2f3f5;
    gap: 2px;
}

.story-form__designer-device span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 6px;
    color: #646a73;
    display: grid;
    align-items: center;
    justify-content: center;
}

.story-form__designer-device span.is-active {
    background: #fff;
    box-shadow: 0 1px 4px rgba(31, 35, 41, 0.1);
    color: #3370eb;
}

.story-form__designer-device svg {
    width: 15px;
    height: 15px;
    display: block;
}

.story-form__designer-actions {
    gap: 5px;
}

.story-form__designer-actions span,
.story-form__designer-actions b {
    height: 28px;
    padding: 0 9px;
    border: 1px solid #dee0e3;
    border-radius: 6px;
    color: #646a73;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    font-weight: 500;
    white-space: nowrap;
}

.story-form__designer-actions svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    display: block;
}

.story-form__designer-actions b {
    border-color: #3370eb;
    background: #3370eb;
    color: #fff;
}

.story-form__layout {
    height: calc(100% - 42px);
    padding: 8px;
    display: grid;
    grid-template-columns: minmax(142px, 24fr) minmax(244px, 48fr) minmax(164px, 28fr);
    gap: 7px;
}

.story-form__icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.story-form__components,
.story-form__canvas,
.story-form__properties {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dee0e3;
    border-radius: 10px;
    background: #fff;
}

.story-form__components-head {
    height: 34px;
    padding: 0 8px;
    border-bottom: 1px solid #eff0f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-form__components-head strong {
    color: #1f2329;
    font-size: 9px;
    font-weight: 600;
}

.story-form__components-head span {
    display: flex;
    gap: 2px;
}

.story-form__components-head i {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    color: #646a73;
    display: grid;
    place-items: center;
    font-style: normal;
}

.story-form__components-head i > svg {
    width: 12px;
    height: 12px;
    display: block;
}

.story-form__section-title {
    min-height: 18px;
    margin: 7px 8px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-form__section-title strong {
    color: #1f2329;
    font-size: 8px;
}

.story-form__section-title small {
    color: #8f959e;
    display: grid;
    place-items: center;
}

.story-form__section-title small svg {
    width: 11px;
    height: 11px;
    display: block;
}

.story-form__section-title--advanced {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid #eff0f1;
}

.story-form__component-grid {
    padding: 0 7px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px 3px;
}

.story-form__component-grid span {
    min-width: 0;
    color: #646a73;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 7px;
    line-height: 1.15;
    white-space: nowrap;
}

.story-form__component-grid span > b {
    max-width: 100%;
    overflow: hidden;
    font-size: inherit;
    font-weight: 400;
    text-overflow: ellipsis;
}

.story-form__component-icon-shell {
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    border-radius: 8px;
    background: #e0f7ff;
    color: #14728a;
    display: grid;
    place-items: center;
    font-style: normal;
    transition: background-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.story-form__component-icon {
    width: 17px;
    height: 17px;
    display: block;
    fill: currentColor;
}

.story-form__component-grid--advanced .story-form__component-icon-shell {
    background: #fff5dd;
    color: #8a5a00;
}

.home-story__panel--form[data-story-phase='action'] .story-form__component--option .story-form__component-icon-shell {
    background: #14728a;
    box-shadow: 0 0 0 4px rgba(20, 114, 138, 0.13);
    color: #fff;
    transform: translateY(-1px);
}

.story-form__canvas {
    padding: 8px;
    background: #f5f6f7;
}

.story-form__canvas-head {
    height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.story-form__canvas-head strong {
    color: #1f2329;
    font-size: 9px;
}

.story-form__canvas-head span {
    color: #646a73;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 6px;
}

.story-form__canvas-head span i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34c759;
}

.story-form__canvas-sheet {
    height: calc(100% - 24px);
    padding: 9px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(31, 35, 41, 0.05);
}

.story-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.story-form__field {
    min-width: 0;
    margin-bottom: 7px;
}

.story-form__field-label {
    height: 15px;
    color: #646a73;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 8px;
}

.story-form__field-icon {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    color: #646a73;
    display: block;
    fill: currentColor;
}

.story-form__field-label > b {
    overflow: hidden;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-form__field-label > em {
    color: #f54a45;
    font-style: normal;
}

.story-form__field-control {
    height: 25px;
    padding: 0 7px;
    border: 1px solid #dee0e3;
    border-radius: 6px;
    color: #bbbfc4;
    display: flex;
    align-items: center;
    font-size: 7px;
}

.story-form__field-control--textarea {
    align-items: flex-start;
    padding-top: 6px;
}

.story-form__candidate-field {
    position: relative;
    max-height: 0;
    margin: 0;
    padding: 0 7px;
    overflow: visible;
    border: 0 solid transparent;
    border-radius: 8px;
    background: #fff;
    opacity: 0;
}

.story-form__candidate-field .story-form__field-control {
    background: #fff;
}

.story-form__field-toolbar {
    position: absolute;
    z-index: 5;
    right: -2px;
    bottom: -23px;
    height: 21px;
    padding: 2px;
    border: 1px solid #dee0e3;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 5px 12px rgba(31, 35, 41, 0.12);
    display: flex;
    align-items: center;
    gap: 1px;
    opacity: 0;
    transform: translateY(-4px);
}

.story-form__field-toolbar i {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    color: #646a73;
    display: grid;
    place-items: center;
    font-style: normal;
}

.story-form__field-toolbar svg {
    width: 10px;
    height: 10px;
    display: block;
}

.story-form__row--secondary .story-form__field-control {
    background: #fbfbfc;
}

.story-form__property-head {
    height: 48px;
    padding: 0 10px;
    border-bottom: 1px solid #dee0e3;
    display: flex;
    align-items: center;
    gap: 6px;
}

.story-form__property-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #646a73;
    display: block;
    fill: currentColor;
}

.story-form__property-head > strong {
    overflow: hidden;
    color: #1f2329;
    flex: 1;
    font-size: 10px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-form__property-head > b {
    width: 23px;
    height: 23px;
    border-radius: 6px;
    color: #646a73;
    display: grid;
    place-items: center;
    font-weight: 400;
}

.story-form__property-head > b svg {
    width: 12px;
    height: 12px;
    display: block;
}

.story-form__properties-content {
    padding: 8px 9px;
    opacity: 0.58;
    transform: translateX(4px);
    transition: opacity 0.3s ease, transform 0.34s var(--motion-ease-out);
}

.story-form__property-section-title {
    min-height: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-form__property-section-title strong {
    color: #1f2329;
    font-size: 8px;
}

.story-form__property-section-title span {
    color: #3370eb;
    font-size: 6px;
}

.story-form__property-section-title--options {
    margin-top: 1px;
}

.story-form__property-row {
    min-height: 25px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
}

.story-form__property-row > small {
    color: #646a73;
    font-size: 7px;
}

.story-form__property-row > i {
    height: 22px;
    padding: 0 6px;
    overflow: hidden;
    border: 1px solid #dee0e3;
    border-radius: 5px;
    color: #646a73;
    display: flex;
    align-items: center;
    font-style: normal;
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-form__property-row > i > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.story-form__property-row > i > svg {
    width: 10px;
    height: 10px;
    margin-left: auto;
    flex: 0 0 10px;
    display: block;
}

.story-form__property-row > b {
    justify-self: end;
    width: 20px;
    height: 11px;
    border-radius: 999px;
    background: #dfe1e5;
    box-shadow: inset 0 0 0 1px rgba(31, 35, 41, 0.04);
}

.story-form__property-row > b.is-on {
    background: #3370eb;
    box-shadow: inset 9px 0 0 1px #fff;
}

.story-form__property-row--stacked {
    min-height: 39px;
    display: block;
}

.story-form__property-row--stacked > small {
    height: 14px;
    display: flex;
    align-items: center;
}

.story-form__property-options {
    height: 24px;
    padding: 2px;
    border-radius: 5px;
    background: #f2f3f5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    font-size: 7px;
    text-align: center;
}

.story-form__property-options b,
.story-form__property-options span {
    border-radius: 4px;
    display: grid;
    place-items: center;
}

.story-form__property-options b {
    background: #3370eb;
    color: #fff;
}

.story-form__property-options span {
    color: #646a73;
}

.story-form__option-list {
    display: grid;
    gap: 3px;
}

.story-form__option-list span {
    height: 21px;
    padding: 0 5px;
    border: 1px solid #dee0e3;
    border-radius: 5px;
    background: #fbfbfc;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.62;
    transform: translateX(4px);
    transition: border-color 0.24s ease, opacity 0.24s ease, transform 0.32s var(--motion-ease-out);
}

.story-form__option-list span > em {
    color: #bbbfc4;
    width: 10px;
    height: 12px;
    flex: 0 0 10px;
    font-style: normal;
}

.story-form__option-list span > em svg {
    width: 10px;
    height: 12px;
    display: block;
    fill: currentColor;
}

.story-form__option-list span > i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 2px;
    background: #f3ad3d;
}

.story-form__option-list span:nth-child(2) > i {
    background: #3370eb;
}

.story-form__option-list span:nth-child(3) > i {
    background: #19b381;
}

.story-form__option-list b {
    overflow: hidden;
    color: #646a73;
    flex: 1;
    font-size: 7px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-form__drag-card {
    position: absolute;
    z-index: 14;
    top: 104px;
    left: 109px;
    width: 56px;
    height: 70px;
    padding: 6px 4px;
    border: 1px solid rgba(51, 112, 235, 0.22);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 13px 30px rgba(31, 86, 164, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}

.story-form__drag-card > i {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: #e0f7ff;
    color: #14728a;
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
}

.story-form__drag-card > i > svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
}

.story-form__drag-card strong {
    color: #646a73;
    font-size: 7px;
}

.home-story__panel--form[data-story-phase='action'] .story-form__drag-card {
    animation: home-product-form-drag 1.55s var(--motion-ease-system) 0.08s both;
}

.home-story__panel--form[data-story-phase='action'] .story-form__candidate-field {
    animation: home-product-form-placeholder 1.55s var(--motion-ease-system) 0.08s both;
}

.home-story__panel--form[data-story-phase='result'] .story-form__candidate-field,
.home-story__panel--form[data-story-phase='transition'] .story-form__candidate-field {
    max-height: 49px;
    margin-bottom: 26px;
    padding: 5px 7px 6px;
    border-width: 2px;
    border-color: #3370eb;
    opacity: 1;
}

.home-story__panel--form[data-story-phase='result'] .story-form__field-toolbar,
.home-story__panel--form[data-story-phase='transition'] .story-form__field-toolbar {
    opacity: 1;
    transform: none;
    transition: opacity 0.25s ease 0.08s, transform 0.32s var(--motion-ease-out) 0.08s;
}

.home-story__panel--form[data-story-phase='result'] .story-form__properties-content,
.home-story__panel--form[data-story-phase='transition'] .story-form__properties-content {
    opacity: 1;
    transform: none;
}

.home-story__panel--form[data-story-phase='result'] .story-form__property-head,
.home-story__panel--form[data-story-phase='transition'] .story-form__property-head {
    box-shadow: inset 3px 0 0 #3370eb;
}

.home-story__panel--form[data-story-phase='result'] .story-form__option-list span,
.home-story__panel--form[data-story-phase='transition'] .story-form__option-list span {
    border-color: #d8e2f6;
    opacity: 1;
    transform: none;
}

.home-story__panel--form[data-story-phase='result'] .story-form__option-list span:nth-child(2),
.home-story__panel--form[data-story-phase='transition'] .story-form__option-list span:nth-child(2) {
    transition-delay: 0.08s;
}

.home-story__panel--form[data-story-phase='result'] .story-form__option-list span:nth-child(3),
.home-story__panel--form[data-story-phase='transition'] .story-form__option-list span:nth-child(3) {
    transition-delay: 0.16s;
}

/* 流程：DOM 节点与 SVG 连线共享真实运行状态。 */
.story-flow__sidebar {
    position: absolute;
    top: 52px;
    bottom: 10px;
    left: 10px;
    width: 118px;
    padding: 12px;
    border: 1px solid #e5eaf2;
    border-radius: 11px;
    background: #fff;
    display: grid;
    align-content: start;
    gap: 7px;
}

.story-flow__sidebar > strong {
    margin-bottom: 4px;
    font-size: 10px;
}

.story-flow__sidebar > span {
    padding: 7px;
    border-radius: 6px;
    color: #7a879b;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 8px;
}

.story-flow__sidebar > span i {
    width: 7px;
    height: 7px;
    border: 1px solid #aeb9c8;
    border-radius: 2px;
}

.story-flow__sidebar > span.is-active {
    background: #edf4ff;
    color: #1261ff;
}

.story-flow__sidebar > span.is-active i {
    border-color: #1261ff;
    background: #1261ff;
}

.story-flow__sidebar > small {
    margin-top: 14px;
    color: #9aa4b4;
    font-size: 7px;
}

.story-flow__sidebar > b {
    font-size: 8px;
}

.story-flow__canvas {
    position: absolute;
    top: 52px;
    right: 10px;
    bottom: 10px;
    left: 136px;
    overflow: hidden;
    border: 1px solid #e5eaf2;
    border-radius: 11px;
    background:
        radial-gradient(circle at 1px 1px, #dce5f3 1px, transparent 1px),
        #fff;
    background-size: 16px 16px;
}

.story-flow__legend {
    position: absolute;
    z-index: 5;
    top: 9px;
    right: 10px;
    padding: 5px 7px;
    border: 1px solid #e7ebf2;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    gap: 9px;
    color: #7f8a9d;
    font-size: 7px;
}

.story-flow__legend span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.story-flow__legend i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c7cfdb;
}

.story-flow__legend span:nth-child(2) i { background: #4185ff; }
.story-flow__legend span:nth-child(3) i { background: #19b381; }

.story-flow__edges {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
}

.story-flow__edge {
    fill: none;
    stroke: #d5deeb;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.story-flow__node {
    position: absolute;
    z-index: 4;
    width: 132px;
    min-height: 48px;
    padding: 8px 9px;
    border: 1px solid #dce4ef;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 7px 16px rgba(48, 75, 116, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.story-flow__node > i {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    border-radius: 8px;
    background: #f0f4fa;
    color: #728097;
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 10px;
    font-weight: 800;
}

.story-flow__node > span {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.story-flow__node strong { font-size: 8px; white-space: nowrap; }
.story-flow__node small { color: #929dad; font-size: 6px; white-space: nowrap; }

.story-flow__node > b {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c7cfdb;
}

.story-flow__node--start { top: 7%; left: calc(50% - 66px); }
.story-flow__node--review { top: 29%; left: calc(50% - 66px); }
.story-flow__node--update { top: 58%; left: calc(27% - 66px); }
.story-flow__node--notice { top: 58%; left: calc(73% - 66px); }
.story-flow__node--end { bottom: 4%; left: calc(50% - 66px); min-height: 40px; }

.story-flow__runner {
    position: absolute;
    z-index: 9;
    top: 17%;
    left: 50%;
    padding: 5px 7px;
    border-radius: 999px;
    background: #1261ff;
    box-shadow: 0 8px 18px rgba(18, 97, 255, 0.28);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    font-size: 7px;
    transform: translateX(-50%);
}

.story-flow__runner i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.home-story__panel--flow[data-story-phase='action'] .story-flow__runner {
    animation: home-product-flow-run 2.05s var(--motion-ease-system) 0.08s both;
}

.home-story__panel--flow[data-story-phase='action'] .story-flow__edge {
    animation: home-product-flow-edge 0.6s ease forwards;
}

.home-story__panel--flow[data-story-phase='action'] .story-flow__edge--two,
.home-story__panel--flow[data-story-phase='action'] .story-flow__edge--three { animation-delay: 0.65s; }
.home-story__panel--flow[data-story-phase='action'] .story-flow__edge--four,
.home-story__panel--flow[data-story-phase='action'] .story-flow__edge--five { animation-delay: 1.28s; }

.home-story__panel--flow[data-story-phase='action'] .story-flow__node--start,
.home-story__panel--flow[data-story-phase='action'] .story-flow__node--review {
    animation: home-product-node-run 0.58s ease 0.18s both;
}

.home-story__panel--flow[data-story-phase='action'] .story-flow__node--update,
.home-story__panel--flow[data-story-phase='action'] .story-flow__node--notice {
    animation: home-product-node-run 0.58s ease 0.95s both;
}

.home-story__panel--flow[data-story-phase='action'] .story-flow__node--end {
    animation: home-product-node-run 0.58s ease 1.58s both;
}

.home-story__panel--flow[data-story-phase='result'] .story-flow__edge,
.home-story__panel--flow[data-story-phase='transition'] .story-flow__edge {
    stroke: #68c9a6;
    stroke-dashoffset: 0;
}

.home-story__panel--flow[data-story-phase='result'] .story-flow__node,
.home-story__panel--flow[data-story-phase='transition'] .story-flow__node {
    border-color: rgba(25, 179, 129, 0.36);
    box-shadow: 0 8px 20px rgba(25, 179, 129, 0.1);
}

.home-story__panel--flow[data-story-phase='result'] .story-flow__node > i,
.home-story__panel--flow[data-story-phase='transition'] .story-flow__node > i {
    background: #e8f8f2;
    color: #13845f;
}

.home-story__panel--flow[data-story-phase='result'] .story-flow__node > b,
.home-story__panel--flow[data-story-phase='transition'] .story-flow__node > b {
    background: #19b381;
}

/* 分析：指标和图表从数据状态中自然生长。 */
.story-data__workspace {
    height: calc(100% - 42px);
    padding: 12px;
}

.story-data__head {
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-data__head > span {
    display: grid;
    gap: 2px;
}

.story-data__head strong { font-size: 11px; }
.story-data__head small { color: #8793a6; font-size: 7px; }
.story-data__head > i {
    padding: 5px 9px;
    border: 1px solid #e0e7f1;
    border-radius: 7px;
    background: #fff;
    color: #64728a;
    font-style: normal;
    font-size: 8px;
}

.story-data__metrics {
    margin-bottom: 9px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.story-data__metrics article {
    min-height: 69px;
    padding: 10px;
    border: 1px solid #e5eaf2;
    border-radius: 10px;
    background: #fff;
    display: grid;
    align-content: space-between;
}

.story-data__metrics article > span { color: #77849a; font-size: 8px; }
.story-data__metrics article > strong { position: relative; color: #27344a; font-size: 18px; line-height: 1; }
.story-data__metrics article > small { color: #9ba5b4; font-size: 7px; }

.story-data__metrics article:first-child {
    border-color: rgba(18, 97, 255, 0.24);
    background: linear-gradient(145deg, #fff, #f2f7ff);
}

.story-data__metrics article:first-child strong {
    min-height: 18px;
}

.story-data__metrics article:first-child strong i,
.story-data__metrics article:first-child strong b {
    position: absolute;
    inset: 0 auto auto 0;
    font: inherit;
    transition: opacity 0.32s ease, transform 0.4s var(--motion-ease-out);
}

.story-data__metrics article:first-child strong b {
    color: #1261ff;
    opacity: 0;
    transform: translateY(10px);
}

.story-data__charts {
    height: calc(100% - 100px);
    min-height: 180px;
    display: grid;
    grid-template-columns: 1.15fr 1.3fr 0.75fr;
    gap: 8px;
}

.story-data__charts article {
    min-width: 0;
    padding: 10px;
    border: 1px solid #e5eaf2;
    border-radius: 10px;
    background: #fff;
}

.story-data__charts header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-data__charts header strong { font-size: 8px; }
.story-data__charts header small { color: #9aa4b3; font-size: 6px; }

.story-data__bars {
    height: calc(100% - 35px);
    padding: 15px 5px 0;
    border-bottom: 1px solid #e7ebf2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 5px;
}

.story-data__bars i {
    width: 10%;
    height: var(--bar);
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(180deg, #4f8eff, #8ab5ff);
    transform: scaleY(0.04);
    transform-origin: bottom;
}

.story-data__bar-chart footer {
    padding-top: 4px;
    color: #9ba5b4;
    display: flex;
    justify-content: space-between;
    font-size: 5px;
}

.story-data__line-chart svg {
    width: 100%;
    height: calc(100% - 18px);
    margin-top: 5px;
    overflow: visible;
}

.story-data__line {
    fill: none;
    stroke: #4386ff;
    stroke-dasharray: 460;
    stroke-dashoffset: 460;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

.story-data__line-fill {
    fill: url(#story-line-fill);
    opacity: 0;
}

.story-data__status {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.story-data__donut {
    position: relative;
    width: min(92px, 84%);
    aspect-ratio: 1;
    margin: auto;
    border-radius: 50%;
    background: conic-gradient(#19b381 0 0deg, #e8edf5 0);
    display: grid;
    place-items: center;
}

.story-data__donut::before {
    width: 68%;
    height: 68%;
    border-radius: 50%;
    background: #fff;
    content: '';
}

.story-data__donut span {
    position: absolute;
    display: grid;
    text-align: center;
}

.story-data__donut strong { font-size: 13px; }
.story-data__donut small { color: #929dad; font-size: 6px; }
.story-data__status footer { display: flex; justify-content: center; gap: 8px; color: #8390a3; font-size: 6px; }
.story-data__status footer span { display: flex; align-items: center; gap: 3px; }
.story-data__status footer i { width: 5px; height: 5px; border-radius: 50%; background: #19b381; }
.story-data__status footer span:last-child i { background: #dce3ee; }

.home-story__panel--data[data-story-phase='action'] .story-data__bars i {
    animation: home-product-bar-grow 0.7s var(--motion-ease-out) both;
}

.home-story__panel--data[data-story-phase='action'] .story-data__bars i:nth-of-type(2) { animation-delay: 0.08s; }
.home-story__panel--data[data-story-phase='action'] .story-data__bars i:nth-of-type(3) { animation-delay: 0.16s; }
.home-story__panel--data[data-story-phase='action'] .story-data__bars i:nth-of-type(4) { animation-delay: 0.24s; }
.home-story__panel--data[data-story-phase='action'] .story-data__bars i:nth-of-type(5) { animation-delay: 0.32s; }
.home-story__panel--data[data-story-phase='action'] .story-data__bars i:nth-of-type(6) { animation-delay: 0.4s; }
.home-story__panel--data[data-story-phase='action'] .story-data__bars i:nth-of-type(7) { animation-delay: 0.48s; }

.home-story__panel--data[data-story-phase='action'] .story-data__line {
    animation: home-product-line-draw 1.2s var(--motion-ease-system) 0.22s forwards;
}

.home-story__panel--data[data-story-phase='action'] .story-data__line-fill {
    animation: home-product-area-show 0.56s ease 0.88s forwards;
}

.home-story__panel--data[data-story-phase='action'] .story-data__donut {
    animation: home-product-donut-fill 1.1s var(--motion-ease-system) 0.18s forwards;
}

.home-story__panel--data[data-story-phase='result'] .story-data__metrics article:first-child strong i,
.home-story__panel--data[data-story-phase='transition'] .story-data__metrics article:first-child strong i {
    opacity: 0;
    transform: translateY(-9px);
}

.home-story__panel--data[data-story-phase='result'] .story-data__metrics article:first-child strong b,
.home-story__panel--data[data-story-phase='transition'] .story-data__metrics article:first-child strong b {
    opacity: 1;
    transform: none;
}

.home-story__panel--data[data-story-phase='result'] .story-data__bars i,
.home-story__panel--data[data-story-phase='transition'] .story-data__bars i { transform: scaleY(1); }
.home-story__panel--data[data-story-phase='result'] .story-data__line,
.home-story__panel--data[data-story-phase='transition'] .story-data__line { stroke-dashoffset: 0; }
.home-story__panel--data[data-story-phase='result'] .story-data__line-fill,
.home-story__panel--data[data-story-phase='transition'] .story-data__line-fill { opacity: 1; }
.home-story__panel--data[data-story-phase='result'] .story-data__donut,
.home-story__panel--data[data-story-phase='transition'] .story-data__donut { background: conic-gradient(#19b381 0 346deg, #e8edf5 346deg); }

/* 流程运行和经营分析共用真实产品层级，旧监控式布局由以下产品化投影完整覆盖。 */
.story-flow__appbar .story-appbar__icon {
    background: #eaf2ff;
    color: #3370eb;
}

.story-flow__canvas {
    top: 52px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-color: #e3e7ed;
    border-radius: 10px;
    background:
        radial-gradient(circle at 1px 1px, rgba(100, 106, 115, 0.15) 1px, transparent 1px),
        #f9fafb;
    background-size: 16px 16px;
}

.story-flow__canvas::before {
    position: absolute;
    z-index: 0;
    top: 34px;
    bottom: 0;
    left: 50%;
    width: 280px;
    background: linear-gradient(90deg, transparent, rgba(51, 112, 235, 0.035), transparent);
    content: '';
    transform: translateX(-50%);
}

.story-flow__canvas-head {
    position: absolute;
    z-index: 8;
    top: 0;
    right: 0;
    left: 0;
    height: 34px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(222, 224, 227, 0.8);
    background: rgba(255, 255, 255, 0.94);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-flow__canvas-head > span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.story-flow__canvas-head strong {
    color: #1f2329;
    font-size: 9px;
}

.story-flow__canvas-head small {
    color: #8f959e;
    font-size: 7px;
}

.story-flow__canvas-head > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.story-flow__canvas-head > div i {
    color: #646a73;
    font-style: normal;
    font-size: 7px;
}

.story-flow__canvas-head > div b {
    width: 22px;
    height: 22px;
    border: 1px solid #dee0e3;
    border-radius: 5px;
    background: #fff;
    color: #646a73;
    display: grid;
    place-items: center;
}

.story-flow__canvas-head svg {
    width: 12px;
    height: 12px;
}

.story-flow__edges {
    top: 34px;
    height: calc(100% - 34px);
}

.story-flow__edge {
    stroke: #c9d0db;
    stroke-width: 1.5;
}

.story-flow__node {
    --node-color: #3370eb;
    --node-soft: #eaf2ff;
    width: 176px;
    min-height: 46px;
    padding: 0;
    border: 1px solid #dee0e3;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(31, 35, 41, 0.07);
    display: block;
    overflow: hidden;
    opacity: 0.94;
}

.story-flow__node::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--node-color);
    content: '';
    opacity: 0.72;
}

.story-flow__node header {
    height: 27px;
    padding: 0 8px 0 9px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.story-flow__node header > i {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    border-radius: 6px;
    background: var(--node-soft);
    color: var(--node-color);
    display: grid;
    place-items: center;
}

.story-flow__node header svg {
    width: 12px;
    height: 12px;
}

.story-flow__node header strong {
    min-width: 0;
    color: #1f2329;
    font-size: 8px;
    line-height: 1;
    white-space: nowrap;
}

.story-flow__node header b {
    margin-left: auto;
    padding: 2px 4px;
    border-radius: 4px;
    background: #f2f3f5;
    color: #8f959e;
    font-size: 5px;
    font-weight: 500;
}

.story-flow__node p {
    min-height: 19px;
    margin: 0;
    padding: 4px 9px 5px 36px;
    border-top: 1px solid #f0f1f2;
    background: #fbfbfc;
    color: #8f959e;
    font-size: 6px;
    line-height: 10px;
    white-space: nowrap;
}

.story-flow__node > em {
    position: absolute;
    top: 8px;
    right: -18px;
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #c9cdd4;
    box-shadow: 0 0 0 1px #c9cdd4;
}

.story-flow__node--start { top: 45px; left: calc(50% - 88px); --node-color: #3373d2; --node-soft: #e9f2ff; }
.story-flow__node--review { top: 105px; left: calc(50% - 88px); --node-color: #3370eb; --node-soft: #eaf2ff; }
.story-flow__node--update { top: 165px; left: calc(50% - 88px); --node-color: #7c5ce5; --node-soft: #f0ecff; }
.story-flow__node--notice { top: 225px; left: calc(50% - 88px); --node-color: #d97706; --node-soft: #fff3df; }
.story-flow__node--end { top: 282px; bottom: auto; left: calc(50% - 88px); min-height: 35px; --node-color: #19a474; --node-soft: #e7f8f1; }
.story-flow__node--end header { height: 34px; }
.story-flow__node--end p { display: none; }

.story-flow__runner {
    top: 75px;
    padding: 5px 8px;
    border: 1px solid rgba(51, 112, 235, 0.22);
    background: #fff;
    box-shadow: 0 8px 18px rgba(51, 112, 235, 0.2);
    color: #3370eb;
    font-size: 6px;
}

.story-flow__runner i {
    background: #3370eb;
    box-shadow: 0 0 0 3px rgba(51, 112, 235, 0.12);
}

.home-story__panel--flow[data-story-phase='action'] .story-flow__runner {
    animation: home-product-flow-run-vertical 1.88s var(--motion-ease-system) 0.04s both;
}

.home-story__panel--flow[data-story-phase='action'] .story-flow__edge {
    animation-name: home-product-flow-edge;
    animation-duration: 0.4s;
}

.home-story__panel--flow[data-story-phase='action'] .story-flow__edge--two { animation-delay: 0.4s; }
.home-story__panel--flow[data-story-phase='action'] .story-flow__edge--three { animation-delay: 0.78s; }
.home-story__panel--flow[data-story-phase='action'] .story-flow__edge--four { animation-delay: 1.16s; }

.home-story__panel--flow[data-story-phase='action'] .story-flow__node--start { animation: home-product-flow-node-progress 0.46s ease 0.02s both; }
.home-story__panel--flow[data-story-phase='action'] .story-flow__node--review { animation: home-product-flow-node-progress 0.46s ease 0.38s both; }
.home-story__panel--flow[data-story-phase='action'] .story-flow__node--update { animation: home-product-flow-node-progress 0.46s ease 0.76s both; }
.home-story__panel--flow[data-story-phase='action'] .story-flow__node--notice { animation: home-product-flow-node-progress 0.46s ease 1.14s both; }
.home-story__panel--flow[data-story-phase='action'] .story-flow__node--end { animation: home-product-flow-node-progress 0.46s ease 1.52s both; }

.home-story__panel--flow[data-story-phase='result'] .story-flow__node,
.home-story__panel--flow[data-story-phase='transition'] .story-flow__node {
    border-color: rgba(25, 164, 116, 0.34);
    box-shadow: 0 4px 12px rgba(25, 164, 116, 0.08);
}

.home-story__panel--flow[data-story-phase='result'] .story-flow__node > em,
.home-story__panel--flow[data-story-phase='transition'] .story-flow__node > em {
    background: #19a474;
    box-shadow: 0 0 0 1px #19a474;
}

.home-story__panel--flow[data-story-phase='result'] .story-flow__edge,
.home-story__panel--flow[data-story-phase='transition'] .story-flow__edge {
    stroke: #5ac49d;
}

.story-data {
    background: #f5f6f8;
}

.story-data__appbar .story-appbar__icon {
    background: #eaf2ff;
    color: #3370eb;
}

.story-data__workspace {
    height: calc(100% - 42px);
    padding: 10px 12px 12px;
}

.story-data__head {
    min-height: 32px;
    margin-bottom: 7px;
}

.story-data__head > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.story-data__head > div > i {
    min-height: 24px;
    padding: 0 7px;
    border: 1px solid #dee0e3;
    border-radius: 6px;
    background: #fff;
    color: #646a73;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-style: normal;
    font-size: 7px;
}

.story-data__head svg {
    width: 11px;
    height: 11px;
}

.story-data__metrics {
    margin-bottom: 7px;
    gap: 7px;
}

.story-data__metrics article {
    min-height: 72px;
    padding: 8px 10px;
    border-color: #e3e5e8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(31, 35, 41, 0.035);
}

.story-data__metrics article header,
.story-data__metrics article header > span,
.story-data__metrics article > small {
    display: flex;
    align-items: center;
}

.story-data__metrics article header {
    justify-content: space-between;
}

.story-data__metrics article header > span {
    gap: 5px;
    color: #646a73;
    font-size: 7px;
}

.story-data__metrics article header svg {
    width: 12px;
    height: 12px;
    color: #3370eb;
}

.story-data__metrics article header em {
    color: #8f959e;
    font-style: normal;
    font-size: 5px;
}

.story-data__metrics article > strong {
    color: #1f2329;
    font-size: 19px;
    font-weight: 650;
}

.story-data__metrics article > small {
    gap: 3px;
    color: #19a474;
    font-size: 6px;
}

.story-data__metrics article > small svg {
    width: 9px;
    height: 9px;
}

.story-data__charts {
    height: calc(100% - 111px);
    min-height: 174px;
    grid-template-columns: 1.08fr 1.28fr 0.82fr;
    gap: 7px;
}

.story-data__charts article {
    padding: 9px;
    border-color: #e3e5e8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(31, 35, 41, 0.035);
}

.story-data__charts header > span {
    display: grid;
    gap: 2px;
}

.story-data__charts header strong {
    color: #1f2329;
    font-size: 8px;
}

.story-data__charts header small {
    color: #8f959e;
    font-size: 5px;
}

.story-data__charts header > em {
    color: #8f959e;
    display: flex;
    align-items: center;
    gap: 3px;
    font-style: normal;
    font-size: 5px;
}

.story-data__charts header > em i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3370eb;
}

.story-data__bars {
    position: relative;
    height: calc(100% - 39px);
    padding: 16px 5px 0;
    border-bottom-color: #e3e5e8;
}

.story-data__bars > b {
    position: absolute;
    right: 5px;
    left: 5px;
    height: 1px;
    background: #f0f1f2;
}

.story-data__bars > b:nth-child(1) { top: 28%; }
.story-data__bars > b:nth-child(2) { top: 52%; }
.story-data__bars > b:nth-child(3) { top: 76%; }

.story-data__bars > i {
    z-index: 1;
    border-radius: 3px 3px 1px 1px;
    background: linear-gradient(180deg, #3370eb, #82afff);
}

.story-data__line-chart svg {
    height: calc(100% - 28px);
    margin-top: 7px;
}

.story-data__line-grid {
    fill: none;
    stroke: #edf0f4;
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.story-data__line-points {
    fill: #fff;
    stroke: #3370eb;
    stroke-width: 2;
    opacity: 0;
}

.story-data__donut {
    width: min(88px, 80%);
    background: conic-gradient(#19a474 0 0deg, #e9edf2 0);
}

.story-data__status footer {
    flex-direction: column;
    gap: 4px;
    font-size: 5px;
}

.story-data__status footer span {
    justify-content: center;
}

.story-data__status footer i {
    background: #19a474;
}

.home-story__panel--data[data-story-phase='action'] .story-data__metrics article {
    animation: home-product-metric-activate 0.52s var(--motion-ease-out) both;
}

.home-story__panel--data[data-story-phase='action'] .story-data__metrics article:nth-child(2) { animation-delay: 0.12s; }
.home-story__panel--data[data-story-phase='action'] .story-data__metrics article:nth-child(3) { animation-delay: 0.24s; }

.home-story__panel--data[data-story-phase='action'] .story-data__line-points {
    animation: home-product-chart-points 0.48s ease 0.95s forwards;
}

.home-story__panel--data[data-story-phase='result'] .story-data__line-points,
.home-story__panel--data[data-story-phase='transition'] .story-data__line-points {
    opacity: 1;
}

.home-story__panel--data[data-story-phase='result'] .story-data__donut,
.home-story__panel--data[data-story-phase='transition'] .story-data__donut {
    background: conic-gradient(#19a474 0 346deg, #e9edf2 346deg);
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'] .home-hero__content > * {
    animation: none;
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'] .home-hero__eyebrow,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'] .home-hero__content > p,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'] .home-hero__actions {
    opacity: 0;
    transform: translate3d(-16px, 0, 0);
    transition: opacity 0.58s ease, transform 0.58s var(--motion-ease-out);
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'] .home-hero__content h1 {
    opacity: 1;
    transform: none;
}

.home-hero__content h1 > span {
    display: block;
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'] .home-hero__content h1 > span {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: clip-path 0.68s var(--motion-ease-system), opacity 0.42s ease,
        transform 0.68s var(--motion-ease-system);
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'] .home-story__console {
    clip-path: inset(0 0 100% 0 round 28px);
    opacity: 0;
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'].is-motion-entered .home-hero__eyebrow,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'].is-motion-entered .home-hero__content > p,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'].is-motion-entered .home-hero__actions {
    opacity: 1;
    transform: none;
}

.official-page--home [data-motion-scene='hero'].is-motion-entered .home-hero__content > p {
    transition-delay: 0.32s;
}

.official-page--home [data-motion-scene='hero'].is-motion-entered .home-hero__actions {
    transition-delay: 0.42s;
}

.official-page--home [data-motion-scene='hero'].is-motion-entered .home-hero__hint {
    transition-delay: 0.5s;
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'].is-motion-entered .home-hero__content h1 > span {
    clip-path: inset(0);
    opacity: 1;
    transform: none;
}

.official-page--home [data-motion-scene='hero'].is-motion-entered .home-hero__content h1 > span:nth-child(2) {
    transition-delay: 0.1s;
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='hero'].is-motion-entered .home-story__console {
    clip-path: inset(0 round 28px);
    opacity: 1;
    transition: clip-path 0.84s var(--motion-ease-system) 0.12s, opacity 0.38s ease 0.12s;
}
.home-proof__grid {
    overflow: hidden;
}

.home-proof article::after {
    position: absolute;
    top: 0;
    right: 18%;
    left: 18%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #3370fc, transparent);
    opacity: 0;
    transform: scaleX(0.2);
    transition: opacity 0.46s ease, transform 0.62s var(--motion-ease-system);
    content: '';
}

.home-proof strong b {
    font: inherit;
}

.home-proof article[data-motion-static='true'] strong::before {
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #19b381;
    box-shadow: 0 0 0 5px rgba(25, 179, 129, 0.12);
    display: inline-block;
    vertical-align: 3px;
    content: '';
}

.official-page--home.is-motion-ready:not(.is-motion-reduced) .home-proof article {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 0.48s ease, transform 0.58s var(--motion-ease-system);
    transition-delay: var(--motion-delay, 0ms);
}

.official-page--home.is-motion-ready:not(.is-motion-reduced) .home-proof.is-motion-entered article {
    opacity: 1;
    transform: none;
}

.official-page--home .home-proof.is-motion-entered article::after {
    opacity: 0.74;
    transform: scaleX(1);
}

.home-loop__steps::before,
.official-page--home .home-loop__steps::after {
    display: none;
}

.home-loop__steps li::after,
.home-loop__steps li::before {
    position: absolute;
    z-index: 0;
    top: 31px;
    right: calc(-50% - 12px + 32px);
    left: calc(50% + 32px);
    height: 2px;
    border-radius: 999px;
    pointer-events: none;
    content: '';
}

.home-loop__steps li::after {
    background: linear-gradient(90deg, #a8c6ff, #3370fc);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.54s var(--motion-ease-system);
    transition-delay: calc(var(--loop-line-delay, 0ms) + 180ms);
}

.home-loop__steps li::before {
    z-index: 1;
    background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.95) 50%, transparent 100%);
    background-size: 44px 100%;
    background-repeat: no-repeat;
    opacity: 0;
}

.home-loop__steps li:last-child::after,
.home-loop__steps li:last-child::before {
    display: none;
}

.home-loop__steps li > span {
    position: relative;
    z-index: 2;
    transition: color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease, transform 0.4s var(--motion-ease-system);
}

.home-loop__steps li > span::after {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(51, 112, 252, 0.36);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.78);
    pointer-events: none;
    content: '';
}

.official-page--home.is-motion-ready:not(.is-motion-reduced) [data-motion-scene='loop'] .home-section-head,
.official-page--home.is-motion-ready:not(.is-motion-reduced) [data-motion-scene='loop'] .home-loop__action,
.official-page--home.is-motion-ready:not(.is-motion-reduced) [data-motion-scene='loop'] .home-loop__steps li {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 0.5s ease, transform 0.58s var(--motion-ease-system);
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='loop'].is-motion-entered .home-section-head,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='loop'].is-motion-entered .home-loop__action,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='loop'].is-motion-entered .home-loop__steps li {
    opacity: 1;
    transform: none;
}

.official-page--home [data-motion-scene='loop'].is-motion-entered .home-loop__steps li {
    transition-delay: calc(var(--loop-enter-delay, 0ms) + 120ms);
}

.official-page--home [data-motion-scene='loop'].is-motion-entered .home-loop__steps li::after {
    transform: scaleX(1);
}

.official-page--home:not(.is-motion-reduced)
    [data-motion-scene='loop'].is-motion-active .home-loop__steps li::before {
    opacity: 1;
    animation: home-os-loop-flow 5.4s linear infinite;
    animation-delay: var(--loop-cycle-delay, 0ms);
}

.official-page--home:not(.is-motion-reduced)
    [data-motion-scene='loop'].is-motion-active .home-loop__steps li > span::after {
    animation: home-os-node-ring 5.4s ease-out infinite;
    animation-delay: var(--loop-cycle-delay, 0ms);
}

.feature-tabs__toolbar {
    width: min(760px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.feature-tabs__toolbar .feature-tabs {
    width: auto;
    min-width: 0;
    margin: 0;
}

.feature-tabs__autoplay {
    min-width: 102px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(51, 112, 252, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #315ea8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.feature-tabs__autoplay:hover,
.feature-tabs__autoplay:focus-visible {
    border-color: rgba(51, 112, 252, 0.42);
    background: #fff;
    color: #1261ff;
    outline: none;
}

.feature-tabs__autoplay:focus-visible {
    box-shadow: 0 0 0 3px rgba(51, 112, 252, 0.14);
}

.feature-tabs__autoplay svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.feature-tabs__play-icon,
.feature-tabs__autoplay.is-paused .feature-tabs__pause-icon {
    display: none;
}

.feature-tabs__autoplay.is-paused .feature-tabs__play-icon {
    display: block;
}

.feature-tabs__item {
    position: relative;
    overflow: hidden;
}

.feature-tabs__item::after {
    position: absolute;
    right: 14px;
    bottom: 2px;
    left: 14px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    transform: scaleX(0);
    transform-origin: left center;
    content: '';
}

.home-product.is-autoplay-running .feature-tabs__item.active::after {
    animation: home-os-autoplay-progress 6s linear both;
}

.home-product {
    --product-light-x: 50%;
    --product-light-y: 42%;
    --product-shift-x: 0px;
    --product-shift-y: 0px;
}

.feature-panel__image {
    position: relative;
    overflow: hidden;
    transform: translate3d(var(--product-shift-x), var(--product-shift-y), 0);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.feature-panel__image::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--product-light-x) var(--product-light-y), rgba(255, 255, 255, 0.25), transparent 28%);
    opacity: 0.74;
    pointer-events: none;
    content: '';
}

.feature-panel__signal {
    position: absolute;
    z-index: 3;
    top: 16px;
    right: 16px;
    height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(51, 112, 252, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #315ea8;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-8px);
}

.feature-panel__signal i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #19b381;
    box-shadow: 0 0 0 4px rgba(25, 179, 129, 0.13);
}

.feature-panel__scan {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    opacity: 0;
    transform: translate3d(-120%, 0, 0) skewX(-12deg);
    pointer-events: none;
}

.feature-panel.is-booting .feature-panel__text {
    animation: home-os-product-copy 0.42s var(--motion-ease-system) both;
}

.feature-panel.is-booting .feature-panel__image {
    animation: home-os-product-screen 0.52s var(--motion-ease-system) both;
}

.feature-panel.is-booting .feature-panel__signal,
.home-product.is-motion-entered .feature-panel.active .feature-panel__signal {
    animation: home-os-product-signal 0.42s var(--motion-ease-out) 0.34s both;
}

.feature-panel.is-booting .feature-panel__scan,
.home-product.is-motion-entered .feature-panel.active .feature-panel__scan {
    animation: home-os-product-scan 0.72s ease-out 0.18s both;
}

.home-governance__network {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.42;
    pointer-events: none;
}

.home-governance__network path {
    fill: none;
    stroke: rgba(122, 167, 255, 0.22);
    stroke-width: 1.5;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    vector-effect: non-scaling-stroke;
    transition: stroke-dashoffset 1.2s var(--motion-ease-system);
}

.home-governance__network path:nth-child(2) {
    transition-delay: 0.18s;
}

.home-governance__network circle {
    fill: #7aa7ff;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity 0.35s ease 0.72s, transform 0.48s var(--motion-ease-system) 0.72s;
    transform: scale(0.4);
}

.official-page--home .home-governance::before {
    inset: -30% -20%;
    background: radial-gradient(circle, rgba(83, 138, 255, 0.25) 0, rgba(83, 138, 255, 0) 56%);
    animation: none;
}

.official-page--home .home-governance::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image:
        linear-gradient(rgba(122, 167, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 167, 255, 0.055) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse at 68% 50%, #000, transparent 72%);
    opacity: 0.7;
    pointer-events: none;
    content: '';
}

.official-page--home .home-governance__layout {
    z-index: 1;
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='governance'] .home-section-head,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='governance'] .home-governance__grid article {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
    transition: opacity 0.5s ease, transform 0.62s var(--motion-ease-system);
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='governance'].is-motion-entered .home-section-head,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='governance'].is-motion-entered .home-governance__grid article {
    opacity: 1;
    transform: none;
}

.official-page--home [data-motion-scene='governance'].is-motion-entered .home-governance__grid article {
    transition-delay: calc(var(--governance-delay, 0ms) + 180ms);
}

.official-page--home [data-motion-scene='governance'].is-motion-entered .home-governance__network path {
    stroke-dashoffset: 0;
}

.official-page--home [data-motion-scene='governance'].is-motion-entered .home-governance__network circle {
    opacity: 0.9;
    transform: scale(1);
}

.official-page--home:not(.is-motion-reduced)
    [data-motion-scene='governance'].is-motion-entered::before {
    animation: home-os-governance-sweep 1.15s ease-out both;
}

.official-page--home:not(.is-motion-reduced)
    [data-motion-scene='governance'].is-motion-active .home-governance__network circle {
    animation: home-os-governance-node 4.8s ease-in-out infinite;
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='reveal'] .home-section-head,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='reveal'] .home-faq__list,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='reveal'] .site-cta__content,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='reveal'] [data-motion-group] > * {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.99);
    transition: opacity 0.5s ease, transform 0.64s var(--motion-ease-system);
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='reveal'] [data-motion-group] > * {
    transition-delay: calc(var(--motion-delay, 0ms) + 100ms);
}

.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='reveal'].is-motion-entered .home-section-head,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='reveal'].is-motion-entered .home-faq__list,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='reveal'].is-motion-entered .site-cta__content,
.official-page--home.is-motion-ready:not(.is-motion-reduced)
    [data-motion-scene='reveal'].is-motion-entered [data-motion-group] > * {
    opacity: 1;
    transform: none;
}

.official-page--home.is-motion-paused [data-motion-scene] *,
.official-page--home.is-motion-paused [data-motion-scene]::before,
.official-page--home.is-motion-paused [data-motion-scene]::after {
    animation-play-state: paused !important;
}

@keyframes home-product-scene-in {
    from {
        clip-path: inset(0 7% 0 0 round 16px);
        opacity: 0;
        transform: translate3d(12px, 0, 0) scale(0.992);
    }
    to {
        clip-path: inset(0 round 0);
        opacity: 1;
        transform: none;
    }
}

@keyframes home-product-scene-out {
    from { opacity: 1; transform: none; }
    to { opacity: 0; transform: translate3d(-8px, 0, 0) scale(0.978); }
}

@keyframes home-product-token-in {
    from { opacity: 0; transform: translate3d(-120%, 0, 0) scale(0.9); }
    68% { opacity: 1; transform: translate3d(8px, 0, 0) scale(1.02); }
    to { opacity: 1; transform: none; }
}

@keyframes home-product-token-out {
    from { opacity: 0; transform: translate3d(18px, 0, 0) scale(0.94); }
    24% { opacity: 1; transform: none; }
    to { opacity: 0; transform: translate3d(82px, -10px, 0) scale(0.86); }
}

@keyframes home-product-form-drag {
    0% { top: 104px; left: 109px; opacity: 0; transform: scale(0.92); }
    12% { top: 104px; left: 109px; opacity: 1; transform: scale(1); }
    30% { top: 118px; left: 148px; opacity: 1; transform: scale(1); }
    76% { top: 176px; left: calc(50% - 47px); opacity: 1; transform: scale(0.98); }
    90% { top: 176px; left: calc(50% - 47px); opacity: 1; transform: scale(0.94); }
    100% { top: 176px; left: calc(50% - 47px); opacity: 0; transform: scale(0.9); }
}

@keyframes home-product-form-placeholder {
    0%, 38% {
        max-height: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-width: 0;
        border-color: transparent;
        background: #fff;
        opacity: 0;
    }
    58%, 100% {
        max-height: 49px;
        margin-bottom: 7px;
        padding-top: 5px;
        padding-bottom: 6px;
        border-width: 1px;
        border-color: #b7cef9;
        background: #f5f8ff;
        opacity: 0.76;
    }
}

@keyframes home-product-form-drag-mobile {
    0% { top: 72px; left: 51px; opacity: 0; transform: scale(0.9); }
    12% { top: 72px; left: 51px; opacity: 1; transform: scale(1); }
    34% { top: 84px; left: 82px; opacity: 1; transform: scale(1); }
    78% { top: 118px; left: calc(50% + 10px); opacity: 1; transform: scale(0.96); }
    92% { top: 118px; left: calc(50% + 10px); opacity: 1; transform: scale(0.92); }
    100% { top: 118px; left: calc(50% + 10px); opacity: 0; transform: scale(0.88); }
}

@keyframes home-product-form-placeholder-mobile {
    0%, 38% {
        max-height: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-width: 0;
        border-color: transparent;
        background: #fff;
        opacity: 0;
    }
    58%, 100% {
        max-height: 35px;
        margin-bottom: 4px;
        padding-top: 3px;
        padding-bottom: 4px;
        border-width: 1px;
        border-color: #b7cef9;
        background: #f5f8ff;
        opacity: 0.76;
    }
}

@keyframes home-product-flow-run {
    0% { opacity: 0; transform: translate3d(-50%, -10px, 0) scale(0.9); }
    8% { opacity: 1; transform: translate3d(-50%, 0, 0) scale(1); }
    30% { opacity: 1; transform: translate3d(-50%, 70px, 0) scale(1); }
    55% { opacity: 1; transform: translate3d(-190%, 150px, 0) scale(0.94); }
    73% { opacity: 1; transform: translate3d(90%, 150px, 0) scale(0.94); }
    92% { opacity: 1; transform: translate3d(-50%, 232px, 0) scale(1); }
    100% { opacity: 0; transform: translate3d(-50%, 238px, 0) scale(0.88); }
}

@keyframes home-product-flow-run-vertical {
    0% { opacity: 0; transform: translate3d(-50%, -8px, 0) scale(0.92); }
    7% { opacity: 1; transform: translate3d(-50%, 0, 0) scale(1); }
    25% { opacity: 1; transform: translate3d(-50%, 60px, 0) scale(1); }
    46% { opacity: 1; transform: translate3d(-50%, 120px, 0) scale(1); }
    67% { opacity: 1; transform: translate3d(-50%, 180px, 0) scale(1); }
    88% { opacity: 1; transform: translate3d(-50%, 241px, 0) scale(1); }
    100% { opacity: 0; transform: translate3d(-50%, 248px, 0) scale(0.9); }
}

@keyframes home-product-flow-edge {
    from { stroke: #d5deeb; stroke-dashoffset: 1; }
    70%, to { stroke: #4d8bff; stroke-dashoffset: 0; }
}

@keyframes home-product-node-run {
    0% { border-color: #dce4ef; box-shadow: 0 7px 16px rgba(48, 75, 116, 0.06); transform: scale(1); }
    45% { border-color: rgba(18, 97, 255, 0.58); box-shadow: 0 0 0 4px rgba(18, 97, 255, 0.09), 0 12px 24px rgba(18, 97, 255, 0.14); transform: scale(1.035); }
    to { border-color: rgba(25, 179, 129, 0.4); box-shadow: 0 8px 20px rgba(25, 179, 129, 0.1); transform: scale(1); }
}

@keyframes home-product-flow-node-progress {
    0% { border-color: #dee0e3; box-shadow: 0 4px 12px rgba(31, 35, 41, 0.07); transform: scale(1); }
    42% { border-color: rgba(51, 112, 235, 0.7); box-shadow: 0 0 0 3px rgba(51, 112, 235, 0.09), 0 8px 18px rgba(51, 112, 235, 0.13); transform: scale(1.025); }
    100% { border-color: rgba(25, 164, 116, 0.34); box-shadow: 0 4px 12px rgba(25, 164, 116, 0.08); transform: scale(1); }
}

@keyframes home-product-metric-activate {
    0% { opacity: 0.72; transform: translateY(6px); }
    70% { opacity: 1; transform: translateY(-1px); }
    100% { opacity: 1; transform: none; }
}

@keyframes home-product-chart-points {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes home-product-bar-grow {
    from { opacity: 0.5; transform: scaleY(0.04); }
    72% { opacity: 1; transform: scaleY(1.06); }
    to { opacity: 1; transform: scaleY(1); }
}

@keyframes home-product-line-draw {
    from { stroke-dashoffset: 460; }
    to { stroke-dashoffset: 0; }
}

@keyframes home-product-area-show {
    from { opacity: 0; transform: translateY(7px); }
    to { opacity: 1; transform: none; }
}

@keyframes home-product-donut-fill {
    from { opacity: 0.55; transform: rotate(-18deg) scale(0.82); }
    72% { opacity: 1; transform: rotate(0) scale(1.04); }
    to { opacity: 1; transform: none; }
}

@keyframes home-story-panel-enter {
    from {
        clip-path: inset(0 12% 0 0);
        opacity: 0;
        transform: translate3d(14px, 0, 0) scale(0.992);
    }
    to {
        clip-path: inset(0);
        opacity: 1;
        transform: none;
    }
}

@keyframes home-story-panel-leave {
    from { opacity: 1; transform: none; }
    to { opacity: 0; transform: scale(0.985); }
}

@keyframes home-os-loop-flow {
    0%, 12% { background-position: -48px 0; }
    54%, 100% { background-position: calc(100% + 48px) 0; }
}

@keyframes home-os-node-ring {
    0%, 8% { opacity: 0; transform: scale(0.72); }
    16% { opacity: 0.72; }
    30%, 100% { opacity: 0; transform: scale(1.26); }
}

@keyframes home-os-autoplay-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes home-os-product-copy {
    from { opacity: 0; transform: translate3d(-14px, 0, 0); }
    to { opacity: 1; transform: none; }
}

@keyframes home-os-product-screen {
    from { opacity: 0; transform: translate3d(10px, 10px, 0) scale(0.988); }
    to { opacity: 1; transform: translate3d(var(--product-shift-x), var(--product-shift-y), 0); }
}

@keyframes home-os-product-signal {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: none; }
}

@keyframes home-os-product-scan {
    0% { opacity: 0; transform: translate3d(-120%, 0, 0) skewX(-12deg); }
    30% { opacity: 0.72; }
    100% { opacity: 0; transform: translate3d(680%, 0, 0) skewX(-12deg); }
}

@keyframes home-os-governance-sweep {
    0% { opacity: 0; transform: translate3d(-28%, 0, 0); }
    42% { opacity: 0.68; }
    100% { opacity: 0; transform: translate3d(28%, 0, 0); }
}

@keyframes home-os-governance-node {
    0%, 100% { opacity: 0.45; transform: scale(0.86); }
    50% { opacity: 1; transform: scale(1.22); }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .home-loop__steps li:nth-child(3n)::after,
    .home-loop__steps li:nth-child(3n)::before {
        display: none;
    }
}

@media (max-width: 768px), (pointer: coarse) {
    .feature-panel__image {
        transform: none;
        will-change: auto;
    }
}

@media (max-width: 768px) {
    .home-story {
        min-height: 0;
        margin-top: 26px;
    }

    .home-story::before {
        display: none;
    }

    .home-story__console {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        border-radius: 20px;
    }

    .home-story__stage {
        min-height: 0;
    }

    .home-story__toolbar {
        min-height: 52px;
        padding: 8px 9px 10px 12px;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .home-story__brand {
        gap: 7px;
    }

    .home-story__brand-mark {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        padding: 4px;
        border-radius: 7px;
    }

    .home-story__brand strong {
        font-size: 11px;
    }

    .home-story__brand small {
        font-size: 8px;
    }

    .home-story__controls {
        width: 100%;
    }

    .home-story__tabs {
        width: 100%;
    }

    .home-story__tabs button {
        height: 30px;
        padding: 0 5px 4px;
        gap: 3px;
        font-size: 10px;
    }

    .home-story__tabs button span {
        display: none;
    }

    .home-story__toggle {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .story-appbar {
        height: 34px;
        padding: 0 8px;
        gap: 5px;
    }

    .story-appbar__back,
    .story-appbar small {
        display: none;
    }

    .story-appbar__icon {
        width: 20px;
        height: 20px;
        border-radius: 6px;
    }

    .story-appbar__title strong {
        font-size: 9px;
    }

    .story-appbar__tool {
        display: none;
    }

    .story-appbar__save {
        min-height: 19px;
        padding: 0 6px;
        font-size: 7px;
    }

    .story-result {
        right: 8px;
        bottom: 8px;
        min-width: 132px;
        padding: 7px 9px;
        border-radius: 9px;
        gap: 6px;
    }

    .story-result > i {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
    }

    .story-result strong { font-size: 8px; }
    .story-result small { font-size: 6px; }

    .story-handoff,
    .story-flow__runner {
        display: none;
    }

    .story-form__designer-bar {
        height: 34px;
        padding: 0 7px;
        gap: 6px;
    }

    .story-form__designer-title {
        gap: 4px;
    }

    .story-form__back,
    .story-form__designer-title small,
    .story-form__designer-device,
    .story-form__designer-actions span {
        display: none;
    }

    .story-form__app-icon {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
        border-radius: 6px;
        font-size: 7px;
    }

    .story-form__designer-title strong {
        font-size: 8px;
    }

    .story-form__designer-actions {
        margin-left: auto;
    }

    .story-form__designer-actions b {
        height: 21px;
        padding: 0 7px;
        font-size: 6px;
    }

    .story-form__layout {
        height: calc(100% - 34px);
        padding: 6px;
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 5px;
    }

    .story-form__properties {
        display: none;
    }

    .story-form__components,
    .story-form__canvas {
        border-radius: 8px;
    }

    .story-form__components-head {
        height: 24px;
        padding: 0 5px;
    }

    .story-form__components-head strong {
        font-size: 7px;
    }

    .story-form__components-head i {
        width: 15px;
        height: 15px;
        font-size: 6px;
    }

    .story-form__section-title {
        min-height: 12px;
        margin: 4px 5px;
    }

    .story-form__section-title strong {
        font-size: 7px;
    }

    .story-form__section-title small {
        font-size: 5px;
    }

    .story-form__component-grid {
        padding: 0 4px;
        gap: 4px 1px;
    }

    .story-form__component-grid span {
        gap: 2px;
        font-size: 5px;
    }

    .story-form__component-icon-shell {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
        border-radius: 5px;
    }

    .story-form__component-icon {
        width: 11px;
        height: 11px;
    }

    .story-form__canvas {
        padding: 6px;
    }

    .story-form__canvas-head {
        height: 19px;
    }

    .story-form__canvas-head strong { font-size: 8px; }
    .story-form__canvas-head span { font-size: 6px; }
    .story-form__canvas-sheet { height: calc(100% - 19px); padding: 5px; }
    .story-form__row { gap: 4px; }
    .story-form__row--secondary { display: none; }

    .story-form__field {
        margin-bottom: 4px;
    }

    .story-form__field-label {
        height: 11px;
        gap: 2px;
        font-size: 5px;
    }

    .story-form__field-icon {
        width: 8px;
        height: 8px;
        flex-basis: 8px;
    }

    .story-form__field-control {
        height: 17px;
        padding: 0 4px;
        border-radius: 4px;
        font-size: 5px;
    }

    .story-form__candidate-field {
        padding-right: 4px;
        padding-left: 4px;
        border-radius: 5px;
    }

    .story-form__field-toolbar {
        right: 1px;
        bottom: -17px;
        height: 16px;
        border-radius: 4px;
    }

    .story-form__field-toolbar i {
        width: 12px;
        height: 12px;
        font-size: 5px;
    }

    .story-form__drag-card {
        top: 72px;
        left: 51px;
        width: 40px;
        height: 50px;
        padding: 4px 3px;
        border-radius: 6px;
        gap: 2px;
    }

    .story-form__drag-card > i {
        width: 31px;
        height: 31px;
        border-radius: 7px;
    }

    .story-form__drag-card > i > svg {
        width: 18px;
        height: 18px;
    }

    .story-form__drag-card strong {
        font-size: 5px;
    }

    .home-story__panel--form[data-story-phase='action'] .story-form__drag-card {
        animation-name: home-product-form-drag-mobile;
    }

    .home-story__panel--form[data-story-phase='action'] .story-form__candidate-field {
        animation-name: home-product-form-placeholder-mobile;
    }

    .home-story__panel--form[data-story-phase='result'] .story-form__candidate-field,
    .home-story__panel--form[data-story-phase='transition'] .story-form__candidate-field {
        max-height: 35px;
        margin-bottom: 18px;
        padding: 3px 4px 4px;
    }

    .story-flow__canvas {
        top: 40px;
        right: 6px;
        bottom: 6px;
        left: 6px;
        border-radius: 8px;
    }

    .story-flow__canvas-head {
        height: 28px;
        padding: 0 7px;
    }

    .story-flow__canvas-head strong {
        font-size: 7px;
    }

    .story-flow__canvas-head small,
    .story-flow__canvas-head > div i {
        display: none;
    }

    .story-flow__edges {
        top: 28px;
        height: calc(100% - 28px);
    }

    .story-flow__node {
        width: 132px;
        min-height: 38px;
        border-radius: 7px;
    }

    .story-flow__node header {
        height: 23px;
        padding: 0 6px 0 7px;
        gap: 4px;
    }

    .story-flow__node header > i {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
        border-radius: 5px;
    }

    .story-flow__node header svg { width: 10px; height: 10px; }
    .story-flow__node header strong { font-size: 6px; }
    .story-flow__node header b { padding: 1px 3px; font-size: 4px; }
    .story-flow__node p { min-height: 15px; padding: 2px 6px 3px 29px; font-size: 5px; line-height: 9px; }
    .story-flow__node > em { top: 6px; right: -14px; width: 5px; height: 5px; }
    .story-flow__node--start { top: 36px; left: calc(50% - 66px); }
    .story-flow__node--review { top: 84px; left: calc(50% - 66px); }
    .story-flow__node--update { top: 132px; left: calc(50% - 66px); }
    .story-flow__node--notice { top: 180px; left: calc(50% - 66px); }
    .story-flow__node--end { top: 230px; left: calc(50% - 66px); min-height: 30px; }
    .story-flow__node--end header { height: 29px; }

    .story-data__workspace {
        height: calc(100% - 34px);
        padding: 7px;
    }

    .story-data__head {
        min-height: 26px;
        margin-bottom: 5px;
    }

    .story-data__head strong { font-size: 8px; }
    .story-data__head small { font-size: 5px; }
    .story-data__head > div > i { min-height: 20px; padding: 0 5px; font-size: 5px; }
    .story-data__head > div > i:first-child { display: none; }

    .story-data__metrics {
        margin-bottom: 5px;
        gap: 4px;
    }

    .story-data__metrics article {
        min-height: 47px;
        padding: 6px;
        border-radius: 7px;
    }

    .story-data__metrics article header > span { font-size: 5px; }
    .story-data__metrics article header em { display: none; }
    .story-data__metrics article header svg { width: 9px; height: 9px; }
    .story-data__metrics article > strong { font-size: 13px; }
    .story-data__metrics article > small { font-size: 5px; }

    .story-data__charts {
        height: calc(100% - 68px);
        min-height: 86px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
    }

    .story-data__charts article {
        padding: 6px;
        border-radius: 7px;
    }

    .story-data__charts header > span small,
    .story-data__charts header > em {
        display: none;
    }

    .story-data__status {
        display: none;
    }

    .story-data__bars {
        padding-top: 8px;
        gap: 2px;
    }

    .home-loop__steps li::after,
    .home-loop__steps li::before {
        display: none;
    }

    .official-page--home:not(.is-motion-reduced)
        [data-motion-scene='loop'].is-motion-entered .home-loop__steps li > span::after {
        animation: home-os-node-ring 0.72s ease-out both;
        animation-delay: calc(var(--loop-enter-delay, 0ms) + 180ms);
    }

    .feature-tabs__toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .feature-tabs__autoplay {
        align-self: center;
    }

    .feature-panel__signal {
        display: none;
    }

    .home-governance__network {
        opacity: 0.24;
    }
}

/* 笔记本宽度继续使用紧凑双栏，避免 1200px 临界点把看板拆成超长的第二行。 */
@media (min-width: 901px) and (max-width: 1200px) {
    .home-hero {
        min-height: 700px;
        padding: 124px 0 72px;
    }

    .home-hero__inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
        gap: 32px;
        align-items: center;
    }

    .home-hero__content h1 {
        font-size: clamp(42px, 4vw, 48px);
    }

    .home-hero__content > p {
        font-size: 17px;
        line-height: 1.75;
    }

    .home-hero__visual {
        min-height: 410px;
    }

    .home-story__console {
        right: 0;
        width: 100%;
    }

    .story-form__layout {
        padding: 6px;
        grid-template-columns: minmax(108px, 24fr) minmax(185px, 48fr) minmax(132px, 28fr);
        gap: 5px;
    }

    .story-form__components-head {
        height: 31px;
        padding: 0 6px;
    }

    .story-form__section-title {
        margin-right: 6px;
        margin-left: 6px;
    }

    .story-form__component-grid {
        padding: 0 5px;
        column-gap: 1px;
    }

    .story-form__component-icon-shell {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
        border-radius: 6px;
    }

    .story-form__component-icon {
        width: 13px;
        height: 13px;
    }

    .story-form__component-grid span {
        font-size: 5px;
    }

    .story-form__property-head {
        height: 43px;
        padding: 0 8px;
    }

    .story-form__properties-content {
        padding-right: 7px;
        padding-left: 7px;
    }

    .story-form__property-row {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 4px;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .home-story {
        min-height: 0;
        margin-top: 32px;
    }

    .home-story__console {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
    }

    .home-hero__visual {
        min-height: 0;
    }
}

@media (min-width: 769px) {
    .site-nav__group:hover .site-mega {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav__group:hover .site-nav__main > button {
        background: #f1f6ff;
        color: var(--site-primary);
    }

    .site-nav__group:hover .site-nav__main > button svg {
        transform: rotate(180deg);
    }

    .site-nav__group:hover .site-nav__main > .site-nav__link {
        color: var(--site-primary);
    }
}

@media (max-width: 1200px) {
    .site-header__inner {
        gap: 16px;
    }

    .site-nav {
        gap: 8px;
    }

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

    .site-mega {
        left: 120px;
    }

    .home-pains__grid,
    .home-roles__grid,
    .practice-method,
    .service-preparation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-loop__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px 12px;
    }

    .home-loop__steps::before {
        display: none;
    }

    .content-hero__grid,
    .home-governance__layout {
        grid-template-columns: 1fr;
    }

    .platform-map,
    .service-hero-visual {
        width: min(620px, 100%);
        margin: 0 auto;
    }

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

@media (min-width: 901px) and (max-width: 1000px) {
    .site-header__inner {
        gap: 12px;
    }

    .site-nav {
        gap: 4px;
    }

    .site-nav__link {
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .home-capabilities__grid,
    .home-solutions__grid,
    .home-showcase__grid,
    .practice-grid,
    .resource-grid,
    .metric-blueprint,
    .resource-path {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-governance__layout,
    .home-faq__layout,
    .resource-guide {
        gap: 42px;
    }

    .platform-capability-list article {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 32px;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .site-header__inner {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .site-nav-toggle {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        margin-left: auto;
        padding: 9px;
        border: 1px solid #dfe7f3;
        border-radius: 10px;
        background: #fff;
        display: grid;
        align-content: center;
        gap: 4px;
        cursor: pointer;
    }

    .site-nav-toggle span {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: #445065;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        padding: 10px;
        border: 1px solid #e2e9f3;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 20px 40px rgba(24, 50, 94, 0.16);
        display: none;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav,
    .site-nav__group {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav__main {
        justify-content: space-between;
    }

    .site-nav__link,
    .site-nav__main > .site-nav__link {
        min-height: 44px;
        padding: 0 12px;
        display: flex;
        align-items: center;
    }

    .site-nav__main > button {
        width: 44px;
        height: 44px;
    }

    .site-mega {
        position: static;
        visibility: visible;
        margin: 0 6px 8px;
        padding: 10px;
        border: 0;
        border-radius: 12px;
        background: #f7faff;
        box-shadow: none;
        opacity: 1;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .site-nav__group.is-open .site-mega {
        display: grid;
    }

    .site-mega__intro {
        padding: 14px;
    }

    .site-mega__intro strong {
        font-size: 15px;
    }

    .site-mega__intro a {
        padding-top: 12px;
    }

    .site-mega__links--two,
    .site-mega__links--three {
        grid-template-columns: 1fr;
    }

    .site-mega__links > a,
    .site-mega__links > button {
        padding: 10px 12px;
    }

    .site-header__actions {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 8px 0;
    }

    .site-header__inner {
        min-height: 48px;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .site-logo {
        width: 86px;
        height: auto;
        flex: 0 0 86px;
    }

    .site-nav-toggle {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        margin-left: auto;
        padding: 9px;
        border: 1px solid #dfe7f3;
        border-radius: 10px;
        background: #fff;
        display: grid;
        align-content: center;
        gap: 4px;
        cursor: pointer;
    }

    .site-nav-toggle span {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: #445065;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        padding: 10px;
        border: 1px solid #e2e9f3;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 20px 40px rgba(24, 50, 94, 0.16);
        display: none;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav,
    .site-nav__group {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav__main {
        justify-content: space-between;
    }

    .site-nav__link,
    .site-nav__main > .site-nav__link {
        min-height: 44px;
        padding: 0 12px;
        display: flex;
        align-items: center;
    }

    .site-nav__main > button {
        width: 44px;
        height: 44px;
    }

    .site-mega {
        position: static;
        visibility: visible;
        margin: 0 6px 8px;
        padding: 10px;
        border: 0;
        border-radius: 12px;
        background: #f7faff;
        box-shadow: none;
        opacity: 1;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .site-nav__group.is-open .site-mega {
        display: grid;
    }

    .site-mega__intro {
        padding: 14px;
    }

    .site-mega__intro strong {
        font-size: 15px;
    }

    .site-mega__intro a {
        padding-top: 12px;
    }

    .site-mega__links--two,
    .site-mega__links--three {
        grid-template-columns: 1fr;
    }

    .site-mega__links > a,
    .site-mega__links > button {
        padding: 10px 12px;
    }

    .site-header__actions {
        width: auto;
        margin-left: 0;
        gap: 6px;
    }

    .site-header__trial-btn,
    .site-header__login-btn {
        width: auto;
        min-width: 0;
        height: 38px;
        padding: 0 11px;
        font-size: 13px;
        flex: 0 0 auto;
    }

    .site-user-menu {
        width: auto;
    }

    .site-user-menu__trigger {
        height: 38px;
    }

    .site-footer__links {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 28px 20px;
    }

    .site-section {
        padding: 64px 0;
    }

    .home-hero {
        padding-top: 130px;
    }

    .home-hero__content h1 {
        font-size: 38px;
    }

    .home-proof {
        margin-top: -20px;
    }

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

    .home-proof article:nth-child(3)::before {
        display: none;
    }

    .home-proof article:nth-child(n + 3) {
        border-top: 1px solid #e8edf6;
    }

    .home-pains {
        padding-top: 84px;
    }

    .home-section-head--with-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .home-pains__grid,
    .home-roles__grid,
    .home-capabilities__grid,
    .home-solutions__grid,
    .home-delivery__timeline,
    .practice-grid,
    .resource-grid,
    .practice-method,
    .service-preparation,
    .detail-card-grid,
    .metric-blueprint,
    .resource-path {
        grid-template-columns: 1fr;
    }

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

    .home-showcase__grid {
        margin-right: -16px;
        padding-right: 16px;
        overflow-x: auto;
        grid-template-columns: none;
        grid-auto-columns: minmax(280px, 82vw);
        grid-auto-flow: column;
        scroll-snap-type: x mandatory;
    }

    .home-showcase__grid .showcase-card {
        scroll-snap-align: start;
    }

    .home-governance__layout,
    .home-faq__layout,
    .content-hero__grid,
    .platform-boundary__grid,
    .detail-two-column,
    .resource-guide {
        grid-template-columns: 1fr;
    }

    .home-governance__grid {
        grid-template-columns: 1fr;
    }

    .site-cta--rich .site-cta__actions,
    .content-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .content-hero {
        padding: 126px 0 64px;
    }

    .content-hero h1 {
        font-size: 36px;
    }

    .content-hero p {
        font-size: 16px;
    }

    .platform-map {
        min-height: 340px;
        padding: 54px;
    }

    .platform-map > span {
        width: 100px;
        height: 100px;
        font-size: 15px;
    }

    .platform-capability-list article {
        padding: 24px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .platform-capability-list article.is-reverse .platform-capability-list__visual {
        order: 0;
    }

    .platform-capability-list article h2 {
        font-size: 25px;
    }

    .practice-flow {
        grid-template-columns: 1fr;
    }

    .service-hero-visual {
        min-height: 320px;
        padding: 24px;
    }

    .service-stage-list li {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .service-stage-list strong {
        grid-column: 2;
        text-align: left;
    }

    .resource-grid--catalog {
        grid-template-columns: 1fr;
    }

    .site-cta--rich {
        padding-top: 72px;
    }
}

/* 官网Header使用统一三列节奏，避免导航与转化操作在临界宽度失衡。 */
.site-header__inner {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.site-logo {
    width: 128px;
    height: 42px;
    flex: none;
}

.site-nav {
    min-width: 0;
    justify-content: center;
    gap: 8px;
}

.site-nav__link,
.site-nav__main {
    min-height: 36px;
    border-radius: 10px;
}

.site-nav__link {
    padding: 0 10px;
    color: var(--site-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.site-nav__link:hover,
.site-nav__link.active {
    background: #eef4ff;
    color: var(--site-primary);
    font-weight: 500;
}

.site-nav__main {
    padding-left: 2px;
    background: transparent;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.site-nav__main > .site-nav__link {
    padding-right: 2px;
    padding-left: 8px;
    background: transparent;
}

.site-nav__main > button {
    width: 28px;
    height: 36px;
    border-radius: 0 10px 10px 0;
    background: transparent;
}

.site-nav__group:hover .site-nav__main,
.site-nav__group:focus-within .site-nav__main,
.site-nav__group.is-open .site-nav__main,
.site-nav__group--active .site-nav__main {
    background: #eef4ff;
}

.site-nav__group:hover .site-nav__main > .site-nav__link,
.site-nav__group:focus-within .site-nav__main > .site-nav__link,
.site-nav__group.is-open .site-nav__main > .site-nav__link,
.site-nav__group--active .site-nav__main > .site-nav__link,
.site-nav__group:hover .site-nav__main > button,
.site-nav__group:focus-within .site-nav__main > button,
.site-nav__group.is-open .site-nav__main > button,
.site-nav__group--active .site-nav__main > button {
    background: transparent;
    color: var(--site-primary);
}

.site-header__actions {
    margin-left: 0;
    gap: 10px;
}

.site-phone {
    display: inline-flex;
    height: 40px;
    padding-left: 18px;
    border-left: 1px solid #e1e7f0;
    gap: 8px;
    color: #26364d;
    font-size: 15px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    white-space: nowrap;
}

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

.site-header__trial-btn,
.site-header__login-btn {
    min-width: 104px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.site-header__trial-btn:hover,
.site-header__login-btn:hover {
    transform: none;
}

@media (min-width: 1101px) and (max-width: 1200px) {
    .site-header__inner {
        grid-template-columns: 120px minmax(0, 1fr) auto;
        gap: 16px;
    }

    .site-logo {
        width: 120px;
        height: 40px;
    }

    .site-nav {
        gap: 4px;
    }

    .site-nav__link {
        padding-right: 7px;
        padding-left: 7px;
    }

    .site-nav__main > .site-nav__link {
        padding-right: 1px;
        padding-left: 7px;
    }

    .site-header__actions {
        gap: 8px;
    }

    .site-phone {
        padding-left: 12px;
        font-size: 14px;
    }

    .site-header__trial-btn,
    .site-header__login-btn {
        min-width: 96px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .site-header__inner {
        grid-template-columns: 112px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .site-logo {
        width: 112px;
        height: 37px;
    }

    .site-nav {
        gap: 2px;
    }

    .site-nav__link {
        padding-right: 4px;
        padding-left: 4px;
        font-size: 13px;
    }

    .site-nav__main {
        padding-left: 0;
    }

    .site-nav__main > .site-nav__link {
        padding-right: 0;
        padding-left: 4px;
    }

    .site-nav__main > button {
        width: 22px;
    }

    .site-header__actions {
        gap: 6px;
    }

    .site-phone {
        width: 40px;
        padding: 0;
        border: 1px solid #dfe7f3;
        border-radius: 10px;
        justify-content: center;
    }

    .site-phone span {
        display: none;
    }

    .site-header__trial-btn,
    .site-header__login-btn {
        min-width: 86px;
        height: 38px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        display: flex;
        gap: 12px;
    }

    .site-logo {
        width: 108px;
        height: 36px;
    }

    .site-nav {
        justify-content: flex-start;
        gap: 0;
    }

    .site-nav > .site-nav__link,
    .site-nav__group,
    .site-nav__main {
        width: 100%;
    }

    .site-nav__link,
    .site-nav__main {
        min-height: 44px;
        border-radius: 8px;
    }

    .site-nav__link,
    .site-nav__main > .site-nav__link {
        padding: 0 12px;
        font-size: 14px;
    }

    .site-nav__main {
        padding-left: 0;
        justify-content: space-between;
    }

    .site-nav__main > button {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }

    .site-phone {
        display: none;
    }

    .site-header__trial-btn,
    .site-header__login-btn {
        min-width: 82px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        gap: 10px;
    }

    .site-logo {
        width: 86px;
        height: auto;
    }

    .site-header__actions {
        gap: 6px;
    }

    .site-header__trial-btn,
    .site-header__login-btn {
        min-width: 0;
        height: 38px;
        padding: 0 11px;
        font-size: 13px;
    }
}

/* 首屏标题按实际内容栏宽度缩放，两条语义行始终保持完整。 */
.official-page--home .home-hero__content {
    container-type: inline-size;
}

.official-page--home .home-hero__content h1 {
    font-size: clamp(42px, 3.85vw, 56px);
}

.official-page--home .home-hero__content h1 > span {
    white-space: nowrap;
}

@media (min-width: 901px) and (max-width: 1200px) {
    .official-page--home .home-hero__content h1 {
        font-size: clamp(34px, 3.8vw, 48px);
    }
}

@media (max-width: 768px) {
    .official-page--home .home-hero__content h1 {
        font-size: clamp(28px, 8.5vw, 38px);
    }
}

@supports (font-size: 1cqw) {
    .official-page--home .home-hero__content h1 {
        font-size: clamp(28px, 9.8cqw, 62px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-mega,
    .home-pains__grid article,
    .home-roles__grid article,
    .home-solution-card,
    .practice-card,
    .official-page--home [data-motion-reveal],
    .official-page--home [data-motion-group] > * {
        transition: none;
    }

    .home-showcase__track,
    .official-page--home .home-hero__content > *,
    .official-page--home .home-hero__visual,
    .official-page--home .home-story__console,
    .official-page--home .home-story__panel,
    .official-page--home .home-governance::before,
    .feature-panel.is-switching .feature-panel__text,
    .feature-panel.is-switching .feature-panel__image {
        animation: none;
    }

    .official-page--home [data-motion-scene] *,
    .official-page--home [data-motion-scene]::before,
    .official-page--home [data-motion-scene]::after {
        scroll-behavior: auto;
        animation: none !important;
        transition: none !important;
    }

    .official-page--home [data-motion-reveal],
    .official-page--home [data-motion-group] > *,
    .official-page--home .home-hero__content > *,
    .official-page--home .home-hero__visual,
    .official-page--home .home-story__console {
        opacity: 1;
        transform: none;
    }

    .official-page--home .home-hero__content h1 > span {
        clip-path: none;
        opacity: 1;
        transform: none;
    }

    .official-page--home .home-story__console {
        clip-path: none;
        opacity: 1;
    }

    .official-page--home .home-governance__network path {
        stroke-dashoffset: 0;
    }

    .official-page--home .home-governance__network circle,
    .official-page--home .feature-panel__signal {
        opacity: 1;
        transform: none;
    }

    .official-page--home .feature-panel__scan,
    .official-page--home .feature-tabs__autoplay {
        display: none;
    }

    .official-page--home [data-motion-loop]::after {
        transform: scaleX(1);
        transition: none;
    }
}
