:root {
    --bg: #eef3f9;
    --bg-mesh: radial-gradient(ellipse 120% 80% at 100% -20%, rgba(10, 77, 149, 0.06), transparent 50%),
        radial-gradient(ellipse 80% 60% at -10% 60%, rgba(5, 42, 87, 0.04), transparent 45%),
        var(--bg);
    --surface: #ffffff;
    --surface-soft: #eef4fc;
    --text: #152232;
    --text-muted: #556575;
    --line: #d0dbe8;
    --line-strong: #b8c8da;
    --navy: #052a57;
    --blue: #0a4d95;
    --blue-bright: #1a6ebe;
    --blue-soft: #e3eefb;
    --shadow-sm: 0 4px 16px rgba(5, 42, 87, 0.05);
    --shadow: 0 14px 36px rgba(5, 42, 87, 0.075);
    --shadow-lg: 0 26px 64px rgba(5, 42, 87, 0.1);
    --shadow-glow: 0 8px 32px rgba(10, 77, 149, 0.12);
    --max: min(1320px, calc(100vw - clamp(1.25rem, 5vw, 3.5rem)));
    --radius: 10px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --section-y: clamp(4.25rem, 9vw, 7.5rem);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.35s var(--ease-out);
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans TC", "Noto Sans SC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
    background: var(--bg-mesh);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
    color: var(--navy);
}

:focus-visible {
    outline: 2px solid var(--blue-bright);
    outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
    outline: none;
}

.wrap {
    width: var(--max);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(208, 219, 232, 0.85);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    transition: box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.site-header.site-header--elevated {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(5, 42, 87, 0.07);
    border-bottom-color: var(--line);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    color: var(--navy);
}

.brand strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.brand span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.brand--with-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy);
}

.brand__logo-img {
    height: clamp(40px, 5vw, 52px);
    width: auto;
    max-width: min(200px, 38vw);
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}


.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.menu-toggle:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

.lang-switch__btn {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text-muted);
    border-radius: 999px;
    padding: 0.18rem 0.48rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-switch__btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.lang-switch__btn.active {
    border-color: var(--blue);
    background: var(--blue-soft);
    color: var(--blue);
}

