:root {
    --bg: #eef3f9;
    --font-display: "Noto Serif SC", "Noto Serif TC", "Source Han Serif SC", "Songti SC", serif;
    --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;
    --accent-warm: #c9a227;
    --icon-chip: rgba(255, 255, 255, 0.98);
    --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);
    --site-content: min(1420px, calc(100vw - clamp(1.25rem, 5vw, 3.5rem)));
    --max: var(--site-content);
    --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);
    --prose-width: 40rem;
    --gutter-page: clamp(1rem, 3.5vw, 1.75rem);
}

*,
*::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);
    max-width: 100%;
    margin: 0 auto;
    padding-inline: var(--gutter-page);
    box-sizing: border-box;
}

.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(60px, 8vw, 62px);
    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.85rem 0.45rem 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    align-items: center;
    gap: 0.45rem;
}

.menu-toggle::before {
    content: "";
    width: 1rem;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
    flex-shrink: 0;
}

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

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem 0.75rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: 0.5rem;
    padding-left: 0.65rem;
    border-left: 1px solid var(--line);
}

.lang-switch::before {
    content: "";
    width: 0.88rem;
    height: 0.88rem;
    flex-shrink: 0;
    background-color: var(--text-muted);
    opacity: 0.75;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93h2c0 3.31 2.69 6 6 6v1.93zm6.9-2.54c-.61-.35-1.27-.59-1.97-.73V15h-2v-2h2v-2h-2V9h2V7h-2V5h2c0-1.1.9-2 2-2v16z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93h2c0 3.31 2.69 6 6 6v1.93zm6.9-2.54c-.61-.35-1.27-.59-1.97-.73V15h-2v-2h2v-2h-2V9h2V7h-2V5h2c0-1.1.9-2 2-2v16z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.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.88rem;
    font-weight: 500;
    transition: color var(--transition-fast), border-color var(--transition-fast), opacity 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);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.hero__eyebrow::before {
    content: "";
    width: 2.25rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent-warm), rgba(255, 255, 255, 0.65));
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.45);
}

.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 0.45rem 0.55rem;
    border-radius: 100px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

@media (hover: hover) {
    .hero__chips li:hover {
        background: rgba(255, 255, 255, 0.22);
        border-color: rgba(255, 255, 255, 0.55);
        transform: translateY(-1px);
    }
}

.hero__chips li::before {
    content: "";
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    background: var(--icon-chip);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    opacity: 0.92;
}

.hero__chips li:nth-child(4n + 1)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
}

.hero__chips li:nth-child(4n + 2)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

.hero__chips li:nth-child(4n + 3)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E");
}

.hero__chips li:nth-child(4n)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.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;
}

.hero-actions .btn {
    gap: 0.5rem;
    text-decoration: none;
}

.hero-actions .btn-primary::before {
    content: "";
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    background-color: var(--navy);
    opacity: 0.85;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 12h8v2H8v-2zm0-4h5v2H8V8zm6 8H8v-2h6v2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 12h8v2H8v-2zm0-4h5v2H8V8zm6 8H8v-2h6v2z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.hero-actions .btn-ghost::before {
    content: "";
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    background-color: #fff;
    opacity: 0.9;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3L2 9h3v10h6v-6h2v6h6V9h3L12 3zm0 2.84L17 9v1H7V9l5-3.16z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3L2 9h3v10h6v-6h2v6h6V9h3L12 3zm0 2.84L17 9v1H7V9l5-3.16z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.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;
}

.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 rgba(10, 77, 149, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.5), var(--surface));
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    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;
    position: relative;
    padding-left: 1rem;
}

.split-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.12em;
    bottom: 0.12em;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--blue-bright), var(--blue));
    box-shadow: 0 2px 8px rgba(10, 77, 149, 0.25);
}

.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;
}

.split-content a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.split-content ul {
    margin: 0 0 1.25rem;
    padding: 0.65rem 1rem 0.65rem 0.25rem;
    list-style: none;
    color: var(--text-muted);
    font-size: clamp(1.02rem, 1.2vw, 1.12rem);
    line-height: 1.78;
    background: linear-gradient(135deg, rgba(227, 238, 251, 0.45), rgba(255, 255, 255, 0.5));
    border: 1px solid rgba(208, 219, 232, 0.85);
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.split-content li {
    position: relative;
    margin-bottom: 0.45rem;
    padding-left: 1.65rem;
}

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

.split-content ul li::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 0.55em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--blue-bright), var(--blue));
    box-shadow: 0 0 0 3px rgba(10, 77, 149, 0.12);
}

.split-content ul li::after {
    content: "";
    position: absolute;
    left: 0.32rem;
    top: calc(0.55em + 0.14rem);
    width: 0.22rem;
    height: 0.12rem;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    opacity: 0.95;
    pointer-events: none;
}

/* 大横幅下方：白底图文卡，避免与 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 h3 {
    margin: 0 0 1rem;
    color: var(--navy);
    font-size: clamp(1.28rem, 2.2vw, 1.65rem);
    line-height: 1.28;
    font-weight: 700;
}

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

.narrative-text a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.narrative-text a:hover {
    text-decoration-thickness: 2px;
}

.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 rgba(10, 77, 149, 0.1);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    aspect-ratio: 16 / 10;
    min-height: 220px;
    background: linear-gradient(145deg, rgba(227, 238, 251, 0.35), var(--surface));
}

.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:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 77, 149, 0.06), transparent 55%),
        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;
}

.closing-band__solo {
    max-width: 46rem;
    margin: 0 auto;
    padding: 0 1rem;
    font-size: clamp(1.12rem, 2.1vw, 1.42rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.55;
    letter-spacing: 0.02em;
}

.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: minmax(0, 1.55fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

.footer-grid > div:first-child p {
    max-width: min(52rem, 100%);
    line-height: 1.75;
}

.footer-disclaimer p {
    margin: 0 0 0.5rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #a8b0bd;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer p.footer-contact {
    margin-top: 0.75rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #b9c2cc;
    letter-spacing: 0.02em;
}

.footer-disclaimer p.footer-contact a {
    color: #d8e3ef;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
    padding-bottom: 1px;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.footer-disclaimer p.footer-contact a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.footer-grid > div:not(:first-child) br {
    display: none;
}

.footer-grid a {
    color: #a8b0bd;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1.5;
}

.footer-grid a::before {
    content: "";
    width: 0.72rem;
    height: 0.72rem;
    flex-shrink: 0;
    background-color: #7d8694;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: background-color var(--transition-fast);
}

.footer-grid a[href$=".pdf"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z'/%3E%3C/svg%3E");
}

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

.footer-grid > div:first-child strong {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #f0f3f8;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.footer-grid > div:first-child strong::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 9px;
    flex-shrink: 0;
    background: linear-gradient(145deg, #6eb3e8, #0a4d95);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) inset, 0 4px 14px rgba(0, 0, 0, 0.28);
}

.copyright {
    border-top: 1px solid #323740;
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.82rem;
    text-align: center;
    color: #8b929e;
    letter-spacing: 0.04em;
}

@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;
        padding-left: 0;
        border-left: none;
    }

    .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;
    }

    /* 手机端：图上文下（含 DOM 中文在前的 media-right 区块） */
    .split-section .split-media {
        order: -1;
    }

    .split-section .split-content {
        order: 0;
    }

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

    .page-intro__grid {
        display: flex;
        flex-direction: column;
        gap: clamp(1.25rem, 4vw, 2rem);
    }

    .page-intro__figure {
        order: -1;
    }

    .page-intro__body {
        order: 0;
    }

    /* 防止移动端出现左右滚动条：图像存在 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 {
        order: -1;
    }

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

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

    .photo-breakout__media {
        order: -1;
    }

    .photo-breakout__caption {
        order: 0;
        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;
    }
}

/* Overlook 白皮书页：版心、双栏比例与区块节奏 */
.whitepaper-body--rich {
    display: flex;
    flex-direction: column;
}

