.short-drama-page {
    --sd-ink: #15201d;
    --sd-muted: #61706b;
    --sd-green: #00B840;
    --sd-deep: #087a4a;
    --sd-line: #d9e7df;
    --sd-paper: #F5F8F6;
    color: var(--sd-ink);
    overflow: hidden;
    background: #fff;
    font-family: "SourceHanSansCN", "Microsoft YaHei", sans-serif;
}

.sd-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s ease;
}

.sd-hero-video.is-ready {
    opacity: 1;
}

.sd-hero-video+.sd-hero-glow {
    z-index: 1;
}

.sd-hero-video~.sd-hero-inner {
    z-index: 2;
}

.sd-hero-video~.sd-hero-glow {
    z-index: 1;
}

.sd-asset-section {
    background: #10261e;
    color: #f2fbf6;
}

.sd-asset-grid,
.sd-crew-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 80px;
    align-items: center;
}

.sd-asset-copy h2,
.sd-crew-grid h2 {
    margin-top: 20px;
}

.sd-asset-copy>p,
.sd-crew-grid .sd-agent-copy>p {
    max-width: 510px;
    margin: 24px 0 0;
    color: #abc5b7;
    font-size: 16px;
    line-height: 1.9;
}

.sd-asset-section .sd-section-label {
    color: #54df9b;
}

.sd-asset-copy h2 em {
    color: #54df9b;
}

.sd-asset-tags,
.sd-crew-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.sd-asset-tags span,
.sd-crew-roles span {
    padding: 8px 12px;
    border: 1px solid rgba(84, 223, 155, .32);
    border-radius: 5px;
    color: #83eab5;
    background: rgba(84, 223, 155, .05);
    font-size: 12px;
}

.sd-asset-visual,
.sd-crew-visual {
    min-height: 280px;
    overflow: hidden;
    border: 1px solid rgba(151, 223, 184, .15);
    border-radius: 14px;
    background: #0b1914;
    box-shadow: 0 25px 65px rgba(0, 0, 0, .18);
}

.sd-asset-visual img,
.sd-crew-visual img {
    width: 100%;
    min-height: 280px;
    object-fit: cover;
}

.sd-crew-section {
    background: #f5f9f6;
}

.sd-crew-grid {
    grid-template-columns: 1.22fr .78fr;
}

.sd-crew-grid .sd-agent-copy {
    order: 2;
}

.sd-crew-grid .sd-crew-visual {
    order: 1;
}

.sd-crew-grid .sd-section-label {
    color: #00b840;
}

.sd-crew-grid h2 em {
    color: #00b840;
}

.sd-crew-grid .sd-crew-visual {
    padding: 10px;
    background: #fff;
    border-color: #dbeae0;
}

.sd-crew-grid .sd-crew-visual img {
    border-radius: 7px;
}

.sd-crew-grid .sd-crew-roles span {
    border-color: #cbe5d3;
    color: #087a4a;
    background: #eaf7ee;
}

@media screen and (max-width: 905px) {

    .sd-asset-grid,
    .sd-crew-grid {
        display: block;
    }

    .sd-asset-copy>p,
    .sd-crew-grid .sd-agent-copy>p {
        font-size: 14px;
        line-height: 1.8;
    }

    .sd-asset-visual,
    .sd-crew-visual {
        min-height: 180px;
        margin-top: 35px;
    }

    .sd-asset-visual img,
    .sd-crew-visual img {
        min-height: 180px;
    }

    .sd-crew-grid .sd-agent-copy,
    .sd-crew-grid .sd-crew-visual {
        order: initial;
    }
    .sd-crew-grid .sd-agent-copy{
        margin-top: 30px;
    }
}

.short-drama-page * {
    box-sizing: border-box;
}

.short-drama-page img {
    display: block;
    max-width: 100%;
}

.sd-shell {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

.sd-section {
    padding: 128px 0;
}

.sd-section-label {
    color: var(--sd-green);
    font: 700 12px/1.2 Arial, sans-serif;
    letter-spacing: .18em;
}

.sd-hero {
    position: relative;
    min-height: 720px;
    background: #eef7f0;
}

.sd-hero-bg {
    position: absolute;
    inset: 0;
    background: url(/images/shortDramaWorkflow/home_banner_short_drama_workflow.png) center/cover no-repeat;
    opacity: .92;
}

.sd-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 720px;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: center;
    gap: 28px;
    padding: 74px 0 86px;
}

.sd-hero-copy {
    padding-left: 22px;
}

.sd-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sd-deep);
    font-size: 15px;
    font-weight: 700;
}