.nav a {
    color: var(--text);
    padding: 0.4rem 0.35rem;
    border-bottom: 2px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav a.active,
.nav a:hover {
    color: var(--blue);
    border-bottom-color: var(--blue-bright);
}

.hero {
    background: linear-gradient(130deg, #03244a 0%, #0a4d95 55%, #2d77c0 100%);
    color: #fff;
    padding: 6rem 0 4.5rem;
}

.hero--banner {
    position: relative;
    padding: 0;
    min-height: clamp(420px, 62vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #03244a;
}

.hero--banner .hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero--banner .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transform-origin: center center;
}

@media (prefers-reduced-motion: no-preference) {
    .hero--banner .hero__media img {
        animation: hero-drift 42s ease-in-out infinite alternate;
    }
}

@keyframes hero-drift {
    from {
        transform: scale(1.06) translate(0, 0);
    }
    to {
        transform: scale(1.1) translate(-0.6%, -0.4%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero--banner .hero__media img {
        animation: none;
        transform: scale(1.08);
    }
}

.hero--banner .hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(3, 36, 74, 0.72) 0%,
        rgba(10, 77, 149, 0.38) 46%,
        rgba(5, 42, 87, 0.14) 72%,
        rgba(5, 42, 87, 0.05) 100%
    );
}

.hero--banner .hero__inner {
    position: relative;
    z-index: 2;
    padding: clamp(4rem, 11vw, 7.5rem) 0;
    flex: 0 1 var(--max);
    max-width: 100%;
    box-sizing: border-box;
}

.hero--banner h1,
.hero--banner p {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

/* 无摄影图横幅：纯渐变 + 轻高光，减少全站大图占比 */
.hero--banner.hero--no-photo {
    background: linear-gradient(130deg, #03244a 0%, #0a4d95 50%, #1e5fa8 100%);
    min-height: clamp(320px, 48vh, 560px);
}

.hero--banner.hero--no-photo .hero__scrim {
    background: radial-gradient(ellipse 100% 85% at 88% 18%, rgba(255, 255, 255, 0.09), transparent 52%),
        linear-gradient(105deg, rgba(3, 36, 74, 0.45) 0%, rgba(10, 77, 149, 0.2) 100%);
}

.hero__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin: 0 0 1.35rem;
    padding: 0;
    list-style: none;
}

.hero__chips li {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.98);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.38);
    padding: 0.45rem 0.95rem;
    border-radius: 100px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero h1 {
    margin: 0 0 1.15rem;
    font-size: clamp(2.25rem, 4.8vw, 3.45rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.hero p {
    margin: 0;
    max-width: min(44rem, 100%);
    font-size: clamp(1.02rem, 1.35vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    padding: 0.68rem 1.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
    background: #f8fafc;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    color: var(--navy);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}

.btn:not(.btn-primary):not(.btn-ghost) {
    background: var(--surface);
    color: var(--navy);
    border: 1px solid var(--line);
}

.btn:not(.btn-primary):not(.btn-ghost):hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: var(--shadow-sm);
}

section {
    padding: var(--section-y) 0;
}

.section-head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 52rem;
}

.section-head h2 {
    margin: 0 0 0.85rem;
    color: var(--navy);
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    letter-spacing: 0.02em;
    line-height: 1.22;
    position: relative;
    padding-bottom: 0.65rem;
}

.section-head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.75rem;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue-bright), rgba(26, 110, 190, 0.35));
}

.layout-prose--center .section-head h2::after,
.section-head.layout-prose--center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(1.02rem, 1.25vw, 1.15rem);
    line-height: 1.75;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.15rem, 2.5vw, 1.85rem);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.15rem, 2.5vw, 1.85rem);
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 2.5vw, 1.85rem);
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

@media (hover: hover) {
    .card:hover {
        border-color: rgba(10, 77, 149, 0.22);
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }
}

.card h3 {
    margin: 0 0 0.65rem;
    color: var(--blue);
    font-size: clamp(1.08rem, 1.5vw, 1.22rem);
}

.card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.band {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.timeline {
    display: grid;
    gap: 0.8rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--blue);
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

@media (hover: hover) {
    .timeline-item:hover {
        box-shadow: var(--shadow);
    }
}

.timeline-item strong {
    color: var(--blue);
}

.media-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(1rem, 2vw, 1.25rem);
    box-shadow: var(--shadow-sm);
}

.media-box video,
.media-box iframe {
    width: 100%;
    border: 0;
    border-radius: 6px;
}

.media-box iframe {
    min-height: 650px;
    background: #eef2f7;
}

.whitepaper-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(1rem, 2.8vw, 1.75rem);
    row-gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.split-section.split-reverse .split-media {
    order: 2;
}

.split-section.split-reverse .split-content {
    order: 1;
}

.split-media {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    min-height: clamp(360px, 48vh, 640px);
}

.split-media img {
    width: 100%;
    height: 100%;
    min-height: clamp(360px, 48vh, 640px);
    object-fit: cover;
    display: block;
    transition: transform var(--transition-med);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .split-media:hover img {
        transform: scale(1.03);
    }
}

.split-content {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: clamp(0.35rem, 1.2vw, 0.65rem) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    margin: 0 0 0.85rem;
    color: var(--navy);
    font-size: clamp(1.28rem, 2.4vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: clamp(1.02rem, 1.2vw, 1.12rem);
    line-height: 1.78;
}

.split-content p:last-child {
    margin-bottom: 0;
}

/* 大横幅下方：白底图文卡，避免与 hero 通栏叠字重复 */
section.page-intro {
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.page-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 4.5vw, 3.25rem);
    align-items: center;
}

.page-intro__figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 10;
    min-height: clamp(280px, 36vw, 420px);
    /* Prevent horizontal overflow on mobile due to intrinsic image size */
    min-width: 0;
    max-width: 100%;
}