.whitepaper-body--rich > section.page-intro {
    padding-block: clamp(3.25rem, 7vw, 5.5rem);
}

.whitepaper-body--rich .split-section {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    column-gap: clamp(1.75rem, 5vw, 3.25rem);
    row-gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: center;
    margin-bottom: 0;
}

/* 长文 follow-up：多段图文错开（替代单图 narrative） */
.whitepaper-body--rich > section.narrative-stack {
    background: var(--surface-soft);
    border-block: 1px solid var(--line);
}
/* 关于页：机构定位（图左）与监管布局（图右）双栏交替；不使用 split-reverse，仅靠 DOM 顺序 */
.whitepaper-body--rich .page-intro--about-splits .about-split + .about-split {
    margin-top: clamp(2.25rem, 5vw, 3.75rem);
}

/* 图文对开：按正文量约束图高，缓解「字少图巨」 */
.whitepaper-body--rich .about-split .split-media {
    min-height: 0;
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: clamp(260px, 36vw, 440px);
    align-self: center;
}

.whitepaper-body--rich .about-split .split-media img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

/* 两段及以上：略放宽图幅 */
.whitepaper-body--rich .about-split:has(.split-content p:nth-of-type(2)) .split-media {
    aspect-ratio: 3 / 2;
    max-height: clamp(280px, 38vw, 480px);
}

/* 三段及以上：长文配图 */
.whitepaper-body--rich .about-split:has(.split-content p:nth-of-type(3)) .split-media {
    max-height: clamp(300px, 42vw, 520px);
}

/* 仅一段（或 h3 + 单段）：紧凑图幅 + 文案卡片平衡视觉 */
.whitepaper-body--rich .about-split:not(:has(.split-content p:nth-of-type(2))) {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.whitepaper-body--rich .about-split:not(:has(.split-content p:nth-of-type(2))) .split-media {
    aspect-ratio: 4 / 3;
    max-height: clamp(220px, 30vw, 320px);
}

.whitepaper-body--rich .about-split:not(:has(.split-content p:nth-of-type(2))) .split-content {
    padding: clamp(1.35rem, 3.2vw, 2rem);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.99) 0%, rgba(241, 246, 252, 0.92) 100%);
    border: 1px solid rgba(10, 77, 149, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.whitepaper-body--rich .about-split:not(:has(.split-content p:nth-of-type(2))) .split-content h3 {
    margin-bottom: 0.65rem;
}

.whitepaper-body--rich .about-split:not(:has(.split-content p:nth-of-type(2))) .split-content p:last-child {
    margin-bottom: 0;
}

.whitepaper-body--rich .about-areas {
    padding-block: clamp(2.25rem, 5.5vw, 4rem);
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, var(--surface-soft) 55%, var(--surface-soft) 100%);
}

.whitepaper-body--rich .about-areas 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;
    position: relative;
    padding-left: 1rem;
}

.whitepaper-body--rich .about-areas h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.12em;
    bottom: 0.12em;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--blue-bright), var(--blue));
    box-shadow: 0 2px 8px rgba(10, 77, 149, 0.25);
}

.whitepaper-body--rich .about-areas > .wrap > p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: clamp(1.02rem, 1.2vw, 1.12rem);
    line-height: 1.78;
}

.whitepaper-body--rich .about-areas .icon-text-rows {
    margin-top: clamp(0.35rem, 1.2vw, 0.65rem);
}

.whitepaper-body--rich .page-intro--stack .wrap > .belief-card {
    margin-top: clamp(2rem, 4.5vw, 3rem);
}

.whitepaper-body--rich .belief-card {
    margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
}

.whitepaper-body--rich .belief-card__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 2.5vw, 1.35rem);
    align-items: start;
    padding: clamp(1.25rem, 2.8vw, 1.65rem) clamp(1.15rem, 2.5vw, 1.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 77, 149, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(232, 241, 252, 0.55) 45%, rgba(227, 238, 251, 0.35) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 12px 36px rgba(5, 42, 87, 0.06);
    position: relative;
    overflow: hidden;
}

.whitepaper-body--rich .belief-card__inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    background: linear-gradient(180deg, var(--blue-bright), var(--blue));
    box-shadow: 2px 0 12px rgba(10, 77, 149, 0.2);
}

