/* 金锝资产（香港）展示站 — 浅色专业风（参考诚港：白底 + 深蓝主色，配色与组件细节区分） */

:root {
    /* 与诚港站对齐的强调色（首页通栏等） */
    --cg-navy: #002a5c;
    --cg-primary: #004a99;
    --blue: #0b5599;
    --blue-dark: #063a6b;
    --blue-soft: #e8f1fa;
    --surface: #eef3f9;
    --white: #fff;
    --text: #1c2430;
    --text-muted: #5a6570;
    --border: #d4dde8;
    --shadow: 0 4px 24px rgba(6, 58, 107, 0.07);
    --shadow-lg: 0 16px 48px rgba(6, 58, 107, 0.1);
    --max: min(92rem, 96vw);
    --gutter: clamp(1.25rem, 5vw, 3.5rem);
    --header-h: 5.875rem;
    --font: "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
    --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-family: var(--font);
    font-size: 1.125rem;
    line-height: 1.82;
    color: var(--text);
    background: var(--surface);
}

img, video { max-width: 100%; display: block; }

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
a:hover { color: var(--blue-dark); }

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

.wrap {
    width: min(var(--max), calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

/* —— 顶栏（浅色 sticky，类诚港） —— */
.masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border);
}

.masthead-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
    padding: 0.6rem 0;
    flex-wrap: wrap;
}

/* 顶栏 Logo（images/logo.png） */
.brand.brand-logo {
    display: flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}
.brand-logo:hover { text-decoration: none; opacity: 0.92; }

.brand-img {
    height: clamp(52px, 6.5vw, 76px);
    width: auto;
    max-width: min(360px, 62vw);
    object-fit: contain;
    object-position: left center;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.5rem;
}

.nav a {
    color: var(--text);
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.035em;
    white-space: nowrap;
    padding: 0.55rem 0;
    border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--blue); text-decoration: none; }

.nav a.active {
    color: var(--blue);
    font-weight: 600;
    border-bottom-color: var(--blue);
}

/* 英文模式：菜单项更长，整体收紧，避免换行 */
html[lang="en"] .nav {
    gap: 0.35rem 0.95rem;
}

html[lang="en"] .nav a {
    font-size: 0.92rem;
    letter-spacing: 0.012em;
    font-weight: 500;
}

html[lang="en"] .nav a.active {
    font-weight: 600;
}

@media (min-width: 1081px) and (max-width: 1280px) {
    html[lang="en"] .nav { gap: 0.3rem 0.7rem; }
    html[lang="en"] .nav a { font-size: 0.86rem; }
}

.menu-btn {
    display: none;
    width: 2.5rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.menu-btn__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.menu-btn__icon,
.menu-btn__icon::before,
.menu-btn__icon::after {
    content: "";
    display: block;
    width: 1.15rem;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.menu-btn__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-btn__icon::before {
    position: absolute;
    top: -0.35rem;
    left: 50%;
    transform: translateX(-50%);
}

.menu-btn__icon::after {
    position: absolute;
    top: 0.35rem;
    left: 50%;
    transform: translateX(-50%);
}

.masthead.is-open .menu-btn__icon {
    background: transparent;
}

.masthead.is-open .menu-btn__icon::before {
    transform: translateX(-50%) translateY(0.35rem) rotate(45deg);
}

.masthead.is-open .menu-btn__icon::after {
    transform: translateX(-50%) translateY(-0.35rem) rotate(-45deg);
}

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

.lang-switch button {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1;
    padding: 0.34rem 0.5rem;
    border-radius: 2px;
    cursor: pointer;
}

.lang-switch button.is-active {
    color: var(--blue);
    border-color: var(--blue);
    font-weight: 600;
}

@media (max-width: 1080px) {
    .menu-btn { display: block; }
    .brand.brand-logo { order: 1; }
    .lang-switch {
        order: 2;
        margin-left: auto;
        margin-right: 0.55rem;
    }
    .menu-btn { order: 3; }
    .nav {
        order: 4;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0 0;
        border-top: 1px solid var(--border);
        margin-top: 0.35rem;
        max-height: min(72vh, 26rem);
        overflow-y: auto;
    }
    .nav a {
        white-space: normal;
        border-bottom: none;
        padding: 0.55rem 0;
        font-size: 1.05rem;
    }
    .masthead.is-open .nav { display: flex; }
}

/* —— 横幅：占满视口宽度，无上下留白；底衬与标题区一致避免灰条 —— */
.banner-wrap {
    margin-top: var(--header-h);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    background: var(--white);
    display: block;
    padding: 0;
    min-height: 0;
    box-sizing: border-box;
}

.banner-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 0;
}

.banner-img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    vertical-align: bottom;
}

