:root {
    --home-ink: #172033;
    --home-muted: #657083;
    --home-line: #e3e7ee;
    --home-soft: #f4f6f9;
    --home-accent: #2446b8;
    --home-accent-dark: #193589;
    --home-white: #ffffff;
}

.home-shell {
    overflow: hidden;
    color: var(--home-ink);
    background: var(--home-white);
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    text-align: left;
}

.nav .logo a {
    display: flex;
    align-items: center;
    width: 174px;
    height: 32px;
    color: var(--home-white);
    background: none !important;
    text-decoration: none;
}

.nav .logo a::before {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    content: "";
    background: url('/images/home_logo_white.png') no-repeat 0 0;
}

.nav .logo .brand-name {
    white-space: nowrap;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .08em;
}

.navWhiteBg .logo a {
    color: #111;
}

.header-main {
    position: relative;
    height: 520px;
    background-color: #242936;
    background-image: url("/images/home-banner-hl.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.header-main::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, #10151f 0%, #10151f 68%, rgba(16, 21, 31, .65) 82%, rgba(16, 21, 31, .18) 100%);
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
    padding-top: 132px;
    color: var(--home-white);
}

.hero-kicker {
    display: block;
    margin-bottom: 14px;
    color: #91a7ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .28em;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: var(--home-white) !important;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.hero-copy > p {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 18px;
}

.hero-brand {
    color: var(--home-white);
    font-size: 20px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    height: 46px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    text-decoration: none;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1), background-color .28s ease, border-color .28s ease;
}

.home-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.home-button:active {
    transform: translateY(1px);
}

.home-button-primary {
    color: var(--home-white);
    background: var(--home-accent);
}

a.home-button-primary:link,
a.home-button-primary:visited,
a.home-button-primary:active {
    color: var(--home-white);
}

.home-button-primary:hover {
    color: var(--home-white);
    background: var(--home-accent-dark);
}

.home-button-ghost {
    color: var(--home-white);
    border-color: rgba(255, 255, 255, .45);
    background: rgba(23, 32, 51, .38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

a.home-button-ghost:link,
a.home-button-ghost:visited,
a.home-button-ghost:active {
    color: var(--home-white);
}

.home-button-ghost:hover {
    color: var(--home-white);
    border-color: rgba(255, 255, 255, .8);
    background: rgba(23, 32, 51, .65);
}

.home-button-light {
    color: var(--home-ink);
    background: var(--home-white);
}

a.home-button-light:link,
a.home-button-light:visited,
a.home-button-light:active {
    color: var(--home-ink);
}

.audience-entry-wrap {
    position: relative;
    width: min(1200px, calc(100% - 64px));
    margin: -1px auto 0;
}

.audience-entry {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    border: 1px solid var(--home-line);
    background: var(--home-white);
    box-shadow: 0 20px 45px -32px rgba(20, 38, 77, .42);
    transform: translateY(-1px);
}

.audience-entry a {
    position: relative;
    display: grid;
    grid-template-columns: 46px 1fr auto;
    grid-template-rows: auto auto;
    min-height: 112px;
    padding: 25px 28px;
    box-sizing: border-box;
    color: var(--home-ink);
    text-decoration: none;
    border-right: 1px solid var(--home-line);
    transition: background-color .28s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
}

.audience-entry a:last-child {
    border-right: 0;
}

.audience-entry a:link,
.audience-entry a:visited,
.audience-entry a:active {
    color: var(--home-ink);
}

.home-jobs {
    padding-bottom: 34px;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--home-line);
    border-left: 1px solid var(--home-line);
}

.job-card {
    position: relative;
    min-height: 190px;
    padding: 28px 30px;
    overflow: hidden;
    border-right: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    color: var(--home-ink);
    background: var(--home-white);
    text-decoration: none;
    transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.job-card::after {
    position: absolute;
    right: -20px;
    bottom: -44px;
    width: 104px;
    height: 104px;
    border: 22px solid #edf1ff;
    border-radius: 50%;
    content: "";
    transition: transform .3s ease;
}

.job-card:hover {
    z-index: 1;
    color: var(--home-white);
    background: var(--home-accent);
    text-decoration: none;
    transform: translateY(-3px);
}

a.job-card:link,
a.job-card:visited,
a.job-card:active {
    color: var(--home-ink);
}

a.job-card:hover,
a.job-card:hover h3 {
    color: var(--home-white);
}

.job-card:hover::after {
    border-color: rgba(255, 255, 255, .12);
    transform: scale(1.12);
}

.job-type {
    color: var(--home-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.job-card h3 {
    margin: 28px 0 8px;
    font-size: 23px;
    font-weight: 600;
}

.job-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--home-muted);
    font-size: 14px;
}

.job-card i {
    display: block;
    margin-top: 22px;
    color: var(--home-accent);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.job-card:hover .job-type,
.job-card:hover p,
.job-card:hover i {
    color: var(--home-white);
}

.job-update-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
    color: var(--home-white);
    background: #172033;
}

.job-update-note > span {
    font-size: 15px;
    font-weight: 600;
}

.job-update-note p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
}

.job-update-note .home-button {
    min-width: 126px;
    height: 40px;
    line-height: 40px;
}

.audience-entry a:hover {
    color: var(--home-ink);
    text-decoration: none;
    background: #f7f8fc;
    transform: translateY(-3px);
}

.entry-index {
    grid-row: 1 / 3;
    padding-top: 3px;
    color: var(--home-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
}

.audience-entry strong {
    font-size: 19px;
    line-height: 1.45;
}

.audience-entry small {
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.7;
}

.audience-entry i {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--home-accent);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.home-section {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
    padding: 104px 0;
    box-sizing: border-box;
}

.home-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 44px;
}

.section-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--home-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
}