.whitepaper-body--rich .belief-card__icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    padding: 0.55rem;
    color: var(--blue);
    border-radius: 14px;
    background: linear-gradient(155deg, var(--blue-soft), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(208, 219, 232, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

.whitepaper-body--rich .belief-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.whitepaper-body--rich .belief-card__body {
    min-width: 0;
    padding-left: 0.15rem;
}

.whitepaper-body--rich .belief-card__lead {
    margin: 0 0 1rem;
    font-size: clamp(1.05rem, 1.35vw, 1.18rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.72;
    letter-spacing: 0.01em;
}

.whitepaper-body--rich .belief-card__kicker {
    margin: 0 0 0.65rem;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--blue);
    opacity: 0.92;
}

.whitepaper-body--rich .belief-card__pillars {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
}

.whitepaper-body--rich .belief-card__pillars li {
    margin: 0;
    padding: 0.45rem 0.85rem;
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(208, 219, 232, 0.95);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

@media (max-width: 520px) {
    .whitepaper-body--rich .belief-card__inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .whitepaper-body--rich .belief-card__icon {
        width: 2.65rem;
        height: 2.65rem;
    }
}

/* 关于页「长期关注领域」：图标行三列一排 */
ul.icon-text-rows.icon-text-rows--cols-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.6vw, 0.9rem);
}

@media (max-width: 900px) {
    ul.icon-text-rows.icon-text-rows--cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    ul.icon-text-rows.icon-text-rows--cols-3 {
        grid-template-columns: 1fr;
    }
}

.whitepaper-body--rich .split-content {
    max-width: min(var(--prose-width), 100%);
    padding-block: clamp(0.5rem, 1.5vw, 1rem);
}

.whitepaper-body--rich .split-content h3:not(:first-child) {
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.whitepaper-body--rich .narrative-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: clamp(1.75rem, 5vw, 3.25rem);
    row-gap: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(3.5rem, 8vw, 6rem) var(--gutter-page);
    align-items: center;
}

.whitepaper-body--rich .narrative-text {
    max-width: min(var(--prose-width), 100%);
}

.whitepaper-body--rich .narrative-split--flip .narrative-inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

@media (max-width: 980px) {
    /* 手机端：图文由左右改为上下（覆盖 rich 双栏比例） */
    .whitepaper-body--rich .split-section,
    .whitepaper-body--rich .split-section.about-split,
    .whitepaper-body--rich .about-split:not(:has(.split-content p:nth-of-type(2))) {
        grid-template-columns: 1fr;
        row-gap: clamp(1.25rem, 4vw, 2rem);
    }

    .whitepaper-body--rich .about-split .split-media {
        order: -1;
    }

    .whitepaper-body--rich .about-split .split-content {
        order: 0;
        max-width: none;
    }

    .whitepaper-body--rich .about-split .split-media,
    .whitepaper-body--rich .about-split .split-media img {
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .whitepaper-body--rich .about-split:not(:has(.split-content p:nth-of-type(2))) .split-media {
        aspect-ratio: 16 / 10;
        max-height: min(72vw, 320px);
    }

    .whitepaper-body--rich .about-split:not(:has(.split-content p:nth-of-type(2))) .split-content {
        padding: clamp(1.15rem, 4vw, 1.5rem);
    }

    .whitepaper-body--rich .belief-card__inner {
        grid-template-columns: 1fr;
    }

    .whitepaper-body--rich .narrative-inner {
        padding-block: clamp(2.75rem, 7vw, 4rem);
    }

    .whitepaper-body--rich > section.page-intro {
        padding-block: clamp(2.75rem, 6vw, 4rem);
    }
}

/* ========== 图标 + 文字布局（卡片栅格 / 左图右文列表） ========== */

.icon-text-band {
    background: linear-gradient(180deg, rgba(238, 244, 252, 0.85) 0%, var(--surface-soft) 40%, var(--surface-soft) 100%);
    border-block: 1px solid var(--line);
    padding-block: clamp(2.75rem, 6.5vw, 4.5rem);
}

.icon-text-band__head {
    max-width: min(38rem, 100%);
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.page-site .icon-text-band__head,
.page-site .icon-text-band__head.section-head,
.page-site .icon-text-band__head.section-head--center {
    max-width: 100%;
}

.page-site .metrics-band__intro {
    max-width: 100%;
}


.page-site .credential-strip__inner {
    justify-content: flex-start;
}

@media (max-width: 720px) {
    .page-site .credential-strip__inner {
        justify-content: center;
    }
}

.icon-text-band__head h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.icon-text-band__head .icon-text-band__lede {
    margin: 0;
    font-size: clamp(1rem, 1.15vw, 1.06rem);
    color: var(--text-muted);
    line-height: 1.75;
}

.icon-text-band__foot {
    margin: 1.5rem 0 0;
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.icon-text-band__foot a {
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.icon-text-band__foot a:hover {
    color: var(--navy);
    text-decoration: underline;
}

.icon-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(1rem, 2.5vw, 1.35rem);
}

.icon-text-grid.icon-text-grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .icon-text-grid.icon-text-grid--cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .icon-text-grid.icon-text-grid--cols-3 {
        grid-template-columns: 1fr;
    }
}

.icon-text-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1.2rem, 2.4vw, 1.5rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

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

.icon-text-item__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, var(--blue-soft), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(208, 219, 232, 0.95);
    color: var(--blue);
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.icon-text-item__title {
    margin: 0;
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

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

/* 左图标 + 右文案（行列表，适合业务条目） */
ul.icon-text-rows {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

ul.icon-text-rows > li.icon-text-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem 1rem;
    align-items: start;
    margin: 0;
    padding: clamp(0.75rem, 1.8vw, 0.95rem) clamp(0.85rem, 2vw, 1.1rem);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(208, 219, 232, 0.85);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(227, 238, 251, 0.35));
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.split-content ul.icon-text-rows > li.icon-text-row::before,
.split-content ul.icon-text-rows > li.icon-text-row::after {
    display: none;
}

.split-content ul.icon-text-rows {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.icon-text-row__icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, var(--blue-soft), #fff);
    border: 1px solid var(--line);
    color: var(--blue);
    flex-shrink: 0;
}

.icon-text-row__icon svg {
    width: 1.28rem;
    height: 1.28rem;
    display: block;
}

.icon-text-row__body {
    min-width: 0;
}

.icon-text-row__title {
    margin: 0;
    font-size: clamp(0.98rem, 1.1vw, 1.05rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
}

.icon-text-row__meta {
    margin: 0.2rem 0 0;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
}

@media (max-width: 520px) {
    ul.icon-text-rows > li.icon-text-row {
        gap: 0.65rem;
        padding: 0.65rem 0.75rem;
    }

    .icon-text-row__icon {
        width: 2.35rem;
        height: 2.35rem;
    }
}

/* —— 首页增强：数据条、栏目卡、背书条、滚动显现、Hero 滚动提示 —— */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(1.35rem);
    transition:
        opacity 0.65s var(--ease-out),
        transform 0.65s var(--ease-out);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: clamp(0.75rem, 2.5vw, 1.35rem);
    z-index: 3;
    width: 1.5rem;
    height: 2.35rem;
    margin-left: -0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    pointer-events: none;
    box-sizing: border-box;
}

.hero-scroll-hint::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.45rem;
    width: 3px;
    height: 0.45rem;
    margin-left: -1.5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.85);
    animation: hero-scroll-nudge 1.6s ease-in-out infinite;
}

@keyframes hero-scroll-nudge {
    0%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }
    45% {
        opacity: 1;
        transform: translateY(0.55rem);
    }
}

@media (max-width: 720px), (prefers-reduced-motion: reduce) {
    .hero-scroll-hint {
        display: none;
    }
}

.metrics-band {
    padding: clamp(2.25rem, 5vw, 3.25rem) 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(238, 244, 252, 0.95) 100%),
        repeating-linear-gradient(-12deg, transparent, transparent 48px, rgba(10, 77, 149, 0.03) 48px, rgba(10, 77, 149, 0.03) 49px);
    border-block: 1px solid var(--line);
}