/* —— Hero：横幅实景图（img 宽高调适铺满视区）+ 轻遮罩 + 叠字 —— */
.hero {
    position: relative;
    margin-top: var(--header-h);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    min-height: clamp(300px, 38vw, 480px);
    overflow: hidden;
    background: var(--blue-dark);
    display: flex;
    align-items: stretch;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--blue-dark);
    line-height: 0;
}

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

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(0, 57, 120, 0.3) 0%,
        rgba(0, 57, 120, 0.15) 40%,
        rgba(0, 26, 64, 0.05) 72%,
        rgba(0, 26, 64, 0.015) 100%
    );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(2.75rem, 7vw, 4.75rem) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__copy {
    max-width: 44rem;
    width: 100%;
    margin-inline: auto;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.hero__crumb {
    margin: 0 0 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 4.8vw, 3.3rem);
    font-weight: 700;
    margin: 0 0 0.85rem;
    color: #fff;
    line-height: 1.18;
    letter-spacing: 0.02em;
}

.hero__tagline {
    margin: 0 0 1rem;
    font-size: clamp(1.18rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
}

.hero__rule {
    width: 4rem;
    height: 3px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    margin: 0 0 1rem;
}

.hero__subtitle {
    margin: 0;
    max-width: 44rem;
    font-size: clamp(1.02rem, 1.95vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 768px) {
    .hero__content {
        padding-top: clamp(2.25rem, 9vw, 3.5rem);
        padding-bottom: clamp(2rem, 8vw, 3rem);
    }

    .hero__copy {
        padding-inline: 0.45rem;
    }

    .hero__crumb {
        letter-spacing: 0.2em;
    }
}

.hero--home {
    min-height: clamp(360px, 46vw, 580px);
}

.hero--home .hero__copy {
    max-width: 52rem;
}

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

.hero__chips li {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.96);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
}

.hero__divider {
    width: 3.75rem;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.45));
    margin: 0 0 1.25rem;
    border-radius: 1px;
}

/* —— 标题区（白底，与横幅分离） —— */
.title-band {
    background: var(--white);
    padding: clamp(2.25rem, 6vw, 4rem) 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.title-band .crumb {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    color: var(--blue);
    text-transform: uppercase;
}

.title-band h1 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.2vw, 2.85rem);
    font-weight: 700;
    margin: 0 0 0.85rem;
    color: var(--blue-dark);
    line-height: 1.2;
    letter-spacing: 0.03em;
}

.title-band .subtitle {
    margin: 0;
    max-width: 52rem;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.75;
}

/* —— 通用区块 —— */
section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
}

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

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: var(--blue-dark);
    letter-spacing: 0.02em;
}

.section-head p {
    margin: 0;
    max-width: 50rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.section--alt {
    background: var(--white);
    border-block: 1px solid var(--border);
}

/* —— 按钮 —— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.45rem;
    font-family: var(--font);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-primary {
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(11, 85, 153, 0.25);
}
.btn-primary:hover {
    transform: translateY(-1px);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(11, 85, 153, 0.3);
}

.btn-ghost {
    background: var(--white);
    color: var(--blue-dark);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* —— 首页：简介双栏 —— */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
}

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

.intro-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    font-weight: 700;
    color: var(--blue-dark);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.intro-copy .lead {
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.intro-copy .divider {
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), transparent);
    margin: 1.25rem 0;
}

.intro-visual {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    aspect-ratio: 5/4;
}
.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* —— 快捷卡片 —— */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

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