.sd-eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sd-green);
    box-shadow: 0 0 0 6px rgba(0, 200, 100, .12);
}

.sd-hero h1 {
    margin: 30px 0 24px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 700;
}

.sd-hero h1 em,
.sd-section h2 em {
    color: var(--sd-deep);
    font-style: normal;
}

.sd-hero-copy>p {
    max-width: 520px;
    margin: 0;
    color: #4d6158;
    font-size: 17px;
    line-height: 1.9;
}

.sd-hero-actions {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-top: 35px;
}

.sd-text-link {
    color: var(--sd-deep);
    text-decoration: none;
    font-size: 15px;
}

.sd-text-link:hover {
    color: var(--sd-green);
}

.sd-text-link span {
    margin-left: 8px;
}

.sd-text-link.dark {
    display: inline-block;
    margin-top: 28px;
    color: var(--sd-deep);
}

.sd-hero-visual {
    position: relative;
    min-width: 0;
}

.sd-hero-window {
    border: 10px solid rgba(255, 255, 255, .72);
    border-radius: 18px;
    overflow: hidden;
    background: #18211e;
    box-shadow: 0 28px 70px rgba(30, 92, 55, .22);
    transform: rotate(1.5deg);
}

.sd-hero-window img {
    width: 100%;
    aspect-ratio: 16/6;
    object-fit: cover;
}

.sd-hero-note {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 9px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 30px rgba(20, 70, 40, .12);
    font-size: 13px;
    font-weight: 700;
}

.sd-hero-note strong {
    color: var(--sd-green);
    font: 700 18px/1 Arial, sans-serif;
}

.sd-note-one {
    left: -24px;
    top: 25px;
}

.sd-note-two {
    right: -18px;
    bottom: 24px;
}

.sd-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 1;
    transform: translateX(-50%);
    color: rgba(21, 32, 29, .55);
    font: 10px/1 Arial, sans-serif;
    letter-spacing: .2em;
}

.sd-scroll-hint span {
    display: block;
    width: 1px;
    height: 22px;
    margin: 10px auto 0;
    background: var(--sd-green);
}

.sd-problem {
    background: #fff;
}

.sd-problem-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-top: 25px;
}

.sd-section h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.2;
    letter-spacing: -.04em;
}

.sd-problem-heading p,
.sd-workflow-intro>p {
    max-width: 430px;
    margin: 0 0 7px;
    color: var(--sd-muted);
    font-size: 16px;
    line-height: 1.8;
}

.sd-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 78px;
    border-top: 1px solid var(--sd-line);
}

.sd-problem-grid article {
    min-height: 210px;
    padding: 29px 24px 20px 0;
    border-bottom: 1px solid var(--sd-line);
}

.sd-problem-grid article:not(:last-child) {
    margin-right: 24px;
    border-right: 1px solid var(--sd-line);
}

.sd-number {
    color: var(--sd-green);
    font: 700 13px/1 Arial, sans-serif;
}

.sd-problem-grid h3 {
    margin: 30px 0 12px;
    font-size: 19px;
}

.sd-problem-grid p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 14px;
    line-height: 1.75;
}

.sd-workflow {
    background: var(--sd-paper);
}

.sd-workflow-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.sd-workflow-intro .sd-section-label {
    grid-column: 1 / -1;
    margin-bottom: -50px;
}

.sd-flow-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 76px;
    border-top: 2px solid #bdd8c7;
}

.sd-flow-item {
    position: relative;
    padding: 23px 10px 0 0;
}

.sd-flow-item:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    width: 12px;
    height: 12px;
    border: 3px solid var(--sd-paper);
    border-radius: 50%;
    background: #a7cbb6;
    box-shadow: 0 0 0 1px #a7cbb6;
}

.sd-flow-item.active:before {
    background: var(--sd-green);
    box-shadow: 0 0 0 1px var(--sd-green), 0 0 0 7px rgba(0, 200, 100, .12);
}

.sd-flow-item b {
    display: block;
    color: #7c9687;
    font: 700 12px/1 Arial, sans-serif;
}

.sd-flow-item span {
    display: block;
    margin-top: 13px;
    font-size: 17px;
    font-weight: 700;
}

.sd-flow-item i {
    display: block;
    margin-top: 12px;
    color: var(--sd-muted);
    font-size: 13px;
    line-height: 1.7;
    font-style: normal;
}

.sd-process-image {
    width: 100%;
    margin-top: 62px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(29, 78, 49, .13);
}

.sd-canvas {
    background: #fff;
}