.metrics-band__intro {
    margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
    max-width: 48rem;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.65;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.metrics-band__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.25rem);
}

.metric-tile {
    position: relative;
    padding: clamp(1.1rem, 2.2vw, 1.45rem) clamp(1rem, 2vw, 1.25rem);
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    text-align: center;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

@media (hover: hover) {
    .metric-tile:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }
}

.metric-tile::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: linear-gradient(90deg, var(--accent-warm), var(--blue-bright));
    opacity: 0.85;
}

.metric-tile__value {
    display: block;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.metric-tile__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.06em;
}

.metric-tile__hint {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.45;
}

@media (max-width: 900px) {
    .metrics-band__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .metrics-band__grid {
        grid-template-columns: 1fr;
    }
}

.explore-band {
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
    background: var(--surface);
}

.explore-band__head {
    max-width: 40rem;
    margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.explore-band__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.85;
}

.explore-band__head h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    color: var(--navy);
    letter-spacing: 0.02em;
}

.explore-band__lede {
    margin: 0;
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    color: var(--text-muted);
    line-height: 1.65;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.15rem);
}

.explore-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 38%) 1fr auto;
    align-items: stretch;
    gap: 0;
    min-height: 5.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
}

.explore-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 77, 149, 0.35);
    box-shadow: var(--shadow);
}

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

.explore-card__media {
    position: relative;
    min-height: 5.5rem;
}

.explore-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(1.02);
    transition: transform 0.45s var(--ease-out), filter 0.35s ease;
}

.explore-card:hover .explore-card__media img {
    transform: scale(1.06);
    filter: saturate(1) contrast(1.04);
}

.explore-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.85rem 0.65rem 0.85rem 0.9rem;
    min-width: 0;
}

.explore-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.explore-card__desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.explore-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.65rem;
    color: var(--blue);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(227, 238, 251, 0.5));
    border-left: 1px solid var(--line);
    flex-shrink: 0;
}

.explore-card__arrow svg {
    display: block;
    transition: transform var(--transition-fast);
}

.explore-card:hover .explore-card__arrow svg {
    transform: translate(2px, -2px);
}

@media (max-width: 1100px) {
    .explore-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }

    .explore-card {
        grid-template-columns: minmax(0, 32%) 1fr auto;
    }
}

.trust-strip {
    padding: clamp(1.1rem, 2.5vw, 1.45rem) 0;
    background: linear-gradient(90deg, rgba(5, 42, 87, 0.04), rgba(10, 77, 149, 0.06), rgba(5, 42, 87, 0.04));
    border-block: 1px solid var(--line);
}

.trust-strip__inner {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.15rem);
    flex-wrap: wrap;
}

.trust-strip__badge {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.trust-strip__text {
    margin: 0;
    flex: 1;
    min-width: min(100%, 14rem);
    font-size: clamp(0.82rem, 1.05vw, 0.92rem);
    color: var(--text-muted);
    line-height: 1.55;
    letter-spacing: 0.02em;
}

.site-footer.site-footer--rich {
    border-top: none;
    padding-top: 0;
}

.site-footer.site-footer--rich::before {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-warm) 0%, var(--blue-bright) 35%, #0a4d95 70%, rgba(240, 243, 248, 0.25) 100%);
}

.site-footer.site-footer--rich .wrap {
    padding-top: clamp(1.85rem, 3.5vw, 2.65rem);
}

.site-footer.site-footer--rich .footer-grid > div:not(:first-child) {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* —— 全站「大气版式」：参考金锝站 —— 宽容器 / 首页专属块 / 内页横幅 —— */
.page-site .wrap {
    width: var(--site-content);
    max-width: 100%;
}

.hero--banner.hero--grand {
    min-height: clamp(480px, 72vh, 860px);
}

.hero--banner.hero--grand .hero__inner {
    align-items: flex-end;
    padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.hero--banner.hero--grand .hero__copy {
    max-width: min(52rem, 100%);
}

/* 内页全宽横幅：与首页同系，高度介于默认与 grand 之间 */
.hero--banner.hero--inner {
    min-height: clamp(460px, 66vh, 780px);
}

.hero--banner.hero--inner .hero__inner {
    align-items: flex-end;
    padding-bottom: clamp(2.75rem, 7vw, 4.5rem);
}

.hero--banner.hero--inner .hero__copy {
    max-width: min(48rem, 100%);
}

.page-site .hero--banner:not(.hero--no-photo) h1 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.page-site .closing-band {
    padding: clamp(3rem, 7vw, 4.75rem) 0;
    background: linear-gradient(180deg, #e4e9f0 0%, #eef2f7 42%, var(--surface) 100%);
}

.page-site .closing-band__solo {
    font-family: var(--font-display);
    font-size: clamp(1.12rem, 2.15vw, 1.52rem);
    line-height: 1.58;
}

.hero__crumb {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.hero__divider {
    width: 3.75rem;
    height: 4px;
    border-radius: 2px;
    margin: 0 0 1.15rem;
}

.hero__tagline {
    margin: 0.35rem 0 0;
    font-size: clamp(0.95rem, 1.5vw, 1.12rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
}

.hero__rule {
    width: 100%;
    max-width: 14rem;
    height: 1px;
    margin: 1.15rem 0 1.1rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent);
}

.hero__subtitle {
    margin: 0 0 0.25rem;
    max-width: 44rem;
    font-size: clamp(0.98rem, 1.65vw, 1.14rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.88);
}

.ol-intro-wrap {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: clamp(3.25rem, 7.5vw, 5.75rem) 0;
}

.ol-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4vw, 3.25rem);
    align-items: center;
}

.ol-intro-grid--copy-only {
    grid-template-columns: 1fr;
    max-width: min(52rem, 100%);
}

@media (max-width: 900px) {
    .ol-intro-grid {
        grid-template-columns: 1fr;
    }
}

.ol-intro-kicker {
    margin: 0 0 1.1rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: 0.02em;
}

.ol-intro-lead {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: clamp(1.02rem, 1.35vw, 1.12rem);
    line-height: 1.78;
}

.ol-intro-divider {
    width: 3rem;
    height: 3px;
    margin: 1.25rem 0 1.35rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue-bright), transparent);
}

.ol-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

@media (max-width: 640px) {
    .ol-stat-row {
        grid-template-columns: 1fr;
    }
}

.ol-stat {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--surface-soft));
    box-shadow: var(--shadow-sm);
}

.ol-stat strong {
    display: block;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.ol-stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.ol-intro-visual {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    aspect-ratio: 5 / 4;
}

.ol-intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ol-deep-nav {
    position: relative;
    padding: clamp(3.25rem, 7vw, 5.5rem) 0;
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, #04254a 0%, #062d58 42%, var(--blue) 100%);
}

.ol-deep-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 18% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
        radial-gradient(ellipse 55% 45% at 100% 100%, rgba(0, 0, 0, 0.12), transparent 50%);
    pointer-events: none;
}