.quick-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 11.25rem;
    padding: 1.7rem 1.45rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    border-top: 3px solid var(--blue);
    box-shadow: var(--shadow);
    color: inherit;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(6, 58, 107, 0.12);
    color: inherit;
}
.quick-card h3 {
    font-family: var(--font-display);
    font-size: 1.42rem;
    margin: 0 0 0.35rem;
    color: var(--blue-dark);
}
.quick-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.quick-card .arrow {
    align-self: flex-end;
    font-size: 1.35rem;
    color: var(--blue);
    margin-top: 0.65rem;
}

/* —— 关于 / 双栏 —— */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
}

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

.about-visual {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
}
.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-copy p {
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.tag {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text-muted);
    background: var(--blue-soft);
}

/* —— 關於我們：宣傳視頻 + 白皮書 PDF（誠港 about-media 式並排） —— */
#about-video,
#about-pdf {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.about-media-section .about-media-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.25rem;
}

.about-media-section .about-media-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--cg-primary);
    margin: 0 0 0.5rem;
}

.about-media-section .about-media-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.about-media-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    align-items: stretch;
}

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

.about-media-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1.35rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-media-card h3 {
    font-family: var(--font-display);
    font-size: 1.22rem;
    color: var(--blue-dark);
    margin: 0 0 0.45rem;
}

.about-media-card .about-media-desc {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.about-media-card .video-block {
    flex: 0 0 auto;
    margin-top: 0.25rem;
}

/* 關於我們：寬度鋪滿，高度隨視頻原始比例（與源文件寬高比一致） */
.video-block--about {
    width: 100%;
    background: #0a1628;
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}

.video-block--about video {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.about-doc-card .pdf-actions--stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.about-doc-card .pdf-actions {
    margin-top: 0;
}

/* —— 合规 —— */
.compliance-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.check-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.85rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.45rem;
    height: 0.45rem;
    background: var(--blue);
    border-radius: 1px;
    transform: rotate(45deg);
}

.disclosure-cards {
    display: grid;
    gap: 0.75rem;
}

.disc-card {
    padding: 1rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    border-left: 4px solid var(--blue);
}

.disc-card strong {
    display: block;
    color: var(--blue-dark);
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

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

/* —— 业务分栏 —— */
.biz-band { padding: 0; }

.biz-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: min(420px, 58vh);
}

@media (max-width: 900px) {
    .biz-row { grid-template-columns: 1fr; min-height: unset; }
}

.biz-panel {
    padding: clamp(2rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.biz-panel--tint {
    background: var(--blue-soft);
}

.biz-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.biz-panel h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    margin: 0 0 0.85rem;
    color: var(--blue-dark);
}

.biz-panel p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    max-width: 32rem;
    font-size: 0.95rem;
}

.biz-img {
    min-height: 240px;
    background: var(--blue-dark);
}
.biz-img img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

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

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}
.service-list li:last-child { border-bottom: none; }

/* —— 流程步骤 —— */
.pipe-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}

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

.pipe-step {
    padding: 1.1rem 0.85rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow);
}

.pipe-step .step-n {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--blue);
    font-weight: 700;
    display: block;
    margin-bottom: 0.35rem;
}

.pipe-step strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.pipe-step span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (min-width: 901px) {
    .pipe-step { position: relative; }
    .pipe-step:not(:last-child)::after {
        content: "→";
        position: absolute;
        right: -0.45rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--blue);
        font-size: 0.75rem;
        z-index: 2;
    }
}

/* —— 理念支柱 —— */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.pillar {
    padding: 1.75rem 1.55rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.pillar h3 {
    font-family: var(--font-display);
    font-size: 1.38rem;
    margin: 0 0 0.5rem;
    color: var(--blue);
}

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

/* —— 投资理念：图文混排 —— */
.philo-media-stack {
    margin-top: 1.35rem;
    display: grid;
    gap: 1.25rem;
}

.philo-media-item {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(1rem, 2.6vw, 1.5rem);
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.philo-media-item--reverse {
    grid-template-columns: 1fr 1.05fr;
}

.philo-media-item--reverse .philo-media-item__figure {
    order: 2;
}

.philo-media-item__figure {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--border);
}

.philo-media-item__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philo-media-item__body h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    color: var(--blue-dark);
    font-size: clamp(1.15rem, 2.1vw, 1.45rem);
}

