:root {
    --about-max: var(--container);
}

@font-face {
    font-family: "tentcooFont";
    src:
        url("../../image/font/字体圈欣意冠黑体3.0.ttf") format("truetype"),
        url("../../image/font/字体圈欣意冠黑体3.0.eot");
    font-display: swap;
}

.page-about {
    --about-nav-top: 68px;
    --about-nav-height: 56px;
    --about-radius: 10px;
    --about-radius-sm: 8px;
    --about-border: rgba(15, 23, 42, 0.08);
    --about-border-strong: rgba(var(--brand-rgb), 0.24);
    --about-surface: rgba(255, 255, 255, 0.98);
    --about-surface-alt: rgba(246, 249, 252, 0.98);
    --about-text: rgba(15, 23, 42, 0.92);
    --about-muted: rgba(15, 23, 42, 0.72);
    --about-subtle: rgba(15, 23, 42, 0.44);
    --about-shadow: var(--shadow-panel);
    --about-shadow-hover: var(--shadow-md);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #ffffff;
}

.page-about .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active) {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

.page-about .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active) .brand-logo,
.page-about .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active) .site-nav,
.page-about .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active) .nav-link,
.page-about .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active) .nav-text {
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(4, 10, 18, 0.22);
}

.page-about .site-header.is-nav-open,
.page-about .site-header.is-menu-active,
.page-about .site-header.is-focus-active,
.page-about .site-header.is-solid {
    background: #ffffff;
    border-bottom-color: rgba(16, 24, 40, 0.08);
    box-shadow: var(--shadow-header);
}

.page-about main {
    flex: 1 0 auto;
    min-width: 0;
}

.page-about #siteFooter {
    margin-top: auto;
}

.about-hero {
    position: relative;
    min-height: var(--subpage-banner-image-min-height);
    display: grid;
    align-items: start;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../image/img_subpage_banner_about.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.02);
}


.about-hero-inner {
    position: relative;
    z-index: 1;
    padding: var(--subpage-banner-padding-top) 0 var(--subpage-banner-padding-bottom);
}

.about-hero-copy {
    position: relative;
    display: grid;
    gap: 12px;
    width: min(640px, 100%);
    padding-left: 24px;
}

.about-hero-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 255, 255, 0.22) 100%);
}

.about-hero-kicker,
.about-hero-title,
.about-hero-desc {
    margin: 0;
}

.about-hero-kicker {
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--card-kicker-size);
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.about-hero-title {
    color: #ffffff;
    font-size: var(--page-title-size);
    line-height: 1.04;
    letter-spacing: 0.04em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.about-hero-desc {
    max-width: 34em;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--body-lg-size);
    line-height: 1.82;
    text-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.about-nav {
    position: sticky;
    top: var(--about-nav-top);
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--about-border);
    box-shadow: none;
    backdrop-filter: none;
}

.about-nav-inner {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
}

.about-tab {
    position: relative;
    appearance: none;
    border: 0;
    background: transparent;
    padding: 18px 12px;
    color: rgba(15, 23, 42, 0.68);
    font-size: var(--body-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: color 160ms ease;
}

.about-tab::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.about-tab:hover,
.about-tab:focus-visible {
    color: var(--about-text);
}

.about-tab:focus-visible {
    outline: 2px solid rgba(var(--brand-rgb), 0.2);
    outline-offset: -2px;
}

.about-tab[aria-selected="true"] {
    color: var(--about-text);
    font-weight: 600;
}

.about-tab[aria-selected="true"]::after {
    transform: scaleX(1);
}

.about-main {
    padding: 44px 0 72px;
    padding-top: 0;
    scroll-margin-top: calc(var(--about-nav-top) + var(--about-nav-height) + 16px);
}

.about-container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
}

.about-section {
    display: none;
}

.about-section.is-active {
    display: block;
}

.page-about .about-section--promo {
    min-width: 0;
}

.page-about .about-promo-stage {
    margin-top: 24px;
}

.page-about .about-promo-viewer {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-about .about-promo-viewer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(4, 8, 15, 0.14) 0%,
            rgba(4, 8, 15, 0.3) 100%);
    opacity: 1;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.page-about .about-promo-viewer.is-playing::before {
    opacity: 0;
}

.page-about .about-promo-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1456 / 786;
    background: transparent;
    object-fit: cover;
}

.page-about .about-main.about-main--promo {
    padding-bottom: 28px;
}

.page-about .about-promo-trigger {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity 180ms ease;
}