.sd-feature-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.sd-feature-head h2 {
    margin-top: 18px;
}

.sd-feature-head>p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 16px;
    line-height: 1.85;
}

.sd-canvas-showcase {
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    gap: 62px;
    align-items: center;
    margin-top: 68px;
    padding: 24px;
    background: #121617;
    border-radius: 16px;
}

.sd-canvas-image {
    overflow: hidden;
    border-radius: 6px;
}

.sd-canvas-image img {
    width: 100%;
}

.sd-canvas-caption {
    padding-right: 20px;
    color: #fff;
}

.sd-canvas-caption span {
    color: #54df9b;
    font: 700 11px/1 Arial, sans-serif;
    letter-spacing: .16em;
}

.sd-canvas-caption strong {
    display: block;
    margin: 25px 0 18px;
    font-size: 29px;
    line-height: 1.35;
}

.sd-canvas-caption p {
    margin: 0;
    color: #a8b9b1;
    font-size: 14px;
    line-height: 1.8;
}

.sd-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.sd-capability-grid article {
    min-width: 0;
}

.sd-capability-image {
    height: 148px;
    overflow: hidden;
    border-radius: 8px;
    background: #eef4f0;
}

.sd-capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.sd-capability-grid article:hover img {
    transform: scale(1.04);
}

.sd-capability-grid article>span {
    display: block;
    margin-top: 20px;
    color: #70a587;
    font: 700 10px/1 Arial, sans-serif;
    letter-spacing: .14em;
}

.sd-capability-grid h3 {
    margin: 10px 0 8px;
    font-size: 18px;
}

.sd-capability-grid p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 13px;
    line-height: 1.7;
}

.sd-agent {
    background: #eff8f2;
}

.sd-agent-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
    align-items: center;
}

.sd-agent-copy h2 {
    margin-top: 20px;
}

.sd-agent-copy>p {
    margin: 25px 0 0;
    color: var(--sd-muted);
    font-size: 16px;
    line-height: 1.85;
}

.sd-agent-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.sd-agent-list span {
    padding: 8px 12px;
    border: 1px solid #cbe5d3;
    border-radius: 5px;
    color: var(--sd-deep);
    background: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.sd-agent-visual {
    padding: 10px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(27, 94, 55, .12);
}

.sd-agent-visual img {
    width: 100%;
    border-radius: 7px;
}

.sd-model {
    background: #10251d;
    color: #fff;
}

.sd-model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.sd-model .sd-section-label {
    color: #54df9b;
}

.sd-model h2 em {
    color: #54df9b;
}

.sd-model p {
    margin: 0;
    color: #b2c9bc;
    font-size: 17px;
    line-height: 1.9;
}

.sd-model .sd-text-link.dark {
    color: #54df9b;
}

.sd-foundation {
    background: #fff;
}

.sd-foundation-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.sd-foundation-top h2 {
    margin-top: 20px;
}

.sd-foundation-top p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 16px;
    line-height: 1.9;
}

.sd-foundation-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 58px;
}

.sd-foundation-items div {
    padding: 25px;
    border-top: 2px solid var(--sd-green);
    background: #f5faf7;
    transition: background 0.3s;
}
.sd-foundation-items div:hover{
    background: #e8f2ec;
}

.sd-foundation-items b,
.sd-foundation-items span {
    display: block;
}

.sd-foundation-items b {
    font-size: 17px;
}

.sd-foundation-items span {
    margin-top: 13px;
    color: var(--sd-muted);
    font-size: 13px;
}