.philo-media-item__body p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .philo-media-item,
    .philo-media-item--reverse {
        grid-template-columns: 1fr;
    }

    .philo-media-item--reverse .philo-media-item__figure {
        order: initial;
    }
}

.values-band {
    margin-top: 2rem;
    padding: 1.75rem clamp(1rem, 3vw, 2rem);
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--blue-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

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

.value-cell {
    text-align: center;
    padding: 0.85rem 0.4rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-dark);
}

.values-band > p {
    margin: 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* —— 投资者 —— */
.inv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
}

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

.inv-card {
    padding: 1.5rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.inv-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 0.85rem;
    color: var(--blue-dark);
}

.inv-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.inv-card li { margin-bottom: 0.45rem; }

.inv-highlight {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    background: var(--blue-soft);
    border-left: 4px solid var(--blue);
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* —— 时间线 —— */
.tl-list {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.tl-item {
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.tl-item:last-child { border-bottom: none; }

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

.tl-year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
}

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

/* —— 行业 / 资讯卡片 —— */
.ins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.ins-card {
    padding: 1.75rem 1.55rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 11rem;
}

.ins-card .cat {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    color: var(--blue);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.ins-card h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
    color: var(--blue-dark);
    line-height: 1.4;
}

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

.ins-card .ins-link {
    margin-top: 0.9rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.ins-split {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 800px) {
    .ins-split { grid-template-columns: 1fr; }
}

.ins-split figure {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.ins-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

/* —— FAQ —— */
.faq details {
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    margin-bottom: 0.55rem;
    box-shadow: var(--shadow);
}

.faq summary {
    cursor: pointer;
    padding: 0.95rem 1.1rem;
    font-weight: 600;
    font-size: 0.92rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.faq summary::after {
    content: "+";
    color: var(--blue);
    font-size: 1.35rem;
    flex-shrink: 0;
}

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

.faq .faq-body {
    padding: 0 1.1rem 1rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    border-top: 1px solid var(--border);
}

/* —— 视频 / PDF —— */
.video-block {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    box-shadow: var(--shadow);
}

.video-block video { width: 100%; vertical-align: middle; }

.video-caption {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pdf-frame-wrap {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f1f1f1;
    min-height: min(82vh, 880px);
}

.pdf-frame-wrap iframe {
    width: 100%;
    height: min(82vh, 880px);
    border: 0;
    display: block;
}

.pdf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}

.pdf-actions a.btn-ghost {
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
}

/* —— 页脚 CTA + 主脚 —— */
.footer-cta {
    text-align: center;
    padding: clamp(3.5rem, 8vw, 5.25rem) 0;
    background: var(--blue-soft);
    border-top: 1px solid var(--border);
}

.footer-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.8vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: var(--blue-dark);
}

.footer-cta .sub {
    margin: 0 0 1.35rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 诚港式页脚：深灰底 + 左信息 / 右多列链接 + 底栏版权 */
.site-footer {
    background: #1a1a1a;
    color: #999;
    padding: clamp(2.75rem, 6vw, 3.75rem) 0 1.25rem;
    font-size: 0.875rem;
}

.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
}

.site-footer .footer-info {
    max-width: 26rem;
    flex-shrink: 0;
}

.site-footer .footer-info p {
    margin: 0 0 0.5rem;
    line-height: 1.65;
}

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

.site-footer .footer-info 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;
}

.site-footer .footer-info p.footer-contact a {
    color: #d8e3ef;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
    padding-bottom: 1px;
    margin-left: 0.15rem;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

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

.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 5rem);
    justify-content: flex-end;
}

.site-footer .link-col {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.site-footer .link-col a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s var(--ease);
}

.site-footer .link-col a:hover {
    color: #fff;
}

.site-footer .copyright {
    text-align: center;
    padding-top: 1.875rem;
    margin: 0;
    border-top: none;
    color: #666;
    font-size: 0.75rem;
}

.site-footer .copyright p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lang-switch button {
        font-size: 0.74rem;
        padding: 0.3rem 0.45rem;
    }

    .site-footer .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-footer .footer-info {
        max-width: none;
    }

    .site-footer .footer-links {
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 2rem;
        width: 100%;
    }

    .site-footer .link-col {
        align-items: center;
    }
}

.risk-note {
    max-width: 44rem;
    line-height: 1.65;
    margin: 0;
}

code {
    font-family: ui-monospace, monospace;
    font-size: 0.88em;
    opacity: 0.9;
}

/* —— 首页数据条 —— */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    max-width: 42rem;
}

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

