/* ============================================================
   科临数据 · 首页 v5  (2026-05-01 · Editorial Refined)
   原则：克制 · 真实素材 · 编辑感版式 · 字体即设计
   依赖：tokens.css
   ============================================================ */

/* ========== 0. 全站基底（首页范围） ========== */
.home-template .site-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.home-template {
    background: #0a0e15;
    /* 显式声明深色调色板：阻止浏览器自动深色化干扰 */
    color-scheme: dark;
}
body.home-template,
.home-template main.site-main {
    background: #0a0e15;
}

/* ========== 1. HERO v5 — 编辑感非对称 + 真实文档堆 ========== */
.hero-v6 {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: #0a0e15;
    padding: clamp(7rem, 14vh, 10rem) clamp(1.25rem, 5vw, 4rem) clamp(4rem, 8vh, 6rem);
    min-height: clamp(640px, 92vh, 920px);
    display: flex;
    align-items: center;
}

/* 唯一一道签名光斑（不动） */
.hero-v6-glow {
    position: absolute;
    inset: auto -10% -25% auto;
    width: 60vw;
    max-width: 800px;
    height: 60vw;
    max-height: 800px;
    background: radial-gradient(circle at 50% 50%,
        rgba(20, 128, 225, 0.22) 0%,
        rgba(20, 128, 225, 0.08) 35%,
        transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.hero-v6-grid {
    position: relative;
    z-index: 1;
    width: min(78rem, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

/* 文本列 */
.hero-v6-text {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.5vh, 2rem);
}

.hero-v6-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.78rem;
    font-weight: var(--font-semibold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    animation: heroFade 0.9s var(--ease-spring) 0.05s forwards;
}
.hero-v6-eyebrow .rule {
    width: 32px;
    height: 1px;
    background: var(--brand-400);
    flex-shrink: 0;
}

.hero-v6-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.6vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 600;
    color: #fff;
    margin: 0;
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.18s forwards;
}
.hero-v6-headline .hl {
    font-weight: 700;
    background: linear-gradient(110deg, var(--brand-200) 0%, #fff 50%, var(--brand-200) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-v6-lead {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.66);
    margin: 0;
    max-width: 32rem;
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.32s forwards;
}

.hero-v6-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.46s forwards;
}

/* 主按钮 */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.6rem;
    border-radius: var(--radius-pill);
    background: #fff;
    color: #0a0e15;
    font-size: 0.95rem;
    font-weight: var(--font-semibold);
    text-decoration: none;
    border: 1px solid #fff;
    transition: transform var(--duration-normal) var(--ease-spring),
                background var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth);
    line-height: 1;
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--brand-200);
    box-shadow: 0 16px 40px rgba(20, 128, 225, 0.32);
}
.btn-primary .arrow {
    transition: transform var(--duration-normal) var(--ease-spring);
    display: inline-block;
}
.btn-primary:hover .arrow { transform: translateX(4px); }

/* 副链接（quieter） */
.link-quiet {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: var(--font-medium);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-bottom: 2px;
    transition: color var(--duration-normal) var(--ease-smooth),
                border-color var(--duration-normal) var(--ease-smooth);
}
.link-quiet:hover {
    color: #fff;
    border-bottom-color: var(--brand-400);
}

/* Trust 行 — 排版式，不放卡片 */
.hero-v6-trust {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    padding-top: clamp(1.5rem, 3vh, 2.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: clamp(1rem, 2vh, 1.5rem);
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.6s forwards;
}
.hero-v6-trust .trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.hero-v6-trust .trust-num {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
}
.hero-v6-trust .trust-cap {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: var(--font-medium);
}

/* 视觉列：真实文档 3D 堆 */
.hero-v6-visual {
    position: relative;
    perspective: 1600px;
    perspective-origin: 50% 40%;
    align-self: center;
}

.hero-v6-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    transform-style: preserve-3d;
    transition: transform 0.7s var(--ease-spring);
    opacity: 0;
    animation: stackEnter 1.1s var(--ease-spring) 0.55s forwards;
}
@keyframes stackEnter {
    from { opacity: 0; transform: scale(0.92) translate3d(0, 30px, 0); }
    to   { opacity: 1; transform: scale(1)   translate3d(0, 0, 0); }
}

/* 单个文档卡 */
.doc-card {
    position: absolute;
    width: 88%;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.55),
        0 12px 30px -10px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.6s var(--ease-spring),
                box-shadow 0.6s var(--ease-smooth);
    transform-origin: center center;
}

.doc-card .doc-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 576 / 384;
    overflow: hidden;
    background: #f4f6fa;
}
.doc-card .doc-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doc-caption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem 0.95rem;
    background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    margin: 0;
}
.doc-caption .doc-code {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-800);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.doc-caption .doc-name {
    font-size: 0.78rem;
    color: rgba(15, 23, 42, 0.6);
    text-align: right;
    line-height: 1.3;
}

/* 三层堆叠 */
.doc-back {
    top: 18%;
    right: 0;
    transform: rotate(6deg) translate3d(8%, 4%, -60px);
    z-index: 1;
    opacity: 0.92;
}
.doc-mid {
    top: 9%;
    right: 6%;
    transform: rotate(-3deg) translate3d(-2%, 0, -25px);
    z-index: 2;
    opacity: 0.96;
}
.doc-front {
    top: 0;
    right: 14%;
    transform: rotate(-1.5deg);
    z-index: 3;
}

/* 已交付 邮戳 */
.doc-front .doc-stamp {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 5;
    padding: 0.32rem 0.7rem;
    border: 1.5px solid rgba(220, 38, 38, 0.85);
    color: rgba(220, 38, 38, 0.92);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 4px;
    transform: rotate(-8deg);
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
}

/* Hover 提升前层 */
.hero-v6-stack:hover .doc-front {
    transform: rotate(-1deg) translate3d(-3%, -3%, 30px);
}
.hero-v6-stack:hover .doc-mid {
    transform: rotate(-3.5deg) translate3d(-3%, 1%, -10px);
}
.hero-v6-stack:hover .doc-back {
    transform: rotate(7deg) translate3d(10%, 5%, -75px);
}

@keyframes heroFade {
    from { opacity: 0; transform: translate3d(0, 12px, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* 响应式 */
@media (max-width: 1023px) {
    .hero-v6-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .hero-v6-visual {
        order: 2;
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-v6 {
        padding: 6rem 1.25rem 3rem;
        min-height: auto;
    }
    .hero-v6-headline {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
    .hero-v6-trust {
        gap: 1.25rem;
    }
    .hero-v6-trust .trust-num { font-size: 1.25rem; }
    .doc-back  { transform: rotate(5deg) translate3d(6%, 3%, -40px); }
    .doc-mid   { transform: rotate(-2deg) translate3d(-1%, 0, -20px); }
    .doc-front { transform: rotate(-1deg); }
}


/* ========== 2. PATHWAY 米白编辑感 ========== */
.pathway-cream {
    background: #f6f1ea;
    color: #1a1f2c;
    padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 4rem);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* 米白背景上的极淡纸纹 */
.pathway-cream::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(20, 128, 225, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(180, 100, 50, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.pathway-cream-inner {
    position: relative;
    z-index: 1;
    width: min(78rem, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vh, 5rem);
}

.pathway-cream-head {
    max-width: 48rem;
}
.pathway-cream-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-700);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-700);
    margin-bottom: 1.5rem;
}
.pathway-cream-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.022em;
    font-weight: 600;
    color: #1a1f2c;
    margin: 0 0 1.25rem;
}
.pathway-cream-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--brand-700);
}
.pathway-cream-lead {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.75;
    color: rgba(26, 31, 44, 0.7);
    max-width: 36rem;
    margin: 0;
}

/* Stage：上方文档预览 + 下方时间轴 */
.pathway-cream-stage {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vh, 4rem);
}

/* 文档预览区 */
.pathway-cream-preview {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.preview-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 576 / 384;
    box-shadow:
        0 30px 70px -20px rgba(15, 23, 42, 0.18),
        0 12px 30px -12px rgba(15, 23, 42, 0.10),
        inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.preview-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(15, 23, 42, 0.04) 100%);
    pointer-events: none;
}
.preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s var(--ease-smooth);
}
.preview-frame img.is-fading { opacity: 0; }

.preview-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.preview-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-700);
    background: rgba(20, 128, 225, 0.08);
    border: 1px solid rgba(20, 128, 225, 0.18);
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-pill);
    align-self: flex-start;
}
.preview-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
    font-weight: 700;
    color: #1a1f2c;
    margin: 0;
}
.preview-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(26, 31, 44, 0.7);
    margin: 0;
    max-width: 28rem;
}

/* 时间轴 — 横向 */
.pathway-cream-line {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 1.25rem 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    align-items: end;
    border-top: 1px solid rgba(26, 31, 44, 0.12);
    border-bottom: 1px solid rgba(26, 31, 44, 0.12);
}

/* 阶段标签：上排 */
.pcl-phase {
    grid-row: 1;
    font-size: 0.72rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26, 31, 44, 0.5);
    padding: 0.5rem 0 0.5rem 0.85rem;
    border-left: 2px solid var(--brand-500);
    margin-bottom: 0.25rem;
}
.pathway-cream-line > li:nth-child(1) { grid-column: 1 / 4; }   /* 上市前 */
.pathway-cream-line > li:nth-child(5) { grid-column: 4 / 5; }   /* 注册 */
.pathway-cream-line > li:nth-child(7) { grid-column: 5 / 8; }   /* 上市后 */

/* 节点：下排 */
.pcl-node {
    grid-row: 2;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 1.5rem 0.25rem 0.5rem;
    transition: color var(--duration-normal) var(--ease-smooth);
    outline: none;
    color: rgba(26, 31, 44, 0.65);
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.01em;
}
.pathway-cream-line > li:nth-child(2)  { grid-column: 1; }   /* CDP */
.pathway-cream-line > li:nth-child(3)  { grid-column: 2; }   /* CEP */
.pathway-cream-line > li:nth-child(4)  { grid-column: 3; }   /* CER */
.pathway-cream-line > li:nth-child(6)  { grid-column: 4; }   /* 注册递交 */
.pathway-cream-line > li:nth-child(8)  { grid-column: 5; }   /* PMCF */
.pathway-cream-line > li:nth-child(9)  { grid-column: 6; }   /* PMS */
.pathway-cream-line > li:nth-child(10) { grid-column: 7; }   /* PSUR */