.home-section-heading h2,
.capability-intro h2,
.home-final-cta h2 {
    margin: 0;
    color: var(--home-ink);
    font-size: 38px;
    font-weight: 650;
    line-height: 1.28;
    letter-spacing: -.035em;
}

.home-section-heading > p,
.capability-intro > p {
    max-width: 580px;
    margin: 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.9;
}

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

.product-card {
    position: relative;
    display: flex;
    min-height: 330px;
    overflow: hidden;
    box-sizing: border-box;
    color: var(--home-ink);
    text-decoration: none;
    border: 1px solid var(--home-line);
    background: var(--home-soft);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), border-color .28s ease, box-shadow .35s ease;
    animation: homeRise .65s both;
}

.product-card:hover {
    color: var(--home-ink);
    text-decoration: none;
    border-color: #cbd2df;
    box-shadow: 0 24px 55px -38px rgba(20, 38, 77, .5);
    transform: translateY(-5px);
}

a.product-card:link,
a.product-card:visited,
a.product-card:active {
    color: var(--home-ink);
}

.product-card:active {
    transform: translateY(1px);
}

.product-test,
.product-interview {
    grid-column: span 7;
}

.product-career,
.product-resume {
    grid-column: span 5;
}

.product-video {
    grid-column: 1 / -1;
    min-height: 278px;
    color: var(--home-white);
    border-color: #263148;
    background: #1c2538;
}

.product-video:hover {
    color: var(--home-white);
    border-color: #34435f;
}

a.product-video:link,
a.product-video:visited,
a.product-video:active {
    color: var(--home-white);
}

.product-copy {
    position: relative;
    z-index: 1;
    width: 55%;
    padding: 42px 0 38px 42px;
    box-sizing: border-box;
}

.product-career .product-copy,
.product-resume .product-copy {
    width: 62%;
}

.product-video .product-copy {
    width: 50%;
    padding: 48px 0 42px 52px;
}