.page-about .about-promo-viewer.is-playing .about-promo-trigger {
    opacity: 0;
    pointer-events: none;
}

.page-about .about-promo-trigger:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: -4px;
}

.page-about .about-promo-trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    font-size: 34px;
    line-height: 1;
    text-indent: 3px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.page-about .about-promo-trigger:hover .about-promo-trigger-icon,
.page-about .about-promo-trigger:focus-visible .about-promo-trigger-icon {
    transform: scale(1.04);
    background: #ffffff;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.about-section-head {
    text-align: center;
    margin-bottom: 28px;
}

.about-section-head--narrow {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.about-section-head--spaced {
    margin-top: 34px;
}

.about-section-head--left {
    text-align: left;
}

.about-section-eyebrow {
    font-size: var(--card-kicker-size);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--about-subtle);
}

.about-section-head h2 {
    margin: 10px 0 0;
    color: var(--about-text);
    font-size: var(--section-title-size);
    line-height: 1.18;
}

.about-section-copy {
    max-width: 760px;
    margin: 12px auto 0;
    color: var(--about-muted);
    font-size: var(--body-size);
    line-height: 1.82;
}

.about-section-head--left .about-section-copy {
    margin-left: 0;
    margin-right: 0;
}

.about-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: start;
}

.about-card,
.about-media,
.about-slab,
.location-map,
.recruit {
    overflow: hidden;
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius);
    background: var(--about-surface);
    box-shadow: var(--about-shadow);
}

.about-card-pad {
    padding: 24px;
}

.about-paragraphs p,
.talent-top .talent-lead p,
.recruit-desc {
    color: var(--about-muted);
    font-size: var(--body-size);
    line-height: 1.82;
}

.about-paragraphs p,
.talent-top .talent-lead p {
    margin: 0 0 14px;
}

.about-paragraphs p:last-child,
.talent-top .talent-lead p:last-child {
    margin-bottom: 0;
}

.about-media img,
.about-slab img,
.about-devline img,
.about-gallery img,
.location-map img,
.recruit-bg img {
    display: block;
    width: 100%;
    height: auto;
}

.about-media {
    background: var(--about-surface-alt);
}

.about-slab {
    margin-top: 24px;
}

.about-devline {
    margin-top: 32px;
}

.about-locations {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
    gap: 20px;
    margin-top: 32px;
}

.location-list {
    display: grid;
    gap: 12px;
}

.location-item {
    width: 100%;
    text-align: left;
    padding: 16px;
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius);
    background: #ffffff;
    cursor: pointer;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.location-item:hover,
.location-item:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--about-shadow);
}

.location-item:focus-visible {
    outline: 2px solid rgba(var(--brand-rgb), 0.18);
    outline-offset: 2px;
}

.location-item.is-active {
    border-color: var(--about-border-strong);
    box-shadow: var(--shadow-soft);
}

.location-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--about-text);
    font-size: var(--body-lg-size);
    font-weight: 600;
}

.location-title .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

.location-address {
    margin-top: 8px;
    color: var(--about-muted);
    font-size: var(--body-size-sm);
    line-height: 1.75;
}

.location-map {
    min-height: 300px;
    background: var(--about-surface-alt);
}

.location-map img {
    display: none;
    height: 100%;
    object-fit: cover;
}

.location-map img.is-active {
    display: block;
}

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

.about-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius-sm);
    background: var(--about-surface-alt);
}

.about-contact-card img {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.about-contact-title {
    color: var(--about-subtle);
    font-size: var(--info-label-size);
    line-height: 1.5;
}

.about-contact-value {
    margin-top: 4px;
    color: var(--about-text);
    font-size: var(--info-value-size);
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
}

.about-honor-grid {
    margin-top: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.about-honor .page-4-b-h {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0;
    border: none;
    background: #ffffff;
    box-shadow:
        0 0 0 1px rgba(16, 24, 40, 0.04),
        0 6px 14px rgba(16, 24, 40, 0.03);
    transition: none;
}

.about-honor .page-4-b-h:hover {
    transform: none;
    border-color: transparent;
    box-shadow:
        0 0 0 1px rgba(16, 24, 40, 0.04),
        0 6px 14px rgba(16, 24, 40, 0.03);
}

.about-honor .page-4-b-h-i {
    width: 100%;
    height: 208px;
    max-height: none;
    padding: 18px;
    object-fit: contain;
    background: var(--about-surface-alt);
    border-bottom: none;
    box-shadow: none;
}

.about-honor .page-4-b-h-t {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 14px 16px 16px;
    background: #ffffff;
    color: rgba(16, 24, 40, 0.82);
    font-size: var(--info-label-size);
    font-weight: 700;
    line-height: 1.68;
    text-align: center;
}

.talent-top {
    display: grid;
    gap: 8px;
}

.talent-top .talent-lead {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    margin: 18px auto 0;
    padding: 20px 0 4px;
    background: transparent;
}

.talent-top .about-slab {
    margin-top: 0;
}

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

.about-gallery img {
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius-sm);
    background: var(--about-surface-alt);
}

.recruit {
    position: relative;
    min-height: 360px;
    margin-top: 18px;
    background: #eef3f8;
}

.recruit-inner {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(560px, 100%);
    padding: 26px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.88) 74%,
            rgba(255, 255, 255, 0) 100%);
}