.sd-cta {
    padding: 120px 0;
    color: #fff;
    background: linear-gradient(110deg, #086f45, #10251d);
}

.sd-cta h2 {
    margin-top: 20px;
}

.sd-cta h2 em {
    color: #54df9b;
}

.sd-cta p {
    margin: 23px 0 28px;
    color: #c0d9ca;
    font-size: 16px;
}

.short_drama_banner {
    background: url(/images/shortDramaWorkflow/home_banner_short_drama_workflow.png) center/cover no-repeat !important;
}

.short_drama_banner .banner_text {
    color: #15201d;
    text-shadow: 0 0 3px rgba(255, 255, 255, .8);
}

.short_drama_banner .big_banner_title span {
    color: #087a4a;
}

.short_drama_banner_link {
    display: inline-flex;
    margin-top: 1.5vw;
    padding: .75vw 1.4vw;
    border-radius: 100px;
    color: #fff;
    background: #00c864;
    text-decoration: none;
    font-size: 1vw;
    font-weight: bold;
}

.short_drama_solution_item {
    position: relative;
    cursor: pointer;
    background: linear-gradient(145deg, #effaf3, #e2f4ea) !important;
}

.short_drama_solution_mark {
    padding: 4px 6px;
    color: #087a4a;
    background: #c5f1d7;
    border-radius: 4px;
    font-size: 10px;
}

@media screen and (max-width: 905px) {
    .sd-shell {
        width: calc(100% - 10vw);
    }

    .sd-section {
        padding: 40px 0;
    }

    .sd-hero,
    .sd-hero-inner {
        min-height: 700px;
    }

    .sd-hero-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 42px;
        padding: 65px 0 80px;
    }

    .sd-hero-copy {
        padding-left: 0;
    }

    .sd-hero h1 {
        margin: 22px 0 18px;
        font-size: 42px;
    }

    .sd-hero-copy>p {
        font-size: 15px;
        line-height: 1.75;
    }

    .sd-hero-actions {
        margin-top: 25px;
    }

    .sd-hero-visual {
        margin: 0 8px;
    }

    .sd-hero-window {
        border-width: 5px;
        transform: none;
    }

    .sd-hero-window img {
        aspect-ratio: 16/8;
    }

    .sd-hero-note {
        padding: 8px 10px;
        font-size: 11px;
    }

    .sd-note-one {
        left: -10px;
        top: -16px;
    }

    .sd-note-two {
        right: -10px;
        bottom: -16px;
    }

    .sd-scroll-hint {
        display: none;
    }

    .sd-problem-heading,
    .sd-workflow-intro,
    .sd-feature-head,
    .sd-agent-grid,
    .sd-model-grid,
    .sd-foundation-top {
        display: block;
    }

    .sd-problem-heading p,
    .sd-workflow-intro>p,
    .sd-feature-head>p,
    .sd-foundation-top p {
        margin-top: 20px;
        font-size: 15px;
    }

    .sd-problem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 16px;
        margin-top: 45px;
    }

    .sd-problem-grid article {
        min-height: 190px;
        padding-right: 8px;
    }

    .sd-problem-grid article:not(:last-child) {
        margin-right: 0;
        border-right: 0;
    }

    .sd-flow-line {
        grid-template-columns: repeat(5, minmax(125px, 1fr));
        overflow-x: auto;
        margin-top: 45px;
        padding-bottom: 10px;
    }

    .sd-flow-item {
        min-width: 125px;
    }

    .sd-process-image {
        width: 150%;
        max-width: none;
        margin-top: 38px;
    }

    .sd-canvas-showcase {
        display: block;
        margin-top: 42px;
        padding: 10px;
    }

    .sd-canvas-caption {
        padding: 25px 15px 20px;
    }

    .sd-canvas-caption strong {
        font-size: 25px;
    }

    .sd-capability-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 14px;
    }

    .sd-capability-image {
        height: 110px;
    }

    .sd-agent-grid {}

    .sd-agent-copy {
        margin-bottom: 35px;
    }

    .sd-model-grid>div+div {
        margin-top: 25px;
    }

    .sd-foundation-items {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 35px;
    }

    .sd-cta {
        padding: 78px 0;
    }

    .short_drama_banner_link {
        margin-top: 3vw;
        padding: 2.2vw 4vw;
        font-size: 3.2vw;
    }

    .sd-section h2{
        font-size: 20px;
    }
}



.sd-hero {
    min-height: 650px;
    overflow: hidden;
    background: #F4F8F5;
}

.sd-hero-bg {
    background-image: url(/images/shortDramaWorkflow/solution_short_drama_workflow_banner.png);
    background-position: center;
    background-size: cover;
    opacity: 1;
    animation: sd-hero-background-in 1.1s ease both;
}

.sd-hero::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, rgba(249, 252, 250, .12), transparent 48%, rgba(9, 32, 22, .04));
}

.sd-hero-inner {
    display: flex;
    align-items: center;
    width: min(85%, 1632px);
    min-height: 650px;
    padding: 72px 0 82px;
}

.sd-hero-copy {
    width: 52%;
    padding-left: 0;
    animation: sd-copy-in .8s .16s ease both;
}

.sd-hero h1 {
    color: #17211D;
}

.sd-hero h1 em,
.sd-section h2 em {
    color: #00B840;
}

.sd-hero-copy>p {
    max-width: 510px;
}

.sd-section-label {
    color: #00B840;
}

.sd-hero .sd-eyebrow {
    gap: 10px;
    color: #00B840;
    font-size: 19.99px;
    line-height: 28px;
    font-weight: 400;
}