.ol-deep-nav .wrap {
    position: relative;
    z-index: 1;
}

.ol-deep-nav__head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.25rem;
    color: rgba(255, 255, 255, 0.92);
}

.ol-deep-nav__head h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}

.ol-deep-nav__head p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    opacity: 0.88;
}

.ol-deep-nav__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
}

@media (max-width: 820px) {
    .ol-deep-nav__grid {
        grid-template-columns: 1fr;
    }
}

.ol-deep-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 12.5rem;
    padding: 1.65rem 1.4rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: transform var(--transition-med), box-shadow var(--transition-med), background var(--transition-med);
}

@media (hover: hover) {
    .ol-deep-card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.16);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
        color: #fff;
    }
}

.ol-deep-card h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    color: #fff;
}

.ol-deep-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0.9;
}

.ol-deep-card__arrow {
    align-self: flex-end;
    width: 2.45rem;
    height: 2.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    line-height: 1;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.ol-deep-card:hover .ol-deep-card__arrow {
    border-color: #fff;
}

.page-site .icon-text-band.ol-capabilities {
    padding-block: clamp(3.25rem, 7vw, 5.25rem);
}

.ol-capabilities__layout {
    display: grid;
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: start;
}

@media (max-width: 900px) {
    .ol-capabilities__layout {
        grid-template-columns: 1fr;
    }
}

.ol-capabilities__aside h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2.05rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.22;
}

.ol-cap-line {
    margin: 0 0 0.85rem;
    padding-left: 0.85rem;
    border-left: 3px solid var(--line);
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.ol-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.2vw, 1.35rem);
}

@media (max-width: 640px) {
    .ol-capabilities__grid {
        grid-template-columns: 1fr;
    }
}

.page-site .ol-split {
    padding: 0;
    overflow: hidden;
    border-block: 1px solid var(--line);
}

.ol-split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: min(1200px, 100%);
    margin: 0 auto;
}

@media (max-width: 900px) {
    .ol-split__inner {
        grid-template-columns: 1fr;
    }

    .ol-split--flip .ol-split__inner {
        direction: ltr;
    }
}

.ol-split__text {
    padding: clamp(2.5rem, 6vw, 4.75rem) clamp(1.25rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--surface);
}

.ol-split--gray .ol-split__text {
    background: #f3f6fa;
}

.ol-split__eyebrow {
    margin-bottom: 1rem;
}

.ol-split__num {
    font-size: clamp(3.25rem, 7vw, 4.75rem);
    font-weight: 700;
    line-height: 0.85;
    color: rgba(5, 42, 87, 0.11);
    letter-spacing: -0.03em;
}

.ol-split__text h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.6vw, 1.95rem);
    font-weight: 700;
    color: var(--blue);
    line-height: 1.25;
}

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

.ol-split__list {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
}

.ol-split__list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ol-split__list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-bright);
    flex-shrink: 0;
}

.ol-split__media {
    min-height: clamp(260px, 40vw, 420px);
}

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

.ol-split--flip .ol-split__inner {
    direction: rtl;
}

.ol-split--flip .ol-split__text,
.ol-split--flip .ol-split__media {
    direction: ltr;
}

.ol-split__actions {
    margin-top: 1.35rem;
}

.ol-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.45rem;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
    box-shadow: 0 4px 16px rgba(5, 42, 87, 0.22);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ol-btn-solid:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(5, 42, 87, 0.28);
}

.ol-btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.45rem;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    color: var(--navy);
    background: var(--surface);
    border: 1px solid var(--line);
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.ol-btn-line:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.ol-values {
    background: var(--surface);
    text-align: center;
    padding: clamp(3.25rem, 7vw, 5.25rem) 0 clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid var(--line);
}

.ol-values h2 {
    margin: 0 auto 2.25rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2.05rem);
    font-weight: 700;
    color: var(--navy);
}

.ol-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

@media (max-width: 900px) {
    .ol-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .ol-values__grid {
        grid-template-columns: 1fr;
    }
}

.ol-values__cell {
    padding: 1.85rem 1.2rem;
    background: linear-gradient(180deg, var(--blue-soft) 0%, var(--surface) 100%);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.06em;
}

@media (min-width: 901px) {
    .ol-values__cell:nth-child(4n) {
        border-right: none;
    }
}

.ol-values__banner {
    margin: 2.75rem 0 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: clamp(1.65rem, 3.5vw, 2.35rem) clamp(1.25rem, 3.5vw, 1.75rem);
    text-align: center;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(90deg, var(--navy), var(--blue));
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.ol-footer-cta {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, #e4e9f0 0%, #d8dee8 100%);
    border-top: 1px solid var(--line);
}

.ol-footer-cta__inner {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.page-site .wrap.ol-footer-cta__inner {
    width: var(--site-content);
    max-width: 100%;
}

.ol-footer-cta h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 700;
    color: var(--navy);
}

.ol-footer-cta__sub {
    margin: 0 0 1rem;
    color: var(--blue);
}

.ol-footer-cta__solo {
    margin: 0 0 0.85rem;
    font-size: clamp(1.05rem, 1.9vw, 1.22rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--navy);
}

.ol-footer-cta__note {
    margin: 0 0 1.35rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

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

/* ========== 站点增强：区块标题、导览卡、引用、流程、资质条、延伸阅读 ========== */

.section-head {
    max-width: 100%;
    margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.section-head--center .section-head__lede {
    margin-inline: auto;
}

.section-head__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
}

.section-head h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.22;
}

.section-head__lede {
    margin: 0;
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.72;
    color: var(--text-muted);
}

.credential-strip {
    padding: 0.85rem 0;
    background: linear-gradient(90deg, rgba(4, 37, 74, 0.97) 0%, rgba(10, 77, 149, 0.92) 50%, rgba(4, 37, 74, 0.97) 100%);
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.credential-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem 0.85rem;
}

.credential-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.credential-pill svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.ol-explore-band {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background:
        linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(10, 77, 149, 0.025) 80px, rgba(10, 77, 149, 0.025) 81px);
    border-bottom: 1px solid var(--line);
}

.ol-explore-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.15rem);
}

@media (max-width: 900px) {
    .ol-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .ol-explore-grid {
        grid-template-columns: 1fr;
    }
}

.ol-explore-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 9.5rem;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 77, 149, 0.12);
    background: linear-gradient(165deg, #fff 0%, rgba(241, 246, 252, 0.85) 100%);
    box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    color: inherit;
    text-decoration: none;
    transition:
        transform var(--transition-med),
        box-shadow var(--transition-med),
        border-color var(--transition-fast);
}

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