.stat-row .stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--blue);
    font-weight: 700;
}

.stat-row .stat span {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.figure-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* —— 首页 Hero 内边距（仅 body.home） —— */
body.home .hero--home .hero__content {
    padding-bottom: clamp(2.5rem, 6vw, 4.25rem);
}

.title-band__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.title-band__chips li {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--cg-primary);
    background: var(--blue-soft);
    border: 1px solid var(--border);
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
}

.title-band__divider {
    width: 3.75rem;
    height: 4px;
    background: linear-gradient(90deg, var(--cg-primary), var(--cg-navy));
    margin: 0 0 1.25rem;
    border-radius: 1px;
}

body.home .intro-copy h2.intro-kicker {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--cg-primary);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

/* 深蓝通栏三卡 */
.home-cards-band {
    position: relative;
    padding: clamp(3.25rem, 7vw, 5.5rem) 0;
    background: linear-gradient(145deg, var(--cg-navy) 0%, #043058 45%, var(--cg-primary) 100%);
    overflow: hidden;
}

.home-cards-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(0, 0, 0, 0.15), transparent 50%);
    pointer-events: none;
}

.home-cards-band .wrap {
    position: relative;
    z-index: 1;
}

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

.home-cards-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
    letter-spacing: 0.04em;
}

.home-cards-head p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    opacity: 0.88;
}

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

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

.home-blue-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 13.5rem;
    padding: 1.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
    border-radius: 4px;
}

.home-blue-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    color: #fff;
}

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

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

.home-blue-card .home-card-arrow {
    align-self: flex-end;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 1.15rem;
    line-height: 1;
    transition: border-color 0.2s, color 0.2s;
}

.home-blue-card:hover .home-card-arrow {
    border-color: #fff;
    color: #fff;
}

/* 能力矩阵 */
.home-capabilities {
    background: var(--white);
    border-block: 1px solid var(--border);
}

.home-capabilities__layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

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

.home-capabilities__aside h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    color: var(--cg-primary);
    margin: 0 0 1.25rem;
    line-height: 1.25;
}

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

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

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

.home-cap-item {
    background: var(--white);
    padding: 1.85rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 6px 28px rgba(6, 58, 107, 0.06);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.home-cap-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(6, 58, 107, 0.1);
}

.home-cap-item .home-cap-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: var(--cg-primary);
}

.home-cap-item .home-cap-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.home-cap-item h3 {
    font-size: 1.05rem;
    color: var(--cg-primary);
    margin: 0 0 0.65rem;
    font-weight: 700;
}

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

/* 图文分栏（业务 01 / 02） */
.home-split {
    padding: 0;
    overflow: hidden;
}

.home-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) {
    .home-split__inner { grid-template-columns: 1fr; }
}

.home-split--gray {
    background: #f5f7fa;
}

.home-split__text {
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.home-split--gray .home-split__text {
    background: #f5f7fa;
}

.home-split__eyebrow {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.home-split__num {
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 0.85;
    color: rgba(0, 42, 92, 0.12);
    letter-spacing: -0.04em;
}

.home-split__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--cg-primary);
    margin: 0 0 1rem;
}

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

.home-split__list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

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

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

.home-split__media {
    min-height: clamp(280px, 42vw, 420px);
}

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

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

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

.home-split__actions {
    margin-top: 1.5rem;
}