.sd-hero .sd-eyebrow img {
    width: 28px;
    height: 28px;
    margin-right: 0;
    object-fit: contain;
}

@media screen and (max-width: 1700px) and (min-width: 906px) {
    .sd-hero .sd-eyebrow {
        gap: 8px;
        font-size: 15px;
        line-height: 21px;
    }

    .sd-hero .sd-eyebrow img {
        width: 21px;
        height: 21px;
    }
}

.sd-hero-stamp {
    position: absolute;
    right: 2%;
    bottom: 56px;
    display: flex;
    align-items: baseline;
    gap: 11px;
    color: rgba(23, 33, 29, .68);
    animation: sd-stamp-in .8s .55s ease both;
}

.sd-hero-stamp strong {
    color: #00B840;
    font: 700 16px/1 Arial, sans-serif;
    letter-spacing: .08em;
}

.sd-hero-stamp span {
    font-size: 12px;
}

.sd-hero-glow {
    position: absolute;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00B840;
    box-shadow: 0 0 0 7px rgba(0, 184, 64, .12);
    animation: sd-pulse 3s ease-in-out infinite;
}

.sd-glow-one {
    top: 18%;
    right: 23%;
}

.sd-glow-two {
    right: 12%;
    bottom: 24%;
    animation-delay: 1.4s;
}

.sd-process-image {
    animation: sd-float 6s ease-in-out infinite;
}

.sd-creation-section {
    color: #F2FBF6;
    background: #10261E;
}

.sd-creation-section+.sd-creation-section {
    padding-top: 0;
}

.sd-creation-section .sd-section-label {
    color: #54DF9B;
}

.sd-creation-section h2 {
    color: #F2FBF6;
}

.sd-creation-section h2 em {
    color: #54DF9B;
}

.sd-creation-section .sd-feature-head>p,
.sd-creation-section .sd-agent-copy>p,
.sd-creation-section .sd-model p {
    color: #ABC5B7;
}

.sd-creation-section .sd-canvas-showcase {
    border: 1px solid rgba(151, 223, 184, .13);
    background: #0B1914;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .16);
}

.sd-creation-section .sd-canvas-image img {
    transition: transform .7s ease;
}

.sd-creation-section .sd-canvas-showcase:hover .sd-canvas-image img {
    transform: scale(1.025);
}

.sd-creation-section .sd-capability-image {
    border: 1px solid rgba(151, 223, 184, .15);
    background: #152E24;
}

.sd-creation-section .sd-capability-grid article>span {
    color: #54DF9B;
}

.sd-creation-section .sd-capability-grid h3 {
    color: #F2FBF6;
}

.sd-creation-section .sd-capability-grid p {
    color: #A7BEB2;
}

.sd-creation-section .sd-agent-list span {
    border-color: rgba(84, 223, 155, .32);
    color: #83EAB5;
    background: rgba(84, 223, 155, .05);
}

.sd-creation-section .sd-agent-visual {
    border: 1px solid rgba(151, 223, 184, .15);
    background: #F7FAF8;
    box-shadow: 0 22px 52px rgba(0, 0, 0, .2);
}

.sd-model.sd-creation-section {
    color: #F2FBF6;
}

.sd-model.sd-creation-section .sd-text-link.dark {
    color: #54DF9B;
}

.sd-foundation {
    padding-bottom: 96px;
}

.sd-foundation-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-top: 68px;
    padding-top: 50px;
    border-top: 1px solid #D9E7DF;
}

.sd-foundation-cta>div {
    max-width: 700px;
}

.sd-foundation-cta h3 {
    margin: 15px 0 0;
    color: #17211D;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.25;
    letter-spacing: 0;
}

.sd-foundation-cta p {
    max-width: 600px;
    margin: 18px 0 0;
    color: var(--sd-muted);
    font-size: 16px;
    line-height: 1.85;
}

.sd-foundation-cta .sd-button {
    flex: 0 0 auto;
}