.ol-explore-card__tag {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}

.ol-explore-card h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.ol-explore-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.ol-explore-card__arrow {
    align-self: flex-end;
    margin-top: 0.85rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: #fff;
    color: var(--blue);
    font-size: 1rem;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.ol-explore-card:hover .ol-explore-card__arrow {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.pullquote-band {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: linear-gradient(135deg, rgba(4, 37, 74, 0.04) 0%, rgba(10, 77, 149, 0.07) 100%);
    border-block: 1px solid var(--line);
}

.pullquote-band__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem) clamp(2.5rem, 5vw, 3.25rem);
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(10, 77, 149, 0.1);
    box-shadow: var(--shadow-md);
}

.pullquote-band__mark {
    position: absolute;
    left: clamp(0.85rem, 2vw, 1.25rem);
    top: clamp(0.65rem, 2vw, 1rem);
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4.5rem);
    line-height: 1;
    font-weight: 700;
    color: rgba(10, 77, 149, 0.12);
    pointer-events: none;
}

.pullquote-band blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.12rem, 2.2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--navy);
}

.pullquote-band cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--blue);
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1.25rem);
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    position: relative;
    padding: 1.35rem 1.15rem 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, var(--surface-soft));
    box-shadow: var(--shadow-sm);
}

.process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    display: block;
    margin-bottom: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(10, 77, 149, 0.22);
}

.process-step__title {
    margin: 0 0 0.4rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
}

.process-step__desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (min-width: 901px) {
    .process-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 2.1rem;
        right: -0.65rem;
        width: 0.65rem;
        height: 2px;
        background: linear-gradient(90deg, var(--blue-bright), transparent);
        z-index: 1;
    }
}

.related-nav {
    padding: clamp(2rem, 5vw, 3rem) 0;
    background: linear-gradient(180deg, var(--surface-soft) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-top: 1px solid var(--line);
}

.related-nav__title {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
}

.related-nav__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (max-width: 720px) {
    .related-nav__grid {
        grid-template-columns: 1fr;
    }
}

.related-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        transform var(--transition-med);
}

.related-nav__link span {
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--text-muted);
}

@media (hover: hover) {
    .related-nav__link:hover {
        border-color: rgba(10, 77, 149, 0.25);
        box-shadow: var(--shadow-md);
        transform: translateX(3px);
        color: var(--navy);
    }
}

.section-divider {
    height: 1px;
    margin: 0;
    border: 0;
    background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

.photo-accent {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 720px) {
    .photo-accent {
        grid-template-columns: 1fr;
    }
}

.photo-accent__item {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-sm);
}

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

/* —— 投资赛事 · 高观投策杯 —— */
.hero--comp .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-end;
    gap: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 900px) {
    .hero--comp .hero__inner {
        grid-template-columns: 1fr;
    }

    .comp-hero-emblem {
        display: none;
    }
}

.comp-hero-emblem {
    flex-shrink: 0;
    position: relative;
    width: clamp(10rem, 18vw, 13.5rem);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 48px rgba(5, 42, 87, 0.25);
}

.comp-hero-emblem__ring {
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(201, 162, 39, 0.45);
    pointer-events: none;
}

.comp-hero-emblem__kicker {
    margin: 0 0 0.35rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.72);
}

.comp-hero-emblem__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
}

.comp-hero-emblem__sub {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--accent-warm);
}

.comp-subnav {
    position: sticky;
    top: 88px;
    z-index: 900;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(5, 42, 87, 0.04);
}

.comp-subnav__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    padding-block: 0.65rem;
}

.comp-subnav__link {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.comp-subnav__link:hover {
    color: var(--blue);
    background: var(--blue-soft);
}

.comp-section-head {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.comp-intro {
    padding: clamp(2.75rem, 6.5vw, 4.5rem) 0;
    background: var(--surface);
}

.comp-intro__card {
    position: relative;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.75rem, 4.5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.comp-intro__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue-bright), var(--navy));
}

.comp-intro__quote {
    position: absolute;
    right: clamp(0.75rem, 3vw, 2rem);
    bottom: -0.25rem;
    font-family: var(--font-display);
    font-size: clamp(6rem, 12vw, 10rem);
    line-height: 0.85;
    color: rgba(10, 77, 149, 0.07);
    pointer-events: none;
    user-select: none;
}

.comp-intro__eyebrow {
    margin-bottom: 0.65rem;
}

.comp-intro__lead {
    margin: 0 0 1.15rem;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    line-height: 1.58;
    font-weight: 600;
    color: var(--navy);
}

.comp-intro__lead strong {
    color: var(--blue);
}

.comp-intro__card > p {
    margin: 0;
    font-size: clamp(0.96rem, 1.5vw, 1.05rem);
    line-height: 1.85;
    color: var(--text-muted);
}

.comp-intro__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.35rem);
    margin: clamp(1.75rem, 4vw, 2.25rem) 0 clamp(1.5rem, 3vw, 1.75rem);
}

@media (max-width: 720px) {
    .comp-intro__pillars {
        grid-template-columns: 1fr;
    }
}