.pcl-node .pcl-mark {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(26, 31, 44, 0.32);
    margin: 0 auto 0.6rem;
    transition: background var(--duration-normal) var(--ease-smooth),
                border-color var(--duration-normal) var(--ease-smooth),
                transform var(--duration-normal) var(--ease-spring);
}
.pcl-node .pcl-mark-pivot {
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--brand-700);
    background: var(--brand-700);
    box-shadow: 0 0 0 4px rgba(20, 128, 225, 0.15);
}
.pcl-node .pcl-code {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    transition: color var(--duration-normal) var(--ease-smooth);
}
.pcl-node.is-pivot .pcl-code {
    color: var(--brand-700);
    font-weight: 700;
}

.pcl-node:hover .pcl-mark,
.pcl-node.is-active .pcl-mark {
    background: var(--brand-700);
    border-color: var(--brand-700);
    transform: scale(1.18);
}
.pcl-node:hover .pcl-mark-pivot,
.pcl-node.is-active .pcl-mark-pivot {
    transform: scale(1.16);
    box-shadow: 0 0 0 6px rgba(20, 128, 225, 0.22);
}
.pcl-node:hover,
.pcl-node.is-active {
    color: #1a1f2c;
}
.pcl-node:focus-visible .pcl-mark {
    outline: 2px solid var(--brand-500);
    outline-offset: 4px;
}

/* 响应式：移动端列表化 */
@media (max-width: 1023px) {
    .pathway-cream-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pathway-cream-line {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 1rem 0;
        row-gap: 0.4rem;
    }
    .pathway-cream-line > li:nth-child(n) {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    .pcl-phase {
        margin-top: 0.75rem;
        margin-bottom: 0;
        border-left-width: 3px;
        padding: 0.45rem 0 0.45rem 0.85rem;
    }
    .pcl-node {
        text-align: left;
        padding: 0.5rem 0 0.5rem 1.85rem;
        position: relative;
    }
    .pcl-node .pcl-mark {
        position: absolute;
        left: 0.4rem;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    .pcl-node:hover .pcl-mark,
    .pcl-node.is-active .pcl-mark {
        transform: translateY(-50%) scale(1.18);
    }
    .pcl-node:hover .pcl-mark-pivot,
    .pcl-node.is-active .pcl-mark-pivot {
        transform: translateY(-50%) scale(1.16);
    }
}


/* ============================================================
   3. SECTION (DARK) — 用于 coverage / specialty / final cta
   ============================================================ */
.section-v2 {
    position: relative;
    padding: clamp(5rem, 10vh, 7rem) 1.25rem;
    overflow: hidden;
    isolation: isolate;
}
.section-v2-dark {
    background: #0a0e15;
    color: #fff;
}
.section-v2-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.section-v2-inner {
    width: min(78rem, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-300);
    background: rgba(20, 128, 225, 0.1);
    border: 1px solid rgba(20, 128, 225, 0.3);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.6vw, 2.875rem);
    line-height: 1.12;
    letter-spacing: -0.022em;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: #fff;
    max-width: 30ch;
}
.section-title .hl-grad {
    background: linear-gradient(120deg, var(--brand-300) 0%, #ffffff 60%, var(--brand-200) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.section-lead {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.66);
    margin: 0;
    max-width: 36rem;
}

.section-head {
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
}
.section-head .lead-col { padding-bottom: 0.4rem; }
#coverage .section-head {
    margin-bottom: clamp(1rem, 2.5vh, 1.65rem);
}

@media (max-width: 900px) {
    .section-head { grid-template-columns: 1fr; gap: 1rem; }
    #coverage .section-head { margin-bottom: 1rem; }
}


/* ============================================================
   4. COVERAGE — 大地图 + 巨号数字（保留用户认可的设计）
   ============================================================ */
.coverage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.coverage-map-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse at center, rgba(20, 128, 225, 0.10) 0%, transparent 70%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(0.75rem, 2vw, 1.5rem);
    overflow: hidden;
    aspect-ratio: 1000 / 480;
}
.coverage-map-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.coverage-map {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}
.coverage-map .marker-pulse {
    fill: var(--brand-400);
    opacity: 0.32;
    animation: markerPulse 2.6s var(--ease-smooth) infinite;
    transform-box: fill-box;
    transform-origin: center;
}
@keyframes markerPulse {
    0%   { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(2.5);  opacity: 0;   }
}
.coverage-map .marker-pulse[data-region="europe"]   { fill: var(--accent-europe); }
.coverage-map .marker-pulse[data-region="americas"] { fill: var(--accent-americas); }
.coverage-map .marker-pulse[data-region="mideast"]  { fill: var(--accent-mideast); }
.coverage-map .marker-dot {
    fill: var(--brand-300);
    stroke: #fff;
    stroke-width: 1;
}
.coverage-map .marker-dot[data-region="europe"]   { fill: var(--accent-europe); }
.coverage-map .marker-dot[data-region="americas"] { fill: var(--accent-americas); }
.coverage-map .marker-dot[data-region="mideast"]  { fill: var(--accent-mideast); }

/* 数字列 */
.coverage-numbers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.coverage-num {
    display: grid;
    grid-template-columns: minmax(5rem, auto) 1fr;
    gap: 1.25rem;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: default;
    transition: padding-left var(--duration-normal) var(--ease-spring);
}
.coverage-num:hover { padding-left: 0.5rem; }
.coverage-num-val {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: #fff;
    text-align: right;
}
.coverage-num[data-region="asia"]     .coverage-num-val { background: linear-gradient(135deg, var(--accent-asia), #fff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.coverage-num[data-region="europe"]   .coverage-num-val { background: linear-gradient(135deg, var(--accent-europe), #fff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.coverage-num[data-region="americas"] .coverage-num-val { background: linear-gradient(135deg, var(--accent-americas), #fff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.coverage-num[data-region="mideast"]  .coverage-num-val { background: linear-gradient(135deg, var(--accent-mideast), #fff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.coverage-num-body h4 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: #fff;
    margin: 0 0 0.25rem;
}
.coverage-num-body p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
}

.coverage-disclaimer {
    margin: 1rem 0 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.55;
    max-width: 62rem;
}
.coverage-disclaimer strong { color: rgba(255, 255, 255, 0.62); font-weight: 600; }

@media (max-width: 900px) {
    .coverage-grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* ============================================================
   5. SPECIALTY — 审评发补响应（保留）
   ============================================================ */
.specialty-v2 {
    position: relative;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(20, 128, 225, 0.10) 0%, rgba(20, 128, 225, 0.02) 100%);
    border: 1px solid rgba(20, 128, 225, 0.22);
    padding: clamp(2rem, 5vw, 3.5rem);
    overflow: hidden;
    isolation: isolate;
}
.specialty-v2::before {
    content: "";
    position: absolute;
    inset: -50% -20% auto auto;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 128, 225, 0.32) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
}
.specialty-v2-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.specialty-v2 h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.022em;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #fff;
}
.specialty-v2 p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.66);
    margin: 0 0 1.5rem;
    max-width: 36rem;
}
.specialty-v2 .btn-primary {
    background: var(--brand-500);
    color: #fff;
    border-color: var(--brand-500);
}
.specialty-v2 .btn-primary:hover {
    background: var(--brand-400);
    border-color: var(--brand-400);
}