.product-number {
    color: var(--home-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.product-video .product-number {
    color: #9db0f3;
}

.product-copy h3 {
    margin: 18px 0 12px;
    color: inherit;
    font-size: 28px;
    line-height: 1.3;
}

.product-copy p {
    max-width: 350px;
    margin: 0 0 30px;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.85;
}

.product-video .product-copy p {
    color: #b7c0d1;
}

.text-link {
    color: var(--home-accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    color: var(--home-accent-dark);
    text-decoration: none;
}

a.text-link:link,
a.text-link:visited,
a.text-link:active {
    color: var(--home-accent);
}

.text-link b {
    display: inline-block;
    margin-left: 4px;
    transition: transform .25s ease;
}

.product-card:hover .text-link b,
.capability-intro .text-link:hover b {
    transform: translateX(5px);
}

.product-video .text-link {
    color: #cbd5ff;
}

.product-card > img {
    position: absolute;
    right: -58px;
    bottom: -48px;
    width: 58%;
    height: auto;
    opacity: .96;
    transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.product-career > img,
.product-resume > img {
    right: -80px;
    width: 62%;
}

.product-card:hover > img {
    transform: translate3d(-7px, -4px, 0);
}

.video-visual {
    position: absolute;
    right: 7%;
    top: 50%;
    width: 38%;
    color: var(--home-white);
    transform: translateY(-50%);
}

.video-visual:before {
    position: absolute;
    right: 0;
    top: 50%;
    width: 178px;
    height: 178px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform: translateY(-50%);
}

.video-visual:after {
    position: absolute;
    right: 59px;
    top: 50%;
    width: 0;
    height: 0;
    content: "";
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 27px solid #9db0f3;
    transform: translateY(-50%);
}

.video-visual span {
    display: block;
    margin-bottom: 10px;
    color: #7f8ba3;
    font-size: 11px;
    letter-spacing: .25em;
}

.video-visual strong {
    display: block;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.03em;
}

.home-solutions {
    position: relative;
    width: 100%;
    max-width: none;
    padding-right: max(32px, calc((100% - 1200px) / 2));
    padding-left: max(32px, calc((100% - 1200px) / 2));
    background: #1c2538;
}

.light-heading h2 {
    color: var(--home-white);
}

.light-heading > p {
    color: #acb6c9;
}

.light-heading .section-kicker {
    color: #9db0f3;
}

.solution-layout {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 20px;
}

.solution-layout a {
    display: block;
    color: var(--home-white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), background-color .3s ease, border-color .3s ease;
}

.solution-layout a:hover {
    color: var(--home-white);
    text-decoration: none;
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .075);
    transform: translateY(-3px);
}

.solution-layout a:link,
.solution-layout a:visited,
.solution-layout a:active {
    color: var(--home-white);
}

.solution-main {
    min-height: 412px;
    padding: 60px;
    box-sizing: border-box;
    background-image: linear-gradient(115deg, rgba(36, 70, 184, .28), rgba(28, 37, 56, .08)) !important;
}

.solution-label {
    color: #9db0f3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.solution-layout h3 {
    margin: 42px 0 18px;
    color: var(--home-white);
    font-size: 34px;
    line-height: 1.45;
    letter-spacing: -.03em;
}

.solution-layout p {
    max-width: 570px;
    margin: 0;
    color: #acb6c9;
    font-size: 14px;
    line-height: 1.85;
}

.solution-action {
    display: block;
    margin-top: 58px;
    color: #d7def8;
    font-size: 14px;
    font-weight: 600;
}

.solution-side {
    display: grid;
    gap: 20px;
}

.solution-side a {
    min-height: 196px;
    padding: 32px 34px;
    box-sizing: border-box;
}

.solution-side h3 {
    margin: 21px 0 8px;
    font-size: 22px;
}

.solution-side .solution-action {
    margin-top: 20px;
    font-size: 13px;
}

.compact-heading {
    display: block;
    margin-bottom: 54px;
}

.journey-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--home-line);
}

.journey-list li {
    position: relative;
    min-height: 210px;
    padding: 30px 28px 20px 0;
    box-sizing: border-box;
}

.journey-list li:before {
    position: absolute;
    top: -4px;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: var(--home-accent);
}

.journey-list span {
    display: block;
    margin-bottom: 30px;
    color: var(--home-accent);
    font-size: 12px;
    font-weight: 700;
}

.journey-list strong {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
}

.journey-list p {
    margin: 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.8;
}

.home-capabilities {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 100px;
    padding-top: 96px;
    border-top: 1px solid var(--home-line);
}

.capability-intro > p {
    margin: 24px 0 28px;
    font-size: 15px;
}

.capability-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--home-line);
}

.capability-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid var(--home-line);
}

.capability-list li > span {
    padding-top: 2px;
    color: var(--home-accent);
    font-size: 12px;
    font-weight: 700;
}

.capability-list strong {
    display: block;
    margin-bottom: 7px;
    font-size: 17px;
}

.capability-list p {
    margin: 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.75;
}

.home-final-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 70px;
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto 104px;
    padding: 58px 64px;
    box-sizing: border-box;
    color: var(--home-white);
    background: var(--home-accent);
}

.home-final-cta .section-kicker {
    color: #cbd5ff;
}

.home-final-cta h2 {
    color: var(--home-white);
    font-size: 30px;
}

.home-final-cta p {
    margin: 12px 0 0;
    color: #d7def8;
    font-size: 14px;
}

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

.final-actions .home-button-primary {
    border-color: rgba(255, 255, 255, .4);
}