.comp-intro__pillar {
    position: relative;
    padding: 1.35rem 1.25rem 1.15rem;
    background: linear-gradient(160deg, #f3f7fd 0%, #fafcff 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.comp-intro__pillar-num {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--blue);
    opacity: 0.28;
}

.comp-intro__pillar h3 {
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 2px solid var(--blue-bright);
    display: inline-block;
}

.comp-intro__pillar p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.comp-intro__signature {
    margin: 0;
    padding-top: 1.1rem;
    border-top: 1px dashed var(--line);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.04em;
}

.comp-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.65rem, 2vw, 1rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 900px) {
    .comp-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.comp-highlights__item {
    padding: 1.1rem 1rem;
    text-align: center;
    background: linear-gradient(180deg, #fff, var(--surface-soft));
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.comp-highlights__item strong {
    display: block;
    margin-bottom: 0.3rem;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--blue);
}

.comp-highlights__item span {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.comp-highlights__item--accent {
    border-color: rgba(201, 162, 39, 0.45);
    background: linear-gradient(160deg, #fffbf0 0%, #fff 100%);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.12);
}

.comp-highlights__item--accent strong {
    color: #9a7b18;
}

.comp-fund-band {
    position: relative;
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, #e5ecf6 0%, #eef3fa 55%, #fff 100%);
    border-block: 1px solid var(--line);
    overflow: hidden;
}

.comp-fund-band::before,
.comp-fund-band::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 12px;
    transform: skewX(-12deg);
}

.comp-fund-band::before {
    top: -40px;
    right: -60px;
    width: 260px;
    height: 300px;
    background: linear-gradient(160deg, rgba(10, 77, 149, 0.14), transparent 70%);
}

.comp-fund-band::after {
    bottom: -70px;
    left: -40px;
    width: 220px;
    height: 260px;
    background: linear-gradient(160deg, rgba(10, 77, 149, 0.08), transparent 75%);
}

.comp-fund-band > .wrap {
    position: relative;
    z-index: 1;
}

.comp-fund-hero {
    max-width: 44rem;
    margin: 0 auto clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    padding: clamp(2rem, 5vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.comp-fund-hero__medal-wrap {
    position: relative;
    width: clamp(4rem, 8vw, 5.5rem);
    height: clamp(4.8rem, 9vw, 6.5rem);
    margin: 0 auto 1rem;
}

.comp-fund-hero__ribbon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 28%;
    background: linear-gradient(180deg, #c9a227, #9a7b18);
    clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
}

.comp-fund-hero__medal {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: clamp(3.25rem, 7vw, 4.25rem);
    height: clamp(3.25rem, 7vw, 4.25rem);
    border-radius: 50%;
    background: linear-gradient(145deg, #e8c547, #c9a227 40%, #9a7b18);
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(154, 123, 24, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.comp-fund-hero__amount {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem 0.6rem;
    margin-bottom: 0.85rem;
}

.comp-fund-hero__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 700;
    line-height: 1;
    color: var(--navy);
}

.comp-fund-hero__unit {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--blue);
}

.comp-fund-hero__note {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.comp-fund-hero__pill {
    display: inline-block;
    margin: 0;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(10, 77, 149, 0.2);
    background: rgba(10, 77, 149, 0.06);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--blue);
}

.comp-rewards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (max-width: 720px) {
    .comp-rewards {
        grid-template-columns: 1fr;
    }
}

.comp-rewards__group {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.15rem, 2.5vw, 1.6rem);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

@media (hover: hover) {
    .comp-rewards__group:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }
}

.comp-rewards__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--blue-soft);
}

.comp-rewards__icon {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--blue-bright), var(--blue));
    color: #fff;
    flex-shrink: 0;
}

.comp-rewards__icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.comp-rewards__head h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
}

.comp-rewards__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comp-rewards__list li {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
}

.comp-rewards__list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.comp-rewards__rank {
    font-weight: 700;
    color: var(--blue);
    font-size: 0.92rem;
}

.comp-rewards__desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.comp-schedule-band {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.comp-schedule-note {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    max-width: 56rem;
    margin: 0 auto clamp(2rem, 4vw, 2.75rem);
    padding: clamp(1.25rem, 2.5vw, 1.6rem);
    background: linear-gradient(135deg, #fff 0%, var(--surface-soft) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.comp-schedule-note__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
}

.comp-schedule-note__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.comp-schedule-note h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    color: var(--navy);
}

.comp-schedule-note p {
    margin: 0 0 0.55rem;
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.comp-schedule-note p:last-child {
    margin-bottom: 0;
}

.comp-timeline {
    list-style: none;
    margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
    padding: 0;
    max-width: 56rem;
    margin-inline: auto;
}

.comp-timeline__item {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0 1.15rem;
    padding-bottom: 1.35rem;
}

.comp-timeline__item:last-child {
    padding-bottom: 0;
}

.comp-timeline__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.35rem;
}

.comp-timeline__track::after {
    content: "";
    flex: 1;
    width: 2px;
    margin-top: 0.5rem;
    background: linear-gradient(180deg, var(--blue-bright), var(--line));
}

.comp-timeline__item:last-child .comp-timeline__track::after {
    display: none;
}

.comp-timeline__dot {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--blue-bright);
    box-shadow: 0 0 0 4px rgba(26, 110, 190, 0.15);
}

.comp-timeline__item--featured .comp-timeline__dot {
    border-color: var(--accent-warm);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
    background: #fffbf0;
}

.comp-timeline__card {
    padding: clamp(1.1rem, 2.5vw, 1.45rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.comp-timeline__item--featured .comp-timeline__card {
    border-color: rgba(201, 162, 39, 0.4);
    background: linear-gradient(160deg, #fffdf6 0%, #fff 100%);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.1);
}

@media (hover: hover) {
    .comp-timeline__card:hover {
        box-shadow: var(--shadow);
        border-color: rgba(10, 77, 149, 0.22);
    }
}

.comp-timeline__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
}

.comp-timeline__step {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(10, 77, 149, 0.18);
}

.comp-timeline__item--featured .comp-timeline__step {
    color: rgba(201, 162, 39, 0.45);
}

.comp-timeline__head h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
}

.comp-timeline__head time {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--blue);
}

.comp-timeline__head .comp-tag {
    margin-left: auto;
}

.comp-timeline__card > p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.comp-timeline__list {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.comp-timeline__list li + li {
    margin-top: 0.35rem;
}

.comp-timeline__meta {
    margin: 0.65rem 0 0;
    padding-top: 0.65rem;
    border-top: 1px dashed var(--line);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.comp-timeline__meta--live {
    color: var(--blue);
}

.comp-tag {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.comp-tag--muted {
    background: rgba(85, 101, 117, 0.1);
    color: var(--text-muted);
}

.comp-tag--live {
    background: linear-gradient(180deg, rgba(10, 77, 149, 0.14), rgba(10, 77, 149, 0.08));
    color: var(--blue);
}

.comp-table-details {
    max-width: 56rem;
    margin: 0 auto 1.75rem;
}

.comp-table-details summary {
    cursor: pointer;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue);
    list-style: none;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    transition: background var(--transition-fast);
}

.comp-table-details summary::-webkit-details-marker {
    display: none;
}

.comp-table-details summary:hover {
    background: var(--blue-soft);
}

.comp-table-details[open] summary {
    margin-bottom: 0.85rem;
    border-style: solid;
    background: #fff;
}

.comp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.comp-table {
    width: 100%;
    min-width: 40rem;
    border-collapse: collapse;
    font-size: 0.88rem;
    line-height: 1.6;
}

.comp-table th,
.comp-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.comp-table thead th {
    background: linear-gradient(180deg, rgba(10, 77, 149, 0.09), rgba(10, 77, 149, 0.03));
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
}

.comp-table tbody th[scope="row"] {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    background: rgba(10, 77, 149, 0.03);
}

.comp-table__row--live {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent);
}

.comp-table tbody tr:last-child th,
.comp-table tbody tr:last-child td {
    border-bottom: 0;
}

.comp-supplement {
    max-width: 56rem;
    margin: 0 auto;
    padding: clamp(1.25rem, 2.5vw, 1.6rem) clamp(1.25rem, 2.5vw, 1.6rem) clamp(1.25rem, 2.5vw, 1.6rem) clamp(1.5rem, 3vw, 2rem);
    background: var(--surface-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    border-left: 4px solid var(--blue);
}

.comp-supplement h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
}

.comp-supplement ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comp-supplement li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.comp-supplement li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-bright);
}