.specialty-pulse {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 360px;
    margin: 0 auto;
}
.specialty-pulse svg { width: 100%; height: 100%; overflow: visible; }
.specialty-pulse .ring {
    fill: none;
    stroke: rgba(20, 128, 225, 0.32);
    stroke-width: 1;
}
.specialty-pulse .ring-anim {
    fill: none;
    stroke: var(--brand-400);
    stroke-width: 2;
    transform-box: fill-box;
    transform-origin: center;
    animation: ringExpand 3s var(--ease-smooth) infinite;
}
.specialty-pulse .ring-anim.delay-1 { animation-delay: 1s; }
.specialty-pulse .ring-anim.delay-2 { animation-delay: 2s; }
@keyframes ringExpand {
    0%   { transform: scale(0.4); opacity: 0; }
    20%  {                         opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
.specialty-pulse .core {
    fill: var(--brand-500);
    filter: drop-shadow(0 0 24px rgba(20, 128, 225, 0.8));
}
.specialty-pulse .core-text {
    fill: #fff;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: var(--font-bold);
    text-anchor: middle;
    dominant-baseline: middle;
}

@media (max-width: 900px) {
    .specialty-v2-grid { grid-template-columns: 1fr; gap: 2rem; }
    .specialty-pulse { max-width: 240px; }
}


/* ============================================================
   6. FINAL CTA（保留）
   ============================================================ */
.final-cta {
    position: relative;
    padding: clamp(5rem, 12vh, 9rem) 1.25rem;
    background: #0a0e15;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}
.final-cta::before {
    content: "";
    position: absolute;
    inset: -20% 0 -20% 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(20, 128, 225, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(56, 189, 248, 0.16) 0%, transparent 55%);
    filter: blur(60px);
    z-index: 0;
}
.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.final-cta-inner {
    position: relative;
    z-index: 1;
    width: min(48rem, 100%);
    margin: 0 auto;
}
.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #fff;
}
.final-cta h2 .hl-grad {
    background: linear-gradient(120deg, var(--brand-300), #fff, var(--brand-200));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.final-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.66);
    margin: 0 0 2.5rem;
    line-height: 1.7;
}
.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.final-cta .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.6rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.95rem;
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: background var(--duration-normal) var(--ease-smooth),
                transform var(--duration-normal) var(--ease-spring);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
}
.final-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}


/* ============================================================
   全局：减少动效偏好
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-v6-eyebrow,
    .hero-v6-headline,
    .hero-v6-lead,
    .hero-v6-actions,
    .hero-v6-trust,
    .hero-v6-stack,
    .specialty-pulse .ring-anim,
    .coverage-map .marker-pulse,
    .final-cta::before {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   v6 富信息密度 · 编辑感增强（追加层）
   ============================================================ */

/* Hero 整体改为 flex column，承载顶部 meta + 中部 grid + 底部 categories */
.hero-v6 {
    padding: 0 clamp(1.25rem, 5vw, 4rem);
    min-height: clamp(720px, 100vh, 1024px);
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}

/* 极淡背景网格 */
.hero-v6-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* 大型背景"01" */
.hero-v6-bg-num {
    position: absolute;
    left: -2vw;
    bottom: -8vh;
    font-family: var(--font-display);
    font-size: clamp(20rem, 36vw, 32rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.018);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* 顶部 running header */
.hero-v6-meta {
    position: relative;
    z-index: 2;
    /* iPhone 刘海/Safari 地址栏：用 env(safe-area-inset-top) + header 72px 兜底 */
    padding: calc(env(safe-area-inset-top, 0px) + clamp(5.5rem, 11vh, 7rem)) 0 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.65rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.hero-v6-meta .meta-rule {
    height: 1px;
    flex: 1 1 40px;
    min-width: 40px;
    background: linear-gradient(90deg,
        transparent 0%, rgba(255, 255, 255, 0.18) 30%,
        rgba(255, 255, 255, 0.18) 70%, transparent 100%);
}
.hero-v6-meta .meta-mark {
    color: var(--brand-400);
    font-size: 0.7rem;
    line-height: 1;
}
.hero-v6-meta .meta-piece b {
    color: rgba(255, 255, 255, 0.78);
    font-weight: var(--font-semibold);
    letter-spacing: 0.15em;
}
.hero-v6-meta .meta-dot {
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.55rem;
}

/* 主网格调整 */
.hero-v6-grid {
    position: relative;
    z-index: 1;
    flex: 1;
    width: min(80rem, 100%);
    margin: 0 auto;
    padding: clamp(2rem, 4.5vh, 3.5rem) 0;
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

/* 文本列 */
.hero-v6-text {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.8vh, 1.4rem);
}

/* Eyebrow + 编号 tag */
.hero-v6-eyebrow .eb-tag {
    color: rgba(255, 255, 255, 0.32);
    font-weight: var(--font-medium);
    margin-left: 0.4rem;
    letter-spacing: 0.08em;
    text-transform: none;
}

/* H1 多行精排 */
.hero-v6-headline {
    display: flex;
    flex-direction: column;
    gap: 0.04em;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.025em;
}
.hero-v6-headline .line-a { font-weight: 500; color: rgba(255, 255, 255, 0.85); }
.hero-v6-headline .line-b { padding-left: 0.5em; }
.hero-v6-headline .line-c { font-weight: 600; }
.hero-v6-headline .hl-em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(110deg, var(--brand-200) 0%, #fff 50%, var(--brand-200) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-right: 0.06em;
}
.hero-v6-headline .hl-light {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: -0.018em;
}

/* Lead bold inline */
.hero-v6-lead b {
    color: rgba(255, 255, 255, 0.92);
    font-weight: var(--font-semibold);
    letter-spacing: 0.01em;
}

/* Quiet link 箭头 */
.link-quiet .quiet-arr {
    color: var(--brand-300);
    margin-left: 0.2rem;
    transition: transform var(--duration-normal) var(--ease-spring);
    display: inline-block;
}
.link-quiet:hover .quiet-arr { transform: translateY(2px); }

/* Trust 行 — 中英双 caption */
.hero-v6-trust {
    padding: 1.4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.4rem;
    gap: clamp(1.5rem, 4vw, 3rem);
}
.hero-v6-trust .trust-cap {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.74rem;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
    color: inherit;
}
.hero-v6-trust .cap-zh {
    color: rgba(255, 255, 255, 0.55);
    font-weight: var(--font-medium);
    letter-spacing: 0.02em;
}
.hero-v6-trust .cap-en {
    color: rgba(255, 255, 255, 0.32);
    font-weight: var(--font-medium);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.66rem;
}
.hero-v6-trust .trust-num {
    font-variant-numeric: tabular-nums;
}

/* Pull quote */
.hero-v6-quote {
    position: relative;
    margin: 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-left: 2px solid rgba(20, 128, 225, 0.4);
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.74s forwards;
}
.hero-v6-quote .quote-mark {
    position: absolute;
    top: -0.45rem;
    left: -0.1rem;
    font-family: 'Georgia', 'PingFang SC', serif;
    font-size: 2.5rem;
    color: var(--brand-400);
    line-height: 1;
    opacity: 0.55;
    pointer-events: none;
}
.hero-v6-quote .quote-text {
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    font-style: italic;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 0.6rem;
    max-width: 32rem;
    font-weight: var(--font-medium);
}
.hero-v6-quote .quote-text em {
    font-style: italic;
    color: var(--brand-200);
    font-weight: var(--font-bold);
}
.hero-v6-quote .quote-cite {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.66rem;
    font-style: normal;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    font-weight: var(--font-semibold);
}
.hero-v6-quote .cite-rule {
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.32);
}

/* 视觉列容器 */
.hero-v6-visual {
    position: relative;
    perspective: 1600px;
    perspective-origin: 50% 40%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

/* 文档堆顶部 DOCUMENT SET 标签 */
.hero-v6-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.66rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    align-self: flex-end;
    margin-right: 6%;
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.5s forwards;
}
.hero-v6-tag .tag-mark {
    width: 8px;
    height: 8px;
    background: var(--brand-400);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-400);
    color: transparent;
    font-size: 0;
}
.hero-v6-tag .tag-id {
    color: rgba(255, 255, 255, 0.32);
    font-weight: var(--font-medium);
    letter-spacing: 0.08em;
}

/* 文档堆体型微调 */
.hero-v6-stack {
    aspect-ratio: 4 / 3.2;
}

/* 文档元数据列表 */
.hero-v6-doc-meta {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.85s forwards;
}
.hero-v6-doc-meta li {
    display: grid;
    grid-template-columns: 18px 48px 1fr;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 0.78rem;
    line-height: 1.4;
}
.hero-v6-doc-meta .dm-mark {
    color: rgba(20, 128, 225, 0.7);
    font-size: 0.7rem;
    line-height: 1;
    text-align: center;
}
.hero-v6-doc-meta .dm-key {
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    font-size: 0.78rem;
}
.hero-v6-doc-meta .dm-val {
    color: rgba(255, 255, 255, 0.55);
    font-weight: var(--font-medium);
}

/* 底部 categories marquee */
.hero-v6-categories {
    position: relative;
    z-index: 2;
    padding: 1.4rem 0 clamp(2.5rem, 5vh, 4rem);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.hero-v6-categories .cat-label {
    flex-shrink: 0;
    font-size: 0.66rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-300);
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-v6-categories .cat-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: catScroll 60s linear infinite;
    flex-shrink: 0;
}
.hero-v6-categories:hover .cat-track { animation-play-state: paused; }
@keyframes catScroll {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
.hero-v6-categories .cat-piece {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    transition: color var(--duration-normal) var(--ease-smooth);
    cursor: default;
}
.hero-v6-categories .cat-piece:hover { color: #fff; }
.hero-v6-categories .cat-bullet {
    flex-shrink: 0;
    color: var(--brand-400);
    font-size: 0.4rem;
    opacity: 0.7;
}

/* 响应式：移动端简化 */
@media (max-width: 1023px) {
    .hero-v6-bg-num { font-size: clamp(14rem, 30vw, 22rem); }
}
@media (max-width: 640px) {
    .hero-v6 { min-height: auto; }
    .hero-v6-meta {
        padding: calc(env(safe-area-inset-top, 0px) + 5.5rem) 0 0;
        gap: 0.5rem;
        font-size: 0.55rem;
    }
    .hero-v6-meta .meta-rule { display: none; }
    .hero-v6-meta .meta-piece:nth-child(n+8) { display: none; }
    .hero-v6-headline .line-b { padding-left: 0.3em; }
    .hero-v6-trust { gap: 1.25rem; padding: 1rem 0; }
    .hero-v6-trust .trust-num { font-size: 1.2rem; }
    .hero-v6-trust .cap-en { display: none; }
    .hero-v6-categories { padding-bottom: 2.5rem; }
    .hero-v6-bg-num { display: none; }
    .hero-v6-doc-meta { display: none; }
    .hero-v6-tag { display: none; }
}

/* ============================================================
   Pathway 米白扩展（追加层）
   ============================================================ */

/* 顶部 section 编号横条 */
.pathway-cream-marker {
    width: min(78rem, calc(100% - clamp(2.5rem, 10vw, 8rem)));
    margin: 0 auto;
    padding-top: clamp(3rem, 6vh, 4.5rem);
    font-size: 0.66rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(26, 31, 44, 0.4);
    border-bottom: 1px solid rgba(26, 31, 44, 0.1);
    padding-bottom: 0.85rem;
    position: relative;
    z-index: 2;
}
.pathway-cream {
    padding-top: 0;
}
.pathway-cream-inner {
    padding-top: clamp(2.5rem, 5vh, 4rem);
}

/* 头部 2 栏：左侧标题 + 右侧方法学 */
.pathway-cream-head {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    max-width: none;
    align-items: start;
}
.pathway-cream-head .head-main {
    max-width: 32rem;
}
.pathway-cream-head .head-spec {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(26, 31, 44, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1.6rem;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
}
.pathway-cream-head .spec-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-700);
    margin: 0 0 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(26, 31, 44, 0.08);
}
.pathway-cream-head .spec-mark { color: var(--brand-700); font-size: 0.85rem; }
.pathway-cream-head .spec-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.pathway-cream-head .spec-list li {
    display: grid;
    grid-template-columns: minmax(140px, auto) 1fr;
    align-items: baseline;
    gap: 0.85rem;
    font-size: 0.85rem;
    line-height: 1.4;
}
.pathway-cream-head .spec-key {
    font-family: var(--font-display);
    font-weight: 700;
    color: #1a1f2c;
    letter-spacing: -0.005em;
}
.pathway-cream-head .spec-val {
    color: rgba(26, 31, 44, 0.6);
    font-weight: var(--font-medium);
}

@media (max-width: 1023px) {
    .pathway-cream-head { grid-template-columns: 1fr; }
}

/* 文档预览角标 */
.preview-frame .preview-corner-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 0.32rem 0.65rem;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
}

/* 阶段交付物 3 栏 */
.pathway-cream-deliverables {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    padding: clamp(1.75rem, 4vh, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 3vh, 2rem);
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(26, 31, 44, 0.08);
    border-radius: 16px;
}
.pathway-cream-deliverables .del-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.pathway-cream-deliverables .del-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(26, 31, 44, 0.16);
    line-height: 1;
    letter-spacing: -0.02em;
}
.pathway-cream-deliverables .del-phase {
    font-size: 0.7rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-700);
    margin-bottom: 0.4rem;
}
.pathway-cream-deliverables .del-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
}
.pathway-cream-deliverables .del-list li {
    font-size: 0.83rem;
    color: rgba(26, 31, 44, 0.66);
    line-height: 1.45;
    position: relative;
    padding-left: 1rem;
}
.pathway-cream-deliverables .del-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: rgba(20, 128, 225, 0.5);
    font-weight: 700;
}
.pathway-cream-deliverables .del-list li b {
    color: #1a1f2c;
    font-weight: var(--font-bold);
    margin-right: 0.3em;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}