.page-intro__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-med);
    max-width: 100%;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .page-intro__figure:hover img {
        transform: scale(1.03);
    }
}

.page-intro__body .page-intro__label {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
}

.page-intro__body h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 2.9vw, 2.05rem);
    color: var(--navy);
    line-height: 1.28;
    letter-spacing: 0.02em;
}

.page-intro__body p {
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.8;
}

.page-intro__body p + p {
    margin-top: 0.85rem;
}

.page-intro--flip .page-intro__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.page-intro--flip .page-intro__figure {
    order: 2;
}

.page-intro--flip .page-intro__body {
    order: 1;
}



/* 首页首段：先图文，再大号信息块 */
.page-intro--home .split-section {
    margin-bottom: 0;
}

.page-intro--home .split-content .page-intro__label {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
}

.page-intro--home .split-content h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    color: var(--navy);
    line-height: 1.28;
    letter-spacing: 0.02em;
}

.page-intro--home .stat-row {
    gap: clamp(1rem, 2.8vw, 1.6rem);
}

.page-intro--home .stat-row .stat {
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue-bright);
    border-radius: var(--radius-md);
    padding: clamp(1.2rem, 2.8vw, 1.6rem) clamp(1rem, 2.2vw, 1.3rem) clamp(1rem, 2.2vw, 1.25rem);
    box-shadow: var(--shadow);
}

.page-intro--home .stat-row .stat strong {
    font-size: clamp(1.35rem, 2.8vw, 1.8rem);
    margin-bottom: 0.45rem;
}

.page-intro--home .stat-row .stat span {
    font-size: clamp(0.95rem, 1.15vw, 1.02rem);
    line-height: 1.6;
}

.page-intro--home .feature-chips--hero .feature-chip {
    text-align: left;
    padding: clamp(1.35rem, 2.9vw, 1.8rem);
}

.page-intro--home .feature-chips--hero .feature-chip__icon {
    margin: 0 0 0.95rem;
    width: 3.2rem;
    height: 3.2rem;
}

.page-intro--home .feature-chips--hero .feature-chip h3 {
    font-size: clamp(1.12rem, 1.5vw, 1.25rem);
}

.page-intro--home .feature-chips--hero .feature-chip p {
    font-size: clamp(0.96rem, 1.12vw, 1.02rem);
    line-height: 1.65;
}



/* 策略页：宏观到组合的映射（更轻量、更精致的图文节奏） */
.split-section--mapping {
    background: linear-gradient(180deg, var(--surface-soft) 0%, rgba(255, 255, 255, 0) 100%);
    border-top: 1px solid rgba(215, 224, 234, 0.8);
    border-bottom: 1px solid rgba(215, 224, 234, 0.8);
    border-radius: 18px;
    padding: clamp(1.25rem, 2.4vw, 1.8rem);
    box-shadow: var(--shadow-sm);
}

.split-section--mapping .split-media {
    border-radius: 14px;
    min-height: clamp(220px, 30vw, 360px);
    box-shadow: var(--shadow-lg);
}

.split-section--mapping .split-content {
    padding: 0;
    justify-content: center;
}

.split-section--mapping .split-content h3 {
    margin-bottom: 0.9rem;
}

.split-section--mapping .split-content p {
    line-height: 1.75;
}





/* 跨境页：持续监测政策段图文卡优化 */
.split-section--cb-risk {
    background: linear-gradient(180deg, var(--surface-soft) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(208, 219, 232, 0.75);
    border-radius: 18px;
    padding: clamp(1.15rem, 2.3vw, 1.75rem);
    box-shadow: var(--shadow-sm);
}

.split-section--cb-risk .split-media {
    border-radius: 14px;
    min-height: clamp(220px, 28vw, 340px);
    box-shadow: var(--shadow-lg);
}

.split-section--cb-risk .split-content {
    padding: 0;
}

.split-section--cb-risk .split-content h3 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.26rem, 2.2vw, 1.62rem);
}