.comp-supplement li + li {
    margin-top: 0.5rem;
}

.page-competition .qp-mentors {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 6rem);
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(10, 77, 149, 0.06), transparent 55%),
        linear-gradient(180deg, #f4f7fc 0%, #eef3fa 100%);
    border-top: 1px solid var(--line);
}

.page-competition .qp-mentors__header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.page-competition .qp-mentors__tag {
    display: inline-flex;
    margin: 0 auto 1.25rem;
}

.page-competition .qp-mentors__lead {
    margin: 0 auto;
    max-width: none;
}

.qp-mentors__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.75rem, 2vw, 1.35rem);
}

@media (max-width: 960px) {
    .qp-mentors__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .qp-mentors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.qp-mentor {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.85rem 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(10, 77, 149, 0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

@media (hover: hover) {
    .qp-mentor:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(10, 77, 149, 0.12);
    }
}

.qp-mentor__avatar {
    width: clamp(72px, 12vw, 104px);
    height: clamp(72px, 12vw, 104px);
    border-radius: 50%;
    margin-bottom: 0.8rem;
    background: linear-gradient(180deg, #f0f4fa 0%, #e3eaf3 100%);
    border: 2px solid #fff;
    box-shadow:
        inset 0 0 0 1px var(--line),
        0 6px 14px rgba(10, 77, 149, 0.08);
    position: relative;
    overflow: hidden;
}

.qp-mentor__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.qp-mentor__avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent 60%, rgba(255, 255, 255, 0.35) 80%);
    pointer-events: none;
}

.qp-mentor__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.qp-mentor__role {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .qp-mentor {
        padding: 1rem 0.5rem 0.9rem;
    }

    .qp-mentor__name {
        font-size: 0.92rem;
    }

    .qp-mentor__role {
        font-size: 0.74rem;
    }
}

/* —— 业务介绍 / 特权介绍 · 文档页 —— */
.hero--doc .hero__inner--doc {
    align-items: flex-end;
}

.ol-page-subnav {
    position: sticky;
    top: 88px;
    z-index: 900;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(5, 42, 87, 0.04);
}

.ol-page-subnav__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    padding-block: 0.65rem;
}

.ol-page-subnav__link {
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.ol-page-subnav__link:hover {
    color: var(--blue);
    background: var(--blue-soft);
}

.ol-doc-section {
    padding: clamp(2.75rem, 6.5vw, 4.5rem) 0;
    background: var(--surface);
}

.ol-doc-section__head {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.ol-doc-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.65rem, 2vw, 1rem);
    margin: 0 0 clamp(2rem, 4vw, 2.75rem);
    padding: 0;
    list-style: none;
    max-width: 56rem;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .ol-doc-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ol-doc-highlights__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.1rem 0.75rem;
    text-align: center;
    background: linear-gradient(180deg, #fff, var(--surface-soft));
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

@media (hover: hover) {
    .ol-doc-highlights__item:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }
}

.ol-doc-highlights__icon {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
}

.ol-doc-highlights__icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.ol-doc-highlights__item strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--blue);
}

.ol-doc-highlights__item span:last-child {
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.ol-doc-cards {
    display: grid;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    max-width: 56rem;
    margin: 0 auto;
}

.ol-doc-cards--grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 820px) {
    .ol-doc-cards--grid {
        grid-template-columns: 1fr;
    }
}

.ol-doc-cards--privilege {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 820px) {
    .ol-doc-cards--privilege {
        grid-template-columns: 1fr;
    }
}

.ol-doc-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

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

.ol-doc-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--line);
}

.ol-doc-card__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--blue-bright), var(--blue));
    color: #fff;
    box-shadow: 0 6px 16px rgba(10, 77, 149, 0.22);
}

.ol-doc-card__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.ol-doc-card__num {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.2rem;
}

.ol-doc-card__head h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.08rem, 2vw, 1.22rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

.ol-doc-card p {
    margin: 0 0 0.85rem;
    font-size: 0.94rem;
    line-height: 1.78;
    color: var(--text-muted);
}

.ol-doc-card__foot {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--line);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.ol-doc-card__list {
    margin: 0.35rem 0 0.85rem;
    padding: 0;
    list-style: none;
}

.ol-doc-card__list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.35rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(208, 219, 232, 0.6);
}

.ol-doc-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-bright);
}

.ol-doc-card__list li:last-child {
    border-bottom: 0;
}

.ol-doc-card__checks {
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
}

.ol-doc-card__checks li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.5rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.ol-doc-card__checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.ol-doc-band {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, #e5ecf6 0%, #eef3fa 55%, #fff 100%);
    border-block: 1px solid var(--line);
}

.ol-doc-pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1.15rem);
}

@media (max-width: 900px) {
    .ol-doc-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .ol-doc-pillars {
        grid-template-columns: 1fr;
    }
}

.ol-doc-pillar {
    padding: 1.2rem 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--blue-bright);
    box-shadow: var(--shadow-sm);
}

.ol-doc-pillar h3 {
    margin: 0 0 0.45rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
}

.ol-doc-pillar p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* 特权 · 费率展示 */
.ol-privilege-rate {
    max-width: 56rem;
    margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.ol-privilege-rate__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.75rem);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: linear-gradient(135deg, #fffbf0 0%, #fff 45%, #f8fbff 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(201, 162, 39, 0.12);
}

@media (max-width: 720px) {
    .ol-privilege-rate__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.ol-privilege-rate__badge {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #e8c547, #c9a227);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(154, 123, 24, 0.3);
}

.ol-privilege-rate__copy h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--navy);
}

.ol-privilege-rate__copy p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.ol-privilege-rate__figure {
    text-align: center;
}

.ol-privilege-rate__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #9a7b18;
    line-height: 1.1;
}

.ol-privilege-rate__unit {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.08em;
}

.ol-privilege-rate__note {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.ol-privilege-rate__disclaimer {
    margin: 0.5rem 0 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.ol-privilege-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: clamp(1.5rem, 3vw, 2rem) auto 0;
    padding: 0;
    list-style: none;
    max-width: 56rem;
}

.ol-privilege-tags li {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(10, 77, 149, 0.18);
    background: rgba(10, 77, 149, 0.06);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.04em;
}

.closing-band__actions {
    margin-top: 1.25rem;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .ol-doc-card:hover,
    .ol-doc-highlights__item:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qp-mentor:hover,
    .comp-rewards__group:hover,
    .comp-timeline__card:hover {
        transform: none;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .ol-deep-card:hover {
        transform: none;
    }

    .ol-btn-solid:hover {
        transform: none;
    }

    .ol-explore-card:hover,
    .related-nav__link:hover {
        transform: none;
    }
}