.pathway-cream-deliverables .del-divider {
    background: rgba(26, 31, 44, 0.1);
    height: auto;
    align-self: stretch;
}

@media (max-width: 1023px) {
    .pathway-cream-deliverables {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    .pathway-cream-deliverables .del-divider {
        height: 1px;
        width: 100%;
    }
}

/* ============================================================
   PATHWAY v7 — 暗色编辑感 (替代 cream 主题)
   ============================================================ */
.pathway-v7 {
    background: #0a0e15;
    color: #fff;
    padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(5rem, 12vh, 8rem);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.pathway-v7::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* 顶部 section marker */
.pathway-v7-marker {
    position: relative;
    z-index: 1;
    width: min(80rem, 100%);
    margin: 0 auto;
    padding: clamp(3rem, 7vh, 5rem) 0 clamp(1.5rem, 3vh, 2rem);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.65rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.36);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.pathway-v7-marker .pv7-mk-rule {
    height: 1px;
    flex: 0 1 60px;
    min-width: 24px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
}
.pathway-v7-marker > span:not(.pv7-mk-rule):first-child {
    color: var(--brand-300);
}

.pathway-v7-inner {
    position: relative;
    z-index: 1;
    width: min(80rem, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vh, 4rem);
}

/* 头部 */
.pathway-v7-head {
    max-width: 64rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pathway-v7-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-300);
}
.pathway-v7-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.022em;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.pathway-v7-title em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(110deg, var(--brand-200) 0%, #fff 50%, var(--brand-200) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.pathway-v7-lead {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 38rem;
}

/* 方法学：横向 chip 列表 */
.pathway-v7-spec {
    list-style: none;
    margin: 1rem 0 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.pathway-v7-spec li {
    position: relative;
    padding: 0 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}
.pathway-v7-spec li:first-child {
    padding-left: 0;
    border-left: none;
}
.pathway-v7-spec .spec-rule {
    width: 18px;
    height: 1px;
    background: var(--brand-400);
    margin-bottom: 0.4rem;
}
.pathway-v7-spec b {
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}
.pathway-v7-spec span:last-child {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--font-medium);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .pathway-v7-spec { grid-template-columns: 1fr 1fr; gap: 1.25rem 0; }
    .pathway-v7-spec li:nth-child(odd) { padding-left: 0; border-left: none; }
}
@media (max-width: 480px) {
    .pathway-v7-spec { grid-template-columns: 1fr; }
    .pathway-v7-spec li { padding: 0; border-left: none; }
}

/* Stage：preview + timeline */
.pathway-v7-stage {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vh, 4rem);
}

/* 预览区 */
.pathway-v7-preview {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.pathway-v7-preview .preview-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 576 / 384;
    box-shadow:
        0 30px 80px -15px rgba(0, 0, 0, 0.55),
        0 12px 30px -10px rgba(0, 0, 0, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.pathway-v7-preview .preview-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(15, 23, 42, 0.04) 100%);
    pointer-events: none;
}
.pathway-v7-preview .preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s var(--ease-smooth);
}
.pathway-v7-preview .preview-frame img.is-fading { opacity: 0; }
.pathway-v7-preview .preview-corner-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 0.32rem 0.65rem;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.pathway-v7-preview .preview-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pathway-v7-preview .preview-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-300);
    background: rgba(20, 128, 225, 0.1);
    border: 1px solid rgba(20, 128, 225, 0.28);
    padding: 0.36rem 0.7rem;
    border-radius: var(--radius-pill);
    align-self: flex-start;
}
.pathway-v7-preview .preview-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.pathway-v7-preview .preview-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 28rem;
}

@media (max-width: 1023px) {
    .pathway-v7-preview { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* 时间轴 */
.pathway-v7-line {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 1.25rem 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    align-items: end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pathway-v7-line .pcl-phase {
    grid-row: 1;
    font-size: 0.72rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0 0.5rem 0.85rem;
    border-left: 2px solid var(--brand-400);
    margin-bottom: 0.25rem;
}
.pathway-v7-line > li:nth-child(1) { grid-column: 1 / 4; }
.pathway-v7-line > li:nth-child(5) { grid-column: 4 / 5; }
.pathway-v7-line > li:nth-child(7) { grid-column: 5 / 8; }

.pathway-v7-line .pcl-node {
    grid-row: 2;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 1.5rem 0.25rem 0.5rem;
    transition: color var(--duration-normal) var(--ease-smooth);
    outline: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.01em;
}
.pathway-v7-line > li:nth-child(2)  { grid-column: 1; }
.pathway-v7-line > li:nth-child(3)  { grid-column: 2; }
.pathway-v7-line > li:nth-child(4)  { grid-column: 3; }
.pathway-v7-line > li:nth-child(6)  { grid-column: 4; }
.pathway-v7-line > li:nth-child(8)  { grid-column: 5; }
.pathway-v7-line > li:nth-child(9)  { grid-column: 6; }
.pathway-v7-line > li:nth-child(10) { grid-column: 7; }

.pathway-v7-line .pcl-mark {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(10, 14, 21, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.36);
    margin: 0 auto 0.6rem;
    transition: background var(--duration-normal) var(--ease-smooth),
                border-color var(--duration-normal) var(--ease-smooth),
                transform var(--duration-normal) var(--ease-spring);
}
.pathway-v7-line .pcl-mark-pivot {
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--brand-400);
    background: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(20, 128, 225, 0.18);
}
.pathway-v7-line .pcl-code {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    transition: color var(--duration-normal) var(--ease-smooth);
}
.pathway-v7-line .pcl-node.is-pivot .pcl-code {
    color: var(--brand-200);
    font-weight: 700;
}

.pathway-v7-line .pcl-node:hover .pcl-mark,
.pathway-v7-line .pcl-node.is-active .pcl-mark {
    background: var(--brand-400);
    border-color: var(--brand-400);
    transform: scale(1.18);
    box-shadow: 0 0 16px rgba(58, 158, 245, 0.5);
}
.pathway-v7-line .pcl-node:hover .pcl-mark-pivot,
.pathway-v7-line .pcl-node.is-active .pcl-mark-pivot {
    transform: scale(1.16);
    box-shadow: 0 0 0 6px rgba(20, 128, 225, 0.28), 0 0 18px rgba(20, 128, 225, 0.4);
}
.pathway-v7-line .pcl-node:hover,
.pathway-v7-line .pcl-node.is-active {
    color: #fff;
}
.pathway-v7-line .pcl-node:focus-visible .pcl-mark {
    outline: 2px solid var(--brand-400);
    outline-offset: 4px;
}

@media (max-width: 1023px) {
    .pathway-v7-line {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 1rem 0;
        row-gap: 0.4rem;
    }
    .pathway-v7-line > li:nth-child(n) {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    .pathway-v7-line .pcl-phase {
        margin-top: 0.75rem;
        margin-bottom: 0;
        border-left-width: 3px;
        padding: 0.45rem 0 0.45rem 0.85rem;
    }
    .pathway-v7-line .pcl-node {
        text-align: left;
        padding: 0.5rem 0 0.5rem 1.85rem;
        position: relative;
    }
    .pathway-v7-line .pcl-mark {
        position: absolute;
        left: 0.4rem;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    .pathway-v7-line .pcl-node:hover .pcl-mark,
    .pathway-v7-line .pcl-node.is-active .pcl-mark {
        transform: translateY(-50%) scale(1.18);
    }
    .pathway-v7-line .pcl-node:hover .pcl-mark-pivot,
    .pathway-v7-line .pcl-node.is-active .pcl-mark-pivot {
        transform: translateY(-50%) scale(1.16);
    }
}


/* ---------- Hero quote with founder portrait ---------- */
.hero-v6-quote-with-portrait {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.1rem;
    align-items: start;
    padding-left: 0;
    border-left: none;
    margin-top: 0.4rem;
}
.hero-v6-quote-with-portrait .quote-portrait {
    width: 64px;
    height: 80px;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}
.hero-v6-quote-with-portrait .quote-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: contrast(1.05) saturate(0.95);
}
.hero-v6-quote-with-portrait .quote-body {
    position: relative;
    padding: 0.4rem 0 0 0.85rem;
    border-left: 2px solid rgba(20, 128, 225, 0.4);
}
.hero-v6-quote-with-portrait .quote-mark {
    position: absolute;
    top: -0.6rem;
    left: 0.45rem;
    font-family: 'Georgia', 'PingFang SC', serif;
    font-size: 2.2rem;
    color: var(--brand-400);
    line-height: 1;
    opacity: 0.55;
    pointer-events: none;
}
.hero-v6-quote-with-portrait .quote-cite {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-size: 0.66rem;
    font-style: normal;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: var(--font-bold);
}
.hero-v6-quote-with-portrait .cite-name {
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.16em;
}
.hero-v6-quote-with-portrait .cite-role {
    color: rgba(255, 255, 255, 0.42);
    font-weight: var(--font-medium);
}
.hero-v6-quote-with-portrait .cite-rule {
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, 0.32);
}

/* ---------- 国旗 frame（替代 doc-frame 用 cover） ---------- */
.doc-card .doc-frame-flag {
    aspect-ratio: 16 / 9;
    background: #0a0e15;
    position: relative;
}
.doc-card .doc-frame-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.92) contrast(1.05);
}
.doc-card .doc-frame-flag .flag-overlay-mark {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    padding: 0.28rem 0.55rem;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
}