@keyframes sd-hero-background-in {
    from {
        transform: scale(1.035);
        opacity: .72;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes sd-copy-in {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

@keyframes sd-stamp-in {
    from {
        transform: translateX(16px);
        opacity: 0;
    }

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

@keyframes sd-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .65;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

@keyframes sd-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 905px) {

    .sd-hero,
    .sd-hero-inner {
        min-height: 650px;
    }

    .sd-hero-bg {
        background-position: 68% center;
    }

    .sd-hero-inner {
        display: block;
        width: calc(100% - 10vw);
        padding: 70px 0 72px;
    }

    .sd-hero-copy {
        width: 100%;
        padding-left: 0;
    }

    .sd-hero-copy>p {
        max-width: 330px;
    }

    .sd-hero .sd-eyebrow {
        gap: 4px;
        font-size: 11.25px;
        line-height: 16.88px;
    }

    .sd-hero .sd-eyebrow img {
        width: 15px;
        height: 15px;
    }

    .sd-hero-visual,
    .sd-hero-note {
        display: none;
    }

    .sd-hero-stamp {
        right: 0;
        bottom: 42px;
    }

    .sd-hero-glow,
    .sd-scroll-hint {
        display: none;
    }

    .sd-creation-section+.sd-creation-section {
        padding-top: 0;
    }

    .sd-foundation {
        padding-bottom: 40px;
    }

    .sd-foundation-cta {
        display: block;
        margin-top: 42px;
        padding-top: 34px;
    }

    .sd-foundation-cta h3 {
        font-size: 20px;
    }

    .sd-foundation-cta p {
        margin-top: 14px;
        font-size: 15px;
    }

    .sd-foundation-cta .sd-button {
        margin-top: 24px;
    }
    .sd-problem-grid h3,
    .sd-capability-grid h3{
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sd-hero-bg,
    .sd-hero-copy,
    .sd-hero-stamp,
    .sd-hero-glow,
    .sd-process-image {
        animation: none;
    }

    .sd-canvas-image img,
    .sd-capability-grid article img {
        transition: none;
    }
}

.sd-nowrap {
    display: inline-block;
    white-space: nowrap;
}

.sd-flow-line {
    position: relative;
    overflow: visible;
}

@media screen and (min-width: 906px) {
    .sd-hero h1 {
        font-size: 52px;
    }

    .sd-feature-head {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
        gap: 56px;
    }

    .sd-agent-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
        gap: 70px;
    }
}

.sd-flow-line::after {
    position: absolute;
    top: -4px;
    left: 6px;
    z-index: 0;
    width: 18%;
    height: 6px;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(0, 184, 64, .95), transparent);
    filter: blur(1px);
    animation: sd-flow-sweep 5s ease-in-out infinite;
}

.sd-flow-item {
    z-index: 1;
}

.sd-flow-item::before {
    animation: sd-node-wave 5s ease-in-out infinite;
}

.sd-flow-item:nth-of-type(1)::before {
    animation-delay: 0s;
}

.sd-flow-item:nth-of-type(2)::before {
    animation-delay: .8s;
}

.sd-flow-item:nth-of-type(3)::before {
    animation-delay: 1.6s;
}

.sd-flow-item:nth-of-type(4)::before {
    animation-delay: 2.4s;
}

.sd-flow-item:nth-of-type(5)::before {
    animation-delay: 3.2s;
}

@keyframes sd-flow-sweep {
    0% {
        left: 6px;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        left: 82%;
        opacity: 0;
    }
}

@keyframes sd-node-wave {

    0%,
    8% {
        transform: scale(1);
        box-shadow: 0 0 0 1px #a7cbb6;
    }

    16% {
        transform: scale(1.18);
        box-shadow: 0 0 0 1px #00B840, 0 0 0 7px rgba(0, 184, 64, .2), 0 0 18px rgba(0, 184, 64, .55);
    }

    28%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 1px #a7cbb6;
    }
}

@media screen and (max-width: 905px) {
    .sd-nowrap {
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sd-flow-line::after,
    .sd-flow-item::before {
        animation: none;
    }
}

/* A real track light keeps the motion anchored to the five node coordinates. */
.sd-flow-line::after {
    display: none;
}

.sd-flow-light {
    position: absolute;
    top: -6px;
    left: 0;
    z-index: 2;
    width: 46px;
    height: 5px;
    pointer-events: none;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(225, 255, 235, .95) 0, rgba(0, 184, 64, .82) 34%, rgba(0, 184, 64, .18) 68%, transparent 100%);
    box-shadow: 0 0 7px rgba(0, 184, 64, .38), 0 0 16px rgba(0, 184, 64, .15);
    transform: translateX(-50%);
    filter: blur(.2px);
    opacity: 0;
    will-change: left, opacity;
    animation: sd-flow-node-to-node 6.4s linear infinite !important;
}

@keyframes sd-flow-node-to-node {

    0%,
    4% {
        left: 0%;
        opacity: 0;
    }

    8% {
        left: 0%;
        opacity: .92;
    }

    21% {
        left: 20%;
        opacity: .72;
    }

    25% {
        left: 20%;
        opacity: 0;
    }

    25%,
    29% {
        left: 20%;
        opacity: 0;
    }

    33% {
        left: 20%;
        opacity: .92;
    }

    46% {
        left: 40%;
        opacity: .72;
    }

    50% {
        left: 40%;
        opacity: 0;
    }

    50%,
    54% {
        left: 40%;
        opacity: 0;
    }

    58% {
        left: 40%;
        opacity: .92;
    }

    71% {
        left: 60%;
        opacity: .72;
    }

    75% {
        left: 60%;
        opacity: 0;
    }

    75%,
    79% {
        left: 60%;
        opacity: 0;
    }

    83% {
        left: 60%;
        opacity: .92;
    }

    96% {
        left: 80%;
        opacity: .72;
    }

    100% {
        left: 80%;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sd-flow-light {
        animation: sd-flow-node-to-node 6.4s linear infinite !important;
    }
}

@media screen and (max-width: 905px) {

    .sd-hero,
    .sd-hero-inner {
        min-height: 590px;
    }

    .sd-hero-bg {
        background-size: auto 100%;
        background-position: 82% center;
    }

    .sd-hero::after {
        background: linear-gradient(90deg, rgba(244, 248, 245, .98) 0%, rgba(244, 248, 245, .9) 42%, rgba(244, 248, 245, .42) 70%, rgba(244, 248, 245, .08) 100%);
    }

    .sd-hero-inner {
        min-height: 590px;
        padding: 58px 0 52px;
    }

    .sd-hero-copy {
        position: relative;
        z-index: 2;
        width: 82%;
    }

    .sd-hero h1 {
        margin: 18px 0 16px;
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -.02em;
    }

    .sd-hero-copy>p {
        max-width: 280px;
        color: #31483d;
        font-size: 14px;
        line-height: 1.7;
    }

    .sd-hero-actions {
        gap: 24px;
        margin-top: 24px;
    }

    .sd-text-link {
        font-size: 14px;
    }


    .sd-workflow-intro {
        display: block;
    }

    .sd-workflow-intro .sd-section-label {
        margin: 0 0 18px;
    }

    .sd-workflow-intro h2 {
        font-size: 20px;
        line-height: 1.18;
        letter-spacing: -.02em;
    }

    .sd-workflow-intro>p {
        max-width: none;
        margin: 18px 0 0;
        font-size: 14px;
        line-height: 1.75;
    }

    .sd-flow-line {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        margin-top: 42px;
        overflow: visible;
        padding-bottom: 0;
    }

    .sd-flow-item {
        min-width: 0;
        padding: 20px 3px 0 0;
    }

    .sd-flow-item span {
        margin-top: 10px;
        overflow: visible;
        font-size: 12px;
        white-space: nowrap;
    }

    .sd-flow-item i {
        margin-top: 9px;
        font-size: 10px;
        line-height: 1.55;
    }

    .sd-flow-item b {
        font-size: 10px;
    }

    .sd-flow-light {
        width: 30px;
        height: 4px;
    }
}

/* Crop the source artwork's unused top margin so the process visuals sit closer to the timeline. */
.sd-process-frame {
    margin-top: 42px;
    overflow: hidden;
    border-radius: 14px;
    background: #F5F8F6;
    box-shadow: 0 20px 50px rgba(29, 78, 49, .13);
    animation: sd-float 6s ease-in-out infinite;
}

.sd-process-frame .sd-process-image {
    display: block;
    width: 100%;
    max-width: none;
    margin-top: -10%;
    animation: none;
}

/* The solution page exposes what the workflow automates and where people confirm. */
.sd-automation-board {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 58px;
    padding: 14px;
    border: 1px solid #d7e7dc;
    background: #fff;
    box-shadow: 0 20px 50px rgba(29, 78, 49, .08);
}

.sd-automation-board article {
    position: relative;
    display: flex;
    min-height: 278px;
    flex-direction: column;
    padding: 20px 18px 17px;
    overflow: hidden;
    border-top: 2px solid #00b840;
    background: #f4f9f6;
    transition: background 0.3s;
}
.sd-automation-board article:hover{
    background: #e8f2ec;
}

.sd-automation-board article::after {
    position: absolute;
    top: 25px;
    right: -8px;
    color: rgba(0, 184, 64, .08);
    content: "→";
    font: 700 34px/1 Arial, sans-serif;
}

.sd-automation-board article:last-child::after {
    display: none;
}

.sd-auto-index {
    color: #00b840;
    font: 700 11px/1 Arial, sans-serif;
    letter-spacing: .14em;
}

.sd-automation-board h3 {
    margin: 25px 0 10px;
    color: #17211d;
    font-size: 18px;
    line-height: 1.3;
}

.sd-automation-board p {
    min-height: 68px;
    margin: 0;
    color: #60756b;
    font-size: 13px;
    line-height: 1.75;
}

.sd-automation-board article>div:last-of-type {
    display: grid;
    gap: 7px;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid #d9e8de;
}

.sd-automation-board article>div:last-of-type span {
    color: #738d7e;
    font-size: 10px;
}

.sd-automation-board article>div:last-of-type strong {
    color: #087a4a;
    font-size: 13px;
    line-height: 1.45;
}

.sd-automation-board small {
    display: block;
    margin-top: 13px;
    color: #637d6e;
    font-size: 11px;
    line-height: 1.5;
}

.sd-automation-board small::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 6px 1px 0;
    border-radius: 50%;
    background: #00b840;
    content: "";
}

.sd-automation-note {
    display: grid;
    grid-template-columns: minmax(220px, .6fr) 1fr;
    gap: 36px;
    align-items: center;
    margin-top: 22px;
    padding: 21px 25px;
    color: #d8f3e2;
    background: #10261e;
}

.sd-automation-note b {
    color: #72e7a6;
    font-size: 17px;
    line-height: 1.4;
}

.sd-automation-note span {
    color: #b7d2c2;
    font-size: 14px;
    line-height: 1.75;
}

@media screen and (max-width: 905px) {
    .sd-automation-board {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 38px;
        padding: 9px;
    }

    .sd-automation-board article {
        min-height: 0;
        padding: 18px 16px;
    }

    .sd-automation-board article::after {
        top: auto;
        right: 16px;
        bottom: -15px;
        transform: rotate(90deg);
    }

    .sd-automation-board h3 {
        margin: 18px 0 8px;
        font-size: 17px;
    }

    .sd-automation-board p {
        min-height: 0;
        font-size: 13px;
    }

    .sd-automation-board article>div:last-of-type {
        margin-top: 16px;
    }

    .sd-automation-note {
        display: block;
        margin-top: 16px;
        padding: 20px 18px;
    }

    .sd-automation-note span {
        display: block;
        margin-top: 10px;
        font-size: 13px;
    }
}

/* Keep the workflow label aligned with the site's compact Banner typography. */
.sd-hero .sd-eyebrow {
    color: #17211D;
}

/* The compact page label is text, not a status-dot. Keep inherited span styles from shrinking localized labels. */
.sd-hero .sd-eyebrow>span {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

/* English needs a shorter display scale than Chinese to preserve the two-line hero composition. */
body.en .short-drama-page .sd-hero-copy {
    width: 58%;
}

body.en .short-drama-page .sd-hero h1 {
    max-width: 900px;
    font-size: clamp(42px, 3.25vw, 58px);
    letter-spacing: 0;
}

body.en .short-drama-page .sd-hero-copy>p {
    max-width: 590px;
}

@media screen and (max-width: 905px) {

    /* Match the compact mobile Banner used by ai_workflow.html. */
    .sd-hero,
    .sd-hero-inner {
        height: 232px;
        min-height: 232px;
    }

    .sd-hero-bg {
        background-size: cover;
        background-position: center center;
    }

    .sd-hero::after {
        background: linear-gradient(90deg, rgba(244, 248, 245, .94) 0%, rgba(244, 248, 245, .78) 44%, rgba(244, 248, 245, .12) 78%, rgba(244, 248, 245, 0) 100%);
    }

    .sd-hero-inner {
        padding: 62px 0 10px;
    }

    .sd-hero-copy {
        width: 60%;
    }

    .sd-hero .sd-eyebrow {
        color: #17211D;
        gap: 4px;
        margin-bottom: 0;
        font-size: 11.25px;
        line-height: 16.88px;
    }

    .sd-hero .sd-eyebrow img {
        width: 15px;
        height: 15px;
    }

    body.en .short-drama-page .sd-hero-copy {
        width: 72%;
    }

    body.en .short-drama-page .sd-hero h1 {
        max-width: 290px;
        font-size: 17px;
        letter-spacing: 0;
    }

    .sd-hero h1 {
        margin: 9px 0 8px;
        font-size: 18px;
        line-height: 1.15;
    }

    .sd-hero-copy>p {
        max-width: 235px;
        color: #31483D;
        font-size: 12.5px;
        line-height: 1.45;
    }

    .sd-hero-actions {
        gap: 18px;
        margin-top: 14px;
    }

    .sd-text-link {
        font-size: 12.5px;
    }

    .sd-process-frame {
        margin-top: 34px;
        border-radius: 10px;
    }
}