.split-section--cb-risk .split-content p {
    line-height: 1.75;
}

@media (max-width: 980px) {
    .split-section--cb-risk {
        padding: 1.05rem;
        border-radius: 14px;
    }
}
/* 跨境页：跨市场动态配置（轻量图文卡，避免图片过高显拥挤） */
.split-section--cb-dynamic {
    background: linear-gradient(180deg, var(--surface-soft) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(208, 219, 232, 0.75);
    border-radius: 18px;
    padding: clamp(1.15rem, 2.3vw, 1.75rem);
    box-shadow: var(--shadow-sm);
}

.split-section--cb-dynamic .split-media {
    border-radius: 14px;
    min-height: clamp(220px, 28vw, 360px);
    box-shadow: var(--shadow-lg);
}

.split-section--cb-dynamic .split-content {
    padding: 0;
}

.split-section--cb-dynamic .split-content p {
    line-height: 1.75;
}

@media (max-width: 980px) {
    .split-section--cb-dynamic {
        padding: 1.05rem;
        border-radius: 14px;
    }
}
@media (max-width: 980px) {
    .split-section--mapping {
        padding: 1.1rem;
        border-radius: 14px;
    }
}
/* 页尾前：与正文同宽的图文分栏，小屏上图下文（不再全幅叠卡） */
section.photo-breakout {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.photo-breakout__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.8vw, 1.75rem);
    align-items: center;
}

.photo-breakout__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 10;
    min-height: clamp(200px, 28vw, 360px);
}

.photo-breakout__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-breakout__caption {
    padding: clamp(0.35rem, 1.2vw, 0.65rem) 0;
    padding-left: clamp(0.65rem, 2vw, 1.1rem);
    border-left: 3px solid var(--blue);
}

.photo-breakout__caption strong {
    display: block;
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.photo-breakout__caption span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.card-photo {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-photo__img {
    height: clamp(180px, 28vw, 260px);
    overflow: hidden;
    flex-shrink: 0;
}

.card-photo__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-photo__body {
    padding: clamp(1.2rem, 2.5vw, 1.65rem) clamp(1.1rem, 2vw, 1.45rem);
    flex: 1;
}

.card-photo__body h3 {
    margin: 0 0 0.55rem;
    color: var(--navy);
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    font-weight: 700;
}

.card-photo__body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

a.card-photo {
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.card-photo:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(5, 42, 87, 0.12);
    color: inherit;
}

.list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.list li {
    margin-bottom: 0.5rem;
}

/* —— 首页增强：参考 Jinde 信息密度（统计条、深蓝入口、能力图标、叙事分栏等） —— */
.intro-divider {
    height: 1px;
    background: var(--line);
    margin: clamp(1.25rem, 3vw, 1.75rem) 0;
    border: 0;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin: 0;
}

.stat-row .stat {
    padding: 0.85rem 0 0;
    border-top: 3px solid var(--blue-bright);
}

.stat-row .stat strong {
    display: block;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
}

.stat-row .stat span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.blue-cards-band {
    background: linear-gradient(135deg, #042247 0%, var(--navy) 45%, #0a3d78 100%);
    color: #fff;
    border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.blue-cards-band .section-head h2,
.blue-cards-band .section-head p {
    color: rgba(255, 255, 255, 0.96);
}

.blue-cards-band .section-head p {
    color: rgba(255, 255, 255, 0.78);
}

.blue-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.2vw, 1.35rem);
}

.blue-cta-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.blue-cta-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    color: inherit;
    transform: translateY(-2px);
}

.blue-cta-card h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.12rem, 1.8vw, 1.28rem);
    font-weight: 700;
}

.blue-cta-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.blue-cta-card__arrow {
    flex-shrink: 0;
    font-size: 1.35rem;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1;
}

.cap-band {
    background: var(--surface-soft);
    border-block: 1px solid var(--line);
}

.cap-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.4fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
}