/* 调整文档堆容器比例，因为现在内容是宽幅的国旗 */
.hero-v6-stack {
    aspect-ratio: 4 / 3.6;
}
.doc-back  { top: 18%; transform: rotate(5deg)  translate3d(8%, 4%, -60px); }
.doc-mid   { top: 9%;  transform: rotate(-2deg) translate3d(-2%, 0, -25px); }
.doc-front { top: 0;   transform: rotate(-1.2deg); }

/* ---------- Mobile pathway 重构：杜绝 phase / node 重合 ---------- */
@media (max-width: 1023px) {
    .pathway-v7-line {
        display: block !important;
        padding: 0.5rem 0 1.5rem !important;
        border-top: none !important;
        border-bottom: none !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    .pathway-v7-line > li {
        display: block !important;
        grid-column: unset !important;
        grid-row: unset !important;
        position: relative;
        margin: 0 !important;
        padding: 0;
    }
    /* 阶段 = 段落标题，强分隔 */
    .pathway-v7-line .pcl-phase {
        margin: 1.5rem 0 0.5rem !important;
        padding: 0.85rem 0 0.75rem 0.95rem !important;
        font-size: 0.68rem !important;
        letter-spacing: 0.2em !important;
        border-left: 3px solid var(--brand-400) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(90deg, rgba(20, 128, 225, 0.06) 0%, transparent 60%);
        color: var(--brand-200) !important;
    }
    .pathway-v7-line > li:first-child.pcl-phase {
        margin-top: 0.5rem !important;
        border-top: none !important;
    }
    /* 节点 = 列表项，clear 间距 */
    .pathway-v7-line .pcl-node {
        padding: 0.75rem 0 0.75rem 2.5rem !important;
        text-align: left !important;
        font-size: 0.95rem !important;
        line-height: 1.5;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .pathway-v7-line .pcl-node:last-child {
        border-bottom: none;
    }
    .pathway-v7-line .pcl-mark {
        position: absolute !important;
        left: 1rem !important;
        top: 1.1rem !important;
        margin: 0 !important;
        transform: none !important;
    }
    .pathway-v7-line .pcl-mark-pivot {
        left: 0.85rem !important;
        top: 1rem !important;
    }
    .pathway-v7-line .pcl-node:hover .pcl-mark,
    .pathway-v7-line .pcl-node.is-active .pcl-mark {
        transform: scale(1.18) !important;
    }
    .pathway-v7-line .pcl-node:hover .pcl-mark-pivot,
    .pathway-v7-line .pcl-node.is-active .pcl-mark-pivot {
        transform: scale(1.16) !important;
    }
    .pathway-v7-line .pcl-code {
        display: inline-block;
        font-size: 0.92rem;
        font-weight: 700;
    }
}

/* Hero 视觉列移动端 — quote 和 portrait 重排 */
@media (max-width: 640px) {
    .hero-v6-quote-with-portrait {
        grid-template-columns: 56px 1fr;
        gap: 0.85rem;
    }
    .hero-v6-quote-with-portrait .quote-portrait {
        width: 56px;
        height: 70px;
    }
    .hero-v6-quote-with-portrait .quote-cite {
        font-size: 0.6rem;
    }
    .hero-v6-quote-with-portrait .cite-rule {
        display: none;
    }
}

/* ---------- 桌面 nav 链接：在彩色按钮旁更清晰 ---------- */
.home-template .site-nav-desktop .site-nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.92rem;
    font-weight: 500;
}


/* ============================================================
   v8 重做：HERO 紧凑居中 + PATHWAY 嵌套阶段卡 (2026-05-01)
   ============================================================ */

/* 隐藏旧版结构（防止任何遗留） */
.hero-v6, .pathway-v7, .pathway-cream { display: none !important; }

/* ========== HERO v8 ========== */
.hero-v8 {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: #0a0e15;
    padding: 0 clamp(1.25rem, 5vw, 4rem);
    min-height: clamp(640px, 88vh, 880px);
    display: flex;
    flex-direction: column;
}
.hero-v8-glow {
    position: absolute;
    inset: auto -8% -25% auto;
    width: 50vw;
    max-width: 700px;
    height: 50vw;
    max-height: 700px;
    background: radial-gradient(circle at 50% 50%, rgba(20,128,225,0.18) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}
.hero-v8-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.hero-v8-meta {
    position: relative;
    z-index: 2;
    padding: calc(env(safe-area-inset-top, 0px) + clamp(5rem, 9vh, 6rem)) 0 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.36);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.hero-v8-meta .meta-rule {
    height: 1px;
    flex: 1 1 40px;
    min-width: 40px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 30%, rgba(255,255,255,0.18) 70%, transparent 100%);
}
.hero-v8-meta .meta-mark { color: var(--brand-400); font-size: 0.7rem; line-height: 1; }
.hero-v8-meta .meta-piece b { color: rgba(255,255,255,0.78); font-weight: 600; letter-spacing: 0.15em; }
.hero-v8-meta .meta-dot { color: rgba(255,255,255,0.22); font-size: 0.55rem; }

.hero-v8-content {
    position: relative;
    z-index: 1;
    flex: 1;
    width: min(64rem, 100%);
    margin: 0 auto;
    padding: clamp(2rem, 5vh, 3.5rem) 0 clamp(2rem, 4vh, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: clamp(1rem, 2vh, 1.6rem);
}

.hero-v8-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    opacity: 0;
    animation: heroFade 0.9s var(--ease-spring) 0.05s forwards;
}
.hero-v8-eyebrow .rule { width: 32px; height: 1px; background: var(--brand-400); flex-shrink: 0; }
.hero-v8-eyebrow .eb-tag {
    color: rgba(255,255,255,0.32);
    margin-left: 0.4rem;
    letter-spacing: 0.08em;
    text-transform: none;
    font-weight: 500;
}

.hero-v8-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 600;
    color: #fff;
    margin: 0;
    max-width: 18ch;
    display: flex;
    flex-direction: column;
    gap: 0.04em;
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.18s forwards;
}
.hero-v8-headline-simple {
    max-width: 12ch;
    gap: 0.01em;
}
.hero-v8-headline .line-a { font-weight: 500; color: rgba(255,255,255,0.85); }
.hero-v8-headline .line-c { font-weight: 600; }
.hero-v8-headline .hl-em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(110deg, var(--brand-200) 0%, #fff 50%, var(--brand-200) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-v8-headline .hl-light { font-weight: 400; color: rgba(255,255,255,0.72); }

.hero-v8-lead {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
    margin: 0;
    max-width: 36rem;
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.32s forwards;
}
.hero-v8-lead b { color: rgba(255,255,255,0.92); font-weight: 600; }

.hero-v8-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.46s forwards;
}

/* Footer 横向信息条 */
.hero-v8-footer {
    position: relative;
    z-index: 1;
    width: min(80rem, 100%);
    margin: 0 auto;
    padding: clamp(1.25rem, 2.5vh, 2rem) 0 clamp(2rem, 4vh, 2.5rem);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.72fr) minmax(0, 1.65fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
    opacity: 0;
    animation: heroFade 0.95s var(--ease-spring) 0.6s forwards;
}