.recruit-title {
    color: var(--about-text);
    font-size: var(--card-title-md-size);
    font-weight: 700;
    line-height: 1.3;
}

.recruit-desc {
    margin-top: 10px;
    max-width: 34em;
}

.recruit-actions {
    margin-top: 16px;
}

.recruit-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--btn-height-sm);
    padding: 0 var(--btn-padding-x-sm);
    border: 1px solid var(--btn-primary-border);
    border-radius: var(--btn-radius);
    background: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    font-size: var(--btn-size-sm);
    font-weight: 600;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
    box-shadow: var(--btn-primary-shadow);
}

.recruit-actions a:hover,
.recruit-actions a:focus-visible {
    transform: translateY(-1px);
    border-color: var(--btn-primary-border-hover);
    background: var(--btn-primary-bg-hover);
    box-shadow: var(--btn-primary-shadow-hover);
}

.recruit-bg,
.recruit-bg img {
    height: 100%;
}

.recruit-bg img {
    object-fit: cover;
}

.page-about .about-legacy-heading {
    margin: 44px auto 0;
    position: relative;
    padding-bottom: 46px;
    text-align: center;
}

.page-about .about-legacy-heading--compact {
    margin-top: 40px;
}

.page-about .about-legacy-heading-en {
    font-family: "tentcooFont", var(--font-body);
    font-size: 50px;
    line-height: 1;
    color: #ededed;
}

.page-about .about-legacy-heading-cn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 46px;
    margin: 0;
    font-family: "tentcooFont", var(--font-body);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: #333333;
}

.page-about .about-legacy-heading-mark {
    position: absolute;
    left: 50%;
    bottom: 22px;
    display: block;
    width: 75px;
    margin: 0;
    transform: translateX(-50%);
}