.plain-link {
    padding: 12px 8px;
    color: var(--home-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.plain-link:hover {
    color: var(--home-white);
    text-decoration: underline;
}

a.plain-link:link,
a.plain-link:visited,
a.plain-link:active {
    color: var(--home-white);
}

@keyframes homeRise {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
    .home-section,
    .audience-entry-wrap,
    .home-final-cta {
        width: calc(100% - 48px);
    }

    .home-solutions {
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
    }

    .product-copy {
        width: 66%;
        padding-left: 32px;
    }

    .product-card > img {
        right: -100px;
    }

    .home-capabilities {
        gap: 56px;
    }
}

@media (max-width: 960px) {
    .header-main {
        height: 440px;
        background-position: center top;
    }

    .hero-copy {
        width: calc(100% - 48px);
        padding-top: 100px;
    }

    .hero-copy h1 {
        max-width: 660px;
        font-size: 40px;
    }

    .audience-entry {
        grid-template-columns: 1fr;
    }

    .audience-entry a,
    .audience-entry a:last-child {
        min-height: 94px;
        padding: 20px 24px;
        border-right: 0;
        border-bottom: 1px solid var(--home-line);
    }

    .audience-entry a:last-child {
        border-bottom: 0;
    }

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

    .job-update-note {
        grid-template-columns: 1fr auto;
    }

    .job-update-note p {
        grid-row: 2;
        grid-column: 1 / -1;
    }

    .home-section {
        padding: 76px 0;
    }

    .home-section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-test,
    .product-career,
    .product-resume,
    .product-interview {
        grid-column: 1 / -1;
    }

    .product-card {
        min-height: 310px;
    }

    .solution-layout,
    .home-capabilities {
        grid-template-columns: 1fr;
    }

    .solution-main {
        min-height: 340px;
    }

    .journey-list {
        grid-template-columns: 1fr;
        border-top: 0;
    }

    .journey-list li {
        min-height: 0;
        padding: 24px 0 24px 48px;
        border-top: 1px solid var(--home-line);
    }

    .journey-list li:before {
        top: 29px;
    }

    .journey-list span {
        position: absolute;
        top: 25px;
        left: 14px;
        margin: 0;
    }

    .home-final-cta {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 46px;
    }
}

@media (max-width: 640px) {
    .header-main {
        height: 440px;
        background-size: auto 440px;
        background-position: 44% top;
    }

    .header-main::before {
        background: rgba(16, 21, 31, .82);
    }

    .hero-copy {
        width: calc(100% - 32px);
        padding-top: 92px;
    }

    .hero-copy h1 {
        font-size: 30px;
        line-height: 1.38;
    }

    .hero-copy > p {
        display: block;
        font-size: 14px;
    }

    .hero-brand {
        display: block;
        margin-bottom: 4px;
        font-size: 17px;
    }

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

    .hero-actions .home-button {
        flex: 1;
        min-width: 0;
        padding: 0 12px;
    }

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

    .job-card {
        min-height: 168px;
        padding: 24px;
    }

    .job-card h3 {
        margin-top: 20px;
    }

    .job-update-note {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px;
    }

    .job-update-note p {
        grid-row: auto;
        grid-column: auto;
    }

    .job-update-note .home-button {
        width: 100%;
    }

    .home-section,
    .audience-entry-wrap,
    .home-final-cta {
        width: calc(100% - 32px);
    }

    .home-section-heading h2,
    .capability-intro h2 {
        font-size: 30px;
    }

    .product-card,
    .product-video {
        min-height: 390px;
    }

    .product-copy,
    .product-career .product-copy,
    .product-resume .product-copy,
    .product-video .product-copy {
        width: 100%;
        padding: 30px;
    }

    .product-card > img {
        right: -45px;
        bottom: -56px;
        width: 82%;
        opacity: .56;
    }

    .video-visual {
        right: 30px;
        top: auto;
        bottom: 26px;
        width: calc(100% - 60px);
        transform: none;
    }

    .video-visual:before,
    .video-visual:after {
        display: none;
    }

    .solution-main {
        min-height: 370px;
        padding: 38px 30px;
    }

    .solution-layout h3 {
        margin-top: 32px;
        font-size: 28px;
    }

    .solution-side a {
        padding: 30px;
    }

    .home-capabilities {
        gap: 48px;
    }

    .home-final-cta {
        margin-bottom: 72px;
        padding: 36px 28px;
    }

    .home-final-cta h2 {
        font-size: 25px;
    }

    .final-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .plain-link {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-card {
        animation: none;
    }

    .product-card,
    .product-card > img,
    .home-button,
    .audience-entry a,
    .solution-layout a {
        transition: none;
    }
}