.hv8-founder {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: center;
}
.hv8-portrait {
    width: 56px;
    height: 70px;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    flex-shrink: 0;
}
.hv8-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: contrast(1.05) saturate(0.95);
}
.hv8-quote {
    font-size: 0.88rem;
    font-style: italic;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    margin: 0 0 0.45rem;
    font-weight: 500;
}
.hv8-quote em {
    font-style: italic;
    color: var(--brand-200);
    font-weight: 700;
}
.hv8-cite {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

.hv8-stats {
    display: flex;
    gap: 1.4rem;
    align-items: baseline;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 1.5rem;
}
.hv8-stat {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    align-items: flex-start;
}
.hv8-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.hv8-stat-cap {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.2;
    font-weight: 500;
}
.hv8-stat-cap .en {
    color: rgba(255,255,255,0.32);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hv8-regs {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.hv8-regs-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-300);
}
.hv8-regs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}
.hv8-regs-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
}
.hv8-regs-list li em {
    margin-left: auto;
    font-style: normal;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.36);
    font-weight: 700;
}
.hv8-reg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px currentColor;
}
.hv8-reg-dot.d-eu { background: #fbbf24; color: #fbbf24; }
.hv8-reg-dot.d-us { background: #ef4444; color: #ef4444; }
.hv8-reg-dot.d-cn { background: #dc2626; color: #dc2626; }
.hv8-reg-dot.d-other { background: var(--brand-400); color: var(--brand-400); }

.hv8-products {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    overflow: hidden;
}
.hv8-market-flags {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 18rem;
    flex: 0 0 18rem;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 1.4rem;
}
.hv8-market-label,
.hv8-products-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-300);
}
.hv8-flag-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}
.hv8-flag-chip {
    display: inline-grid;
    grid-template-columns: 34px auto;
    grid-template-rows: auto auto;
    column-gap: 0.48rem;
    align-items: center;
    color: rgba(255,255,255,0.86);
    line-height: 1.05;
    min-width: 4.8rem;
    white-space: nowrap;
}
.hv8-flag-chip b {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.hv8-flag-chip em {
    grid-column: 2;
    font-size: 0.58rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    white-space: nowrap;
}
.hv8-flag {
    grid-row: 1 / span 2;
    position: relative;
    display: block;
    width: 34px;
    height: 22px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.16), 0 8px 18px rgba(0,0,0,0.24);
}
.hv8-flag-eu {
    background:
        radial-gradient(circle, #ffd84d 0 1.5px, transparent 1.7px) 17px 3.5px / 6px 6px,
        #1d4ed8;
}
.hv8-flag-us {
    background: repeating-linear-gradient(180deg, #b91c1c 0 2px, #fff 2px 4px);
}
.hv8-flag-us::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 12px;
    background: #1e3a8a;
}
.hv8-flag-cn {
    background: #dc2626;
}
.hv8-flag-cn::before {
    content: "★";
    position: absolute;
    left: 4px;
    top: 1px;
    color: #fde047;
    font-size: 8px;
    line-height: 1;
}
.hv8-product-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.hv8-product-track {
    display: flex;
    width: max-content;
    animation: hv8ProductScroll 46s linear infinite;
}
.hv8-product-marquee:hover .hv8-product-track {
    animation-play-state: paused;
}
.hv8-product-group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    padding-right: 1.35rem;
}
.hv8-product-group span {
    position: relative;
    white-space: nowrap;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    line-height: 1.35;
}
.hv8-product-group span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 0.48rem;
    border-radius: 50%;
    background: var(--brand-400);
    box-shadow: 0 0 10px rgba(125, 211, 252, 0.55);
    vertical-align: 0.08em;
}
.hv8-product-group b {
    color: rgba(255,255,255,0.9);
    font-weight: 700;
}
@keyframes hv8ProductScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .hero-v8-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0 2rem;
    }
    .hv8-market-flags {
        min-width: 0;
        flex-basis: auto;
        width: 100%;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1rem 0;
    }
    .hv8-stats {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1rem 0;
        justify-content: space-between;
    }
}
@media (max-width: 640px) {
    .hero-v8 { min-height: auto; padding-bottom: 0.5rem; }
    .hero-v8-meta {
        padding: calc(env(safe-area-inset-top, 0px) + 4.5rem) 0 0;
        gap: 0.5rem;
        font-size: 0.55rem;
    }
    .hero-v8-meta .meta-rule { display: none; }
    .hero-v8-meta .meta-piece:nth-child(n+8) { display: none; }
    .hero-v8-headline { font-size: clamp(2rem, 9vw, 2.8rem); }
    .hv8-flag-row { gap: .55rem; }
    .hv8-flag-chip { grid-template-columns: 28px auto; min-width: 4.1rem; column-gap: .38rem; }
    .hv8-flag { width: 28px; height: 18px; }
    .hv8-flag-chip b { font-size: .72rem; }
    .hv8-flag-chip em { font-size: .5rem; letter-spacing: .08em; }
    .hv8-portrait { width: 48px; height: 60px; }
    .hv8-stats { padding: 0.85rem 0; gap: 0.85rem; }
    .hv8-stat-num { font-size: 1.3rem; }
    .hv8-stat-cap .en { display: none; }
    .hv8-regs-list li em { display: none; }
}

/* ========== PATHWAY v8 ========== */
.pathway-v8 {
    background: #0a0e15;
    color: #fff;
    padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(4rem, 8vh, 5rem);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.pathway-v8::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.pv8-marker {
    position: relative;
    z-index: 1;
    width: min(80rem, 100%);
    margin: 0 auto clamp(2rem, 4vh, 3rem);
    padding: clamp(2.5rem, 5vh, 3.5rem) 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.36);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pv8-marker .pv8-mk-rule {
    height: 1px;
    flex: 0 1 60px;
    min-width: 24px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
}
.pv8-marker > span:not(.pv8-mk-rule):first-child { color: var(--brand-300); }

.pv8-inner {
    position: relative;
    z-index: 1;
    width: min(80rem, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vh, 3rem);
}

.pv8-head {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: end;
}
.pv8-head-main { display: flex; flex-direction: column; gap: 0.85rem; max-width: 36rem; }
.pv8-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-300);
}
.pv8-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.6vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.022em;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.pv8-title em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(110deg, var(--brand-200) 0%, #fff 50%, var(--brand-200) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.pv8-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 36rem;
}

.pv8-spec {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1.25rem;
}
.pv8-spec li {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    line-height: 1.4;
    padding-left: 0.75rem;
    border-left: 2px solid var(--brand-500);
}
.pv8-spec b {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}
.pv8-spec span {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-weight: 500;
}

@media (max-width: 1023px) {
    .pv8-head { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
}
@media (max-width: 480px) {
    .pv8-spec { grid-template-columns: 1fr; }
}

/* Stage: preview (left) + phase cards (right) */
.pv8-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.pv8-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}
.pv8-preview .preview-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 576 / 384;
    box-shadow:
        0 24px 60px -15px rgba(0,0,0,0.55),
        0 8px 24px -10px rgba(0,0,0,0.32),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}
.pv8-preview .preview-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(15,23,42,0.04) 100%);
    pointer-events: none;
}
.pv8-preview .preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}
.pv8-preview .preview-frame img.is-fading { opacity: 0; }
.pv8-preview .preview-corner-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 0.32rem 0.65rem;
    background: rgba(15,23,42,0.85);
    color: #fff;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.pv8-preview .preview-meta { display: flex; flex-direction: column; gap: 0.6rem; padding: 0.4rem 0; }
.pv8-preview .preview-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-300);
    background: rgba(20,128,225,0.1);
    border: 1px solid rgba(20,128,225,0.28);
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    align-self: flex-start;
}
.pv8-preview .preview-name {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.pv8-preview .preview-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 28rem;
}

/* Phases — 3 cards */
.pv8-phases { display: flex; flex-direction: column; gap: 1rem; }

.pv8-phase {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.pv8-phase:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(20,128,225,0.32);
}
.pv8-phase-pivot {
    background: linear-gradient(135deg, rgba(20,128,225,0.1) 0%, rgba(20,128,225,0.03) 100%);
    border-color: rgba(20,128,225,0.32);
}

.pv8-phase-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: baseline;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pv8-phase-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.18);
    letter-spacing: -0.02em;
    line-height: 1;
}
.pv8-phase-pivot .pv8-phase-num { color: var(--brand-300); }
.pv8-phase-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}
.pv8-phase-time {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-300);
    background: rgba(20,128,225,0.1);
    border: 1px solid rgba(20,128,225,0.22);
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pv8-phase-nodes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.3rem; }

.pv8-node {
    display: grid;
    grid-template-columns: 14px 70px 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.55rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, padding 0.2s ease;
    outline: none;
}
.pv8-node:hover, .pv8-node.is-active {
    background: rgba(20,128,225,0.08);
    padding-left: 0.85rem;
}
.pv8-node:focus-visible {
    background: rgba(20,128,225,0.12);
    outline: 1px solid var(--brand-400);
}