.page-about .about-slab-legacy {
    margin-top: 50px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-about .about-section[data-section="intro"] .about-grid-2 {
    width: min(1080px, 100%);
    margin: 24px auto 0;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
    justify-content: center;
    gap: 42px;
    align-items: start;
}

.page-about .about-section[data-section="intro"] .about-card,
.page-about .about-section[data-section="intro"] .about-media {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-about .about-section[data-section="intro"] .about-card-pad {
    display: grid;
    gap: 34px;
    align-content: start;
    padding: 0;
}

.page-about .about-section[data-section="intro"] .about-paragraphs p {
    font-size: 17px;
    line-height: 1.95;
}

.page-about .about-section[data-section="intro"] .about-paragraphs p+p {
    margin-top: 20px;
}

.page-about .about-section[data-section="intro"] .about-intro-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 4px;
}

.page-about .about-section[data-section="intro"] .about-intro-metric {
    position: relative;
    display: grid;
    align-content: center;
    min-height: 132px;
    padding: 22px 22px 18px;
    border: 1px solid rgba(0, 84, 225, 0.12);
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(0, 84, 225, 0.12), transparent 46%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    box-shadow: 0 14px 30px rgba(0, 84, 225, 0.07);
    text-align: center;
}

.page-about .about-section[data-section="intro"] .about-intro-metric-value {
    color: #0054e1;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.page-about .about-section[data-section="intro"] .about-intro-metric-value--text {
    font-size: clamp(28px, 2.35vw, 36px);
    letter-spacing: -0.02em;
}

.page-about .about-section[data-section="intro"] .about-intro-metric-label {
    margin-top: 8px;
    color: rgba(15, 23, 42, 0.56);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.page-about .about-section[data-section="intro"] .about-media {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 2px;
}

.page-about .about-section[data-section="intro"] .about-media img {
    width: 100%;
    max-width: 372px;
    aspect-ratio: 420 / 520;
    border-radius: 18px;
    object-fit: cover;
    /* object-position: 62% center; */
}

.page-about .about-slab-image--mobile,
.page-about .about-devline-image--mobile {
    display: none;
}

.page-about .about-devline-legacy {
    margin-top: 0;
}

.page-about .about-gallery-legacy {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.page-about .about-gallery-legacy img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.page-about .about-recruit-legacy {
    position: relative;
    min-height: 0;
    margin-top: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-about .about-recruit-title {
    position: absolute;
    left: 100px;
    top: 108px;
    z-index: 2;
    font-family: "tentcooFont", var(--font-body);
    font-size: 24px;
    color: #333333;
    line-height: 29px;
}

.page-about .about-recruit-desc {
    position: absolute;
    left: 100px;
    top: 157px;
    z-index: 2;
    width: 370px;
    color: #666666;
    font-size: 14px;
    line-height: 24px;
}

.page-about .about-recruit-picture {
    display: block;
}

.page-about .about-recruit-image {
    display: block;
    width: 100%;
    height: auto;
}

.page-about .about-recruit-link {
    position: absolute;
    left: 100px;
    top: 225px;
    z-index: 2;
    display: inline-block;
    width: 170px;
    height: 40px;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
}

.page-about .about-recruit-link::after {
    content: "\2192";
    display: inline-block;
    margin-left: 10px;
    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
}

.page-about .about-recruit-link:hover,
.page-about .about-recruit-link:focus-visible {
    color: #0054e1;
}

.page-about .about-recruit-link:focus-visible {
    outline: 2px solid rgba(var(--brand-rgb), 0.18);
    outline-offset: 4px;
}

.page-about .about-locations-legacy {
    display: block;
    margin-top: 0;
}

.page-about .about-office-shell {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-about .about-office-main {
    display: flex;
}

.page-about .about-office-list {
    display: block;
    width: 30%;
}

.page-about .about-office-item {
    width: 100%;
    padding: 0;
    border: 0;
    border-left: 6px solid transparent;
    border-radius: 0;
    background: #f5f6fa;
    box-shadow: none;
    transform: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.page-about .about-office-item+.about-office-item {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.page-about .about-office-item:hover,
.page-about .about-office-item:focus-visible {
    transform: none;
    border-color: transparent;
    border-left-color: transparent;
    box-shadow: none;
    outline: none;
}

.page-about .about-office-item.is-active {
    background: #ffffff;
    border-left-color: #0054e1;
    box-shadow: none;
}

.page-about .about-office-item:active {
    transform: none;
    background: #f5f6fa;
}

.page-about .about-office-item.is-active:active {
    background: #ffffff;
}

.page-about .about-office-item-wrap {
    position: relative;
}

.page-about .about-office-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.page-about .about-office-item-copy {
    display: block;
    padding: 21px 49px;
}

.page-about .about-office-arrow {
    display: none;
    width: 32px;
    flex-shrink: 0;
    transform: rotate(-90deg);
    transition: transform 180ms ease;
}

.page-about .about-office-item.is-active .about-office-arrow {
    transform: rotate(0deg);
}

.page-about .about-office-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #333333;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.page-about .about-office-title .dot {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    flex-shrink: 0;
}

.page-about .about-office-title .dot::before {
    content: "\e634";
    font-family: "iconfont";
    font-size: 20px;
    color: #0054e1;
    line-height: 1;
}

.page-about .about-office-address {
    display: block;
    margin-top: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.5;
}

.page-about .about-office-map {
    width: 70%;
    min-height: 377px;
    background: #eef3f8;
    position: relative;
}

.page-about .about-office-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-about .about-office-map-inline {
    display: none;
}

.page-about .about-office-map-inline img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-about .about-contact-legacy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    margin-top: 32px;
    gap: 20px;
    background: transparent;
}

.page-about .about-contact-card-legacy {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    min-height: 188px;
    padding: 30px 28px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    text-align: left;
}

.page-about .about-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    min-width: 84px;
}

.page-about .about-contact-card-legacy img {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    object-fit: contain;
}

.page-about .about-contact-copy {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    font-size: 15px;
}

.page-about .about-contact-legacy .about-contact-title {
    margin: 0;
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.page-about .about-contact-subtitle {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.page-about .about-contact-legacy .about-contact-list {
    display: grid;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
}

.page-about .about-contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
}

.page-about .about-contact-label {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    white-space: nowrap;
}

.page-about .about-contact-link {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    color: #1664ff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}

.page-about .about-contact-link:hover,
.page-about .about-contact-link:focus-visible {
    text-decoration: underline;
}

.page-about .about-talent-hero.talent-top {
    position: relative;
    display: block;
    gap: 0;
    margin-top: 0;
}

.page-about .about-talent-image {
    display: block;
    width: 100%;
    height: auto;
}

.page-about .about-talent-image--mobile {
    display: none;
}

.page-about .about-talent-logo {
    position: absolute;
    left: 100px;
    top: 40px;
    z-index: 2;
    width: 300px;
}

.page-about .about-talent-hero .talent-lead.about-talent-copy {
    position: absolute;
    left: 100px;
    top: 138px;
    z-index: 2;
    width: 570px;
    max-width: calc(100% - 200px);
    margin: 0;
    padding: 0;
    background: transparent;
}

.page-about .about-talent-copy p {
    margin: 0 0 20px;
    color: #333333;
    font-size: 14px;
    line-height: 24px;
}

.page-about .about-talent-copy p:last-child {
    margin-bottom: 0;
}

@media (max-width: 980px) {

    .page-about .about-section[data-section="intro"] .about-grid-2 {
        width: 100%;
        margin: 0 auto;
        grid-template-columns: 1fr;
        justify-content: initial;
        gap: 24px;
    }

    .page-about .about-section[data-section="intro"] .about-media {
        justify-content: stretch;
    }

    .page-about .about-section[data-section="intro"] .about-card-pad {
        display: block;
    }

    .page-about .about-section[data-section="intro"] .about-intro-metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    .page-about .about-section[data-section="intro"] .about-slab-legacy {
        display: block;
    }

    .page-about .about-section[data-section="intro"] .about-media img {
        width: 100%;
        max-width: none;
        aspect-ratio: auto;
    }

    .page-about .about-office-shell {
        box-shadow: none;
    }

    .page-about .about-office-main {
        flex-direction: column;
        gap: 0;
    }

    .page-about .about-office-list,
    .page-about .about-office-map {
        width: 100%;
    }

    .page-about .about-office-list {
        display: block;
    }

    .page-about .about-office-item-wrap {
        margin-bottom: 15px;
    }

    .page-about .about-office-item {
        width: 100%;
        padding: 15px 17px;
        border: 0;
        border-left: 0;
        border-radius: 0;
        background: #ffffff;
        box-shadow: 0px 10px 40px 0px rgba(0, 15, 68, 0.1);
        overflow: hidden;
    }

    .page-about .about-office-item-copy {
        padding: 0;
    }

    .page-about .about-office-item:hover,
    .page-about .about-office-item:focus-visible {
        transform: none;
        border-color: transparent;
        box-shadow: 0px 10px 40px 0px rgba(0, 15, 68, 0.1);
    }

    .page-about .about-office-item.is-active {
        border-left-color: transparent;
        box-shadow: 0px 10px 40px 0px rgba(0, 15, 68, 0.1);
    }

    .page-about .about-office-item:active,
    .page-about .about-office-item.is-active:active {
        background: #ffffff;
    }

    .page-about .about-office-map {
        min-height: 500px;
        margin-top: 0;
        border-radius: 0;
        overflow: hidden;
    }

    .page-about .about-contact-legacy {
        gap: 16px;
        margin-top: 28px;
    }

    .page-about .about-contact-card-legacy {
        gap: 18px;
        min-height: 176px;
        padding: 24px 22px;
    }

    .page-about .about-contact-icon {
        width: 76px;
        min-width: 76px;
    }

    .page-about .about-contact-card-legacy img {
        width: 76px;
        height: 76px;
        margin: 0;
    }

    .page-about .about-contact-legacy .about-contact-title {
        font-size: 18px;
    }

    .page-about .about-contact-subtitle {
        font-size: 13px;
    }

    .page-about .about-contact-item {
        width: 100%;
    }

    .page-about .about-contact-label,
    .page-about .about-contact-link {
        font-size: 14px;
    }

    .page-about .about-talent-hero.talent-top {
        padding: 15px;
    }

    .page-about .about-talent-logo {
        position: static;
        width: 175px;
        margin-bottom: 21px;
    }

    .page-about .about-talent-hero .talent-lead.about-talent-copy {
        position: static;
        width: 100%;
        max-width: none;
    }

    .page-about .about-recruit-title,
    .page-about .about-recruit-desc,
    .page-about .about-recruit-link {
        left: 48px;
    }

    .about-grid-2,
    .about-locations {
        grid-template-columns: 1fr;
    }

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

    .recruit {
        min-height: 0;
    }

    .recruit-inner {
        position: relative;
        inset: auto;
        width: 100%;
        background: #ffffff;
    }

    .recruit-bg {
        border-top: 1px solid var(--about-border);
    }

    .page-about .about-slab-image--mobile,
    .page-about .about-devline-image--mobile {
        display: block;
    }

    .page-about .about-gallery-legacy {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
    }

    .page-about .about-recruit-legacy {
        padding: 0 15px;
        display: block;
    }

    .page-about .about-recruit-title {
        display: none;
    }

    .page-about .about-recruit-desc {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        color: #666666;
    }

    .page-about .about-recruit-picture {
        overflow: visible;
        border-radius: 0;
    }

    .page-about .about-recruit-link {
        position: static;
        display: block;
        width: auto;
        min-height: 0;
        margin: 30px auto 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #333333;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
    }

    .page-about .about-recruit-link::after {
        margin-left: 10px;
        font-size: 24px;
    }

    .about-hero {
        min-height: var(--subpage-banner-image-min-height);
    }

    .about-hero-inner {
        padding: var(--subpage-banner-padding-top) 0 var(--subpage-banner-padding-bottom);
    }

    .about-hero-copy {
        gap: 10px;
        width: min(100%, 560px);
        padding-left: 18px;
    }

    .about-hero-kicker {
        font-size: var(--card-kicker-size-sm);
        letter-spacing: 0.18em;
    }

    .about-hero-title {
        font-size: var(--page-title-size-sm);
        letter-spacing: 0.02em;
    }

    .about-hero-desc {
        font-size: var(--body-size-sm);
        line-height: 1.74;
    }

    /* Match the global container side padding on mobile. */
    .about-nav-inner {
        justify-content: space-between;
        gap: 0;
        overflow-x: visible;
        scrollbar-width: none;
        width: min(var(--container), calc(100% - 28px));
        margin: 0 auto;
        padding: 0;
    }

    .about-tab::after {
        left: 50%;
        right: auto;
        bottom: 0;
        width: 46px;
        height: 4px;
        border-radius: 2px;
        transform: translateX(-50%) scaleX(0);
    }

    .about-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .about-tab[aria-selected="true"]::after {
        transform: translateX(-50%) scaleX(1);
    }

    .about-tab {
        flex: 1 1 0;
        min-width: 0;
        padding: 16px 0;
        font-size: var(--info-label-size);
        white-space: nowrap;
        text-align: center;
    }

    .about-main {
        padding: 30px 0 48px;
    }

    .about-container {
        width: min(var(--container), calc(100% - 28px));
    }

    .about-section-head {
        margin-bottom: 24px;
    }

    .about-section-head h2 {
        font-size: var(--section-title-size-sm);
    }

    .about-section-copy {
        font-size: var(--body-size-sm);
        line-height: 1.78;
    }

    .about-card-pad {
        padding: 20px;
    }

    .about-contact {
        grid-template-columns: 1fr;
    }

    .about-contact-value {
        font-size: var(--info-value-size-sm);
    }

    .location-map {
        min-height: 240px;
    }

    /* Keep the honor cards as two columns on mobile. */
    .about-honor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch;
    }

    .about-honor .page-4-b-h {
        display: flex;
        flex-direction: column;
        height: 100%;
        border: none;
        border-radius: 0;
        background: #ffffff;
        box-shadow:
            0 0 0 1px rgba(16, 24, 40, 0.04),
            0 6px 14px rgba(16, 24, 40, 0.03);
        transition: none;
        overflow: hidden;
    }

    .about-honor .page-4-b-h:hover {
        transform: none;
        border-color: transparent;
        box-shadow:
            0 0 0 1px rgba(16, 24, 40, 0.04),
            0 6px 14px rgba(16, 24, 40, 0.03);
    }

    .about-honor .page-4-b-h-i {
        flex-shrink: 0;
        width: 100%;
        height: 208px;
        max-height: none;
        padding: 18px;
        object-fit: contain;
        background: var(--about-surface-alt);
        border-bottom: none;
        box-shadow: none;
    }

    .about-honor .page-4-b-h-t {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        left: auto;
        right: auto;
        bottom: auto;
        flex: 0 0 auto;
        min-height: 60px;
        padding: 12px;
        background: #ffffff;
        color: rgba(16, 24, 40, 0.82);
        font-size: var(--info-label-size);
        font-weight: 700;
        line-height: 1.5;
        text-align: center;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .recruit-inner {
        padding: 22px 18px;
    }

    .recruit-title {
        font-size: var(--card-title-md-size-sm);
    }
}

@media (max-width: 720px) {
    .page-about {
        --about-nav-top: 60px;
    }

    .page-about .about-promo-stage {
        margin-top: 18px;
    }

    .page-about .about-promo-trigger-icon {
        width: 68px;
        height: 68px;
        font-size: 26px;
        text-indent: 2px;
    }

    .page-about .about-main.about-main--promo {
        padding-bottom: 20px;
    }

    .page-about .about-legacy-heading {
        margin-top: 38px;
        padding-bottom: 46px;
    }

    .page-about .about-legacy-heading--compact {
        margin-top: 46px;
    }

    .page-about .about-legacy-heading-en {
        font-size: 19px;
        letter-spacing: 0.04em;
    }

    .page-about .about-legacy-heading-cn {
        bottom: 34px;
        font-size: 18px;
    }

    .page-about .about-section[data-section="intro"] .about-intro-metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 18px;
    }

    .page-about .about-section[data-section="intro"] .about-intro-metric {
        min-height: 88px;
        padding: 12px 8px 10px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 84, 225, 0.08);
    }

    .page-about .about-section[data-section="intro"] .about-intro-metric-value {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 0.96;
        text-align: center;
    }

    .page-about .about-section[data-section="intro"] .about-intro-metric-value--text {
        font-size: clamp(18px, 5.4vw, 24px);
    }

    .page-about .about-section[data-section="intro"] .about-intro-metric-label {
        margin-top: 6px;
        font-size: 10px;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }

    .page-about .about-legacy-heading-mark {
        bottom: 18px;
        width: 62px;
    }

    .page-about .about-section[data-section="intro"] .about-grid-2 {
        gap: 18px;
    }

    .page-about .about-section[data-section="intro"] .about-media {
        order: -1;
    }

    .page-about .about-paragraphs p,
    .page-about .about-talent-copy p,
    .page-about .about-recruit-desc {
        font-size: 14px;
        line-height: 1.78;
    }

    .page-about .about-office-item-copy {
        padding: 0;
    }

    .page-about .about-office-item-wrap {
        margin-bottom: 15px;
    }

    .page-about .about-office-item-head {
        align-items: center;
    }

    .page-about .about-office-title {
        gap: 10px;
        margin-bottom: 12px;
        font-size: 18px;
        line-height: 18px;
    }

    .page-about .about-office-title .dot::before {
        font-size: 18px;
    }

    .page-about .about-office-address {
        font-size: 14px;
        line-height: 21px;
    }

    .page-about .about-office-map {
        display: none;
    }

    .page-about .about-office-map-inline {
        display: none;
        width: 100%;
        height: calc((100vw - 24px) * 0.7);
        max-height: 320px;
        overflow: hidden;
    }

    .page-about .about-office-item-wrap.is-active .about-office-map-inline {
        display: block;
    }

    .page-about .about-office-arrow {
        display: block;
        width: 16px;
    }

    .page-about .about-office-shell {
        background: transparent;
    }

    .page-about .about-contact-legacy {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 0;
        margin-top: 16px;
        background: transparent;
        border: 0;
    }

    .page-about .about-contact-card-legacy {
        width: 100%;
        margin-top: 0;
        min-height: 0;
        padding: 18px 16px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        position: static;
        text-align: center;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    }

    .page-about .about-contact-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-width: 0;
    }

    .page-about .about-contact-card-legacy img {
        width: 56px;
        height: 56px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-sizing: border-box;
    }

    .page-about .about-contact-card-legacy+.about-contact-card-legacy {
        border: 0;
    }

    .page-about .about-contact-copy {
        width: 100%;
        gap: 6px;
        font-size: 12px;
        min-width: 0;
        align-items: center;
        text-align: center;
    }

    .page-about .about-contact-legacy .about-contact-title {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.35;
        color: #111827;
    }

    .page-about .about-contact-subtitle {
        font-size: 11px;
        line-height: 1.45;
    }

    .page-about .about-contact-legacy .about-contact-list {
        gap: 10px;
        margin-top: 4px;
        justify-items: center;
    }

    .page-about .about-contact-item {
        justify-content: center;
        align-items: center;
    }

    .page-about .about-contact-label,
    .page-about .about-contact-link {
        font-size: 13px;
        line-height: 1.55;
        text-align: center;
    }

    .page-about .about-contact-link {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .page-about .about-talent-image--desktop {
        display: none;
    }

    .page-about .about-slab-image--desktop,
    .page-about .about-devline-image--desktop {
        display: none;
    }

    .page-about .about-talent-image--mobile {
        display: block;
    }

    .page-about .about-slab-image--mobile,
    .page-about .about-devline-image--mobile {
        display: block;
    }

    .page-about .about-gallery-legacy {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
    }

    .page-about .about-recruit-legacy {
        padding: 0 15px;
        display: block;
    }

    .page-about .about-recruit-title {
        display: none;
    }

    .page-about .about-recruit-desc {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        color: #666666;
    }

    .page-about .about-recruit-picture {
        overflow: visible;
        border-radius: 0;
    }

    .page-about .about-recruit-link {
        position: static;
        display: block;
        width: auto;
        min-height: 0;
        margin: 30px auto 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #333333;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
    }

    .page-about .about-recruit-link::after {
        margin-left: 10px;
        font-size: 24px;
    }

    .about-hero {
        min-height: var(--subpage-banner-image-min-height);
    }

    .about-hero-inner {
        padding: var(--subpage-banner-padding-top) 0 var(--subpage-banner-padding-bottom);
    }

    .about-hero-copy {
        gap: 10px;
        width: min(100%, 560px);
        padding-left: 18px;
    }

    .about-hero-kicker {
        font-size: var(--card-kicker-size-sm);
        letter-spacing: 0.18em;
    }

    .about-hero-title {
        font-size: var(--page-title-size-sm);
        letter-spacing: 0.02em;
    }

    .about-hero-desc {
        font-size: var(--body-size-sm);
        line-height: 1.74;
    }

    .about-nav-inner {
        justify-content: space-between;
        gap: 0;
        overflow-x: visible;
        scrollbar-width: none;
        width: min(var(--container), calc(100% - 28px));
        margin: 0 auto;
        padding: 0;
    }

    .about-tab::after {
        left: 50%;
        right: auto;
        bottom: 0;
        width: 46px;
        height: 4px;
        border-radius: 2px;
        transform: translateX(-50%) scaleX(0);
    }

    .about-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .about-tab[aria-selected="true"]::after {
        transform: translateX(-50%) scaleX(1);
    }

    .about-tab {
        flex: 1 1 0;
        min-width: 0;
        padding: 16px 0;
        font-size: var(--info-label-size);
        white-space: nowrap;
        text-align: center;
    }

    .about-main {
        padding: 30px 0 48px;
    }

    .about-container {
        width: min(var(--container), calc(100% - 28px));
    }

    .about-section-head {
        margin-bottom: 24px;
    }

    .about-section-head h2 {
        font-size: var(--section-title-size-sm);
    }

    .about-section-copy {
        font-size: var(--body-size-sm);
        line-height: 1.78;
    }

    .about-card-pad {
        padding: 20px;
    }

    .about-contact {
        grid-template-columns: 1fr;
    }

    .about-contact-value {
        font-size: var(--info-value-size-sm);
    }

    .location-map {
        min-height: 240px;
    }

    .about-honor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch;
    }

    .about-honor .page-4-b-h {
        display: flex;
        flex-direction: column;
        height: 100%;
        border: none;
        border-radius: 0;
        background: #ffffff;
        box-shadow:
            0 0 0 1px rgba(16, 24, 40, 0.04),
            0 6px 14px rgba(16, 24, 40, 0.03);
        transition: none;
        overflow: hidden;
    }

    .about-honor .page-4-b-h:hover {
        transform: none;
        border-color: transparent;
        box-shadow:
            0 0 0 1px rgba(16, 24, 40, 0.04),
            0 6px 14px rgba(16, 24, 40, 0.03);
    }

    .about-honor .page-4-b-h-i {
        flex-shrink: 0;
        width: 100%;
        height: 208px;
        max-height: none;
        padding: 18px;
        object-fit: contain;
        background: var(--about-surface-alt);
        border-bottom: none;
        box-shadow: none;
    }

    .about-honor .page-4-b-h-t {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        left: auto;
        right: auto;
        bottom: auto;
        flex: 0 0 auto;
        min-height: 60px;
        padding: 12px;
        background: #ffffff;
        color: rgba(16, 24, 40, 0.82);
        font-size: var(--info-label-size);
        font-weight: 700;
        line-height: 1.5;
        text-align: center;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .recruit-inner {
        padding: 22px 18px;
    }

    .recruit-title {
        font-size: var(--card-title-md-size-sm);
    }
}

@media (max-width: 560px) {
    .about-hero {
        min-height: var(--subpage-banner-image-min-height);
    }

    .about-hero-copy {
        padding-left: 14px;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .page-about .about-gallery-legacy {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
    }

    .recruit-actions a {
        width: 100%;
    }
}