/* 价值主张 */
.home-values {
    background: var(--white);
    text-align: center;
    padding-top: clamp(3.5rem, 8vw, 5.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.home-values h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    color: var(--cg-primary);
    margin: 0 auto 2.5rem;
    font-weight: 700;
}

.home-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

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

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

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

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

.home-values__banner {
    margin-top: 3rem;
    background: linear-gradient(90deg, var(--cg-navy), var(--cg-primary));
    color: rgba(255, 255, 255, 0.95);
    padding: clamp(1.75rem, 4vw, 2.5rem) 1.5rem;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

/* 首页页脚 CTA 双标题 */
.footer-cta--rich {
    background: linear-gradient(180deg, #e8eaed 0%, #dfe3e8 100%);
    border-top: 1px solid #cdd4dc;
}

.footer-cta--rich h3 {
    margin: 0 0 0.35rem;
}

.footer-cta--rich h3 + h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--cg-primary);
}

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

/* ============================================================
   量行计划 / Quantity Plan
   2026 金锝资产全球投资锦标赛专题页
   ============================================================ */

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

body.quantity-plan {
    background:
        linear-gradient(180deg, #eaf2fb 0%, #f4f7fc 35%, #f8faff 100%);
}

/* —— 顶部标题区 —— */
.qp-headline {
    position: relative;
    margin-top: var(--header-h);
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
    overflow: hidden;
    background:
        linear-gradient(180deg, #e6efff 0%, #f0f6ff 60%, #f8faff 100%);
    isolation: isolate;
}

.qp-headline__dots {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(11, 85, 153, 0.18) 1px, transparent 1.6px);
    background-size: 16px 16px;
    mask-image: radial-gradient(ellipse 90% 70% at 80% 50%, #000 0%, rgba(0, 0, 0, 0.65) 50%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 80% 50%, #000 0%, rgba(0, 0, 0, 0.65) 50%, transparent 85%);
    opacity: 0.85;
}

.qp-headline__inner {
    position: relative;
    text-align: center;
    color: var(--cg-navy);
}

.qp-headline__crumb {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.78;
}

.qp-headline__title {
    margin: 0 auto 1.85rem;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 6vw, 4.25rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0.06em;
    color: var(--cg-navy);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85),
        0 6px 24px rgba(11, 85, 153, 0.15);
}

.qp-headline__title-sep {
    display: inline-block;
    margin: 0 0.15em;
    color: var(--blue);
    transform: translateY(-0.15em);
}

.qp-trophy {
    display: inline-block;
    padding: clamp(1rem, 2.4vw, 1.45rem) clamp(1.5rem, 4vw, 2.6rem);
    border: 1.5px solid var(--cg-primary);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(2px);
    box-shadow:
        inset 0 0 0 4px rgba(255, 255, 255, 0.65),
        0 12px 32px rgba(11, 85, 153, 0.12);
}

.qp-trophy__title {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.6vw, 1.6rem);
    font-weight: 700;
    color: var(--cg-navy);
    letter-spacing: 0.06em;
}

.qp-trophy__subtitle {
    margin: 0;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* —— 计划简介 —— */
.qp-intro {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.qp-intro__card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: clamp(1.75rem, 4.5vw, 3rem) clamp(1.5rem, 4.5vw, 3.25rem);
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.qp-intro__quote {
    position: absolute;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(-1rem, -1vw, 0rem);
    font-family: var(--font-display);
    font-size: clamp(7rem, 14vw, 11rem);
    line-height: 0.85;
    color: rgba(11, 85, 153, 0.08);
    pointer-events: none;
    user-select: none;
}

.qp-intro__lead {
    margin: 0 0 1.25rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    line-height: 1.6;
    font-weight: 600;
    color: var(--cg-navy);
}

.qp-intro__lead strong {
    color: var(--cg-primary);
}

.qp-intro__card > p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
    line-height: 1.85;
}

.qp-intro__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin: 2rem 0 1.75rem;
}

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

.qp-intro__pillar {
    position: relative;
    padding: 1.45rem 1.5rem 1.25rem;
    background: linear-gradient(160deg, #f3f7fd 0%, #fafcff 100%);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.qp-intro__pillar-num {
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    opacity: 0.35;
    letter-spacing: 0.04em;
}

.qp-intro__pillar h3 {
    margin: 0 0 0.55rem;
    padding-bottom: 0.55rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cg-navy);
    font-weight: 700;
    border-bottom: 2px solid var(--cg-primary);
    display: inline-block;
}

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

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

/* —— 资源协同 · 10 亿种子基金 —— */
.qp-fund {
    position: relative;
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, #e9eff8 0%, #dde6f3 100%);
    border-top: 1px solid #d4dde8;
    border-bottom: 1px solid #d4dde8;
    overflow: hidden;
}

.qp-fund::before,
.qp-fund::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.qp-fund::before {
    top: -40px;
    right: -60px;
    width: 280px;
    height: 320px;
    background: linear-gradient(160deg, rgba(11, 85, 153, 0.18), rgba(11, 85, 153, 0) 70%);
    transform: skewX(-12deg);
    border-radius: 12px;
}

.qp-fund::after {
    bottom: -80px;
    left: -40px;
    width: 240px;
    height: 280px;
    background: linear-gradient(160deg, rgba(11, 85, 153, 0.12), rgba(11, 85, 153, 0) 75%);
    transform: skewX(-12deg);
    border-radius: 12px;
}

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

.qp-fund__label {
    margin: 0 0 1.5rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    color: rgba(11, 85, 153, 0.55);
    letter-spacing: 0.4em;
}

.qp-fund__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.qp-fund__medal {
    position: relative;
    width: clamp(64px, 9vw, 96px);
    height: clamp(78px, 11vw, 116px);
}

.qp-fund__medal-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(56px, 8vw, 84px);
    height: clamp(56px, 8vw, 84px);
    background:
        radial-gradient(circle at 35% 30%, #ffe27a 0%, #f5b941 45%, #b07e1c 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 4px rgba(255, 255, 255, 0.55),
        inset 0 -6px 12px rgba(0, 0, 0, 0.18),
        0 6px 18px rgba(176, 126, 28, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #6e4310;
    z-index: 2;
}

.qp-fund__medal-ribbon {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: clamp(46px, 7vw, 72px);
    height: clamp(30px, 4.5vw, 44px);
    transform: translateX(-50%);
    background:
        linear-gradient(135deg, transparent 50%, #1c6cc7 50%) bottom left / 50% 100% no-repeat,
        linear-gradient(225deg, transparent 50%, #1c6cc7 50%) bottom right / 50% 100% no-repeat;
    z-index: 1;
    opacity: 0.85;
}

.qp-fund__amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.qp-fund__number {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 8.5vw, 5.25rem);
    font-weight: 900;
    color: var(--cg-navy);
    letter-spacing: 0.04em;
    line-height: 1;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7),
        0 8px 24px rgba(11, 85, 153, 0.18);
}

.qp-fund__currency {
    font-size: 0.85rem;
    letter-spacing: 0.32em;
    color: var(--cg-primary);
    font-weight: 600;
    opacity: 0.7;
}

.qp-fund__note {
    margin: 0.65rem auto 0;
    max-width: 46rem;
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(0.92rem, 1.6vw, 1rem);
    line-height: 1.75;
}

.qp-fund__note strong {
    color: var(--cg-primary);
    font-weight: 700;
}

.qp-fund__pill {
    margin: clamp(2rem, 4vw, 2.75rem) auto clamp(2rem, 4vw, 3rem);
    display: flex;
    justify-content: center;
}

.qp-fund__pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(420px, 80%);
    padding: 0.95rem 2.5rem;
    background: linear-gradient(180deg, var(--cg-primary) 0%, var(--cg-navy) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.4vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    border-radius: 999px;
    box-shadow:
        inset 0 0 0 4px rgba(255, 255, 255, 0.08),
        0 12px 28px rgba(11, 85, 153, 0.28);
}

/* —— 奖励详情 —— */
.qp-rewards {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: 880px;
    margin: 0 auto;
}

.qp-rewards__group {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(11, 85, 153, 0.06);
    overflow: hidden;
}

.qp-rewards__head {
    padding: 0.85rem 1.25rem;
    background: linear-gradient(90deg, #f1f5fb 0%, #e8eff8 100%);
    border-bottom: 1px solid var(--border);
}

.qp-rewards__head-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--cg-navy);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-radius: 3px;
}

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

.qp-rewards__list li {
    display: grid;
    grid-template-columns: minmax(140px, 200px) 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.qp-rewards__list li:nth-child(even) {
    background: #f6f9fd;
}

.qp-rewards__list li:last-child {
    border-bottom: none;
}

@media (max-width: 600px) {
    .qp-rewards__list li {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 1rem 1.15rem;
    }
}

.qp-rewards__rank {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cg-navy);
    letter-spacing: 0.04em;
}

.qp-rewards__medal {
    width: 18px;
    height: 24px;
    display: inline-block;
    background:
        radial-gradient(circle at 50% 35%, #c9d2dd 35%, #8a98a8 80%) top center / 18px 18px no-repeat;
    position: relative;
}

.qp-rewards__medal::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #6e7888;
}

.qp-rewards__desc {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* —— 大赛时间 —— */
.qp-schedule {
    position: relative;
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

.qp-schedule__tag {
    display: inline-flex;
    align-items: center;
    margin: 0 auto 1.5rem;
    padding: 0.4rem 1.25rem;
    background: linear-gradient(180deg, var(--cg-primary) 0%, var(--cg-navy) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(11, 85, 153, 0.22);
}

.qp-schedule__title {
    margin: 0 auto 2rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--cg-navy);
    letter-spacing: 0.04em;
}

.qp-schedule__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: min(1200px, 92%);
    counter-reset: schedule;
    position: relative;
    z-index: 1;
}

.qp-schedule__list li {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px dashed rgba(11, 85, 153, 0.18);
    counter-increment: schedule;
    position: relative;
    text-align: left;
}

.qp-schedule__list li::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cg-primary);
    box-shadow: 0 0 0 4px rgba(11, 85, 153, 0.12);
    opacity: 0.9;
    justify-self: center;
}