.pv8-mark {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(10,14,21,0.8);
    border: 2px solid rgba(255,255,255,0.36);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.pv8-mark-pivot {
    width: 14px;
    height: 14px;
    border: 2.5px solid var(--brand-400);
    background: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(20,128,225,0.18);
}
.pv8-node:hover .pv8-mark, .pv8-node.is-active .pv8-mark {
    background: var(--brand-400);
    border-color: var(--brand-400);
    transform: scale(1.18);
    box-shadow: 0 0 12px rgba(58,158,245,0.5);
}
.pv8-node:hover .pv8-mark-pivot, .pv8-node.is-active .pv8-mark-pivot {
    transform: scale(1.16);
    box-shadow: 0 0 0 5px rgba(20,128,225,0.28), 0 0 14px rgba(20,128,225,0.4);
}
.pv8-code {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.01em;
}
.pv8-node.is-pivot .pv8-code { color: var(--brand-200); }
.pv8-name {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

@media (max-width: 1023px) {
    .pv8-stage { grid-template-columns: 1fr; gap: 1.5rem; }
    .pv8-preview { position: static; }
}
@media (max-width: 640px) {
    .pv8-marker > span:nth-child(n+4) { display: none; }
    .pv8-phase { padding: 1rem 1.1rem; }
    .pv8-phase-head { grid-template-columns: auto 1fr; row-gap: 0.4rem; }
    .pv8-phase-time { grid-column: 1 / -1; justify-self: flex-start; margin-top: 0.2rem; }
    .pv8-node { grid-template-columns: 12px 56px 1fr; gap: 0.55rem; padding: 0.5rem 0.4rem; }
    .pv8-name { font-size: 0.78rem; }
    .pv8-code { font-size: 0.88rem; }
}

/* ============================================================
   LIFECYCLE WHEEL — replaces long pathway cards
   ============================================================ */
.lifecycle-wheel-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(circle at 18% 12%, rgba(20, 128, 225, 0.12) 0%, rgba(20, 128, 225, 0) 32%),
        linear-gradient(180deg, #0a0e15 0%, #0b111a 100%);
    padding: clamp(2.6rem, 5vh, 3.8rem) clamp(1.25rem, 5vw, 4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lifecycle-wheel-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}
.lc-section-marker {
    width: min(80rem, 100%);
    margin: 0 auto 0.7rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(125, 211, 252, 0.9);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.lc-marker-rule {
    width: 58px;
    height: 1px;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.72), rgba(125, 211, 252, 0));
}
.lc-inner {
    width: min(80rem, 100%);
    margin: 0 auto;
}
.lc-head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.85fr);
    align-items: end;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 0.65rem;
}
.lc-eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--brand-300);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.lc-title {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.7vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 500;
}
.lc-title em {
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(115deg, #fff 0%, #7dd3fc 58%, #1480e1 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.lc-lead {
    margin: 0;
    max-width: 31rem;
    color: rgba(255,255,255,0.62);
    font-size: 1.02rem;
    line-height: 1.78;
}
.lc-method-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin-bottom: clamp(0.9rem, 2vh, 1.25rem);
    color: rgba(255,255,255,0.56);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.lc-method-line span {
    position: relative;
    padding-left: 0.85rem;
}
.lc-method-line span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-400);
    transform: translateY(-50%);
    box-shadow: 0 0 12px rgba(125, 211, 252, 0.5);
}
.lc-workbench {
    display: grid;
    grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(1.4rem, 4vw, 3rem);
    min-height: 380px;
}
.lc-wheel-wrap {
    position: relative;
    min-width: 0;
}
.lc-wheel {
    display: block;
    width: min(440px, 100%);
    margin: 0 auto;
    overflow: visible;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.35));
}
.lc-orbit {
    fill: none;
    stroke: rgba(255,255,255,0.09);
    stroke-width: 1;
}
.lc-orbit-b {
    stroke-dasharray: 4 11;
    stroke: rgba(125, 211, 252, 0.2);
}
.lc-wheel-segment {
    cursor: pointer;
    outline: none;
}
.lc-wheel-segment path {
    fill: rgba(20, 128, 225, 0.075);
    stroke: rgba(255,255,255,0.2);
    stroke-width: 1.5;
    transition: fill 0.28s ease, stroke 0.28s ease, filter 0.28s ease;
}
.lc-wheel-segment text {
    fill: rgba(255,255,255,0.68);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
    transition: fill 0.28s ease;
}
.lc-wheel-segment:hover path,
.lc-wheel-segment:focus-visible path,
.lc-wheel-segment.is-active path {
    fill: url(#lcSegmentActive);
    stroke: rgba(255,255,255,0.56);
    filter: drop-shadow(0 0 18px rgba(20,128,225,0.4));
}
.lc-wheel-segment:hover text,
.lc-wheel-segment:focus-visible text,
.lc-wheel-segment.is-active text {
    fill: #fff;
}
.lc-hub-core {
    fill: rgba(10,14,21,0.94);
    stroke: rgba(125,211,252,0.45);
    stroke-width: 1.5;
}
.lc-hub-text {
    fill: rgba(255,255,255,0.78);
    font-size: 20px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: middle;
    letter-spacing: 0.02em;
}
.lc-hub-text-strong {
    fill: #fff;
    font-size: 22px;
}
.lc-wheel-hint {
    margin: -0.4rem 0 0;
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}
.lc-document-pane {
    min-width: 0;
    padding-left: clamp(1.2rem, 3vw, 2.2rem);
    border-left: 1px solid rgba(255,255,255,0.12);
}
.lc-document-meta {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
}
.lc-document-meta span {
    color: var(--brand-300);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.lc-document-meta h3 {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.035em;
}
.lc-document-meta p {
    margin: 0;
    max-width: 39rem;
    color: rgba(255,255,255,0.58);
    font-size: 0.96rem;
    line-height: 1.72;
}
.lc-document-sheet {
    margin: 0;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.65rem 0 0;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
}
.lc-document-sheet img {
    display: block;
    max-width: 100%;
    max-height: 290px;
    object-fit: contain;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.lc-document-sheet img.is-fading {
    opacity: 0;
    transform: translateY(6px);
}

@media (max-width: 899px) {
    body.home-template .hero-v8 {
        min-height: auto !important;
    }
    body.home-template .hero-v8-content {
        flex: 0 0 auto !important;
        justify-content: flex-start !important;
        padding-top: clamp(8.8rem, 30vw, 10.2rem) !important;
        padding-bottom: clamp(0.85rem, 3vh, 1.4rem) !important;
        gap: clamp(0.65rem, 1.7vh, 0.95rem) !important;
    }
    body.home-template .hero-v8-headline {
        font-size: clamp(2.3rem, 11.8vw, 3.25rem) !important;
        line-height: 1.06 !important;
    }
    body.home-template .hero-v8-lead {
        font-size: clamp(1rem, 4.3vw, 1.18rem) !important;
    }
    .lifecycle-wheel-section {
        padding: 1.8rem 1.15rem 2.3rem;
    }
    .lc-section-marker {
        margin-bottom: 0.85rem;
        gap: 0.7rem;
    }
    .lc-head {
        display: block;
        margin-bottom: 1rem;
    }
    .lc-title {
        font-size: clamp(1.7rem, 7.6vw, 2.5rem);
        line-height: 1.06;
        letter-spacing: -0.03em;
    }
    .lc-lead {
        margin-top: 0.85rem;
        font-size: 0.96rem;
    }
    .lc-method-line {
        gap: 0.45rem 0.8rem;
        margin-bottom: 1.2rem;
        font-size: 0.63rem;
        letter-spacing: 0.08em;
    }
    .lc-workbench {
        display: block;
        min-height: 0;
    }
    .lc-wheel {
        width: min(306px, 90vw);
    }
    .lc-wheel-segment text {
        font-size: 17px;
    }
    .lc-wheel-hint {
        margin-top: -0.55rem;
        font-size: 0.74rem;
    }
    .lc-document-pane {
        margin-top: 1rem;
        padding-left: 0;
        border-left: 0;
    }
    .lc-document-meta {
        margin-bottom: 0.8rem;
    }
    .lc-document-meta h3 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
    }
    .lc-document-meta p {
        font-size: 0.9rem;
        line-height: 1.62;
    }
    .lc-document-sheet {
        display: none;
    }
    body.home-template .site-floating-actions {
        display: none !important;
    }
}

@media (min-width: 901px) {
    body.home-template .hero-v8 {
        min-height: auto !important;
        padding-bottom: 0 !important;
    }
    body.home-template .hero-v8-content {
        flex: 0 0 auto !important;
        padding-top: clamp(7.2rem, 13vh, 8.4rem) !important;
        padding-bottom: clamp(0.35rem, 0.8vh, 0.6rem) !important;
        gap: clamp(0.65rem, 1.2vh, 0.95rem) !important;
    }
    body.home-template .hero-v8-footer {
        padding: clamp(0.5rem, 1vh, 0.75rem) 0 clamp(0.35rem, 0.8vh, 0.55rem) !important;
    }
    body.home-template .lifecycle-wheel-section {
        padding-top: clamp(0.9rem, 1.8vh, 1.3rem) !important;
        padding-bottom: clamp(2rem, 4vh, 3rem) !important;
    }
}

@media (min-width: 900px) {
    html body.home-template header.site-header-shell .site-header-row {
        min-height: 86px !important;
    }
    html body.home-template header.site-header-shell .site-brand-link {
        height: 82px !important;
    }
    html body.home-template header.site-header-shell .site-brand-stack {
        gap: 0.62rem !important;
        align-items: center !important;
    }
    html body.home-template header.site-header-shell .site-brand-icon {
        width: 78px !important;
        height: 78px !important;
        max-width: 78px !important;
        max-height: 78px !important;
        opacity: 1 !important;
        filter: brightness(0) invert(1) contrast(1.12) !important;
        image-rendering: auto;
        transform: translate(6px, -3px) translateZ(0);
    }
    html body.home-template header.site-header-shell .site-brand-name {
        height: 48px !important;
        max-height: 48px !important;
        opacity: 1 !important;
        filter: brightness(0) invert(1) contrast(1.08) !important;
        image-rendering: auto;
        transform: translateZ(0);
    }
}

@media (min-width: 901px) {
    html body.home-template .hero-v8 {
        min-height: 0 !important;
        height: auto !important;
        padding-bottom: 0 !important;
    }

    html body.home-template .hero-v8-content {
        flex: 0 0 auto !important;
        padding-top: clamp(5.8rem, 9.5vh, 6.8rem) !important;
        padding-bottom: 0 !important;
        gap: 0.65rem !important;
    }

    html body.home-template .hero-v8-footer {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0.45rem !important;
        padding-bottom: 0 !important;
    }

    html body.home-template .lifecycle-wheel-section {
        margin-top: 0 !important;
        padding-top: 0.5rem !important;
        padding-bottom: 1.25rem !important;
    }

    html body.home-template .lc-section-marker {
        margin-bottom: 0.35rem !important;
    }

    html body.home-template .lc-head {
        margin-bottom: 0.25rem !important;
        gap: clamp(1rem, 2.4vw, 1.8rem) !important;
    }

    html body.home-template .lc-eyebrow {
        margin-bottom: 0.4rem !important;
    }

    html body.home-template .lc-lead {
        line-height: 1.55 !important;
    }

    html body.home-template .lc-method-line {
        margin-bottom: 0.45rem !important;
        gap: 0.4rem 0.7rem !important;
    }

    html body.home-template .lc-workbench {
        min-height: 0 !important;
        gap: clamp(1rem, 2.4vw, 1.8rem) !important;
    }

    html body.home-template .lc-wheel {
        width: min(360px, 100%) !important;
    }

    html body.home-template .lc-wheel-hint {
        margin-top: -0.65rem !important;
    }

    html body.home-template .lc-document-pane {
        padding-left: clamp(0.8rem, 2vw, 1.4rem) !important;
    }

    html body.home-template .lc-document-meta {
        margin-bottom: 0.45rem !important;
        gap: 0.25rem !important;
    }

    html body.home-template .lc-document-meta p {
        line-height: 1.5 !important;
    }

    html body.home-template .lc-document-sheet {
        min-height: 190px !important;
        padding-top: 0.4rem !important;
    }

    html body.home-template .lc-document-sheet img {
        max-height: 220px !important;
    }

    html body.home-template .section-v2 {
        padding-top: 1.9rem !important;
        padding-bottom: 1.9rem !important;
    }

    html body.home-template .section-head {
        margin-bottom: 1rem !important;
        gap: clamp(1rem, 2.4vw, 1.8rem) !important;
    }

    html body.home-template .section-eyebrow {
        margin-bottom: 0.55rem !important;
    }

    html body.home-template .section-title {
        margin-bottom: 0.45rem !important;
    }

    html body.home-template .section-lead {
        line-height: 1.5 !important;
    }

    html body.home-template .coverage-grid {
        gap: clamp(1.25rem, 3vw, 2.25rem) !important;
    }

    html body.home-template .coverage-numbers {
        gap: 0.75rem !important;
    }

    html body.home-template .coverage-num {
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }

    html body.home-template .coverage-disclaimer {
        margin-top: 0.6rem !important;
    }

    html body.home-template .specialty-v2 {
        padding: clamp(1.35rem, 3vw, 2.2rem) !important;
    }

    html body.home-template .specialty-v2-grid {
        gap: clamp(1.25rem, 3vw, 2.4rem) !important;
    }

    html body.home-template .specialty-v2 h3 {
        margin-bottom: 0.55rem !important;
    }

    html body.home-template .specialty-v2 p {
        margin-bottom: 0.85rem !important;
        line-height: 1.5 !important;
    }

    html body.home-template .specialty-pulse {
        max-width: 280px !important;
    }

    html body.home-template .final-cta {
        padding-top: 2.1rem !important;
        padding-bottom: 2.3rem !important;
    }
}

@media (min-width: 901px) {
    html body.home-template .hero-v8 {
        overflow-x: clip !important;
        overflow-y: visible !important;
    }

    html body.home-template .hero-v8-headline {
        line-height: 1.12 !important;
        gap: 0 !important;
        padding: 0.04em 0.14em 0.08em !important;
        overflow: visible !important;
        max-width: 13ch !important;
    }

    html body.home-template .hero-v8-headline .line-a,
    html body.home-template .hero-v8-headline .line-b {
        display: block !important;
        line-height: 1.12 !important;
        padding: 0.02em 0.08em 0.06em !important;
        margin: -0.02em -0.08em -0.06em !important;
        overflow: visible !important;
    }

    html body.home-template .hero-v8-headline .hl-em {
        display: inline-block !important;
        font-style: normal !important;
        line-height: 1.12 !important;
        padding: 0.02em 0.08em 0.08em 0 !important;
        margin: -0.02em -0.08em -0.08em 0 !important;
        overflow: visible !important;
    }

    html body.home-template .hero-v8-content {
        padding-top: clamp(5.4rem, 8.8vh, 6.3rem) !important;
    }

    html body.home-template .specialty-v2 {
        min-height: 0 !important;
        overflow: visible !important;
    }

    html body.home-template .specialty-v2::before {
        inset: -30% -10% auto auto !important;
        width: 48% !important;
        height: 150% !important;
    }

    html body.home-template .specialty-pulse {
        max-width: 240px !important;
    }

    html body.home-template .specialty-pulse .ring-anim {
        animation-name: ringExpandTight !important;
    }
}

@keyframes ringExpandTight {
    0% { transform: scale(0.4); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: scale(1.25); opacity: 0; }
}

@media (min-width: 901px) {
    html body.home-template .section-v2:has(.specialty-v2) {
        overflow: visible !important;
        padding-top: 1.7rem !important;
        padding-bottom: 2.2rem !important;
    }

    html body.home-template .section-v2:has(.specialty-v2) .section-v2-inner {
        overflow: visible !important;
    }

    html body.home-template .specialty-v2-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(14rem, 0.55fr) !important;
        align-items: center !important;
    }

    html body.home-template .specialty-v2 .btn-primary,
    html body.home-template .specialty-v2 .btn-secondary,
    html body.home-template .specialty-v2 .btn-link,
    html body.home-template .specialty-v2 a[class*="btn"] {
        margin-top: 0 !important;
    }

    html body.home-template .final-cta {
        overflow: visible !important;
        padding-top: 2rem !important;
        padding-bottom: 2.9rem !important;
    }

    html body.home-template .coverage-num-val {
        line-height: 1.08 !important;
        padding-bottom: 0.04em !important;
    }
}

/* ============================================================
   v20260502 — 首页桌面端：修复 H1「伴」裁剪 + 收紧板块间距
   ============================================================ */
@media (min-width: 901px) {
    /* H1：去掉负 margin，用真实 padding 给渐变文本留出右侧空间，避免最后一字被裁 */
    html body.home-template .hero-v8-headline {
        max-width: 14ch !important;
        padding: 0.06em 0.22em 0.1em 0.16em !important;
        letter-spacing: -0.018em !important;
    }
    html body.home-template .hero-v8-headline .line-a,
    html body.home-template .hero-v8-headline .line-b {
        padding: 0.04em 0.18em 0.08em 0.04em !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    html body.home-template .hero-v8-headline .hl-em {
        display: inline-block !important;
        padding: 0.04em 0.22em 0.1em 0.04em !important;
        margin: 0 !important;
        letter-spacing: -0.01em !important;
        overflow: visible !important;
    }
    /* 让 hero 容器允许文字渐变 overflow 显示 */
    html body.home-template .hero-v8 {
        overflow: visible !important;
    }
    html body.home-template .hero-v8-content {
        overflow: visible !important;
    }

    /* 收紧 Hero 区域底部留白 */
    html body.home-template .hero-v8 {
        padding-bottom: 0 !important;
    }
    html body.home-template .hero-v8-content {
        padding-top: clamp(5rem, 8vh, 5.8rem) !important;
        padding-bottom: 0.2rem !important;
        gap: 0.55rem !important;
    }
    html body.home-template .hero-v8-footer {
        padding-top: 0.45rem !important;
        padding-bottom: 0.25rem !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* 收紧 Hero 与 全生命周期 之间的间距 */
    html body.home-template .lifecycle-wheel-section {
        padding-top: 0.4rem !important;
        padding-bottom: 0.85rem !important;
        margin-top: 0 !important;
    }
    html body.home-template .lc-section-marker {
        margin-bottom: 0.3rem !important;
    }
    html body.home-template .lc-head {
        margin-bottom: 0.25rem !important;
    }
    html body.home-template .lc-method-line {
        margin-bottom: 0.4rem !important;
    }

    /* 收紧 Coverage / Specialty / Final CTA 板块 */
    html body.home-template .section-v2 {
        padding-top: 1.2rem !important;
        padding-bottom: 1.2rem !important;
    }
    html body.home-template .section-v2:has(.specialty-v2) {
        padding-top: 1.1rem !important;
        padding-bottom: 1.4rem !important;
    }
    html body.home-template .specialty-v2 {
        padding: clamp(1.1rem, 2.4vw, 1.7rem) !important;
    }
    html body.home-template .final-cta {
        padding-top: 1.4rem !important;
        padding-bottom: 1.6rem !important;
    }

    /* 板块间不应有额外 margin 撑开 */
    html body.home-template .lifecycle-wheel-section,
    html body.home-template .section-v2,
    html body.home-template .final-cta {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* ============================================================
   v20260502 Mobile QA pass — 修复 mobile 字体溢出 / 板块间距
   ============================================================ */
@media (max-width: 899px) {
    /* lc-title 在小屏强制单行容纳「临床全生命周期管理。」 */
    body.home-template .lc-title {
        font-size: clamp(1.7rem, 7.6vw, 2.45rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.035em !important;
    }
    /* hero 文字开局可见性回退（动画失败时仍可见） */
    body.home-template .hero-v8-headline,
    body.home-template .hero-v8-lead,
    body.home-template .hero-v8-actions,
    body.home-template .hero-v8-footer > * {
        opacity: 1 !important;
    }
    body.home-template .hero-v8-headline { animation: none !important; }
    body.home-template .hero-v8-lead { animation: none !important; }
    body.home-template .hero-v8-actions { animation: none !important; }

    /* mobile 下板块间距整体收紧 */
    body.home-template .lifecycle-wheel-section {
        padding-top: 1.1rem !important;
        padding-bottom: 1.4rem !important;
    }
    body.home-template .section-v2 {
        padding-top: 1.4rem !important;
        padding-bottom: 1.4rem !important;
    }
    body.home-template .final-cta {
        padding-top: 1.5rem !important;
        padding-bottom: 1.7rem !important;
    }

    /* hero 内部 mobile 间距 */
    body.home-template .hero-v8-content {
        padding-top: clamp(7.5rem, 22vw, 9rem) !important;
        padding-bottom: 0.5rem !important;
        gap: 0.7rem !important;
    }
    body.home-template .hero-v8-footer {
        padding-top: 0.6rem !important;
        padding-bottom: 0.6rem !important;
        gap: 0.85rem !important;
    }

    /* 转盘卡片右侧 document-pane 在 mobile 下不要超 */
    body.home-template .lc-document-pane {
        padding-left: 0 !important;
    }
    body.home-template .lc-document-sheet {
        min-height: 150px !important;
    }
    body.home-template .lc-document-sheet img {
        max-height: 200px !important;
    }

    /* coverage / specialty / final-cta 内部内容紧凑 */
    body.home-template .section-head { gap: 0.8rem !important; margin-bottom: 0.85rem !important; }
    body.home-template .specialty-v2 { padding: 1.1rem !important; }
    body.home-template .specialty-v2 h3 { margin-bottom: 0.55rem !important; }
    body.home-template .specialty-v2 p { margin-bottom: 0.85rem !important; }
}

/* ============================================================
   全局 hero v8 — 禁用 fadeIn 动画，确保首屏内容始终 100% 可见
   （之前 animation: heroFade forwards 在某些浏览器下停留在中间帧
   造成 hero 几乎不可见，这里直接强制 opacity: 1 + 关闭动画）
   ============================================================ */
.hero-v8-content > *,
.hero-v8-footer > *,
.hero-v8-headline,
.hero-v8-lead,
.hero-v8-actions,
.hero-v8-eyebrow {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .hero-v8-content > *,
    .hero-v8-footer > * {
        opacity: 1 !important;
        animation: none !important;
    }
}

/* ============================================================
   Specialty H3 「72 小时」渐变文字 — 修复白底白字看不见
   ============================================================ */
#specialty-title .hl-grad {
    background: linear-gradient(120deg, #3a9ef5 0%, #7dd3fc 50%, #1480e1 100%) !important;
    -webkit-background-clip: text !important;
            background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    padding: 0.04em 0.2em 0.06em 0.04em !important;
    margin: 0 !important;
    letter-spacing: -0.01em !important;
    overflow: visible !important;
    display: inline-block !important;
}