.cap-aside h2 {
    margin: 0 0 1rem;
    color: var(--navy);
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.25;
}

.cap-aside p {
    margin: 0 0 0.85rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.cap-aside p:last-child {
    margin-bottom: 0;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.35rem);
}

.cap-cell {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(1.2rem, 2.5vw, 1.55rem);
    box-shadow: var(--shadow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

@media (hover: hover) {
    .cap-cell:hover {
        border-color: rgba(10, 77, 149, 0.2);
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }
}

.cap-icon {
    width: 3rem;
    height: 3rem;
    color: var(--blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(155deg, var(--blue-soft), rgba(255, 255, 255, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cap-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    display: block;
}

.cap-cell h3 {
    margin: 0 0 0.5rem;
    color: var(--navy);
    font-size: 1.05rem;
}

.cap-cell p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.narrative-split {
    padding: 0;
    background: var(--surface);
}

.narrative-split--muted {
    background: var(--surface-soft);
    border-block: 1px solid var(--line);
}

.narrative-inner {
    width: var(--max);
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.8vw, 1.75rem);
    align-items: center;
    box-sizing: border-box;
}

.narrative-split--flip .narrative-text {
    order: 2;
}

.narrative-split--flip .narrative-media {
    order: 1;
}

.narrative-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.narrative-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--blue);
}

.narrative-text h2 {
    margin: 0 0 1rem;
    color: var(--navy);
    font-size: clamp(1.45rem, 2.6vw, 1.95rem);
    line-height: 1.25;
}

.narrative-text p {
    margin: 0 0 0.85rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.narrative-list {
    margin: 0.5rem 0 1rem;
    padding-left: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.narrative-list li {
    margin-bottom: 0.35rem;
}

.narrative-media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 10;
    min-height: 220px;
}

.narrative-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-med);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .narrative-media:hover img {
        transform: scale(1.03);
    }
}

.narrative-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.1rem;
}

.values-band {
    background: var(--surface);
    border-block: 1px solid var(--line);
    text-align: center;
}

.values-band h2 {
    margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
    color: var(--navy);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.values-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.65rem, 1.5vw, 1rem);
    max-width: 56rem;
    margin: 0 auto;
}

.values-tags span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 0.75rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

@media (hover: hover) {
    .values-tags span:hover {
        transform: translateY(-2px);
        border-color: rgba(10, 77, 149, 0.2);
        box-shadow: var(--shadow-sm);
    }
}

.values-footnote {
    max-width: 48rem;
    margin: clamp(1.5rem, 3vw, 2rem) auto 0;
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.quick-band {
    background: var(--bg);
}

.quick-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.85rem, 2vw, 1.15rem);
}