@media (max-width: 540px) {
    .qp-schedule__list li {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding: 0.85rem 0;
        text-align: center;
    }
    .qp-schedule__list li::before {
        display: none;
    }
}

.qp-schedule__date {
    grid-column: 1;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    font-weight: 700;
    color: var(--cg-navy);
    letter-spacing: 0.04em;
    text-align: right;
}

.qp-schedule__event {
    grid-column: 3;
    color: var(--text);
    font-size: clamp(0.96rem, 1.6vw, 1.08rem);
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 540px) {
    .qp-schedule__date,
    .qp-schedule__event {
        grid-column: 1;
        text-align: center;
    }
}

.qp-schedule__deco {
    position: absolute;
    right: -2rem;
    bottom: -3rem;
    width: clamp(180px, 26vw, 320px);
    height: clamp(220px, 32vw, 400px);
    background:
        linear-gradient(160deg, rgba(11, 85, 153, 0.06) 0%, rgba(11, 85, 153, 0) 60%),
        linear-gradient(180deg, rgba(11, 85, 153, 0.18), rgba(11, 85, 153, 0.04));
    transform: skewX(-10deg);
    border-radius: 12px;
    z-index: 0;
    box-shadow: -32px 24px 0 -12px rgba(11, 85, 153, 0.06);
    pointer-events: none;
}

/* —— 明星导师 —— */
.qp-mentors {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 6rem);
    background: linear-gradient(180deg, #f4f7fc 0%, #eef3fa 100%);
    border-top: 1px solid var(--border);
}

.qp-mentors__tag {
    display: inline-flex;
    align-items: center;
    margin: 0 0 1.25rem;
    padding: 0.4rem 1.25rem;
    background: linear-gradient(180deg, var(--cg-primary) 0%, var(--cg-navy) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(11, 85, 153, 0.22);
}

.qp-mentors__title {
    margin: 0 0 0.8rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    font-weight: 700;
    color: var(--cg-navy);
    letter-spacing: 0.04em;
}

.qp-mentors__lead {
    margin: 0 0 clamp(2rem, 4vw, 2.75rem);
    max-width: 48rem;
    color: var(--text-muted);
    font-size: clamp(0.96rem, 1.5vw, 1.05rem);
    line-height: 1.8;
}

.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(--border);
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(11, 85, 153, 0.05);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.qp-mentor:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(11, 85, 153, 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(--border),
        0 6px 14px rgba(11, 85, 153, 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(--cg-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; }
}