.quick-entry {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.2rem, 2.5vw, 1.5rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-entry:hover {
    color: inherit;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.quick-entry h3 {
    margin: 0 0 0.4rem;
    color: var(--navy);
    font-size: 1.05rem;
}

.quick-entry p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.quick-entry__arrow {
    flex-shrink: 0;
    color: var(--blue);
    font-size: 1.25rem;
}

.footer-cta {
    background: linear-gradient(120deg, #03244a 0%, var(--navy) 55%, #0e4d8c 100%);
    color: rgba(255, 255, 255, 0.95);
    border-block: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-cta h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 700;
    line-height: 1.35;
}

.footer-cta .sub {
    max-width: 40rem;
    margin: 1rem auto 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.footer-cta__actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.footer-cta .btn-primary {
    background: #fff;
    color: var(--navy);
}

.footer-cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.footer-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.faq-block {
    padding: var(--section-y) 0;
}

.faq-block details {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    margin-bottom: 0.65rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.faq-block details[open] {
    border-color: rgba(10, 77, 149, 0.22);
    box-shadow: var(--shadow-lg);
}

.faq-block summary {
    cursor: pointer;
    padding: 1.05rem 1.2rem;
    font-weight: 600;
    color: var(--navy);
    list-style: none;
    transition: background var(--transition-fast);
}

.faq-block summary:hover {
    background: var(--surface-soft);
}

.faq-block summary::-webkit-details-marker {
    display: none;
}

.faq-block summary::after {
    content: "+";
    float: right;
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
}

.faq-block details[open] summary::after {
    content: "−";
}

.faq-block .faq-answer {
    padding: 0 1.15rem 1.1rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

/* —— 版式多样性：居中叙事、通栏图、步骤流、纵向堆叠等（减少单调左右分栏） —— */
.layout-prose {
    max-width: 40rem;
    margin-inline: auto;
}

.layout-prose--wide {
    max-width: 48rem;
}

.layout-prose h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.65rem;
}

.layout-prose h3:first-child {
    margin-top: 0;
}

.layout-prose--center {
    text-align: center;
}

.page-intro--stack {
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.page-intro--stack .page-intro__stack-inner {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.page-intro--stack .page-intro__stack-text {
    max-width: 44rem;
    margin-inline: auto;
    text-align: center;
}

.page-intro--stack .page-intro__stack-text .page-intro__label {
    justify-content: center;
}

.page-intro--stack .page-intro__stack-figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 21 / 9;
    min-height: clamp(200px, 28vw, 320px);
}

.page-intro--stack .page-intro__stack-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-intro--stack .stat-row .stat {
    text-align: center;
}

.media-ribbon {
    padding: 0;
    margin: 0;
}

.media-ribbon__media {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100%;
    height: clamp(200px, 32vw, 380px);
    overflow: hidden;
    border-block: 1px solid var(--line);
}

.media-ribbon__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.media-ribbon + .wrap .media-ribbon__note,
.media-ribbon__note {
    margin: clamp(1rem, 2.5vw, 1.35rem) auto 0;
    max-width: 42rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.feature-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.85rem, 2vw, 1.25rem);
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.feature-chip {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

@media (hover: hover) {
    .feature-chip:hover {
        border-color: rgba(10, 77, 149, 0.22);
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }
}

.feature-chip__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.85rem;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(155deg, var(--blue-soft), rgba(255, 255, 255, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.feature-chip__icon svg {
    width: 1.45rem;
    height: 1.45rem;
    display: block;
}

.feature-chip h3 {
    margin: 0 0 0.45rem;
    font-size: 1.02rem;
    color: var(--navy);
}

.feature-chip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-chips--tight {
    margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

.feature-chips--below-stats {
    margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

/* 图标 + 文字卡片（替代大量配图） */
.icon-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.2vw, 1.35rem);
}

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

.icon-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(1.2rem, 2.5vw, 1.55rem);
    box-shadow: var(--shadow);
    height: 100%;
    color: inherit;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

a.icon-card:hover {
    color: inherit;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 77, 149, 0.22);
}

.icon-card__icon {
    width: 3rem;
    height: 3rem;
    color: var(--blue);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(155deg, var(--blue-soft), rgba(255, 255, 255, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.icon-card__icon svg {
    width: 1.45rem;
    height: 1.45rem;
    display: block;
}

.icon-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--navy);
}

.icon-card p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.65;
}

article.icon-card {
    cursor: default;
}

.bento-highlight__icons {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
}



/* bento 右侧要点：桌面三列一行 */
.bento-highlight__icons--row3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1rem);
}

@media (max-width: 980px) {
    .bento-highlight__icons--row3 {
        grid-template-columns: 1fr;
    }
}
.stack-icon-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: clamp(1rem, 2vw, 1.2rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

@media (hover: hover) {
    .stack-icon-item:hover {
        border-color: rgba(10, 77, 149, 0.2);
        box-shadow: var(--shadow-lg);
    }
}

.stack-icon-item__icon {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(155deg, var(--blue-soft), rgba(255, 255, 255, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.stack-icon-item__icon svg {
    width: 1.3rem;
    height: 1.3rem;
    display: block;
}

.stack-icon-item__body h4 {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
    color: var(--navy);
}

.stack-icon-item__body p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 页尾前纯文字 + 图标强调（替代大横幅图） */


/* 策略页：执行与迭代 6 卡片的上下节奏 */
.strategy-execution .feature-chips {
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.strategy-execution .strategy-execution__lower-grid {
    margin-top: clamp(1rem, 2.4vw, 1.5rem);
}
.closing-band {
    background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface) 38%, var(--surface) 100%);
    border-top: 1px solid var(--line);
    padding: clamp(2.5rem, 5.5vw, 3.75rem) 0;
    text-align: center;
}

.closing-band__icon {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 1rem;
    padding: 0.65rem;
    color: var(--blue);
    border-radius: 16px;
    background: linear-gradient(155deg, var(--blue-soft), rgba(255, 255, 255, 0.95));
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

.closing-band__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.closing-band strong {
    display: block;
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.35;
}

.closing-band p {
    max-width: 42rem;
    margin: 0.85rem auto 0;
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.narrative-stack {
    background: var(--surface);
    border-block: 1px solid var(--line);
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.narrative-stack__intro {
    max-width: 40rem;
    margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.narrative-stack__intro.layout-prose--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.narrative-stack__intro .narrative-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--blue);
    display: block;
    margin-bottom: 0.5rem;
}

.narrative-stack__intro h2 {
    margin: 0 0 0.85rem;
    color: var(--navy);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    line-height: 1.25;
}

.narrative-stack__intro p {
    margin: 0 0 0.75rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.narrative-stack__intro p:last-child {
    margin-bottom: 0;
}

.narrative-stack__media {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100%;
    height: clamp(240px, 38vw, 460px);
    overflow: hidden;
    border-block: 1px solid var(--line);
}

.narrative-stack__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.narrative-stack--tight {
    padding-top: 0;
    border-top: none;
    background: transparent;
}

.narrative-stack--tight .narrative-stack__media {
    border-top: 1px solid var(--line);
}

.narrative-stack__title {
    margin: 0 0 0.75rem;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 700;
}

.narrative-stack__actions {
    margin-top: clamp(1.25rem, 3vw, 1.75rem);
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.quote-strip {
    background: linear-gradient(
        125deg,
        var(--blue-soft) 0%,
        #f0f5fc 42%,
        var(--surface-soft) 100%
    );
    border-block: 1px solid var(--line);
    padding: clamp(2.25rem, 5vw, 3.25rem) 0;
    position: relative;
}

.quote-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(10, 77, 149, 0.06), transparent 70%);
    pointer-events: none;
}

.quote-strip blockquote {
    margin: 0 auto;
    max-width: 44rem;
    text-align: center;
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.quote-strip footer {
    margin-top: 0.85rem;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    font-style: normal;
    position: relative;
    z-index: 1;
}

.quote-strip--spaced {
    margin-top: clamp(2rem, 4vw, 3rem);
}

.prose-after-ribbon {
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.prose-snug-top {
    margin-top: 0.5rem;
}

.step-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.15rem);
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.step-flow__item {
    flex: 1 1 140px;
    max-width: 220px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.15rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

@media (hover: hover) {
    .step-flow__item:hover {
        border-color: rgba(10, 77, 149, 0.18);
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }
}

.step-flow__num {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.45rem;
}

.step-flow__item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.step-flow__item span {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.cap-layout--stack {
    grid-template-columns: 1fr;
    text-align: center;
}

.cap-layout--stack .cap-aside {
    max-width: 46rem;
    margin-inline: auto;
}

.cap-layout--stack .cap-aside h2 {
    margin-left: auto;
    margin-right: auto;
}

.photo-breakout--stack .photo-breakout__inner {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

.photo-breakout--stack .photo-breakout__caption {
    text-align: center;
    max-width: 42rem;
    margin-inline: auto;
    border-left: none;
    padding-left: 0;
    padding-top: 0;
}

.photo-breakout--stack .photo-breakout__caption::before {
    content: "";
    display: block;
    width: 3rem;
    height: 3px;
    background: var(--blue);
    margin: 0 auto 1rem;
}

.bento-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: stretch;
}

.bento-highlight__main {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-highlight__main h3 {
    margin: 0 0 0.65rem;
    color: var(--navy);
    font-size: 1.25rem;
}

.bento-highlight__main p {
    margin: 0 0 0.65rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.bento-highlight__main p:last-child {
    margin-bottom: 0;
}

.bento-highlight__side {
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 2vw, 1.1rem);
}

.bento-highlight__figure {
    margin: 0;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 180px;
    box-shadow: var(--shadow);
}

.bento-highlight__figure img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-med);
}

/* 风控页：制度化治理体系右图压低高度，避免视觉过高 */
.bento-highlight--governance {
    align-items: start;
}

.bento-highlight--governance .bento-highlight__side {
    justify-content: flex-start;
}

.bento-highlight--governance .bento-highlight__figure {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-height: 320px;
}

.bento-highlight--governance .bento-highlight__figure img {
    min-height: 0;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .bento-highlight__figure:hover img {
        transform: scale(1.04);
    }
}

.bento-highlight__main h2 {
    margin: 0.35rem 0 0.85rem;
    color: var(--navy);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    line-height: 1.25;
}

.bento-highlight__actions {
    margin-top: 1.25rem;
}

.site-footer {
    background: linear-gradient(180deg, #22262e 0%, #15181d 72%);
    color: #a8b0bd;
    padding: clamp(3rem, 5vw, 4rem) 0 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.footer-grid a {
    color: #a8b0bd;
    transition: color var(--transition-fast);
}

.footer-grid a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid #323740;
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.82rem;
}

@media (max-width: 980px) {
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 1rem;
    }

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

    .menu-toggle {
        display: inline-flex;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 0.8rem 0;
    }

    .lang-switch {
        margin-left: 0;
        margin-top: 0.35rem;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .split-section,
    .split-section.split-reverse {
        grid-template-columns: 1fr;
    }

    .split-section.split-reverse .split-media,
    .split-section.split-reverse .split-content {
        order: initial;
    }

    .split-media,
    .split-media img {
        min-height: clamp(260px, 52vw, 400px);
    }

    .page-intro__grid {
        grid-template-columns: 1fr;
    }

    /* 防止移动端出现左右滚动条：图像存在 width/height 属性时 */
    .page-intro__grid,
    .page-intro__figure {
        overflow-x: clip;
    }

    /* 跨境页首段：手机端上图下文 */
    .page-intro--cb-stack .page-intro__grid {
        display: flex;
        flex-direction: column;
    }

    .page-intro--cb-stack .page-intro__figure {
        order: 0;
    }

    .page-intro--cb-stack .page-intro__body {
        order: 1;
    }

    /* 跨境页首段：兜底避免出现左右滚动条（仅影响该首段） */
    .page-intro--cb-stack {
        overflow-x: hidden;
    }

    .page-intro--flip .page-intro__figure,
    .page-intro--flip .page-intro__body {
        order: initial;
    }

    .photo-breakout__inner {
        grid-template-columns: 1fr;
    }

    .photo-breakout__caption {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--blue);
        padding-top: clamp(1rem, 3vw, 1.35rem);
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .blue-cards-grid {
        grid-template-columns: 1fr;
    }

    .cap-layout {
        grid-template-columns: 1fr;
    }

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

    .narrative-inner {
        grid-template-columns: 1fr;
    }

    .narrative-split--flip .narrative-text,
    .narrative-split--flip .narrative-media {
        order: initial;
    }

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

    .quick-grid-home {
        grid-template-columns: 1fr;
    }

    .brand--with-logo {
        flex-wrap: wrap;
    }

    .feature-chips {
        grid-template-columns: 1fr;
    }

    .step-flow__item {
        max-width: none;
    }

    .bento-highlight {
        grid-template-columns: 1fr;
    }

    .icon-card-grid,
    .icon-card-grid--2 {
        grid-template-columns: 1fr;
    }
}
