/* ============================================
   木兰序 MULANXU - 赛博东方浪漫主义样式体系
   Cyber-Oriental Romanticism Design System
   ============================================ */

/* 全局取消斜体：中文排版不使用歪斜字体 */
em, i, cite, dfn, var { font-style: normal; }

/* ===================== CSS变量定义 ===================== */
:root {
    /* 核心色彩 - 深色主题 */
    --bg-deep: #0a0a0f;
    --bg-surface: #111118;
    --bg-elevated: #1a1a24;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-strong: rgba(255, 255, 255, 0.06);
    
    /* 强调色系 */
    --accent-purple: #d946ef;
    --accent-cyan: #22d3ee;
    --accent-orange: #fb923c;
    --accent-green: #4ade80;
    --accent-pink: #f472b6;
    
    /* 渐变 */
    --gradient-main: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    --gradient-warm: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-pink) 100%);
    --gradient-cool: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
    
    /* 文字颜色 */
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-code: #22d3ee;
    
    /* 边框和阴影 */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(217, 70, 239, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow-purple: 0 0 30px rgba(217, 70, 239, 0.3);
    --shadow-glow-cyan: 0 0 30px rgba(34, 211, 238, 0.3);
    
    /* 字体系统 */
    /* 字体系统 - 情感女性化、杂志感升级 */
    --font-display: 'Playfair Display', 'Noto Serif SC', 'PingFang SC', serif;
    --font-accent: 'Cormorant Garamond', 'Noto Serif SC', serif;
    --font-body: 'Manrope', 'Noto Sans SC', -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --font-mono: 'Space Mono', 'JetBrains Mono', monospace;
    
    /* 间距系统 */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* 动画曲线 */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* 浅色主题覆盖 */
[data-theme="light"] {
    --bg-deep: #fafafa;
    --bg-surface: #ffffff;
    --bg-elevated: #f4f4f5;
    --bg-glass: rgba(0, 0, 0, 0.02);
    --bg-glass-strong: rgba(0, 0, 0, 0.04);
    
    --text-primary: #111118;
    --text-secondary: #3a3a42;
    --text-muted: #6b6b78;
    
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(217, 70, 239, 0.4);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
}

/* 浅色模式卡片动感底图 */
[data-theme="light"] .scene-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .club-stat-item,
[data-theme="light"] .club-activity-item,
[data-theme="light"] .floor-card,
[data-theme="light"] .faq-item {
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .scene-card::before,
[data-theme="light"] .feature-card::before,
[data-theme="light"] .club-stat-item::before,
[data-theme="light"] .club-activity-item::before,
[data-theme="light"] .floor-card::before,
[data-theme="light"] .faq-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(217, 70, 239, 0.03) 35%,
        rgba(34, 211, 238, 0.03) 40%,
        transparent 45%
    );
    animation: cardShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

/* 浅色主题：hero 文字颜色（避免看不见） */
[data-theme="light"] .hero-title,
[data-theme="light"] .hero-tag,
[data-theme="light"] .hero-desc {
    color: #1a1a24 !important;
}
[data-theme="light"] .hero-title .gradient-text {
    -webkit-text-fill-color: var(--accent-purple) !important;
    color: var(--accent-purple) !important;
    background: none !important;
}
[data-theme="light"] .hero-section::before {
    background: linear-gradient(180deg,
        rgba(255,255,255,0.25) 0%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.4) 100%) !important;
}
[data-theme="light"] .hero-section .hero-bg-canvas-wrap::after {
    background: radial-gradient(ellipse at center,
        transparent 0%,
        rgba(255,255,255,0.2) 70%,
        rgba(255,255,255,0.4) 100%) !important;
}

/* ===================== 全局重置与基础样式 ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100vw;
    width: 100%;
    cursor: auto;
    transition: background-color 0.6s ease, color 0.6s ease;
}

::selection {
    background-color: var(--accent-purple);
    color: white;
}

/* ===================== 背景层系统 ===================== */
.bg-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -10;
}

.bg-gradient {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(217, 70, 239, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(34, 211, 238, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(251, 146, 60, 0.04) 0%, transparent 60%),
        var(--bg-deep);
    animation: bgPulse 20s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { opacity: 1; }
    100% { opacity: 0.85; }
}

.bg-grid {
    background-image: 
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    opacity: 0.6;
}

/* ==================== 导航栏 - 统一三列布局 ==================== */
/* LOGO + 主菜单 居中 · 主题/语言 在右 */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(180deg, rgba(11,14,17,0.92), rgba(11,14,17,0.6) 70%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 71, 0.18);
    transition: all 0.4s ease;
    max-width: 100vw;
    width: 100%;
    overflow-x: clip;
}

.site-header.scrolled {
    background: rgba(11, 14, 17, 0.95);
    padding: 0.85rem 2.5rem;
    border-bottom-color: rgba(201, 168, 71, 0.18);
}

/* 三列：左(LOGO) / 中(主菜单居中) / 右(操作) —— 与首页 style.css 一致 */
.main-nav {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "KaiTi", "STKaiti", "Kaiti SC", "BiauKai", "Noto Serif SC", serif;
    font-size: 1.85rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.logo-group:hover { opacity: 0.85; }

/* 品牌文字：继承 .logo-group（覆盖 about.css 的 1.55rem Playfair 规则，与首页一致） */
.brand-primary {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.trademark {
    font-size: 0.5em;
    vertical-align: super;
    color: #c9a847;
    font-weight: 400;
    margin-left: 0.1em;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-main li { list-style: none; }

.nav-link {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    letter-spacing: 0.06em;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: #c9a847;
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.nav-link:hover, .nav-link.active { color: #ffffff; }
.nav-link.active { color: #c9a847; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.theme-toggle:hover {
    border-color: #c9a847;
    color: #c9a847;
}

.hamburger { display: none; }

/* ==================== 语言切换器 ==================== */
.lang-switcher { position: relative; }

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 2rem;
    padding: 0 0.75rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.lang-btn:hover {
    border-color: #c9a847;
    color: #c9a847;
}
.lang-switcher.open .lang-btn svg {
    transform: rotate(180deg);
}
.lang-btn svg {
    transition: transform 0.25s ease;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    min-width: 130px;
    background: #0f1215;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1100;
}
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li { list-style: none; }
.lang-dropdown li a {
    display: block;
    padding: 0.55rem 1rem;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.lang-dropdown li.active a,
.lang-dropdown li a:hover {
    color: #c9a847;
    background: rgba(201, 168, 76, 0.08);
}

/* ==================== 移动端适配（与首页 style.css 一致） ==================== */
@media (max-width: 768px) {
    .site-header { padding: 1rem 1.5rem; }
    .nav-logo-img { height: 3.45rem; width: 3.45rem; }
    .nav-main { display: none; }
    .brand-primary { font-size: inherit; }   /* 覆盖 about.css 的 1.1rem，与首页一致 */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 4px;
        width: 24px;
        height: auto;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px 0;
        position: relative;
        z-index: 1003;
    }
    .hamburger span {
        display: block;
        width: auto;
        height: 1px;
        background: #faf6ed;
        border-radius: 0;
    }
    /* 禁用 about.css 残留的汉堡 X 变换（与首页一致：无变换） */
    .hamburger.active span:nth-child(1),
    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        transform: none;
        opacity: 1;
    }
    /* 覆盖 about.css 的 !important 移动菜单规则（对齐首页 JS 内联值，去青色） */
    .nav-link {
        font-size: 17px !important;
        padding: 18px 24px !important;
        width: 100% !important;
        text-align: left !important;
        border-radius: 0 !important;
        display: block !important;
        border-bottom: 1px solid #222222 !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        line-height: 1.4 !important;
        background: transparent !important;
        white-space: normal !important;
    }
    .nav-link:hover, .nav-link.active { color: #ffffff !important; background: transparent !important; }
    
    /* 确保所有section和容器不溢出 */
    .hero-section,
    .scenes-section,
    .features-section,
    .tech-credentials-section,
    .club-section,
    .philosophy-section,
    .download-section,
    .faq-section,
    .site-footer {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* 修复hero区移动端溢出 */
    .hero-container {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-left, .hero-right {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* 修复信任指标在移动端溢出 */
    .trust-indicators {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .trust-item {
        min-width: calc(50% - 0.5rem);
        flex-shrink: 0;
    }
}

/* ==================== 移动端遮罩 ==================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 9000;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ==================== 首屏英雄区 ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 4rem;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-purple);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    overflow: hidden;
}

.typing-text {
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--accent-purple);
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: titleReveal 0.8s var(--ease-out-expo) forwards;
}

.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.45s; }
.line-3 { animation-delay: 0.7s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 480px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-desc {
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out-expo) 1.1s forwards;
    transform: translateY(20px);
}

/* 产品信任指标 */
.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out-expo) 1.3s forwards;
    transform: translateY(15px);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trust-item strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.trust-item span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: var(--shadow-md), 0 0 20px rgba(217, 70, 239, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 35px rgba(217, 70, 239, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

.btn-tertiary {
    background: rgba(255, 182, 72, 0.08);
    color: var(--gold, #c9a84c);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.btn-tertiary:hover {
    background: rgba(255, 182, 72, 0.15);
    border-color: var(--gold, #c9a84c);
    color: #fbbf24;
    transform: translateY(-3px);
}

/* ===== 12 AI Relationship Hosts ===== */
.ai-hosts-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.ai-hosts-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ai-hosts-section .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent-cyan, #22d3ee);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.ai-hosts-section .section-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-hosts-section .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.ai-hosts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.host-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.host-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold, #c9a84c), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.host-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(255, 106, 61, 0.04) 100%);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.host-card:hover::before { opacity: 1; }

.host-avatar {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1;
}

.host-name {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.host-role {
    font-size: 0.78rem;
    color: var(--accent-cyan, #22d3ee);
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
}

.host-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
    line-height: 1.4;
}

.ai-hosts-cta { text-align: center; margin-top: 2rem; }

@media (max-width: 1100px) {
    .ai-hosts-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 820px) {
    .ai-hosts-section { padding: 4rem 1.25rem; }
    .ai-hosts-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .host-card { padding: 1rem 0.6rem; }
    .host-avatar { font-size: 1.8rem; }
    .host-name { font-size: 1.1rem; }
}
@media (max-width: 480px) {
    .ai-hosts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== AI Relationship Checkup ===== */
.ai-checkup-section {
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.08) 0%, rgba(201, 168, 76, 0.06) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 5rem 2rem;
    margin: 0;
}

.checkup-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.checkup-content .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold, #c9a84c);
    margin-bottom: 0.75rem;
}

.checkup-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.checkup-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.checkup-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-width: 480px;
}

.checkup-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
}

.checkup-input:focus { outline: none; border-color: var(--gold, #c9a84c); }

.checkup-trust {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ==================== 统一 O2O 商业条 ==================== */
.hero-o2o-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    margin: 2.5rem 0 1.5rem !important;
    padding: 1.25rem 1.5rem !important;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.06) 0%, rgba(201, 168, 76, 0.03) 100%) !important;
    border: 1px solid rgba(255, 106, 61, 0.15) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(8px);
    max-width: 720px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.o2o-stat {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    text-align: center !important;
    padding: 0.25rem 0.5rem !important;
    transition: transform 0.3s var(--ease-out-expo);
    display: block !important;
}

.o2o-stat:hover { transform: translateY(-2px); }

.o2o-num-row {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0.15rem !important;
    line-height: 1 !important;
    margin-bottom: 0.35rem !important;
}

.o2o-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
}

.o2o-unit {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--gold, #c9a84c) !important;
}

.o2o-label {
    font-size: 0.78rem !important;
    color: var(--text-secondary) !important;
    letter-spacing: 0.08em !important;
}

.o2o-divider {
    width: 1px !important;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 106, 61, 0.25) 50%, transparent 100%) !important;
    flex: 0 0 1px !important;
    align-self: stretch !important;
}

.hero-capital-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 1.1rem !important;
    background: rgba(201, 168, 76, 0.08) !important;
    border: 1px solid rgba(201, 168, 76, 0.25) !important;
    border-radius: 100px !important;
    font-size: 0.82rem !important;
    color: var(--gold, #c9a84c) !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0.04em !important;
}

.badge-icon { font-size: 1rem !important; }

/* 非首页：紧凑 padding */
.hero-o2o-unified {
    position: relative !important;
    min-height: auto !important;
    padding: 8rem 4rem 3rem !important;
}

/* 首页：更大 padding（首屏震撼） */
body.is-home .hero-o2o-unified {
    padding: 10rem 4rem 5rem !important;
}

@media (max-width: 820px) {
    .hero-o2o-strip {
        flex-wrap: wrap !important;
        gap: 0.75rem 0.5rem !important;
        padding: 1rem 0.75rem !important;
    }
    .o2o-stat { flex: 1 1 40% !important; }
    .o2o-divider { display: none !important; }
    .o2o-num { font-size: 1.85rem !important; }
    .hero-o2o-unified { padding: 6rem 1.25rem 3rem !important; }
}

@media (max-width: 480px) {
    .o2o-stat { flex: 1 1 45% !important; }
}

/* ==================== 首页 产品 stats (替代 O2O 商业条在 HERO 位置) ==================== */
.hero-trust-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3rem !important;
    margin-top: 3rem !important;
    padding: 1.25rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.hero-trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
}

.hero-trust-item strong {
    color: #FFB648 !important;
    font-weight: 700 !important;
}

/* 移动端：trust bar 改 2×2 网格，避免文字竖排 */
@media (max-width: 768px) {
    .hero-trust-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem 1.5rem !important;
        padding: 1.5rem 1rem !important;
    }
    .hero-trust-item {
        justify-content: center !important;
        font-size: 12px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
    .hero-trust-item > span:first-child {
        font-size: 16px !important;
    }
}

@media (max-width: 380px) {
    .hero-trust-item {
        font-size: 11px !important;
    }
}

.hero-product-strip {
    margin-top: 2.5rem !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 0.85rem !important;
    margin: 2.5rem 0 1.5rem !important;
    padding: 1.35rem 1.75rem !important;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(10px);
    max-width: 780px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.product-stat {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    text-align: center !important;
    padding: 0.25rem 0.5rem !important;
    transition: transform 0.3s var(--ease-out-expo);
    display: block !important;
}

.product-stat:hover { transform: translateY(-2px); }

.product-num-row {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0.2rem !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
}

.product-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
}

.product-num--small {
    font-size: 1.6rem !important;
}

.product-unit {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--gold, #c9a84c) !important;
    -webkit-text-fill-color: var(--gold, #c9a84c) !important;
}

.product-label {
    font-size: 0.78rem !important;
    color: var(--text-secondary) !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
}

.product-divider {
    width: 1px !important;
    background: linear-gradient(180deg, transparent 0%, rgba(251, 146, 60, 0.3) 50%, transparent 100%) !important;
    flex: 0 0 1px !important;
    align-self: stretch !important;
}

@media (max-width: 820px) {
    .hero-product-strip {
        flex-wrap: wrap !important;
        gap: 1rem 0.5rem !important;
        padding: 1rem 0.85rem !important;
    }
    .product-stat { flex: 1 1 45% !important; }
    .product-divider { display: none !important; }
    .product-num { font-size: 2rem !important; }
    .product-num--small { font-size: 1.3rem !important; }
}

/* ==================== O2O 独立板块（非主舞台） ==================== */
.o2o-club-section {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 6rem 2rem !important;
    text-align: center !important;
}

.o2o-club-section .section-tag {
    color: var(--text-muted) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 1rem !important;
    display: inline-block !important;
}

.o2o-club-section .section-title {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

.o2o-club-section .section-subtitle {
    font-size: 1.05rem !important;
    color: var(--text-secondary) !important;
    max-width: 640px !important;
    margin: 0 auto 3.5rem !important;
    line-height: 1.6 !important;
}

.o2o-club-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
}

.o2o-club-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    transition: all 0.4s var(--ease-out-expo);
    text-align: center !important;
}

.o2o-club-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.o2o-club-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.o2o-club-num span {
    font-size: 1.2rem !important;
    margin-left: 0.15rem !important;
}

.o2o-club-label {
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 0.6rem !important;
    letter-spacing: 0.04em !important;
}

.o2o-club-desc {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
}

.o2o-club-cta-line {
    margin-top: 2.5rem !important;
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
}

.o2o-club-link {
    color: var(--accent-orange, #fb923c) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(251, 146, 60, 0.4) !important;
    padding-bottom: 1px !important;
    transition: all 0.2s ease;
}

.o2o-club-link:hover {
    color: var(--gold, #c9a84c) !important;
    border-color: var(--gold, #c9a84c) !important;
}

@media (max-width: 1024px) {
    .o2o-club-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .o2o-club-section { padding: 4rem 1.25rem !important; }
    .o2o-club-grid { gap: 0.85rem !important; }
    .o2o-club-card { padding: 1.5rem 1rem !important; }
    .o2o-club-num { font-size: 2.25rem !important; }
}

@media (max-width: 480px) {
    .o2o-club-grid { grid-template-columns: 1fr !important; }
}

/* ==================== HERO 两栏布局 ==================== */
.hero-o2o-unified .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
}

.hero-o2o-unified .hero-content {
    max-width: 660px !important;
    width: 100% !important;
}

@media (max-width: 1024px) {
    .hero-o2o-unified .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .hero-o2o-unified .hero-visual { max-width: 460px !important; margin: 0 auto !important; }
    .constellation { max-width: 460px !important; }
}

/* ==================== 双心动态效果 ==================== */
.hero-visual {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.heart-stage {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 520px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 5% !important;
}

/* ---- 装饰粒子 ---- */
.heart-particle {
    position: absolute !important;
    left: var(--x) !important;
    top: var(--y) !important;
    width: 6px !important;
    height: 6px !important;
    background: radial-gradient(circle, #FFB648 0%, transparent 70%) !important;
    border-radius: 50% !important;
    animation: particle-pulse 3s ease-in-out infinite !important;
    animation-delay: var(--d) !important;
    pointer-events: none !important;
}

.heart-particle:nth-child(odd) {
    width: 4px !important;
    height: 4px !important;
    background: radial-gradient(circle, #FF6A3D 0%, transparent 70%) !important;
}

@keyframes particle-pulse {
    0%, 100% { transform: scale(0.5) translateY(0); opacity: 0.3; }
    50% { transform: scale(1.5) translateY(-8px); opacity: 1; }
}

/* ---- 单个心 ---- */
.heart {
    position: relative !important;
    width: 38% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    z-index: 3 !important;
}

.heart-svg {
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 8px 24px rgba(255, 106, 61, 0.45)) !important;
    animation: heart-beat 1.6s ease-in-out infinite !important;
    transform-origin: center 70% !important;
}

.heart-left .heart-svg { animation-delay: 0s !important; }
.heart-right .heart-svg { animation-delay: 0.8s !important; }

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.12); }
    20% { transform: scale(0.98); }
    30% { transform: scale(1.08); }
    40% { transform: scale(1); }
}

.heart-glow {
    position: absolute !important;
    inset: -20% !important;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.35) 0%, transparent 60%) !important;
    border-radius: 50% !important;
    animation: glow-pulse 1.6s ease-in-out infinite !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.heart-right .heart-glow {
    background: radial-gradient(circle, rgba(255, 182, 72, 0.4) 0%, transparent 60%) !important;
    animation-delay: 0.8s !important;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}

.heart-label {
    position: absolute !important;
    bottom: -10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    background: rgba(10, 13, 20, 0.6) !important;
    padding: 0.25rem 0.85rem !important;
    border-radius: 100px !important;
    border: 1px solid rgba(251, 146, 60, 0.3) !important;
    white-space: nowrap !important;
    backdrop-filter: blur(8px) !important;
}

/* ---- 连接线 + 脉冲能量 ---- */
.heart-connection {
    position: absolute !important;
    left: 22% !important;
    right: 22% !important;
    top: 50% !important;
    height: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
}

.heart-line {
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 61, 0.4) 20%, rgba(255, 182, 72, 0.6) 50%, rgba(255, 106, 61, 0.4) 80%, transparent 100%) !important;
    position: relative !important;
}

.heart-energy {
    position: absolute !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, #FFB648 0%, #FF6A3D 60%, transparent 100%) !important;
    box-shadow: 0 0 20px rgba(255, 182, 72, 0.8), 0 0 40px rgba(255, 106, 61, 0.4) !important;
    top: 50% !important;
    left: 0% !important;
    transform: translateY(-50%) !important;
    animation: energy-travel 1.6s ease-in-out infinite !important;
}

.heart-energy-2 {
    animation-delay: 0.8s !important;
    background: radial-gradient(circle, #FF6A3D 0%, #FF4D1F 60%, transparent 100%) !important;
}

@keyframes energy-travel {
    0% { left: 0%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* ---- 轨道标签 ---- */
.heart-orbit {
    position: absolute !important;
    font-size: 0.78rem !important;
    color: var(--gold, #c9a84c) !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    padding: 0.35rem 0.85rem !important;
    background: rgba(201, 168, 76, 0.08) !important;
    border: 1px solid rgba(201, 168, 76, 0.25) !important;
    border-radius: 100px !important;
    backdrop-filter: blur(6px) !important;
    animation: orbit-float 4s ease-in-out infinite !important;
    white-space: nowrap !important;
}

.heart-orbit-1 {
    top: 8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation-delay: 0s !important;
}

.heart-orbit-2 {
    bottom: 8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation-delay: 1.3s !important;
}

.heart-orbit-3 {
    top: 50% !important;
    right: 2% !important;
    transform: translateY(-50%) !important;
    animation-delay: 2.6s !important;
    animation: orbit-float-3 4s ease-in-out infinite !important;
}

@keyframes orbit-float {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(-6px); opacity: 1; }
}

@keyframes orbit-float-3 {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.7; }
    50% { transform: translateY(-50%) translateX(4px); opacity: 1; }
}

@media (max-width: 768px) {
    .heart-stage { max-width: 380px !important; padding: 0 3% !important; }
    .heart-label { font-size: 0.8rem !important; padding: 0.2rem 0.7rem !important; }
    .heart-orbit { font-size: 0.7rem !important; padding: 0.25rem 0.6rem !important; }
}

@media (max-width: 480px) {
    .heart-stage { max-width: 320px !important; }
}

/* ==================== HERO Premium：12 节点轨道 + 双心 + 浮动玻璃卡 ==================== */
.hero-visual {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    padding: 0 !important;
}

.constellation {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    isolation: isolate !important;
}

.constellation-aura {
    position: absolute !important;
    inset: 2% !important;
    background: radial-gradient(circle at 30% 30%, rgba(255, 106, 61, 0.3) 0%, transparent 55%),
                radial-gradient(circle at 70% 70%, rgba(255, 182, 72, 0.25) 0%, transparent 55%),
                radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.12) 0%, transparent 65%) !important;
    border-radius: 50% !important;
    filter: blur(24px) !important;
    animation: aura-rotate 30s linear infinite !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

@keyframes aura-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes orbit-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== 12 角色轨道环 ===== */
.orbit-ring {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

.orbit-dot {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 52px !important;
    height: 52px !important;
    margin: -26px 0 0 -26px !important;
    transform: rotate(var(--angle, 0deg)) translateY(-165px) rotate(calc(-1 * var(--angle, 0deg))) !important;
    transform-origin: center center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)) !important;
    border: 1px solid rgba(255, 182, 72, 0.35) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.orbit-dot:hover {
    transform: rotate(var(--angle, 0deg)) translateY(-165px) rotate(calc(-1 * var(--angle, 0deg))) scale(1.18) !important;
    background: linear-gradient(145deg, rgba(255, 182, 72, 0.25), rgba(255, 106, 61, 0.15)) !important;
    border-color: rgba(255, 182, 72, 0.7) !important;
    box-shadow: 0 8px 24px rgba(255, 106, 61, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    z-index: 10 !important;
}

.orbit-emoji {
    font-size: 15px !important;
    line-height: 1 !important;
    margin-bottom: 1px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) !important;
}

.orbit-name {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 0.3px !important;
    text-align: center !important;
    line-height: 1 !important;
    font-family: 'Noto Sans SC', sans-serif !important;
}

.heart-pair {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    z-index: 3 !important;
    width: 50% !important;
    height: 45% !important;
}

.heart-pair .heart {
    position: relative !important;
    width: 36% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    z-index: 3 !important;
}

.heart-svg {
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 12px 32px rgba(255, 106, 61, 0.55)) drop-shadow(0 0 24px rgba(255, 182, 72, 0.4)) !important;
    animation: heart-beat 1.8s ease-in-out infinite !important;
    transform-origin: center 70% !important;
}

.heart-user .heart-svg { animation-delay: 0s !important; }
.heart-ai .heart-svg { animation-delay: 0.9s !important; }

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(0.96); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
}

.heart-glow {
    position: absolute !important;
    inset: -25% !important;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.4) 0%, transparent 65%) !important;
    border-radius: 50% !important;
    animation: glow-pulse 1.8s ease-in-out infinite !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.heart-ai .heart-glow {
    background: radial-gradient(circle, rgba(255, 182, 72, 0.45) 0%, transparent 65%) !important;
    animation-delay: 0.9s !important;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.heart-tag {
    position: absolute !important;
    bottom: -8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.85rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    background: rgba(10, 13, 20, 0.75) !important;
    padding: 0.3rem 0.95rem !important;
    border-radius: 100px !important;
    border: 1px solid rgba(251, 146, 60, 0.35) !important;
    white-space: nowrap !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

.heart-connect {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 26% !important;
    height: 2px !important;
    z-index: 2 !important;
}

.connect-line {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 61, 0.6) 50%, transparent 100%) !important;
    position: relative !important;
}

.connect-pulse {
    position: absolute !important;
    top: 50% !important;
    left: 0% !important;
    transform: translateY(-50%) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, #FFB648 0%, transparent 70%) !important;
    box-shadow: 0 0 16px #FFB648 !important;
    animation: connect-pulse-anim 1.8s ease-in-out infinite !important;
}

@keyframes connect-pulse-anim {
    0% { left: 0%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.float-card {
    position: absolute !important;
    background: linear-gradient(135deg, rgba(20, 22, 30, 0.85) 0%, rgba(15, 17, 25, 0.7) 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.35) !important;
    border-radius: 10px !important;
    padding: 0.4rem 0.7rem !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    z-index: 5 !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    transition: transform 0.4s var(--ease-out-expo);
    min-width: 0 !important;
}

.float-card:hover { transform: translateY(-3px) scale(1.03) !important; }

.fc-icon {
    font-size: 1.05rem !important;
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.15) 0%, rgba(255, 182, 72, 0.1) 100%) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
}

.fc-title {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.fc-desc {
    font-size: 0.65rem !important;
    color: var(--text-muted) !important;
    line-height: 1.3 !important;
    margin-top: 0.1rem !important;
    white-space: nowrap !important;
}

.fc-content { min-width: 0 !important; }

.fc-status {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    font-size: 0.82rem !important;
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

.fc-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #10b981 !important;
    box-shadow: 0 0 8px #10b981 !important;
    animation: fc-dot-pulse 1.5s ease-in-out infinite !important;
    flex-shrink: 0 !important;
}

@keyframes fc-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.float-card {
    position: absolute !important;
    z-index: 7 !important;
    padding: 10px 14px !important;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.85), rgba(10, 10, 18, 0.75)) !important;
    border: 1px solid rgba(255, 182, 72, 0.3) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease !important;
    pointer-events: auto !important;
}

.float-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(255, 182, 72, 0.6) !important;
    box-shadow: 0 10px 28px rgba(255, 106, 61, 0.3) !important;
}

.float-card--top {
    top: 6% !important;
    left: 8% !important;
    animation: float-top 4s ease-in-out infinite !important;
}

@keyframes float-top {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-card--top-DUPLICATE {
    top: 50% !important;
    left: -3% !important;
    transform: translateY(-50%) !important;
    padding: 0.4rem 0.7rem !important;
    animation: float-y-simple 5s ease-in-out infinite !important;
    white-space: nowrap !important;
}
.float-card--top:hover { transform: translateY(-50%) translateX(-2px) scale(1.03) !important; }

.float-card--right {
    top: 50% !important;
    right: -3% !important;
    transform: translateY(-50%) !important;
    animation: float-y-simple 5s ease-in-out infinite 1.25s !important;
    white-space: nowrap !important;
}
.float-card--right:hover { transform: translateY(-50%) translateX(2px) scale(1.03) !important; }

.float-card--ai-team {
    bottom: 4% !important;
    right: 4% !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 18px !important;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.18), rgba(255, 182, 72, 0.12)) !important;
    border: 1px solid rgba(255, 182, 72, 0.4) !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 28px rgba(255, 106, 61, 0.2) !important;
    z-index: 6 !important;
}

.float-card--ai-team .fc-icon {
    font-size: 24px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #FF6A3D, #FFB648) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(255, 106, 61, 0.4) !important;
}

.float-card--ai-team .fc-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.float-card--ai-team .fc-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.2 !important;
}

.float-card--ai-team .fc-desc {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.3 !important;
}

.float-card--bottom {
    bottom: -3% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0.4rem 0.85rem !important;
    animation: float-y-bottom 5s ease-in-out infinite 2.5s !important;
    white-space: nowrap !important;
}
.float-card--bottom:hover { transform: translateX(-50%) translateY(-3px) scale(1.03) !important; }

.float-card--left {
    display: none !important;  /* 移除"只说真话"，避免与心重叠 */
}

@keyframes float-y-simple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-y-bottom {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-o2o-unified .hero-title .line-1 {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.15 !important;
    margin-bottom: 0.5rem !important;
}

.hero-o2o-unified .hero-title .line-2 {
    font-size: clamp(2.8rem, 5.5vw, 5rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.15 !important;
    margin-bottom: 0.6rem !important;
}

.hero-o2o-unified .hero-title .line-3 {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.25 !important;
    margin-bottom: 0.6rem !important;
}

.hero-o2o-unified .hero-title .line-4 {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem) !important;
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.5 !important;
    max-width: 540px !important;
    margin-top: 0.5rem !important;
}

@media (max-width: 1024px) {
    .constellation { max-width: 460px !important; }
    .float-card--top, .float-card--left { font-size: 0.85rem !important; }
}

@media (max-width: 768px) {
    .constellation { max-width: 380px !important; }
    .float-card { padding: 0.65rem 0.85rem !important; }
    .fc-icon { width: 30px !important; height: 30px !important; font-size: 1.15rem !important; }
    .fc-title { font-size: 0.78rem !important; }
    .fc-desc { font-size: 0.66rem !important; }
    .heart-tag { font-size: 0.75rem !important; padding: 0.2rem 0.7rem !important; }
}

@media (max-width: 480px) {
    .constellation { max-width: 320px !important; }
    .float-card--top, .float-card--right, .float-card--left {
        font-size: 0.78rem !important;
        padding: 0.55rem 0.7rem !important;
    }
    .float-card--bottom { display: none !important; }

    /* 12 AI 围圈缩小：缩点 + 缩轨道半径 */
    .orbit-dot {
        width: 36px !important;
        height: 36px !important;
        margin: -18px 0 0 -18px !important;
        transform: rotate(var(--angle, 0deg)) translateY(-110px) rotate(calc(-1 * var(--angle, 0deg))) !important;
    }
    .orbit-dot:hover {
        transform: rotate(var(--angle, 0deg)) translateY(-110px) rotate(calc(-1 * var(--angle, 0deg))) scale(1.18) !important;
    }
    .orbit-emoji { font-size: 12px !important; }
    .orbit-name { font-size: 0.55rem !important; }
}

/* 超小屏：再次缩小 */
@media (max-width: 380px) {
    .orbit-dot {
        width: 32px !important;
        height: 32px !important;
        margin: -16px 0 0 -16px !important;
        transform: rotate(var(--angle, 0deg)) translateY(-95px) rotate(calc(-1 * var(--angle, 0deg))) !important;
    }
    .orbit-dot:hover {
        transform: rotate(var(--angle, 0deg)) translateY(-95px) rotate(calc(-1 * var(--angle, 0deg))) scale(1.18) !important;
    }
}

/* ==================== 数字心 (Number Heart) ==================== */
.num-heart {
    position: relative !important;
    width: 42% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    z-index: 3 !important;
}

.num-heart-svg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 12px 32px rgba(255, 106, 61, 0.55)) drop-shadow(0 0 24px rgba(255, 182, 72, 0.4)) !important;
    animation: num-heart-beat 1.8s ease-in-out infinite !important;
    transform-origin: center 70% !important;
    z-index: 1 !important;
}

.num-heart--ai .num-heart-svg { animation-delay: 0.9s !important; }

@keyframes num-heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(0.96); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
}

.num-heart-num {
    position: relative !important;
    z-index: 2 !important;
    font-family: var(--font-display, 'Playfair Display', 'Georgia', serif) !important;
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1 !important;
    margin-top: -8% !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 16px rgba(255, 255, 255, 0.4) !important;
    letter-spacing: -0.05em !important;
}

.num-heart-tag {
    position: relative !important;
    z-index: 2 !important;
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    margin-top: 0.25rem !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
    white-space: nowrap !important;
}

/* 中心光晕连接 */
.num-heart-pulse {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 60% !important;
    height: 60% !important;
    z-index: 2 !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.nphp-ring {
    position: absolute !important;
    width: 30px !important;
    height: 30px !important;
    border: 1px solid rgba(255, 182, 72, 0.4) !important;
    border-radius: 50% !important;
    animation: nphp-ping 1.8s ease-out infinite !important;
}

.nphp-ring-2 {
    animation-delay: 0.9s !important;
}

@keyframes nphp-ping {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* 把 heart-pair 布局重置为合适数字心 */
.heart-pair {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8% !important;
    z-index: 3 !important;
    width: 70% !important;
    height: 50% !important;
}

@media (max-width: 1024px) {
    .num-heart-num { font-size: clamp(2rem, 4vw, 3.2rem) !important; }
}

@media (max-width: 768px) {
    .num-heart-num { font-size: 2rem !important; }
    .num-heart-tag { font-size: 0.6rem !important; }
    .heart-pair { width: 80% !important; }
}

@media (max-width: 480px) {
    .num-heart-num { font-size: 1.5rem !important; }
    .num-heart-tag { display: none !important; }
}

/* ==================== 科技感二进制心形 (Tech Binary Heart) ==================== */
.tech-heart {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.5rem 0.25rem !important;
}

.tech-heart--user { width: 56% !important; }
.tech-heart--ai { width: 40% !important; }

.tech-heart-glow {
    position: absolute !important;
    inset: 5% !important;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.25) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    filter: blur(20px) !important;
    animation: th-glow 2.4s ease-in-out infinite !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.tech-heart--ai .tech-heart-glow {
    background: radial-gradient(circle, rgba(255, 182, 72, 0.3) 0%, transparent 70%) !important;
    animation-delay: 1.2s !important;
}

@keyframes th-glow {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.1); }
}

.heart-matrix {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
    animation: heart-pulse 2s ease-in-out infinite !important;
    transform-origin: center 60% !important;
}

.tech-heart--ai .heart-matrix { animation-delay: 1s !important; }

@keyframes heart-pulse {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.06); }
    20% { transform: scale(0.98); }
    30% { transform: scale(1.04); }
    40% { transform: scale(1); }
}

.hm-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 0 !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

.hm-digit {
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #FF6A3D !important;
    text-shadow: 0 0 4px rgba(255, 106, 61, 0.8), 0 0 8px rgba(255, 106, 61, 0.4) !important;
    width: 0.9em !important;
    height: 0.9em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: digit-flicker 1.2s ease-in-out infinite !important;
    animation-duration: var(--t) !important;
    animation-delay: var(--d) !important;
    transition: color 0.3s !important;
    user-select: none !important;
}

.tech-heart--ai .hm-digit {
    color: #FFB648 !important;
    text-shadow: 0 0 4px rgba(255, 182, 72, 0.8), 0 0 8px rgba(255, 182, 72, 0.4) !important;
}

.hm-digit:nth-child(3n) {
    color: #FF8C5A !important;
}

.tech-heart--ai .hm-digit:nth-child(3n) {
    color: #FFCB6B !important;
}

@keyframes digit-flicker {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
    45% { opacity: 0.3; }
    55% { opacity: 0.9; }
}

.hm-space {
    width: 0.9em !important;
    height: 0.9em !important;
    display: inline-block !important;
}

.tech-heart-num {
    position: relative !important;
    z-index: 3 !important;
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1 !important;
    margin-top: 0.3rem !important;
    filter: drop-shadow(0 0 12px rgba(255, 106, 61, 0.6)) !important;
}

.tech-heart-tag {
    position: relative !important;
    z-index: 3 !important;
    font-size: 0.7rem !important;
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    margin-top: 0.3rem !important;
    text-align: center !important;
    white-space: nowrap !important;
}

/* 中心双环涟漪 */
.tech-heart-pulse {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 28% !important;
    height: 40% !important;
    z-index: 2 !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.thp-ring {
    position: absolute !important;
    width: 30px !important;
    height: 30px !important;
    border: 1px solid rgba(255, 182, 72, 0.4) !important;
    border-radius: 50% !important;
    animation: thp-ping 2s ease-out infinite !important;
}

.thp-ring-2 {
    animation-delay: 1s !important;
}

@keyframes thp-ping {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

@media (max-width: 1024px) {
    .hm-digit { font-size: 0.7rem !important; }
    .hm-space { width: 0.8em !important; height: 0.8em !important; }
    .tech-heart-num { font-size: 2rem !important; }
}

@media (max-width: 768px) {
    .hm-digit { font-size: 0.5rem !important; }
    .hm-space { width: 0.65em !important; height: 0.65em !important; }
    .tech-heart-num { font-size: 1.6rem !important; }
    .tech-heart-tag { font-size: 0.6rem !important; }
}

@media (max-width: 480px) {
    .hm-digit { font-size: 0.4rem !important; }
    .hm-space { width: 0.55em !important; height: 0.55em !important; }
    .tech-heart-num { font-size: 1.3rem !important; }
    .tech-heart-tag { display: none !important; }
}

/* ==================== 检查upform 男女对阵 ==================== */
.checkup-form-grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 1.25rem !important;
    align-items: stretch !important;
    margin: 1.5rem 0 1rem !important;
    max-width: 640px !important;
}

.checkup-side {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.55rem !important;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.04) 0%, rgba(255, 182, 72, 0.02) 100%);
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    padding: 1rem 1rem 1.1rem !important;
}

.checkup-side .checkup-input {
    width: 100% !important;
    flex: none !important;
    padding: 0.7rem 0.9rem !important;
    font-size: 0.88rem !important;
}

.checkup-side-label {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--gold, #c9a84c) !important;
    margin-bottom: 0.25rem !important;
    letter-spacing: 0.05em !important;
}

.checkup-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    align-self: center !important;
    background: rgba(255, 106, 61, 0.1) !important;
    border: 1px solid rgba(251, 146, 60, 0.3) !important;
    border-radius: 50% !important;
}

.divider-icon {
    font-size: 1.1rem !important;
    animation: heartbeat 1.6s ease-in-out infinite !important;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.checkup-hint {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    margin: 0.5rem 0 0.85rem !important;
    letter-spacing: 0.02em !important;
}

.checkup-hint strong { color: var(--gold, #c9a84c) !important; font-weight: 600 !important; }

.checkup-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FF4D1F 100%) !important;
    color: #fff !important;
    padding: 0.95rem 2rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 24px rgba(255, 106, 61, 0.3) !important;
}

.checkup-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(255, 106, 61, 0.45) !important;
}

.checkup-disclaimer {
    display: inline-block !important;
    font-size: 0.78rem !important;
    color: #f59e0b !important;
    background: rgba(245, 158, 11, 0.08) !important;
    border-left: 3px solid #f59e0b !important;
    padding: 0.45rem 0.85rem !important;
    border-radius: 4px !important;
    margin: 0.85rem 0 0.5rem !important;
    line-height: 1.5 !important;
}

@media (max-width: 720px) {
    .checkup-form-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    .checkup-divider {
        width: 100% !important;
        height: 28px !important;
        margin: 0 auto !important;
    }
}

/* ==================== 检查upform 男女对阵 ==================== */
.q-avatar {
    font-size: 1.75rem !important;
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(251, 146, 60, 0.12) !important;
    border-radius: 50% !important;
}

.q-content { flex: 1 !important; }

.q-meta { font-size: 0.72rem !important; color: var(--text-muted) !important; margin-bottom: 0.35rem !important; letter-spacing: 0.05em !important; }
.q-text { font-size: 1.05rem !important; color: var(--text-primary) !important; line-height: 1.5 !important; font-style: normal !important; }

.committee-question {
    display: flex !important;
    gap: 1rem !important;
    align-items: flex-start !important;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(217, 70, 239, 0.04) 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.25) !important;
    border-radius: 14px !important;
    padding: 1.25rem 1.5rem !important;
}

.committee-demo { margin-top: 3rem !important; display: flex !important; flex-direction: column !important; gap: 1.25rem !important; }
.committee-section { max-width: 1100px !important; margin: 0 auto !important; padding: 6rem 2rem !important; }
.committee-agents {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    padding-left: 0 !important;
    border-left: none !important;
}
.agent-response {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 3px solid var(--accent-cyan) !important;
    border-radius: 10px !important;
    padding: 1rem 1.25rem !important;
    transition: all 0.3s ease !important;
}
.agent-response:hover { transform: translateX(4px) !important; }
.agent-header { display: flex !important; align-items: center !important; gap: 0.6rem !important; margin-bottom: 0.5rem !important; font-size: 0.85rem !important; }
.agent-emoji { font-size: 1.2rem !important; }
.agent-name { font-weight: 600 !important; color: var(--text-primary) !important; font-size: 0.95rem !important; }
.agent-role { color: var(--text-muted) !important; font-size: 0.78rem !important; padding-left: 0.5rem !important; border-left: 1px solid var(--border-subtle) !important; margin-left: 0.25rem !important; }
.agent-text { color: var(--text-secondary) !important; font-size: 0.92rem !important; line-height: 1.65 !important; font-style: normal !important; }

.agent-summary {
    border-left-color: var(--accent-orange) !important;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(217, 70, 239, 0.04) 100%);
    border: 1px solid rgba(251, 146, 60, 0.3) !important;
    border-left-width: 3px !important;
    box-shadow: 0 8px 30px rgba(251, 146, 60, 0.1) !important;
}
.agent-summary .agent-text { color: var(--text-primary) !important; font-style: normal !important; line-height: 1.75 !important; }

@media (max-width: 768px) {
    .committee-section { padding: 4rem 1.25rem !important; }
    .committee-question { padding: 1rem 1.15rem !important; }
    .q-text { font-size: 0.95rem !important; }
    .committee-agents { padding-left: 0.5rem !important; }
    .agent-response { padding: 0.85rem 1rem !important; }
    .agent-role { display: none !important; }
}

/* ==================== 动态数据大屏 ==================== */
.live-dashboard { max-width: 1400px !important; margin: 0 auto !important; padding: 4rem 2rem 2rem !important; }

.dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 2.5rem !important;
    width: 100% !important;
}

.dashboard-card {
    position: relative !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    padding: 1.5rem 1.25rem !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

.dashboard-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-cyan)) !important;
    opacity: 0.7 !important;
}

.dashboard-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.dashboard-label {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.dashboard-value {
    font-family: var(--font-display) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.35rem !important;
    transition: transform 0.4s var(--ease-out-expo);
}

.dashboard-value.pulse { transform: scale(1.05) !important; }
.dashboard-trend { font-size: 0.78rem !important; color: var(--accent-green) !important; display: flex !important; align-items: center !important; gap: 0.25rem !important; }

.dashboard-trend-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--accent-green) !important;
    box-shadow: 0 0 8px var(--accent-green) !important;
    animation: pulse-dot 1.6s ease-in-out infinite !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.dashboard-pulse-ring {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    border: 1px solid var(--accent-cyan) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.dashboard-pulse-ring.active { animation: ring-pulse 1.2s ease-out !important; }

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@media (max-width: 1024px) { .dashboard-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 768px) { .live-dashboard { padding: 3rem 1.25rem 1.5rem !important; } .dashboard-grid { gap: 0.85rem !important; } .dashboard-value { font-size: 2rem !important; } }
@media (max-width: 480px) { .dashboard-grid { grid-template-columns: 1fr !important; } }


/* ==================== 首页 产品 stats (替代 O2O 商业条在 HERO 位置) ==================== */
.hero-product-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 0.85rem !important;
    margin: 2.5rem 0 1.5rem !important;
    padding: 1.35rem 1.75rem !important;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(10px);
    max-width: 780px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.product-stat {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    text-align: center !important;
    padding: 0.25rem 0.5rem !important;
    transition: transform 0.3s var(--ease-out-expo);
    display: block !important;
}

.product-stat:hover { transform: translateY(-2px); }

.product-num-row {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0.2rem !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
}

.product-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
}

.product-num--small {
    font-size: 1.6rem !important;
}

.product-unit {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--gold, #c9a84c) !important;
    -webkit-text-fill-color: var(--gold, #c9a84c) !important;
}

.product-label {
    font-size: 0.78rem !important;
    color: var(--text-secondary) !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
}

.product-divider {
    width: 1px !important;
    background: linear-gradient(180deg, transparent 0%, rgba(251, 146, 60, 0.3) 50%, transparent 100%) !important;
    flex: 0 0 1px !important;
    align-self: stretch !important;
}

@media (max-width: 820px) {
    .hero-product-strip {
        flex-wrap: wrap !important;
        gap: 1rem 0.5rem !important;
        padding: 1rem 0.85rem !important;
    }
    .product-stat { flex: 1 1 45% !important; }
    .product-divider { display: none !important; }
    .product-num { font-size: 2rem !important; }
    .product-num--small { font-size: 1.3rem !important; }
}

/* ==================== O2O 独立板块（非主舞台） ==================== */
.o2o-club-section {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 6rem 2rem !important;
    text-align: center !important;
}

.o2o-club-section .section-tag {
    color: var(--text-muted) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 1rem !important;
    display: inline-block !important;
}

.o2o-club-section .section-title {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

.o2o-club-section .section-subtitle {
    font-size: 1.05rem !important;
    color: var(--text-secondary) !important;
    max-width: 640px !important;
    margin: 0 auto 3.5rem !important;
    line-height: 1.6 !important;
}

.o2o-club-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
}

.o2o-club-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    transition: all 0.4s var(--ease-out-expo);
    text-align: center !important;
}

.o2o-club-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.o2o-club-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.o2o-club-num span {
    font-size: 1.2rem !important;
    margin-left: 0.15rem !important;
}

.o2o-club-label {
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 0.6rem !important;
    letter-spacing: 0.04em !important;
}

.o2o-club-desc {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
}

.o2o-club-cta-line {
    margin-top: 2.5rem !important;
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
}

.o2o-club-link {
    color: var(--accent-orange, #fb923c) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(251, 146, 60, 0.4) !important;
    padding-bottom: 1px !important;
    transition: all 0.2s ease;
}

.o2o-club-link:hover {
    color: var(--gold, #c9a84c) !important;
    border-color: var(--gold, #c9a84c) !important;
}

@media (max-width: 1024px) {
    .o2o-club-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .o2o-club-section { padding: 4rem 1.25rem !important; }
    .o2o-club-grid { gap: 0.85rem !important; }
    .o2o-club-card { padding: 1.5rem 1rem !important; }
    .o2o-club-num { font-size: 2.25rem !important; }
}

@media (max-width: 480px) {
    .o2o-club-grid { grid-template-columns: 1fr !important; }
}

/* ==================== HERO 两栏布局 ==================== */
.hero-o2o-unified .hero-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 3rem !important;
    align-items: center !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
}

.hero-o2o-unified .hero-content {
    max-width: 720px !important;
    width: 100% !important;
}

@media (max-width: 1024px) {
    .hero-o2o-unified .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .hero-o2o-unified .hero-visual { max-width: 480px !important; margin: 0 auto !important; }
}

/* ==================== 双心动态效果 ==================== */
.hero-visual {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.heart-stage {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 520px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 5% !important;
}

/* ---- 装饰粒子 ---- */
.heart-particle {
    position: absolute !important;
    left: var(--x) !important;
    top: var(--y) !important;
    width: 6px !important;
    height: 6px !important;
    background: radial-gradient(circle, #FFB648 0%, transparent 70%) !important;
    border-radius: 50% !important;
    animation: particle-pulse 3s ease-in-out infinite !important;
    animation-delay: var(--d) !important;
    pointer-events: none !important;
}

.heart-particle:nth-child(odd) {
    width: 4px !important;
    height: 4px !important;
    background: radial-gradient(circle, #FF6A3D 0%, transparent 70%) !important;
}

@keyframes particle-pulse {
    0%, 100% { transform: scale(0.5) translateY(0); opacity: 0.3; }
    50% { transform: scale(1.5) translateY(-8px); opacity: 1; }
}

/* ---- 单个心 ---- */
.heart {
    position: relative !important;
    width: 38% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    z-index: 3 !important;
}

.heart-svg {
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 8px 24px rgba(255, 106, 61, 0.45)) !important;
    animation: heart-beat 1.6s ease-in-out infinite !important;
    transform-origin: center 70% !important;
}

.heart-left .heart-svg { animation-delay: 0s !important; }
.heart-right .heart-svg { animation-delay: 0.8s !important; }

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.12); }
    20% { transform: scale(0.98); }
    30% { transform: scale(1.08); }
    40% { transform: scale(1); }
}

.heart-glow {
    position: absolute !important;
    inset: -20% !important;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.35) 0%, transparent 60%) !important;
    border-radius: 50% !important;
    animation: glow-pulse 1.6s ease-in-out infinite !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.heart-right .heart-glow {
    background: radial-gradient(circle, rgba(255, 182, 72, 0.4) 0%, transparent 60%) !important;
    animation-delay: 0.8s !important;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}

.heart-label {
    position: absolute !important;
    bottom: -10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    background: rgba(10, 13, 20, 0.6) !important;
    padding: 0.25rem 0.85rem !important;
    border-radius: 100px !important;
    border: 1px solid rgba(251, 146, 60, 0.3) !important;
    white-space: nowrap !important;
    backdrop-filter: blur(8px) !important;
}

/* ---- 连接线 + 脉冲能量 ---- */
.heart-connection {
    position: absolute !important;
    left: 22% !important;
    right: 22% !important;
    top: 50% !important;
    height: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
}

.heart-line {
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 61, 0.4) 20%, rgba(255, 182, 72, 0.6) 50%, rgba(255, 106, 61, 0.4) 80%, transparent 100%) !important;
    position: relative !important;
}

.heart-energy {
    position: absolute !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, #FFB648 0%, #FF6A3D 60%, transparent 100%) !important;
    box-shadow: 0 0 20px rgba(255, 182, 72, 0.8), 0 0 40px rgba(255, 106, 61, 0.4) !important;
    top: 50% !important;
    left: 0% !important;
    transform: translateY(-50%) !important;
    animation: energy-travel 1.6s ease-in-out infinite !important;
}

.heart-energy-2 {
    animation-delay: 0.8s !important;
    background: radial-gradient(circle, #FF6A3D 0%, #FF4D1F 60%, transparent 100%) !important;
}

@keyframes energy-travel {
    0% { left: 0%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* ---- 轨道标签 ---- */
.heart-orbit {
    position: absolute !important;
    font-size: 0.78rem !important;
    color: var(--gold, #c9a84c) !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    padding: 0.35rem 0.85rem !important;
    background: rgba(201, 168, 76, 0.08) !important;
    border: 1px solid rgba(201, 168, 76, 0.25) !important;
    border-radius: 100px !important;
    backdrop-filter: blur(6px) !important;
    animation: orbit-float 4s ease-in-out infinite !important;
    white-space: nowrap !important;
}

.heart-orbit-1 {
    top: 8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation-delay: 0s !important;
}

.heart-orbit-2 {
    bottom: 8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation-delay: 1.3s !important;
}

.heart-orbit-3 {
    top: 50% !important;
    right: 2% !important;
    transform: translateY(-50%) !important;
    animation-delay: 2.6s !important;
    animation: orbit-float-3 4s ease-in-out infinite !important;
}

@keyframes orbit-float {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(-6px); opacity: 1; }
}

@keyframes orbit-float-3 {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.7; }
    50% { transform: translateY(-50%) translateX(4px); opacity: 1; }
}

@media (max-width: 768px) {
    .heart-stage { max-width: 380px !important; padding: 0 3% !important; }
    .heart-label { font-size: 0.8rem !important; padding: 0.2rem 0.7rem !important; }
    .heart-orbit { font-size: 0.7rem !important; padding: 0.25rem 0.6rem !important; }
}

@media (max-width: 480px) {
    .heart-stage { max-width: 320px !important; }
}

/* ==================== HERO Premium：12 节点轨道 + 双心 + 浮动玻璃卡 ==================== */
.hero-visual {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.constellation {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 560px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    isolation: isolate !important;
}

.constellation-aura {
    position: absolute !important;
    inset: 8% !important;
    background: radial-gradient(circle at 30% 30%, rgba(255, 106, 61, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 182, 72, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 60%) !important;
    border-radius: 50% !important;
    filter: blur(20px) !important;
    animation: aura-rotate 30s linear infinite !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

@keyframes aura-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes orbit-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.heart-pair {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    z-index: 3 !important;
    width: 60% !important;
    height: 50% !important;
}

.heart-pair .heart {
    position: relative !important;
    width: 42% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    z-index: 3 !important;
}

.heart-svg {
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 12px 32px rgba(255, 106, 61, 0.55)) drop-shadow(0 0 24px rgba(255, 182, 72, 0.4)) !important;
    animation: heart-beat 1.8s ease-in-out infinite !important;
    transform-origin: center 70% !important;
}

.heart-user .heart-svg { animation-delay: 0s !important; }
.heart-ai .heart-svg { animation-delay: 0.9s !important; }

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(0.96); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
}

.heart-glow {
    position: absolute !important;
    inset: -25% !important;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.4) 0%, transparent 65%) !important;
    border-radius: 50% !important;
    animation: glow-pulse 1.8s ease-in-out infinite !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.heart-ai .heart-glow {
    background: radial-gradient(circle, rgba(255, 182, 72, 0.45) 0%, transparent 65%) !important;
    animation-delay: 0.9s !important;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.heart-tag {
    position: absolute !important;
    bottom: -8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.85rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    background: rgba(10, 13, 20, 0.75) !important;
    padding: 0.3rem 0.95rem !important;
    border-radius: 100px !important;
    border: 1px solid rgba(251, 146, 60, 0.35) !important;
    white-space: nowrap !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

.heart-connect {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 26% !important;
    height: 2px !important;
    z-index: 2 !important;
}

.connect-line {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 61, 0.6) 50%, transparent 100%) !important;
    position: relative !important;
}

.connect-pulse {
    position: absolute !important;
    top: 50% !important;
    left: 0% !important;
    transform: translateY(-50%) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, #FFB648 0%, transparent 70%) !important;
    box-shadow: 0 0 16px #FFB648 !important;
    animation: connect-pulse-anim 1.8s ease-in-out infinite !important;
}

@keyframes connect-pulse-anim {
    0% { left: 0%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.float-card {
    position: absolute !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
    border-radius: 14px !important;
    padding: 0.85rem 1.1rem !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    z-index: 5 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transition: transform 0.4s var(--ease-out-expo);
    min-width: 0 !important;
}

.float-card:hover { transform: translateY(-3px) scale(1.03) !important; }

.fc-icon {
    font-size: 1.4rem !important;
    flex-shrink: 0 !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.15) 0%, rgba(255, 182, 72, 0.1) 100%) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
}

.fc-title {
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.fc-desc {
    font-size: 0.72rem !important;
    color: var(--text-muted) !important;
    line-height: 1.3 !important;
    margin-top: 0.15rem !important;
    white-space: nowrap !important;
}

.fc-content { min-width: 0 !important; }

.fc-status {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    font-size: 0.82rem !important;
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

.fc-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #10b981 !important;
    box-shadow: 0 0 8px #10b981 !important;
    animation: fc-dot-pulse 1.5s ease-in-out infinite !important;
    flex-shrink: 0 !important;
}

@keyframes fc-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.float-card--top {
    top: 6% !important;
    left: 8% !important;
    animation: float-y-simple 5s ease-in-out infinite !important;
}

.float-card--right {
    top: 22% !important;
    right: 4% !important;
    animation: float-y-simple 5s ease-in-out infinite 1.25s !important;
}

.float-card--bottom {
    bottom: 10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0.65rem 1.25rem !important;
    animation: float-y-bottom 5s ease-in-out infinite 2.5s !important;
}

.float-card--bottom:hover { transform: translateX(-50%) translateY(-3px) scale(1.03) !important; }

.float-card--left {
    top: 38% !important;
    left: 2% !important;
    animation: float-y-simple 5s ease-in-out infinite 3.75s !important;
}

@keyframes float-y-simple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-y-bottom {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-o2o-unified .hero-title .line-1 {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.15 !important;
    margin-bottom: 0.5rem !important;
}

.hero-o2o-unified .hero-title .line-2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
}

.hero-o2o-unified .hero-title .line-3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
}

.hero-o2o-unified .hero-title .line-4 {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem) !important;
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.5 !important;
    max-width: 540px !important;
    margin-top: 0.5rem !important;
}

@media (max-width: 1024px) {
    .constellation { max-width: 460px !important; }
    .float-card--top, .float-card--left { font-size: 0.85rem !important; }
}

@media (max-width: 768px) {
    .constellation { max-width: 380px !important; }
    .float-card { padding: 0.65rem 0.85rem !important; }
    .fc-icon { width: 30px !important; height: 30px !important; font-size: 1.15rem !important; }
    .fc-title { font-size: 0.78rem !important; }
    .fc-desc { font-size: 0.66rem !important; }
    .heart-tag { font-size: 0.75rem !important; padding: 0.2rem 0.7rem !important; }
}

@media (max-width: 480px) {
    .constellation { max-width: 320px !important; }
    .float-card--top, .float-card--right, .float-card--left {
        font-size: 0.78rem !important;
        padding: 0.55rem 0.7rem !important;
    }
    .float-card--bottom { display: none !important; }

    /* 12 AI 围圈缩小：缩点 + 缩轨道半径 */
    .orbit-dot {
        width: 36px !important;
        height: 36px !important;
        margin: -18px 0 0 -18px !important;
        transform: rotate(var(--angle, 0deg)) translateY(-110px) rotate(calc(-1 * var(--angle, 0deg))) !important;
    }
    .orbit-dot:hover {
        transform: rotate(var(--angle, 0deg)) translateY(-110px) rotate(calc(-1 * var(--angle, 0deg))) scale(1.18) !important;
    }
    .orbit-emoji { font-size: 12px !important; }
    .orbit-name { font-size: 0.55rem !important; }
}

/* 超小屏：再次缩小 */
@media (max-width: 380px) {
    .orbit-dot {
        width: 32px !important;
        height: 32px !important;
        margin: -16px 0 0 -16px !important;
        transform: rotate(var(--angle, 0deg)) translateY(-95px) rotate(calc(-1 * var(--angle, 0deg))) !important;
    }
    .orbit-dot:hover {
        transform: rotate(var(--angle, 0deg)) translateY(-95px) rotate(calc(-1 * var(--angle, 0deg))) scale(1.18) !important;
    }
}

/* ==================== 数字心 (Number Heart) ==================== */
.num-heart {
    position: relative !important;
    width: 42% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    z-index: 3 !important;
}

.num-heart-svg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 12px 32px rgba(255, 106, 61, 0.55)) drop-shadow(0 0 24px rgba(255, 182, 72, 0.4)) !important;
    animation: num-heart-beat 1.8s ease-in-out infinite !important;
    transform-origin: center 70% !important;
    z-index: 1 !important;
}

.num-heart--ai .num-heart-svg { animation-delay: 0.9s !important; }

@keyframes num-heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(0.96); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
}

.num-heart-num {
    position: relative !important;
    z-index: 2 !important;
    font-family: var(--font-display, 'Playfair Display', 'Georgia', serif) !important;
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1 !important;
    margin-top: -8% !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 16px rgba(255, 255, 255, 0.4) !important;
    letter-spacing: -0.05em !important;
}

.num-heart-tag {
    position: relative !important;
    z-index: 2 !important;
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    margin-top: 0.25rem !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
    white-space: nowrap !important;
}

/* 中心光晕连接 */
.num-heart-pulse {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 60% !important;
    height: 60% !important;
    z-index: 2 !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.nphp-ring {
    position: absolute !important;
    width: 30px !important;
    height: 30px !important;
    border: 1px solid rgba(255, 182, 72, 0.4) !important;
    border-radius: 50% !important;
    animation: nphp-ping 1.8s ease-out infinite !important;
}

.nphp-ring-2 {
    animation-delay: 0.9s !important;
}

@keyframes nphp-ping {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* 把 heart-pair 布局重置为合适数字心 */
.heart-pair {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8% !important;
    z-index: 3 !important;
    width: 70% !important;
    height: 50% !important;
}

@media (max-width: 1024px) {
    .num-heart-num { font-size: clamp(2rem, 4vw, 3.2rem) !important; }
}

@media (max-width: 768px) {
    .num-heart-num { font-size: 2rem !important; }
    .num-heart-tag { font-size: 0.6rem !important; }
    .heart-pair { width: 80% !important; }
}

@media (max-width: 480px) {
    .num-heart-num { font-size: 1.5rem !important; }
    .num-heart-tag { display: none !important; }
}

/* ==================== 动态数据大屏 ==================== */
.live-dashboard { max-width: 1400px !important; margin: 0 auto !important; padding: 4rem 2rem 2rem !important; }

.dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 2.5rem !important;
    width: 100% !important;
}

.dashboard-card {
    position: relative !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    padding: 1.5rem 1.25rem !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

.dashboard-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-cyan)) !important;
    opacity: 0.7 !important;
}

.dashboard-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.dashboard-label {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.dashboard-value {
    font-family: var(--font-display) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.35rem !important;
    transition: transform 0.4s var(--ease-out-expo);
}

.dashboard-value.pulse { transform: scale(1.05) !important; }
.dashboard-trend { font-size: 0.78rem !important; color: var(--accent-green) !important; display: flex !important; align-items: center !important; gap: 0.25rem !important; }

.dashboard-trend-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--accent-green) !important;
    box-shadow: 0 0 8px var(--accent-green) !important;
    animation: pulse-dot 1.6s ease-in-out infinite !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.dashboard-pulse-ring {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    border: 1px solid var(--accent-cyan) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.dashboard-pulse-ring.active { animation: ring-pulse 1.2s ease-out !important; }

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@media (max-width: 1024px) { .dashboard-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 768px) { .live-dashboard { padding: 3rem 1.25rem 1.5rem !important; } .dashboard-grid { gap: 0.85rem !important; } .dashboard-value { font-size: 2rem !important; } }
@media (max-width: 480px) { .dashboard-grid { grid-template-columns: 1fr !important; } }


/* ==================== 首页 产品 stats (替代 O2O 商业条在 HERO 位置) ==================== */
.hero-product-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 0.85rem !important;
    margin: 2.5rem 0 1.5rem !important;
    padding: 1.35rem 1.75rem !important;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(10px);
    max-width: 780px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.product-stat {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    text-align: center !important;
    padding: 0.25rem 0.5rem !important;
    transition: transform 0.3s var(--ease-out-expo);
    display: block !important;
}

.product-stat:hover { transform: translateY(-2px); }

.product-num-row {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0.2rem !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
}

.product-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
}

.product-num--small {
    font-size: 1.6rem !important;
}

.product-unit {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--gold, #c9a84c) !important;
    -webkit-text-fill-color: var(--gold, #c9a84c) !important;
}

.product-label {
    font-size: 0.78rem !important;
    color: var(--text-secondary) !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
}

.product-divider {
    width: 1px !important;
    background: linear-gradient(180deg, transparent 0%, rgba(251, 146, 60, 0.3) 50%, transparent 100%) !important;
    flex: 0 0 1px !important;
    align-self: stretch !important;
}

@media (max-width: 820px) {
    .hero-product-strip {
        flex-wrap: wrap !important;
        gap: 1rem 0.5rem !important;
        padding: 1rem 0.85rem !important;
    }
    .product-stat { flex: 1 1 45% !important; }
    .product-divider { display: none !important; }
    .product-num { font-size: 2rem !important; }
    .product-num--small { font-size: 1.3rem !important; }
}

/* ==================== O2O 独立板块（非主舞台） ==================== */
.o2o-club-section {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 6rem 2rem !important;
    text-align: center !important;
}

.o2o-club-section .section-tag {
    color: var(--text-muted) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 1rem !important;
    display: inline-block !important;
}

.o2o-club-section .section-title {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

.o2o-club-section .section-subtitle {
    font-size: 1.05rem !important;
    color: var(--text-secondary) !important;
    max-width: 640px !important;
    margin: 0 auto 3.5rem !important;
    line-height: 1.6 !important;
}

.o2o-club-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
}

.o2o-club-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    transition: all 0.4s var(--ease-out-expo);
    text-align: center !important;
}

.o2o-club-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.o2o-club-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.o2o-club-num span {
    font-size: 1.2rem !important;
    margin-left: 0.15rem !important;
}

.o2o-club-label {
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 0.6rem !important;
    letter-spacing: 0.04em !important;
}

.o2o-club-desc {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
}

.o2o-club-cta-line {
    margin-top: 2.5rem !important;
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
}

.o2o-club-link {
    color: var(--accent-orange, #fb923c) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(251, 146, 60, 0.4) !important;
    padding-bottom: 1px !important;
    transition: all 0.2s ease;
}

.o2o-club-link:hover {
    color: var(--gold, #c9a84c) !important;
    border-color: var(--gold, #c9a84c) !important;
}

@media (max-width: 1024px) {
    .o2o-club-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .o2o-club-section { padding: 4rem 1.25rem !important; }
    .o2o-club-grid { gap: 0.85rem !important; }
    .o2o-club-card { padding: 1.5rem 1rem !important; }
    .o2o-club-num { font-size: 2.25rem !important; }
}

@media (max-width: 480px) {
    .o2o-club-grid { grid-template-columns: 1fr !important; }
}

/* ==================== HERO 两栏布局 ==================== */
.hero-o2o-unified .hero-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 3rem !important;
    align-items: center !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
}

.hero-o2o-unified .hero-content {
    max-width: 720px !important;
    width: 100% !important;
}

@media (max-width: 1024px) {
    .hero-o2o-unified .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .hero-o2o-unified .hero-visual { max-width: 480px !important; margin: 0 auto !important; }
}

/* ==================== 双心动态效果 ==================== */
.hero-visual {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.heart-stage {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 520px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 5% !important;
}

/* ---- 装饰粒子 ---- */
.heart-particle {
    position: absolute !important;
    left: var(--x) !important;
    top: var(--y) !important;
    width: 6px !important;
    height: 6px !important;
    background: radial-gradient(circle, #FFB648 0%, transparent 70%) !important;
    border-radius: 50% !important;
    animation: particle-pulse 3s ease-in-out infinite !important;
    animation-delay: var(--d) !important;
    pointer-events: none !important;
}

.heart-particle:nth-child(odd) {
    width: 4px !important;
    height: 4px !important;
    background: radial-gradient(circle, #FF6A3D 0%, transparent 70%) !important;
}

@keyframes particle-pulse {
    0%, 100% { transform: scale(0.5) translateY(0); opacity: 0.3; }
    50% { transform: scale(1.5) translateY(-8px); opacity: 1; }
}

/* ---- 单个心 ---- */
.heart {
    position: relative !important;
    width: 38% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    z-index: 3 !important;
}

.heart-svg {
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 8px 24px rgba(255, 106, 61, 0.45)) !important;
    animation: heart-beat 1.6s ease-in-out infinite !important;
    transform-origin: center 70% !important;
}

.heart-left .heart-svg { animation-delay: 0s !important; }
.heart-right .heart-svg { animation-delay: 0.8s !important; }

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.12); }
    20% { transform: scale(0.98); }
    30% { transform: scale(1.08); }
    40% { transform: scale(1); }
}

.heart-glow {
    position: absolute !important;
    inset: -20% !important;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.35) 0%, transparent 60%) !important;
    border-radius: 50% !important;
    animation: glow-pulse 1.6s ease-in-out infinite !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.heart-right .heart-glow {
    background: radial-gradient(circle, rgba(255, 182, 72, 0.4) 0%, transparent 60%) !important;
    animation-delay: 0.8s !important;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}

.heart-label {
    position: absolute !important;
    bottom: -10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    background: rgba(10, 13, 20, 0.6) !important;
    padding: 0.25rem 0.85rem !important;
    border-radius: 100px !important;
    border: 1px solid rgba(251, 146, 60, 0.3) !important;
    white-space: nowrap !important;
    backdrop-filter: blur(8px) !important;
}

/* ---- 连接线 + 脉冲能量 ---- */
.heart-connection {
    position: absolute !important;
    left: 22% !important;
    right: 22% !important;
    top: 50% !important;
    height: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
}

.heart-line {
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 61, 0.4) 20%, rgba(255, 182, 72, 0.6) 50%, rgba(255, 106, 61, 0.4) 80%, transparent 100%) !important;
    position: relative !important;
}

.heart-energy {
    position: absolute !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, #FFB648 0%, #FF6A3D 60%, transparent 100%) !important;
    box-shadow: 0 0 20px rgba(255, 182, 72, 0.8), 0 0 40px rgba(255, 106, 61, 0.4) !important;
    top: 50% !important;
    left: 0% !important;
    transform: translateY(-50%) !important;
    animation: energy-travel 1.6s ease-in-out infinite !important;
}

.heart-energy-2 {
    animation-delay: 0.8s !important;
    background: radial-gradient(circle, #FF6A3D 0%, #FF4D1F 60%, transparent 100%) !important;
}

@keyframes energy-travel {
    0% { left: 0%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* ---- 轨道标签 ---- */
.heart-orbit {
    position: absolute !important;
    font-size: 0.78rem !important;
    color: var(--gold, #c9a84c) !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    padding: 0.35rem 0.85rem !important;
    background: rgba(201, 168, 76, 0.08) !important;
    border: 1px solid rgba(201, 168, 76, 0.25) !important;
    border-radius: 100px !important;
    backdrop-filter: blur(6px) !important;
    animation: orbit-float 4s ease-in-out infinite !important;
    white-space: nowrap !important;
}

.heart-orbit-1 {
    top: 8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation-delay: 0s !important;
}

.heart-orbit-2 {
    bottom: 8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation-delay: 1.3s !important;
}

.heart-orbit-3 {
    top: 50% !important;
    right: 2% !important;
    transform: translateY(-50%) !important;
    animation-delay: 2.6s !important;
    animation: orbit-float-3 4s ease-in-out infinite !important;
}

@keyframes orbit-float {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(-6px); opacity: 1; }
}

@keyframes orbit-float-3 {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.7; }
    50% { transform: translateY(-50%) translateX(4px); opacity: 1; }
}

@media (max-width: 768px) {
    .heart-stage { max-width: 380px !important; padding: 0 3% !important; }
    .heart-label { font-size: 0.8rem !important; padding: 0.2rem 0.7rem !important; }
    .heart-orbit { font-size: 0.7rem !important; padding: 0.25rem 0.6rem !important; }
}

@media (max-width: 480px) {
    .heart-stage { max-width: 320px !important; }
}

/* ==================== HERO Premium：12 节点轨道 + 双心 + 浮动玻璃卡 ==================== */
.hero-visual {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.constellation {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 560px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    isolation: isolate !important;
}

.constellation-aura {
    position: absolute !important;
    inset: 8% !important;
    background: radial-gradient(circle at 30% 30%, rgba(255, 106, 61, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 182, 72, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 60%) !important;
    border-radius: 50% !important;
    filter: blur(20px) !important;
    animation: aura-rotate 30s linear infinite !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

@keyframes aura-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes orbit-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.heart-pair {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    z-index: 3 !important;
    width: 60% !important;
    height: 50% !important;
}

.heart-pair .heart {
    position: relative !important;
    width: 42% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    z-index: 3 !important;
}

.heart-svg {
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 12px 32px rgba(255, 106, 61, 0.55)) drop-shadow(0 0 24px rgba(255, 182, 72, 0.4)) !important;
    animation: heart-beat 1.8s ease-in-out infinite !important;
    transform-origin: center 70% !important;
}

.heart-user .heart-svg { animation-delay: 0s !important; }
.heart-ai .heart-svg { animation-delay: 0.9s !important; }

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(0.96); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
}

.heart-glow {
    position: absolute !important;
    inset: -25% !important;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.4) 0%, transparent 65%) !important;
    border-radius: 50% !important;
    animation: glow-pulse 1.8s ease-in-out infinite !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.heart-ai .heart-glow {
    background: radial-gradient(circle, rgba(255, 182, 72, 0.45) 0%, transparent 65%) !important;
    animation-delay: 0.9s !important;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.heart-tag {
    position: absolute !important;
    bottom: -8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.85rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    background: rgba(10, 13, 20, 0.75) !important;
    padding: 0.3rem 0.95rem !important;
    border-radius: 100px !important;
    border: 1px solid rgba(251, 146, 60, 0.35) !important;
    white-space: nowrap !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

.heart-connect {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 26% !important;
    height: 2px !important;
    z-index: 2 !important;
}

.connect-line {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 61, 0.6) 50%, transparent 100%) !important;
    position: relative !important;
}

.connect-pulse {
    position: absolute !important;
    top: 50% !important;
    left: 0% !important;
    transform: translateY(-50%) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, #FFB648 0%, transparent 70%) !important;
    box-shadow: 0 0 16px #FFB648 !important;
    animation: connect-pulse-anim 1.8s ease-in-out infinite !important;
}

@keyframes connect-pulse-anim {
    0% { left: 0%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.float-card {
    position: absolute !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
    border-radius: 14px !important;
    padding: 0.85rem 1.1rem !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    z-index: 5 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transition: transform 0.4s var(--ease-out-expo);
    min-width: 0 !important;
}

.float-card:hover { transform: translateY(-3px) scale(1.03) !important; }

.fc-icon {
    font-size: 1.4rem !important;
    flex-shrink: 0 !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.15) 0%, rgba(255, 182, 72, 0.1) 100%) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
}

.fc-title {
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.fc-desc {
    font-size: 0.72rem !important;
    color: var(--text-muted) !important;
    line-height: 1.3 !important;
    margin-top: 0.15rem !important;
    white-space: nowrap !important;
}

.fc-content { min-width: 0 !important; }

.fc-status {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    font-size: 0.82rem !important;
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

.fc-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #10b981 !important;
    box-shadow: 0 0 8px #10b981 !important;
    animation: fc-dot-pulse 1.5s ease-in-out infinite !important;
    flex-shrink: 0 !important;
}

@keyframes fc-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.float-card--top {
    top: 6% !important;
    left: 8% !important;
    animation: float-y-simple 5s ease-in-out infinite !important;
}

.float-card--right {
    top: 22% !important;
    right: 4% !important;
    animation: float-y-simple 5s ease-in-out infinite 1.25s !important;
}

.float-card--bottom {
    bottom: 10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0.65rem 1.25rem !important;
    animation: float-y-bottom 5s ease-in-out infinite 2.5s !important;
}

.float-card--bottom:hover { transform: translateX(-50%) translateY(-3px) scale(1.03) !important; }

.float-card--left {
    top: 38% !important;
    left: 2% !important;
    animation: float-y-simple 5s ease-in-out infinite 3.75s !important;
}

@keyframes float-y-simple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-y-bottom {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-o2o-unified .hero-title .line-1 {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.15 !important;
    margin-bottom: 0.5rem !important;
}

.hero-o2o-unified .hero-title .line-2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
}

.hero-o2o-unified .hero-title .line-3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
}

.hero-o2o-unified .hero-title .line-4 {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem) !important;
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.5 !important;
    max-width: 540px !important;
    margin-top: 0.5rem !important;
}

@media (max-width: 1024px) {
    .constellation { max-width: 460px !important; }
    .float-card--top, .float-card--left { font-size: 0.85rem !important; }
}

@media (max-width: 768px) {
    .constellation { max-width: 380px !important; }
    .float-card { padding: 0.65rem 0.85rem !important; }
    .fc-icon { width: 30px !important; height: 30px !important; font-size: 1.15rem !important; }
    .fc-title { font-size: 0.78rem !important; }
    .fc-desc { font-size: 0.66rem !important; }
    .heart-tag { font-size: 0.75rem !important; padding: 0.2rem 0.7rem !important; }
}

@media (max-width: 480px) {
    .constellation { max-width: 320px !important; }
    .float-card--top, .float-card--right, .float-card--left {
        font-size: 0.78rem !important;
        padding: 0.55rem 0.7rem !important;
    }
    .float-card--bottom { display: none !important; }

    /* 12 AI 围圈缩小：缩点 + 缩轨道半径 */
    .orbit-dot {
        width: 36px !important;
        height: 36px !important;
        margin: -18px 0 0 -18px !important;
        transform: rotate(var(--angle, 0deg)) translateY(-110px) rotate(calc(-1 * var(--angle, 0deg))) !important;
    }
    .orbit-dot:hover {
        transform: rotate(var(--angle, 0deg)) translateY(-110px) rotate(calc(-1 * var(--angle, 0deg))) scale(1.18) !important;
    }
    .orbit-emoji { font-size: 12px !important; }
    .orbit-name { font-size: 0.55rem !important; }
}

/* 超小屏：再次缩小 */
@media (max-width: 380px) {
    .orbit-dot {
        width: 32px !important;
        height: 32px !important;
        margin: -16px 0 0 -16px !important;
        transform: rotate(var(--angle, 0deg)) translateY(-95px) rotate(calc(-1 * var(--angle, 0deg))) !important;
    }
    .orbit-dot:hover {
        transform: rotate(var(--angle, 0deg)) translateY(-95px) rotate(calc(-1 * var(--angle, 0deg))) scale(1.18) !important;
    }
}

/* ==================== 动态数据大屏 ==================== */
.live-dashboard { max-width: 1400px !important; margin: 0 auto !important; padding: 4rem 2rem 2rem !important; }

.dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 2.5rem !important;
    width: 100% !important;
}

.dashboard-card {
    position: relative !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    padding: 1.5rem 1.25rem !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

.dashboard-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-cyan)) !important;
    opacity: 0.7 !important;
}

.dashboard-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.dashboard-label {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.dashboard-value {
    font-family: var(--font-display) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.35rem !important;
    transition: transform 0.4s var(--ease-out-expo);
}

.dashboard-value.pulse { transform: scale(1.05) !important; }
.dashboard-trend { font-size: 0.78rem !important; color: var(--accent-green) !important; display: flex !important; align-items: center !important; gap: 0.25rem !important; }

.dashboard-trend-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--accent-green) !important;
    box-shadow: 0 0 8px var(--accent-green) !important;
    animation: pulse-dot 1.6s ease-in-out infinite !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.dashboard-pulse-ring {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    border: 1px solid var(--accent-cyan) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.dashboard-pulse-ring.active { animation: ring-pulse 1.2s ease-out !important; }

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@media (max-width: 1024px) { .dashboard-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 768px) { .live-dashboard { padding: 3rem 1.25rem 1.5rem !important; } .dashboard-grid { gap: 0.85rem !important; } .dashboard-value { font-size: 2rem !important; } }
@media (max-width: 480px) { .dashboard-grid { grid-template-columns: 1fr !important; } }


/* ==================== 首页 产品 stats (替代 O2O 商业条在 HERO 位置) ==================== */
.hero-product-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 0.85rem !important;
    margin: 2.5rem 0 1.5rem !important;
    padding: 1.35rem 1.75rem !important;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(10px);
    max-width: 780px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.product-stat {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    text-align: center !important;
    padding: 0.25rem 0.5rem !important;
    transition: transform 0.3s var(--ease-out-expo);
    display: block !important;
}

.product-stat:hover { transform: translateY(-2px); }

.product-num-row {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0.2rem !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
}

.product-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
}

.product-num--small {
    font-size: 1.6rem !important;
}

.product-unit {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--gold, #c9a84c) !important;
    -webkit-text-fill-color: var(--gold, #c9a84c) !important;
}

.product-label {
    font-size: 0.78rem !important;
    color: var(--text-secondary) !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
}

.product-divider {
    width: 1px !important;
    background: linear-gradient(180deg, transparent 0%, rgba(251, 146, 60, 0.3) 50%, transparent 100%) !important;
    flex: 0 0 1px !important;
    align-self: stretch !important;
}

@media (max-width: 820px) {
    .hero-product-strip {
        flex-wrap: wrap !important;
        gap: 1rem 0.5rem !important;
        padding: 1rem 0.85rem !important;
    }
    .product-stat { flex: 1 1 45% !important; }
    .product-divider { display: none !important; }
    .product-num { font-size: 2rem !important; }
    .product-num--small { font-size: 1.3rem !important; }
}

/* ==================== O2O 独立板块（非主舞台） ==================== */
.o2o-club-section {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 6rem 2rem !important;
    text-align: center !important;
}

.o2o-club-section .section-tag {
    color: var(--text-muted) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 1rem !important;
    display: inline-block !important;
}

.o2o-club-section .section-title {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

.o2o-club-section .section-subtitle {
    font-size: 1.05rem !important;
    color: var(--text-secondary) !important;
    max-width: 640px !important;
    margin: 0 auto 3.5rem !important;
    line-height: 1.6 !important;
}

.o2o-club-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
}

.o2o-club-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    transition: all 0.4s var(--ease-out-expo);
    text-align: center !important;
}

.o2o-club-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.o2o-club-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.o2o-club-num span {
    font-size: 1.2rem !important;
    margin-left: 0.15rem !important;
}

.o2o-club-label {
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 0.6rem !important;
    letter-spacing: 0.04em !important;
}

.o2o-club-desc {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
}

.o2o-club-cta-line {
    margin-top: 2.5rem !important;
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
}

.o2o-club-link {
    color: var(--accent-orange, #fb923c) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(251, 146, 60, 0.4) !important;
    padding-bottom: 1px !important;
    transition: all 0.2s ease;
}

.o2o-club-link:hover {
    color: var(--gold, #c9a84c) !important;
    border-color: var(--gold, #c9a84c) !important;
}

@media (max-width: 1024px) {
    .o2o-club-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .o2o-club-section { padding: 4rem 1.25rem !important; }
    .o2o-club-grid { gap: 0.85rem !important; }
    .o2o-club-card { padding: 1.5rem 1rem !important; }
    .o2o-club-num { font-size: 2.25rem !important; }
}

@media (max-width: 480px) {
    .o2o-club-grid { grid-template-columns: 1fr !important; }
}

/* ==================== HERO 两栏布局 ==================== */
.hero-o2o-unified .hero-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 3rem !important;
    align-items: center !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
}

.hero-o2o-unified .hero-content {
    max-width: 720px !important;
    width: 100% !important;
}

@media (max-width: 1024px) {
    .hero-o2o-unified .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .hero-o2o-unified .hero-visual { max-width: 480px !important; margin: 0 auto !important; }
}

/* ==================== 双心动态效果 ==================== */
.hero-visual {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.heart-stage {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 520px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 5% !important;
}

/* ---- 装饰粒子 ---- */
.heart-particle {
    position: absolute !important;
    left: var(--x) !important;
    top: var(--y) !important;
    width: 6px !important;
    height: 6px !important;
    background: radial-gradient(circle, #FFB648 0%, transparent 70%) !important;
    border-radius: 50% !important;
    animation: particle-pulse 3s ease-in-out infinite !important;
    animation-delay: var(--d) !important;
    pointer-events: none !important;
}

.heart-particle:nth-child(odd) {
    width: 4px !important;
    height: 4px !important;
    background: radial-gradient(circle, #FF6A3D 0%, transparent 70%) !important;
}

@keyframes particle-pulse {
    0%, 100% { transform: scale(0.5) translateY(0); opacity: 0.3; }
    50% { transform: scale(1.5) translateY(-8px); opacity: 1; }
}

/* ---- 单个心 ---- */
.heart {
    position: relative !important;
    width: 38% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    z-index: 3 !important;
}

.heart-svg {
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 8px 24px rgba(255, 106, 61, 0.45)) !important;
    animation: heart-beat 1.6s ease-in-out infinite !important;
    transform-origin: center 70% !important;
}

.heart-left .heart-svg { animation-delay: 0s !important; }
.heart-right .heart-svg { animation-delay: 0.8s !important; }

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.12); }
    20% { transform: scale(0.98); }
    30% { transform: scale(1.08); }
    40% { transform: scale(1); }
}

.heart-glow {
    position: absolute !important;
    inset: -20% !important;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.35) 0%, transparent 60%) !important;
    border-radius: 50% !important;
    animation: glow-pulse 1.6s ease-in-out infinite !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.heart-right .heart-glow {
    background: radial-gradient(circle, rgba(255, 182, 72, 0.4) 0%, transparent 60%) !important;
    animation-delay: 0.8s !important;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}

.heart-label {
    position: absolute !important;
    bottom: -10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    background: rgba(10, 13, 20, 0.6) !important;
    padding: 0.25rem 0.85rem !important;
    border-radius: 100px !important;
    border: 1px solid rgba(251, 146, 60, 0.3) !important;
    white-space: nowrap !important;
    backdrop-filter: blur(8px) !important;
}

/* ---- 连接线 + 脉冲能量 ---- */
.heart-connection {
    position: absolute !important;
    left: 22% !important;
    right: 22% !important;
    top: 50% !important;
    height: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
}

.heart-line {
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 61, 0.4) 20%, rgba(255, 182, 72, 0.6) 50%, rgba(255, 106, 61, 0.4) 80%, transparent 100%) !important;
    position: relative !important;
}

.heart-energy {
    position: absolute !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, #FFB648 0%, #FF6A3D 60%, transparent 100%) !important;
    box-shadow: 0 0 20px rgba(255, 182, 72, 0.8), 0 0 40px rgba(255, 106, 61, 0.4) !important;
    top: 50% !important;
    left: 0% !important;
    transform: translateY(-50%) !important;
    animation: energy-travel 1.6s ease-in-out infinite !important;
}

.heart-energy-2 {
    animation-delay: 0.8s !important;
    background: radial-gradient(circle, #FF6A3D 0%, #FF4D1F 60%, transparent 100%) !important;
}

@keyframes energy-travel {
    0% { left: 0%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* ---- 轨道标签 ---- */
.heart-orbit {
    position: absolute !important;
    font-size: 0.78rem !important;
    color: var(--gold, #c9a84c) !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    padding: 0.35rem 0.85rem !important;
    background: rgba(201, 168, 76, 0.08) !important;
    border: 1px solid rgba(201, 168, 76, 0.25) !important;
    border-radius: 100px !important;
    backdrop-filter: blur(6px) !important;
    animation: orbit-float 4s ease-in-out infinite !important;
    white-space: nowrap !important;
}

.heart-orbit-1 {
    top: 8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation-delay: 0s !important;
}

.heart-orbit-2 {
    bottom: 8% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation-delay: 1.3s !important;
}

.heart-orbit-3 {
    top: 50% !important;
    right: 2% !important;
    transform: translateY(-50%) !important;
    animation-delay: 2.6s !important;
    animation: orbit-float-3 4s ease-in-out infinite !important;
}

@keyframes orbit-float {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(-6px); opacity: 1; }
}

@keyframes orbit-float-3 {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.7; }
    50% { transform: translateY(-50%) translateX(4px); opacity: 1; }
}

@media (max-width: 768px) {
    .heart-stage { max-width: 380px !important; padding: 0 3% !important; }
    .heart-label { font-size: 0.8rem !important; padding: 0.2rem 0.7rem !important; }
    .heart-orbit { font-size: 0.7rem !important; padding: 0.25rem 0.6rem !important; }
}

@media (max-width: 480px) {
    .heart-stage { max-width: 320px !important; }
}

/* ==================== 动态数据大屏 ==================== */
.live-dashboard { max-width: 1400px !important; margin: 0 auto !important; padding: 4rem 2rem 2rem !important; }

.dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 2.5rem !important;
    width: 100% !important;
}

.dashboard-card {
    position: relative !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    padding: 1.5rem 1.25rem !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

.dashboard-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-cyan)) !important;
    opacity: 0.7 !important;
}

.dashboard-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.dashboard-label {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.dashboard-value {
    font-family: var(--font-display) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.35rem !important;
    transition: transform 0.4s var(--ease-out-expo);
}

.dashboard-value.pulse { transform: scale(1.05) !important; }
.dashboard-trend { font-size: 0.78rem !important; color: var(--accent-green) !important; display: flex !important; align-items: center !important; gap: 0.25rem !important; }

.dashboard-trend-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--accent-green) !important;
    box-shadow: 0 0 8px var(--accent-green) !important;
    animation: pulse-dot 1.6s ease-in-out infinite !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.dashboard-pulse-ring {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    border: 1px solid var(--accent-cyan) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.dashboard-pulse-ring.active { animation: ring-pulse 1.2s ease-out !important; }

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@media (max-width: 1024px) { .dashboard-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 768px) { .live-dashboard { padding: 3rem 1.25rem 1.5rem !important; } .dashboard-grid { gap: 0.85rem !important; } .dashboard-value { font-size: 2rem !important; } }
@media (max-width: 480px) { .dashboard-grid { grid-template-columns: 1fr !important; } }


/* ==================== 首页 产品 stats (替代 O2O 商业条在 HERO 位置) ==================== */
.hero-product-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 0.85rem !important;
    margin: 2.5rem 0 1.5rem !important;
    padding: 1.35rem 1.75rem !important;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.2) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(10px);
    max-width: 780px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.product-stat {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    text-align: center !important;
    padding: 0.25rem 0.5rem !important;
    transition: transform 0.3s var(--ease-out-expo);
    display: block !important;
}

.product-stat:hover { transform: translateY(-2px); }

.product-num-row {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0.2rem !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
}

.product-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
}

.product-num--small {
    font-size: 1.6rem !important;
}

.product-unit {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--gold, #c9a84c) !important;
    -webkit-text-fill-color: var(--gold, #c9a84c) !important;
}

.product-label {
    font-size: 0.78rem !important;
    color: var(--text-secondary) !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
}

.product-divider {
    width: 1px !important;
    background: linear-gradient(180deg, transparent 0%, rgba(251, 146, 60, 0.3) 50%, transparent 100%) !important;
    flex: 0 0 1px !important;
    align-self: stretch !important;
}

@media (max-width: 820px) {
    .hero-product-strip {
        flex-wrap: wrap !important;
        gap: 1rem 0.5rem !important;
        padding: 1rem 0.85rem !important;
    }
    .product-stat { flex: 1 1 45% !important; }
    .product-divider { display: none !important; }
    .product-num { font-size: 2rem !important; }
    .product-num--small { font-size: 1.3rem !important; }
}

/* ==================== O2O 独立板块（非主舞台） ==================== */
.o2o-club-section {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 6rem 2rem !important;
    text-align: center !important;
}

.o2o-club-section .section-tag {
    color: var(--text-muted) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 1rem !important;
    display: inline-block !important;
}

.o2o-club-section .section-title {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

.o2o-club-section .section-subtitle {
    font-size: 1.05rem !important;
    color: var(--text-secondary) !important;
    max-width: 640px !important;
    margin: 0 auto 3.5rem !important;
    line-height: 1.6 !important;
}

.o2o-club-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
}

.o2o-club-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    transition: all 0.4s var(--ease-out-expo);
    text-align: center !important;
}

.o2o-club-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.o2o-club-num {
    font-family: var(--font-display, 'Playfair Display', serif) !important;
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.o2o-club-num span {
    font-size: 1.2rem !important;
    margin-left: 0.15rem !important;
}

.o2o-club-label {
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 0.6rem !important;
    letter-spacing: 0.04em !important;
}

.o2o-club-desc {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
}

.o2o-club-cta-line {
    margin-top: 2.5rem !important;
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
}

.o2o-club-link {
    color: var(--accent-orange, #fb923c) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(251, 146, 60, 0.4) !important;
    padding-bottom: 1px !important;
    transition: all 0.2s ease;
}

.o2o-club-link:hover {
    color: var(--gold, #c9a84c) !important;
    border-color: var(--gold, #c9a84c) !important;
}

@media (max-width: 1024px) {
    .o2o-club-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .o2o-club-section { padding: 4rem 1.25rem !important; }
    .o2o-club-grid { gap: 0.85rem !important; }
    .o2o-club-card { padding: 1.5rem 1rem !important; }
    .o2o-club-num { font-size: 2.25rem !important; }
}

@media (max-width: 480px) {
    .o2o-club-grid { grid-template-columns: 1fr !important; }
}

/* ==================== 动态数据大屏 ==================== */
.live-dashboard { max-width: 1400px !important; margin: 0 auto !important; padding: 4rem 2rem 2rem !important; }

.dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 2.5rem !important;
    width: 100% !important;
}

.dashboard-card {
    position: relative !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    padding: 1.5rem 1.25rem !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

.dashboard-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-cyan)) !important;
    opacity: 0.7 !important;
}

.dashboard-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.dashboard-label {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.dashboard-value {
    font-family: var(--font-display) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.35rem !important;
    transition: transform 0.4s var(--ease-out-expo);
}

.dashboard-value.pulse { transform: scale(1.05) !important; }
.dashboard-trend { font-size: 0.78rem !important; color: var(--accent-green) !important; display: flex !important; align-items: center !important; gap: 0.25rem !important; }

.dashboard-trend-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--accent-green) !important;
    box-shadow: 0 0 8px var(--accent-green) !important;
    animation: pulse-dot 1.6s ease-in-out infinite !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.dashboard-pulse-ring {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    border: 1px solid var(--accent-cyan) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.dashboard-pulse-ring.active { animation: ring-pulse 1.2s ease-out !important; }

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@media (max-width: 1024px) { .dashboard-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 768px) { .live-dashboard { padding: 3rem 1.25rem 1.5rem !important; } .dashboard-grid { gap: 0.85rem !important; } .dashboard-value { font-size: 2rem !important; } }
@media (max-width: 480px) { .dashboard-grid { grid-template-columns: 1fr !important; } }


/* ==================== 动态数据大屏 ==================== */
.live-dashboard { max-width: 1400px !important; margin: 0 auto !important; padding: 4rem 2rem 2rem !important; }

.dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 2.5rem !important;
    width: 100% !important;
}

.dashboard-card {
    position: relative !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    padding: 1.5rem 1.25rem !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

.dashboard-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-cyan)) !important;
    opacity: 0.7 !important;
}

.dashboard-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(251, 146, 60, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.dashboard-label {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.dashboard-value {
    font-family: var(--font-display) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0.35rem !important;
    transition: transform 0.4s var(--ease-out-expo);
}

.dashboard-value.pulse { transform: scale(1.05) !important; }
.dashboard-trend { font-size: 0.78rem !important; color: var(--accent-green) !important; display: flex !important; align-items: center !important; gap: 0.25rem !important; }

.dashboard-trend-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--accent-green) !important;
    box-shadow: 0 0 8px var(--accent-green) !important;
    animation: pulse-dot 1.6s ease-in-out infinite !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.dashboard-pulse-ring {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    border: 1px solid var(--accent-cyan) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.dashboard-pulse-ring.active { animation: ring-pulse 1.2s ease-out !important; }

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@media (max-width: 1024px) { .dashboard-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 768px) { .live-dashboard { padding: 3rem 1.25rem 1.5rem !important; } .dashboard-grid { gap: 0.85rem !important; } .dashboard-value { font-size: 2rem !important; } }
@media (max-width: 480px) { .dashboard-grid { grid-template-columns: 1fr !important; } }


.checkup-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.checkup-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.checkup-stat:hover {
    border-color: var(--gold, #c9a84c);
    transform: translateX(4px);
}

.checkup-stat .stat-num {
    font-family: var(--font-display, serif);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkup-stat .stat-num small {
    font-size: 1.1rem;
    font-weight: 400;
    margin-left: 0.2rem;
}

.checkup-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 820px) {
    .ai-checkup-section { padding: 3.5rem 1.25rem; }
    .checkup-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .checkup-form { flex-direction: column; max-width: 100%; }
}

/* ===== 5-Tier Revenue Model ===== */
.revenue-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.revenue-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.revenue-section .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold, #c9a84c);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.revenue-section .section-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.revenue-section .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.revenue-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.revenue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6A3D, #FFB648);
    opacity: 0.7;
}

.revenue-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(255, 106, 61, 0.04) 100%);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.revenue-tier {
    display: inline-block;
    font-family: var(--font-display, serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold, #c9a84c);
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
}

.revenue-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.revenue-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 2.5em;
}

.revenue-price {
    font-family: var(--font-display, serif);
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.revenue-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.revenue-freq {
    font-size: 0.78rem;
    color: var(--accent-cyan, #22d3ee);
    letter-spacing: 0.05em;
}

@media (max-width: 1100px) {
    .revenue-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
    .revenue-section { padding: 4rem 1.25rem; }
    .revenue-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
    .revenue-grid { grid-template-columns: 1fr; }
}

/* ===== Investor Hero ===== */
.investor-hero {
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.04) 0%, rgba(201, 168, 76, 0.02) 100%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 0.95rem;
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: var(--shadow-md), 0 0 20px rgba(217, 70, 239, 0.2); }
    50% { box-shadow: var(--shadow-md), 0 0 40px rgba(217, 70, 239, 0.45); }
}

/* Hero右侧Canvas区域 */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 5 / 6;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(217, 70, 239, 0.1);
}

.canvas-wrapper canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.canvas-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent-green);
    opacity: 0.7;
    pointer-events: none;
}

.vertical-art-text {
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.5;
}

/* 滚动指示器 */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 1s var(--ease-out-expo) 1.5s both;
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.2; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ==================== 场景展示区 ==================== */
.scenes-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-purple);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.scene-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease-out-expo);
}

.scene-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
    transform: translateY(-5px);
}

.scene-card.scene-starlight {
    grid-template-columns: 1fr 1.2fr;
}

.scene-card.scene-starlight .scene-content {
    order: -1;
}

.scene-canvas-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
}

.scene-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.scene-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.scene-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.scene-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.scene-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.tech-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 999px;
    color: var(--accent-purple);
    letter-spacing: 0.05em;
}

/* 分割线 */
.divider-scroll {
    width: 100%;
    padding: 3rem 0;
    opacity: 0.5;
}

/* ==================== 核心能力区 ==================== */
.features-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-cyan);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.card-offset-up {
    margin-top: 2rem;
}

.card-offset-down {
    margin-top: -2rem;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.4s var(--ease-out-expo);
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 300;
}

.card-waveform,
.card-particles-preview {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.waveform-canvas,
.particles-preview-canvas {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.7;
}

/* 卡片价值指标 */
.card-value-prop {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.08) 0%, rgba(34, 211, 238, 0.06) 100%);
    border-radius: 12px;
    border: 1px solid rgba(217, 70, 239, 0.15);
}

.value-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-purple);
    line-height: 1;
}

.value-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.3;
}

/* 核心价值总结区块 */
.value-summary {
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(34, 211, 238, 0.04) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.value-summary blockquote {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-primary);
    font-weight: 300;
    margin-bottom: 1.25rem;
    border: none;
    padding: 0;
}

.value-summary blockquote em {
    color: var(--accent-purple);
    font-style: normal;
    font-weight: 400;
}

.value-summary cite {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    font-style: normal;
}

/* ==================== 12个国产AI模型清单 ==================== */
.ai-models-section {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.04), rgba(201, 168, 76, 0.04));
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 16px;
    text-align: center;
}
.ai-models-title {
    font-family: var(--font-display, 'Noto Serif SC', serif);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 600;
    color: var(--gold, #c9a84c);
    margin-bottom: 0.75rem;
}
.ai-models-desc {
    color: var(--text-secondary, #ccc);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 1.75rem;
}
.ai-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.ai-model-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    transition: all 0.25s ease;
    text-align: left;
}
.ai-model-chip:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}
.ai-model-chip .ai-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold, #c9a84c);
    font-weight: 700;
    flex-shrink: 0;
}
.ai-model-chip .ai-name {
    font-size: 0.92rem;
    color: var(--text-primary, #fff);
    font-weight: 500;
    flex: 1;
}
.ai-model-chip .ai-en {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted, #888);
    font-weight: 400;
}
.ai-models-footer {
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary, #ccc);
    line-height: 1.6;
}
.ai-models-footer strong {
    color: var(--gold, #c9a84c);
}
@media (max-width: 768px) {
    .ai-models-section {
        padding: 1.75rem 1rem;
        margin: 2rem 1rem 0;
    }
    .ai-models-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .ai-model-chip {
        padding: 0.6rem 0.7rem;
    }
    .ai-model-chip .ai-name {
        font-size: 0.82rem;
    }
    .ai-model-chip .ai-en {
        font-size: 0.65rem;
    }
}

/* ==================== 技术实力矩阵 ==================== */
.tech-credentials-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
}

.tech-matrix-card {
    padding: 2.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.tech-matrix-card:hover {
    transform: translateY(-5px);
}

.card-highlight-purple:hover {
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}

.card-highlight-cyan:hover {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: var(--shadow-lg), var(--shadow-glow-cyan);
}

.card-highlight-orange:hover {
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(251, 146, 60, 0.25);
}

.tech-matrix-card:nth-child(3) {
    grid-column: 1 / -1;
}

.matrix-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.matrix-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.matrix-stats {
    margin-bottom: 1rem;
}

.matrix-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.12) 0%, rgba(217, 70, 239, 0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(217, 70, 239, 0.15);
}

.stat-big {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.35rem;
}

.matrix-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.matrix-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.matrix-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.18);
    border-radius: 999px;
    color: var(--accent-purple);
    letter-spacing: 0.04em;
}

/* 模型列表 */
.matrix-model-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.model-item {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 0.45rem 0.85rem;
    background: rgba(34, 211, 238, 0.07);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 8px;
    color: var(--accent-cyan);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.model-item:hover {
    background: rgba(34, 211, 238, 0.15);
    transform: translateY(-2px);
}

/* 东方智慧网格 */
.wisdom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wisdom-item {
    padding: 1.5rem;
    background: rgba(251, 146, 60, 0.05);
    border: 1px solid rgba(251, 146, 60, 0.12);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.wisdom-item:hover {
    background: rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.25);
    transform: translateY(-3px);
}

.wisdom-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.6rem;
}

.wisdom-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 0.4rem;
}

.wisdom-detail {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.55;
    font-weight: 300;
}

/* ==================== 线下俱乐部 ==================== */
.club-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.club-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

/* 左侧面板：数据 + 九大活动 */
.club-left-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.club-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.club-stat-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(251, 146, 60, 0.02) 100%);
    border: 1px solid rgba(251, 146, 60, 0.15);
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.club-stat-item:hover {
    border-color: rgba(251, 146, 60, 0.35);
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.12) 0%, rgba(251, 146, 60, 0.04) 100%);
}

.club-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
    line-height: 1.2;
}

.club-stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    display: block;
}

.club-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-glass-strong);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.address-icon {
    font-size: 1rem;
}

.club-activities-panel {
    padding: 1.75rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 左侧活动面板：无底图 */
.club-panel-left::before {
    display: none;
}

/* 右侧楼层面板 */
.club-floors-panel {
    padding: 1.75rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.club-floors-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/01.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.floors-panel-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.club-activities-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 1.25rem;
}

.club-activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.club-activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.club-activity-item:hover {
    background: rgba(251, 146, 60, 0.06);
    border-color: rgba(251, 146, 60, 0.2);
    transform: translateX(4px);
}

.club-activity-item.item-highlight {
    background: rgba(251, 146, 60, 0.05);
    border-color: rgba(251, 146, 60, 0.18);
}

.club-activity-item.item-highlight:hover {
    background: rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.35);
}

.act-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.act-name {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.act-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* O2O流程条 */
.club-o2o-bar {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.04) 0%, rgba(34, 211, 238, 0.04) 50%, rgba(251, 146, 60, 0.04) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    backdrop-filter: blur(8px);
}

.o2o-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.o2o-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.o2o-step-num {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: white;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.o2o-step-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    white-space: nowrap;
}

.o2o-arrow {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 1rem;
    opacity: 0.5;
}

.btn-club-more {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-pink) 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.25);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-club-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(251, 146, 60, 0.4);
}

/* 楼层卡片网格 - 单列堆叠，每张卡片独立展示 */
.club-floors-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

.floor-card {
    position: relative;
    aspect-ratio: 21 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(251, 146, 60, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floor-card:hover {
    border-color: rgba(251, 146, 60, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 146, 60, 0.15);
}

.floor-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.08) saturate(1.1) brightness(0.82);
}

.floor-card:hover .floor-card-img {
    transform: scale(1.08);
    filter: contrast(1.15) saturate(1.25) brightness(1);
}

.floor-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.92) 60%, rgba(10, 10, 15, 0.98) 100%);
}

.floor-num {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--accent-orange);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
}

.floor-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.floor-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.floor-tags {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.floor-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    padding: 0.2rem 0.55rem;
    background: rgba(251, 146, 60, 0.12);
    border: 1px solid rgba(251, 146, 60, 0.22);
    border-radius: 999px;
    color: var(--accent-orange);
    letter-spacing: 0.04em;
}

/* ==================== 品牌理念沉浸区 ==================== */
.philosophy-section {
    position: relative;
    padding: 10rem 4rem;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.philosophy-bg-canvas-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.philosophy-bg-canvas-wrap canvas {
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.philosophy-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.philosophy-quote {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

.philosophy-quote blockquote {
    position: relative;
    padding: 2rem 0;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.5;
    color: var(--accent-purple);
    opacity: 0.2;
    display: block;
    margin-bottom: 1rem;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.philosophy-quote cite {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
    letter-spacing: 0.1em;
}

.philosophy-body {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.body-block h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.body-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em;
    bottom: 0.25em;
    width: 3px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.body-block p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    font-weight: 300;
}

.body-delay {
    padding-left: 2rem;
}

/* ==================== 下载转化区 ==================== */
.download-section {
    position: relative;
    padding: 10rem 4rem;
    text-align: center;
    overflow: hidden;
}

.download-bg-art {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.download-bg-art canvas {
    width: 100%;
    height: 100%;
    opacity: 0.08;
}

.download-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.download-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.3;
}

.download-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.download-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.download-note {
    margin-top: 2rem;
}

.code-snippet {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-green);
    background: rgba(74, 222, 128, 0.08);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(74, 222, 128, 0.15);
    letter-spacing: 0.05em;
}

.download-disclaimer {
    margin-top: 1.4rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(201, 168, 76, 0.85);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
    padding: 0 1rem;
    font-style: normal;
}

@media (max-width: 768px) {
    .download-disclaimer {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-top: 1.2rem;
    }
}

/* ==================== 页脚 ==================== */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 4rem;
    background: var(--bg-surface);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    letter-spacing: 0.15em;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

.footer-code-stream {
    width: 100%;
    max-width: 360px;
    height: 48px;
    opacity: 0.55;
    margin-top: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.footer-code-stream canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* 全站 AI 输出弱提示免责声明 */

/* 首页核心定位句 */
.hero-positioning {
    max-width: 720px;
    margin: 1.5rem auto 1.5rem;
    padding: 0.85rem 1.25rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    background: linear-gradient(135deg, rgba(255,106,61,0.12), rgba(255,182,72,0.08));
    border: 1px solid rgba(255,106,61,0.25);
    border-radius: 8px;
    letter-spacing: 0.02em;
    font-weight: 400;
}
.hero-positioning strong { color: #FFB648; font-weight: 600; }


/* AI 虚拟角色非真人声明 */
.host-not-real {
    display: block;
    margin: 0.35rem 0 0.5rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    color: #FF8C5A;
    background: rgba(255,140,90,0.08);
    border: 1px solid rgba(255,140,90,0.25);
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.footer-ai-disclaimer {
    max-width: 1200px;
    margin: 1.25rem auto 0;
    padding: 0.85rem 1rem;
    border-top: 1px dashed rgba(127,127,127,0.25);
    text-align: center;
    font-size: 0.7rem;
    line-height: 1.6;
    color: var(--text-muted, #888);
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.85;
}
.footer-ai-disclaimer p { margin: 0; }

.footer-tech {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}



/* ==================== 底部信息统一颜色（备案号/400电话/邮箱/治理原则链接） ==================== */
.footer-bottom a,
.footer-bottom a:visited,
.footer-bottom a:hover,
.footer-bottom a:active,
.footer-bottom a:focus,
.site-footer a[href*="beian.miit"],
.site-footer a[href*="mailto:"],
.site-footer a[href*="crisis.html"],
.site-footer a[href*="ai-safety"],
.footer-contact a,
.footer-contact a:visited,
.footer-contact a:hover,
.footer-contact a:active {
    color: var(--text-muted, #94a3b8) !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-bottom a:hover,
.site-footer a[href*="beian.miit"]:hover,
.site-footer a[href*="mailto:"]:hover,
.site-footer a[href*="crisis.html"]:hover,
.site-footer a[href*="ai-safety"]:hover,
.footer-contact a:hover {
    color: var(--text-secondary, #cbd5e1) !important;
    opacity: 0.85;
}

.footer-bottom,
.footer-bottom *,
.footer-bottom {
    color: var(--text-muted, #94a3b8);
}

/* 法律链接行（用户协议·隐私政策·免责声明·政务合规·联系客服） */
.footer-legal {
    max-width: 1200px;
    margin: 1.2rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    text-align: center;
    font-size: 0.78rem;
    color: #a8a8b3;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}
.footer-legal a {
    color: #d4d4d8 !important;
    text-decoration: none;
    margin: 0 0.4rem;
    padding: 0.2rem 0.3rem;
    transition: color 0.2s, background 0.2s;
    border-radius: 3px;
}
.footer-legal a:visited {
    color: #d4d4d8 !important;
}
.footer-legal a:hover {
    color: var(--gold, #c9a84c) !important;
    background: rgba(201, 168, 76, 0.08);
}
.footer-legal a:active {
    color: var(--gold, #c9a84c) !important;
}
.footer-legal .legal-sep {
    color: rgba(201, 168, 76, 0.4);
    margin: 0 0.1rem;
    user-select: none;
}
@media (max-width: 640px) {
    .footer-legal {
        font-size: 0.72rem;
        line-height: 1.8;
        gap: 0.15rem;
    }
    .footer-legal a {
        margin: 0 0.25rem;
        padding: 0.15rem 0.25rem;
    }
}

/* 法律页面内链样式 - 修复蓝色链接看不清的问题 */
.legal-page a,
.legal-callout a,
.legal-footer-nav a {
    color: #c9a84c !important;
    text-decoration: none;
    border-bottom: 1px dotted rgba(201, 168, 76, 0.4);
    transition: color 0.2s, border-color 0.2s;
}
.legal-page a:hover,
.legal-callout a:hover,
.legal-footer-nav a:hover {
    color: #fbbf24 !important;
    border-bottom-color: #fbbf24;
}
.legal-page a:visited,
.legal-callout a:visited,
.legal-footer-nav a:visited {
    color: #c9a84c !important;
}
.legal-footer-nav {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==================== 滚动动画系统 ==================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s var(--ease-out-expo);
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate[data-delay] {
    transition-delay: calc(var(--delay) * 1ms);
}

/* ==================== FAQ 常见问题 ==================== */
.faq-section {
    padding: 7rem 0;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 500px 300px at 30% 20%, rgba(217,70,239,0.03) 0%, transparent 70%),
        radial-gradient(ellipse 400px 250px at 70% 80%, rgba(34,211,238,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(217,70,239,0.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.faq-item[open] {
    border-color: rgba(217,70,239,0.2);
    background: linear-gradient(135deg, rgba(217,70,239,0.04) 0%, rgba(34,211,238,0.02) 100%);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-purple);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: all 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-q-text {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-cyan);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34,211,238,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    animation: faqSlideIn 0.35s ease-out;
}

@keyframes faqSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
}

.faq-answer li {
    font-size: 0.87rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.faq-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* ==================== 响应式适配 ==================== */
@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }
    
    .canvas-wrapper {
        max-width: 400px;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .philosophy-quote {
        position: static;
        transform: none;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 5.5rem 1.25rem 2.5rem;
    }
    .hero-about, .hero-brand, .hero-game, .hero-zhiji, .hero-o2o-unified, .drama-hero {
        min-height: 0 !important;
        height: auto !important;
        justify-content: flex-start !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-desc {
        max-width: 100%;
    }
    
    .hero-right {
        margin-top: 3rem;
    }
    
    .vertical-art-text {
        display: none;
    }
    
    /* 确保所有section和容器不溢出 */
    .hero-section,
    .scenes-section,
    .features-section,
    .tech-credentials-section,
    .club-section,
    .philosophy-section,
    .download-section,
    .faq-section,
    .site-footer {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* 信任指标在移动端改为2列 */
    .trust-indicators {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .trust-item {
        min-width: calc(50% - 0.5rem);
    }
    
    .scene-card {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .scene-card.scene-starlight .scene-content {
        order: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .card-offset-up,
    .card-offset-down {
        margin-top: 0;
    }
    
    .scenes-section,
    .features-section,
    .philosophy-section,
    .download-section {
        padding: 5rem 2rem;
    }

    .tech-credentials-section {
        padding: 5rem 2rem;
    }

    .tech-matrix-grid {
        grid-template-columns: 1fr;
    }

    .club-section {
        padding: 5rem 2rem;
        overflow-x: hidden;
    }

    .club-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .club-left-panel,
    .club-floors-panel {
        width: 100%;
    }

    .club-o2o-bar {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
        overflow-x: hidden;
    }

    /* 修复所有大padding section在移动端溢出问题 */
    .hero-section {
        padding: 5rem 1.25rem 2.5rem !important;
        min-height: 0 !important;
        height: auto !important;
        justify-content: flex-start !important;
    }
    .hero-about, .hero-brand, .hero-game, .hero-zhiji, .hero-o2o-unified, .drama-hero {
        min-height: 0 !important;
        height: auto !important;
        justify-content: flex-start !important;
    }
    
    .scenes-section,
    .features-section {
        padding: 4rem 1.25rem !important;
    }
    
    .tech-credentials-section {
        padding: 4rem 1.25rem !important;
    }
    
    .club-section {
        padding: 4rem 1.25rem !important;
    }
    
    .philosophy-section {
        padding: 5rem 1.25rem !important;
    }
    
    .download-section {
        padding: 5rem 1.25rem !important;
    }

    /* 手机端：楼层卡片优先全宽展示，大图冲击力 */
    .club-grid {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 2rem;
    }

    .club-left-panel,
    .club-floors-panel {
        width: 100% !important;
        padding: 0;
        background: transparent;
        border: none;
        backdrop-filter: none;
    }

    .club-floors-panel::before { display: none; }

    /* 楼层卡片：手机端全宽大图 */
    .floors-panel-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        padding-left: 0.25rem;
    }

    .club-floors-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .floor-card {
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
    }

    .floor-card-img {
        height: 200px;
        background-size: cover;
        background-position: center;
    }

    .floor-card-info {
        padding: 1rem 1.25rem;
    }

    .floor-num {
        font-size: 0.65rem;
    }

    .floor-name {
        font-size: 1rem;
    }

    .floor-desc {
        font-size: 0.78rem;
        margin-top: 0.25rem;
    }

    /* 数据指标：横向滚动条 */
    .club-stats-panel {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .club-stats-panel::-webkit-scrollbar { display: none; }

    .club-stat-item {
        flex-shrink: 0;
        min-width: 100px;
        padding: 1rem 1.25rem;
    }

    .club-stat-num {
        font-size: 1.5rem;
    }

    /* 地址单独一行 */
    .club-address {
        display: none;
    }

    /* 九大活动：3列图标网格，更大气 */
    .club-activities-panel {
        padding: 1.25rem 0;
        background: transparent;
        border: none;
    }

    .club-activities-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-left: 0.25rem;
    }

    .club-activity-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .club-activity-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem 0.5rem;
        border-radius: 14px;
        gap: 0.35rem;
    }

    .club-activity-item:hover {
        transform: translateY(-2px);
    }

    .act-icon {
        font-size: 1.8rem;
    }

    .act-name {
        font-size: 0.8rem;
        white-space: normal;
    }

    .act-desc {
        display: none;
    }
    
    .cursor {
        display: none;
    }
    
    .logo-cn {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .scene-card {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .feature-card {
        padding: 2rem;
    }

    .card-value-prop {
        padding: 0.85rem 1rem;
    }

    .value-number {
        font-size: 1.4rem;
    }

    .value-summary {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .value-summary blockquote {
        font-size: 1rem;
    }

    .tech-matrix-card {
        padding: 1.75rem;
    }

    .stat-big {
        font-size: 2.2rem;
    }

    .wisdom-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .site-footer {
        padding: 3rem 1.5rem;
    }

    .club-floors-grid {
        flex-direction: column;
        gap: 0.85rem;
    }

    .floor-card {
        aspect-ratio: 16 / 9;
    }

    .floor-card-info {
        padding: 0.75rem;
    }

    .floor-name {
        font-size: 0.88rem;
    }
    
    .o2o-steps {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-col {
        align-items: center;
        gap: 0.4rem;
    }
    
    .footer-code-stream {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .quote-text {
        font-size: 1.75rem;
    }
    
    .body-delay {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .download-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .download-actions .btn {
        width: 100%;
    }
}

/* ==================== 品牌宣传片区 ==================== */
.video-section {
    padding: 4rem 4rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==================== 多智能体关系委员会 ==================== */
.committee-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.committee-demo {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.committee-question {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(217, 70, 239, 0.04) 100%);
    border: 1px solid rgba(251, 146, 60, 0.25);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

.q-avatar {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 146, 60, 0.12);
    border-radius: 50%;
}

.q-content { flex: 1; }

.q-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    letter-spacing: 0.05em;
}

.q-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
    font-style: normal;
}

.committee-agents {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-left: 0;
    border-left: none;
}

.agent-response {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.agent-response:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateX(4px);
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.agent-emoji { font-size: 1.2rem; }

.agent-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.agent-role {
    color: var(--text-muted);
    font-size: 0.78rem;
    padding-left: 0.5rem;
    border-left: 1px solid var(--border-subtle);
    margin-left: 0.25rem;
}

.agent-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    font-style: normal;
}

.agent-summary {
    border-left-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(217, 70, 239, 0.04) 100%);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-left-width: 3px;
    box-shadow: 0 8px 30px rgba(251, 146, 60, 0.1);
}

.agent-summary .agent-text {
    color: var(--text-primary);
    font-style: normal;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .committee-section { padding: 4rem 1.25rem; }
    .committee-question { padding: 1rem 1.15rem; }
    .q-text { font-size: 0.95rem; }
    .committee-agents { padding-left: 0.5rem; }
    .agent-response { padding: 0.85rem 1rem; }
    .agent-role { display: none; }
}

/* ==================== 动态数据大屏 ==================== */
.live-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem;
    margin-top: 2.5rem;
    width: 100%;
}

.dashboard-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 0;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-cyan));
    opacity: 0.7;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.dashboard-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dashboard-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.35rem;
    transition: transform 0.4s var(--ease-out-expo);
}

.dashboard-value.pulse { transform: scale(1.05); }

.dashboard-trend {
    font-size: 0.78rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dashboard-trend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse-dot 1.6s ease-in-out infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.dashboard-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid var(--accent-cyan);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.dashboard-pulse-ring.active { animation: ring-pulse 1.2s ease-out; }

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@media (max-width: 1024px) {
    .dashboard-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .live-dashboard { padding: 3rem 1.25rem 1.5rem; }
    .dashboard-grid { gap: 0.85rem; }
    .dashboard-value { font-size: 2rem; }
}

@media (max-width: 480px) {
    .dashboard-grid { grid-template-columns: 1fr !important; }
}

/* ==================== 投资者关系 HERO ==================== */
.investor-hero {
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.04) 0%, rgba(201, 168, 76, 0.02) 100%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    position: relative;
    overflow: hidden;
}

.investor-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.video-container {
    max-width: 960px;
    margin: 0 auto;
}

.video-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-header .section-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--accent-purple);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.video-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.video-player-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.video-player-wrap::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.video-player-wrap:hover {
    border-color: var(--border-hover);
}

.promo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    transition: opacity 0.4s ease;
    z-index: 5;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    color: #fff;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(217, 70, 239, 0.4));
}

.play-btn svg {
    width: 100%;
    height: 100%;
}

.video-player-wrap:hover .play-btn {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(217, 70, 239, 0.6));
}

.play-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.15em;
    margin-top: 1rem;
    text-transform: uppercase;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player-wrap:hover .video-controls,
.video-player-wrap.playing .video-controls {
    opacity: 1;
}

.vc-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.vc-btn:hover {
    opacity: 1;
}

.vc-btn svg {
    width: 20px;
    height: 20px;
}

.vc-progress {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    transition: height 0.15s ease;
}

.vc-progress:hover {
    height: 6px;
}

.vc-progress-bar {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
    z-index: 2;
}

.vc-progress-buffered {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    width: 0%;
    z-index: 1;
}

.vc-time {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.video-player-wrap:fullscreen,
.video-player-wrap:-webkit-full-screen {
    border-radius: 0;
    border: none;
}

.video-player-wrap:fullscreen .promo-video,
.video-player-wrap:-webkit-full-screen .promo-video {
    object-fit: contain;
}

.video-player-wrap:fullscreen .video-controls,
.video-player-wrap:-webkit-full-screen .video-controls {
    opacity: 1;
    padding: 1rem 2rem;
}

@media (max-width: 768px) {
    .video-section {
        padding: 2rem 1rem 3rem;
    }

    .video-header {
        margin-bottom: 1.25rem;
    }

    .video-title {
        font-size: 1.2rem;
    }

    .video-subtitle {
        font-size: 0.85rem;
    }

    .video-player-wrap {
        border-radius: 10px;
        max-width: 100%;
    }

    .play-btn {
        width: 56px;
        height: 56px;
    }

    .play-label {
        font-size: 0.6rem;
        margin-top: 0.6rem;
    }

    .video-controls {
        padding: 0.4rem 0.6rem;
        gap: 0.4rem;
        opacity: 1;
    }

    .vc-btn svg {
        width: 16px;
        height: 16px;
    }

    .vc-time {
        font-size: 0.55rem;
        min-width: 55px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 1.5rem 0.75rem 2.5rem;
    }

    .video-title {
        font-size: 1.05rem;
    }

    .play-btn {
        width: 48px;
        height: 48px;
    }

    .play-label {
        display: none;
    }

    .video-controls {
        gap: 0.3rem;
        padding: 0.35rem 0.5rem;
    }

    .vc-btn svg {
        width: 14px;
        height: 14px;
    }

    .vc-time {
        font-size: 0.5rem;
        min-width: 48px;
    }
}

@media (orientation: landscape) and (max-width: 900px) {
    .video-section {
        padding: 1.5rem 2rem 2rem;
    }

    .video-header {
        margin-bottom: 1rem;
    }

    .video-player-wrap {
        max-height: 70vh;
    }
}

/* ==================== 减少动画偏好支持 ==================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .scroll-animate {
        opacity: 1;
        transform: none;
    }
}

/* ====== 木兰序 LOGO 图片（与首页 style.css 一致：圆形 4.5rem） ====== */
.logo-group {
    align-items: center !important;   /* 图片和文字居中对齐 */
    gap: 0.6rem;                     /* LOGO 和"木蘭序"之间留空 */
}
.nav-logo-img {
    height: 4.5rem;
    width: 4.5rem;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
}

/* 品牌页 HERO 标题 LOGO：和 .line-1 文字同高度 */
.title-line .hero-title-logo-img {
    height: 1em;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: inline-block;
    vertical-align: -0.12em;
    margin-right: 0.35em;
    border-radius: 4px;
}

/* 底部 LOGO：与"木兰序 MULANXU"+"Art & Code" 两行文字等高，放左侧 */
/* 用 grid 布局：LOGO 一列 + 文字一列，避免原 column 布局被打乱 */
.footer-brand {
    display: grid !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.2rem;                /* LOGO 和"两行文字"之间留空 */
}
.footer-logo-img {
    height: 5.2rem;             /* 放大一倍（原 2.6rem → 5.2rem） */
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    margin: 0;                  /* 取消之前可能存在的下边距 */
    border-radius: 4px;
}

/* mulan.html 专用：mulan.html 的 footer-brand 是普通 div（不来自 .site-footer），
   用 .footer-brand-text 包住两行文字。统一布局 */
.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer-brand-name {
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1.2;
}
.footer-brand .footer-brand-sub {
    font-size: 10px;
    color: var(--mid);
    letter-spacing: 3px;
    line-height: 1.2;
    margin-top: 0;             /* 取消外层 .footer-brand-sub 之前的 6px margin-top */
}

/* 移动端 LOGO 缩小（与首页 style.css 一致） */
@media (max-width: 768px) {
    .nav-logo-img { height: 3.45rem; width: 3.45rem; }
    .footer-logo-img { height: 4.4rem; }    /* 移动端：与两行文字总高略缩（同样放大一倍） */
}


/* ==================== 排版优化 (Layout Polish v31) ==================== */

/* 1. 4 个新板块的 section 统一留白 */
.checkup-section,
.committee-section,
.live-dashboard,
.o2o-club-section {
    padding: 5rem 0 !important;
    position: relative !important;
}

@media (max-width: 768px) {
    .checkup-section,
    .committee-section,
    .live-dashboard,
    .o2o-club-section {
        padding: 3rem 0 !important;
    }
}

/* 2. 统一 section-header 排版 */
.checkup-section .section-header,
.committee-section .section-header,
.live-dashboard .section-header,
.o2o-club-section .section-header {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 3rem auto !important;
    padding: 0 1.5rem !important;
}

.checkup-section .section-tag,
.committee-section .section-tag,
.live-dashboard .section-tag,
.o2o-club-section .section-tag {
    display: inline-block !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    color: #FF8C5A !important;
    margin-bottom: 0.75rem !important;
    text-transform: uppercase !important;
}

.checkup-section .section-title,
.committee-section .section-title,
.live-dashboard .section-title,
.o2o-club-section .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin: 0 0 0.75rem 0 !important;
    color: var(--text-primary) !important;
    letter-spacing: -0.01em !important;
}

.checkup-section .section-subtitle,
.committee-section .section-subtitle,
.live-dashboard .section-subtitle,
.o2o-club-section .section-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem) !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
    margin: 0 auto !important;
    max-width: 640px !important;
}

/* 3. 关系体检 checkup 排版 */
.checkup-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

.checkup-header {
    text-align: center !important;
    margin-bottom: 2.5rem !important;
}

.checkup-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0.5rem 0 !important;
    line-height: 1.2 !important;
}

.checkup-subtitle {
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
}

.checkup-tag-inline {
    display: inline-block !important;
    margin: 0.25rem 0.35rem !important;
    padding: 0.2rem 0.6rem !important;
    background: rgba(255, 138, 80, 0.1) !important;
    border: 1px solid rgba(255, 138, 80, 0.25) !important;
    border-radius: 100px !important;
    font-size: 0.85rem !important;
    color: var(--text-primary) !important;
}

.checkup-body {
    max-width: 760px !important;
    margin: 0 auto 2rem auto !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, rgba(255, 138, 80, 0.04) 0%, rgba(168, 85, 247, 0.04) 100%) !important;
    border: 1px solid rgba(255, 138, 80, 0.15) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px) !important;
}

.checkup-form-grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
    margin-bottom: 1.5rem !important;
}

@media (max-width: 640px) {
    .checkup-form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .checkup-divider { display: none !important; }
}

.checkup-side {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
}

.checkup-side-label {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    text-align: center !important;
    margin-bottom: 0.25rem !important;
}

.checkup-side-label--right { color: #FF6A3D !important; }

.checkup-side-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.checkup-field {
    width: 100% !important;
    padding: 0.7rem 0.9rem !important;
    background: rgba(10, 13, 20, 0.5) !important;
    border: 1px solid rgba(255, 138, 80, 0.2) !important;
    border-radius: 10px !important;
    color: var(--text-primary) !important;
    font-size: 0.9rem !important;
    outline: none !important;
    transition: border-color 0.2s, background 0.2s !important;
    box-sizing: border-box !important;
}

.checkup-field::placeholder { color: rgba(255, 255, 255, 0.4) !important; }

.checkup-field:focus {
    border-color: #FF6A3D !important;
    background: rgba(10, 13, 20, 0.7) !important;
}

.checkup-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    animation: checkup-heart-beat 1.5s ease-in-out infinite !important;
}

@keyframes checkup-heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.checkup-cta {
    display: block !important;
    width: 100% !important;
    padding: 0.95rem 1.5rem !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FF8C5A 50%, #FFB648 100%) !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 14px !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 20px rgba(255, 106, 61, 0.35) !important;
    box-sizing: border-box !important;
}

.checkup-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(255, 106, 61, 0.5) !important;
}

.checkup-disclaimer {
    margin-top: 1rem !important;
    padding: 0.6rem 0.8rem !important;
    background: rgba(251, 191, 36, 0.08) !important;
    border: 1px solid rgba(251, 191, 36, 0.25) !important;
    border-radius: 8px !important;
    font-size: 0.78rem !important;
    color: #FBBF24 !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

.checkup-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 720px !important;
    margin: 2rem auto 0 auto !important;
    padding: 1.5rem !important;
    background: rgba(10, 13, 20, 0.3) !important;
    border: 1px solid rgba(255, 138, 80, 0.12) !important;
    border-radius: 16px !important;
}

@media (max-width: 640px) {
    .checkup-stats { grid-template-columns: 1fr !important; gap: 1rem !important; }
}

.checkup-stat { text-align: center !important; }

.checkup-stat-num {
    font-size: clamp(1.8rem, 3vw, 2.2rem) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
}

.checkup-stat-unit {
    font-size: 0.65em !important;
    margin-left: 0.15em !important;
    color: var(--text-secondary) !important;
    font-weight: 600 !important;
}

.checkup-stat-label {
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
}

/* 4. 多智能体委员会排版 */
.committee-section .section-header { margin-bottom: 2.5rem !important; }

.committee-demo {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

.committee-question {
    display: flex !important;
    gap: 1rem !important;
    padding: 1.25rem 1.5rem !important;
    background: linear-gradient(135deg, rgba(255, 138, 80, 0.06) 0%, rgba(255, 138, 80, 0.02) 100%) !important;
    border: 1px solid rgba(255, 138, 80, 0.2) !important;
    border-left: 3px solid #FF6A3D !important;
    border-radius: 12px !important;
    margin-bottom: 1.5rem !important;
    align-items: flex-start !important;
}

.q-avatar {
    font-size: 2rem !important;
    flex-shrink: 0 !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 138, 80, 0.1) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 138, 80, 0.2) !important;
}

.q-content { flex: 1 !important; min-width: 0 !important; }

.q-meta {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0.4rem !important;
    letter-spacing: 0.05em !important;
}

.q-text {
    font-size: 1rem !important;
    color: var(--text-primary) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.committee-agents {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
}

.agent-response {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 1rem 1.25rem !important;
    background: rgba(10, 13, 20, 0.4) !important;
    border: 1px solid rgba(255, 138, 80, 0.1) !important;
    border-radius: 12px !important;
    border-left: 2px solid rgba(255, 138, 80, 0.4) !important;
    transition: border-color 0.2s, transform 0.2s !important;
}

.agent-response:hover {
    border-color: rgba(255, 138, 80, 0.4) !important;
    transform: translateX(4px) !important;
}

.agent-header {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.85rem !important;
}

.agent-emoji { font-size: 1.1rem !important; }

.agent-name {
    font-weight: 700 !important;
    color: var(--text-primary) !important;
}

.agent-role {
    color: var(--text-muted) !important;
    font-size: 0.78rem !important;
    margin-left: 0.4rem !important;
}

.agent-text {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    color: var(--text-secondary) !important;
    margin: 0 !important;
}

.agent-response.agent-summary {
    background: linear-gradient(135deg, rgba(255, 182, 72, 0.08) 0%, rgba(255, 106, 61, 0.05) 100%) !important;
    border: 1px solid rgba(255, 182, 72, 0.3) !important;
    border-left: 3px solid #FFB648 !important;
    margin-top: 0.5rem !important;
}

.agent-response.agent-summary .agent-text { color: var(--text-primary) !important; }

/* 5. 动态数据大屏排版 */
.live-dashboard {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 138, 80, 0.02) 100%) !important;
}

.live-dashboard .section-header { margin-bottom: 2.5rem !important; }

.dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

@media (max-width: 1024px) {
    .dashboard-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
    .dashboard-grid { grid-template-columns: 1fr !important; }
}

.dashboard-card {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
    padding: 1.5rem 1.25rem !important;
    background: linear-gradient(135deg, rgba(255, 138, 80, 0.05) 0%, rgba(255, 138, 80, 0.01) 100%) !important;
    border: 1px solid rgba(255, 138, 80, 0.15) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: transform 0.2s, border-color 0.2s !important;
    min-height: 110px !important;
}

.dashboard-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(255, 138, 80, 0.35) !important;
}

.dash-icon {
    font-size: 1.8rem !important;
    flex-shrink: 0 !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.15) 0%, rgba(255, 182, 72, 0.1) 100%) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 138, 80, 0.2) !important;
}

.dash-content { flex: 1 !important; min-width: 0 !important; }

.dash-label {
    font-size: 0.8rem !important;
    color: var(--text-secondary) !important;
    margin-bottom: 0.35rem !important;
    letter-spacing: 0.05em !important;
}

.dash-num {
    font-size: clamp(1.5rem, 2.2vw, 2rem) !important;
    font-weight: 800 !important;
    color: var(--text-primary) !important;
    line-height: 1 !important;
    margin-bottom: 0.3rem !important;
    font-feature-settings: 'tnum' !important;
}

.dash-trend {
    font-size: 0.75rem !important;
    color: #10b981 !important;
    font-weight: 500 !important;
}

.dash-pulse-ring {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    width: 8px !important;
    height: 8px !important;
    background: #10b981 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 12px #10b981 !important;
    animation: dash-ping 2s ease-out infinite !important;
}

@keyframes dash-ping {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    100% { box-shadow: 0 0 0 14px rgba(16, 185, 129, 0); }
}

/* 6. O2O 俱乐部排版 */
.o2o-club-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 182, 72, 0.02) 100%) !important;
}

.o2o-club-section .section-header { margin-bottom: 2.5rem !important; }

.o2o-club-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    max-width: 1200px !important;
    margin: 0 auto 2rem auto !important;
    padding: 0 1.5rem !important;
}

@media (max-width: 1024px) {
    .o2o-club-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
    .o2o-club-grid { grid-template-columns: 1fr !important; }
}

.o2o-club-card {
    text-align: center !important;
    padding: 2rem 1.25rem !important;
    background: linear-gradient(135deg, rgba(255, 138, 80, 0.05) 0%, rgba(255, 138, 80, 0.01) 100%) !important;
    border: 1px solid rgba(255, 138, 80, 0.15) !important;
    border-radius: 16px !important;
    transition: transform 0.2s, border-color 0.2s !important;
    min-height: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.o2o-club-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(255, 138, 80, 0.35) !important;
}

.o2o-club-icon {
    font-size: 2.2rem !important;
    margin-bottom: 0.85rem !important;
}

.o2o-club-num {
    font-size: clamp(2rem, 3vw, 2.8rem) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
}

.o2o-club-unit {
    font-size: 0.55em !important;
    margin-left: 0.15em !important;
    color: var(--text-secondary) !important;
    font-weight: 600 !important;
}

.o2o-club-label {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin-bottom: 0.5rem !important;
}

.o2o-club-desc {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
}

.o2o-club-cta {
    text-align: center !important;
    margin-top: 1rem !important;
}


/* ==================== Checkup v32 排版优化 ==================== */
.checkup-section {
    padding: 5rem 1.5rem !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
}

.checkup-grid {
    display: grid !important;
    grid-template-columns: 1.05fr 1fr !important;
    gap: 3rem !important;
    align-items: stretch !important;
}

@media (max-width: 1024px) {
    .checkup-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

.checkup-intro {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1rem 0 !important;
}

.checkup-intro .section-tag {
    display: inline-block !important;
    align-self: center !important;
    position: relative !important;
    padding: 0.45rem 1.2rem !important;
    background: rgba(255, 138, 80, 0.08) !important;
    border: 1px solid rgba(255, 138, 80, 0.3) !important;
    border-radius: 100px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.3em !important;
    color: #FF8C5A !important;
    margin-bottom: 1.1rem !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    width: fit-content !important;
    max-width: 100% !important;
}

.checkup-title {
    text-align: center !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.checkup-subtitle {
    text-align: center !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.85 !important;
}

.checkup-tag-list {
    justify-content: center !important;
    margin-bottom: 2.5rem !important;
}

.checkup-tag-inline {
    transition: all 0.25s ease !important;
    cursor: default !important;
}

.checkup-tag-inline:hover {
    background: rgba(255, 138, 80, 0.15) !important;
    border-color: rgba(255, 138, 80, 0.5) !important;
    transform: translateY(-1px) !important;
}

.checkup-stats {
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    padding-top: 1.75rem !important;
    margin-top: 0 !important;
}

.checkup-stat {
    text-align: center !important;
    padding: 0.5rem 0.25rem !important;
    transition: transform 0.25s ease !important;
}

.checkup-stat:hover {
    transform: translateY(-2px) !important;
}

.checkup-stat-num {
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.checkup-stat-label {
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
    margin-top: 0.25rem !important;
}

.checkup-intro .section-tag {
    display: inline-block !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.25em !important;
    color: #FF8C5A !important;
    margin-bottom: 0.75rem !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

.checkup-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FFB648 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.15 !important;
    margin: 0 0 1rem 0 !important;
    letter-spacing: -0.02em !important;
}

.checkup-subtitle {
    font-size: 1rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
    margin: 0 0 1.25rem 0 !important;
}

.checkup-tag-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-bottom: 2rem !important;
}

.checkup-tag-inline {
    display: inline-block !important;
    padding: 0.4rem 0.85rem !important;
    background: rgba(255, 138, 80, 0.08) !important;
    border: 1px solid rgba(255, 138, 80, 0.25) !important;
    border-radius: 100px !important;
    font-size: 0.88rem !important;
    color: var(--text-primary) !important;
    white-space: nowrap !important;
}

/* 左侧 stats 卡片 */
.checkup-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    margin-top: auto !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 138, 80, 0.12) !important;
}

@media (max-width: 480px) {
    .checkup-stats { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    /* 移动端：checkup-intro 整块居中（已全局设置，此处仅需调整部分） */
    .checkup-tag-list {
        justify-content: center !important;
        margin-bottom: 2rem !important;
    }
    .checkup-stats {
        max-width: 100% !important;
    }
}

.checkup-stat { text-align: left !important; }

.checkup-stat-num {
    font-size: clamp(1.6rem, 2.5vw, 2rem) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 0.15rem !important;
    white-space: nowrap !important;
}

.checkup-stat-unit {
    font-size: 0.6em !important;
    color: var(--text-secondary) !important;
    font-weight: 600 !important;
}

.checkup-stat-label {
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    white-space: nowrap !important;
}

/* 右侧 checkup-card */
.checkup-card {
    background: linear-gradient(135deg, rgba(255, 138, 80, 0.04) 0%, rgba(168, 85, 247, 0.04) 100%) !important;
    border: 1px solid rgba(255, 138, 80, 0.18) !important;
    border-radius: 20px !important;
    padding: 2rem 1.75rem !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
    display: flex !important;
    flex-direction: column !important;
}

.checkup-card-hint {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.65rem 0.85rem !important;
    background: rgba(96, 165, 250, 0.08) !important;
    border: 1px solid rgba(96, 165, 250, 0.2) !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    color: #93C5FD !important;
    line-height: 1.4 !important;
    margin-bottom: 1.25rem !important;
}

.checkup-card-hint-icon { font-size: 1rem !important; flex-shrink: 0 !important; }

.checkup-form-grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 1.25rem !important;
    align-items: stretch !important;
    margin-bottom: 1.25rem !important;
}

@media (max-width: 640px) {
    .checkup-form-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .checkup-divider { display: none !important; }
}

.checkup-side {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    min-width: 0 !important;
}

.checkup-side-label {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #60A5FA !important;
    text-align: center !important;
    margin-bottom: 0.4rem !important;
    letter-spacing: 0.05em !important;
}

.checkup-side-label--right { color: #F472B6 !important; }

.checkup-side-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.45rem !important;
}

/* 视觉占位卡（替代 input） */
.checkup-field-placeholder {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.7rem 0.9rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px dashed rgba(255, 138, 80, 0.25) !important;
    border-radius: 10px !important;
    cursor: default !important;
    transition: background 0.2s, border-color 0.2s !important;
    user-select: none !important;
}

.checkup-field-placeholder:hover {
    background: rgba(255, 138, 80, 0.05) !important;
    border-color: rgba(255, 138, 80, 0.4) !important;
}

.cfp-icon {
    font-size: 1rem !important;
    flex-shrink: 0 !important;
    opacity: 0.7 !important;
}

.cfp-text {
    font-size: 0.88rem !important;
    color: var(--text-muted) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.checkup-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.6rem !important;
    animation: checkup-heart-beat 1.5s ease-in-out infinite !important;
}

@keyframes checkup-heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.checkup-cta {
    display: block !important;
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    background: linear-gradient(135deg, #FF6A3D 0%, #FF8C5A 50%, #FFB648 100%) !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 14px !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 20px rgba(255, 106, 61, 0.35) !important;
    box-sizing: border-box !important;
    margin-top: auto !important;
}

.checkup-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(255, 106, 61, 0.5) !important;
}

.checkup-disclaimer {
    margin-top: 0.85rem !important;
    padding: 0.55rem 0.75rem !important;
    background: rgba(251, 191, 36, 0.08) !important;
    border: 1px solid rgba(251, 191, 36, 0.25) !important;
    border-radius: 8px !important;
    font-size: 0.78rem !important;
    color: #FBBF24 !important;
    text-align: center !important;
    line-height: 1.5 !important;
}


/* ==================== Hero 关键词标签 分散定位 v38 ==================== */
.hero-keywords {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: block !important;
    background: none !important;
    border: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    pointer-events: none !important;
}

.hero-kw-tag {
    position: absolute !important;
    pointer-events: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.22rem !important;
    padding: 0.3rem 0.55rem !important;
    background: rgba(15, 17, 25, 0.88) !important;
    border: 1px solid rgba(255, 138, 80, 0.4) !important;
    border-radius: 100px !important;
    font-size: 0.68rem !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5) !important;
}

.hero-kw-tag:hover {
    background: rgba(255, 138, 80, 0.15) !important;
    border-color: rgba(255, 138, 80, 0.5) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(255, 106, 61, 0.3) !important;
}

.kw-emoji { font-size: 0.85rem !important; line-height: 1 !important; }
.kw-text { font-weight: 500 !important; letter-spacing: 0.02em !important; }

/* 7 个分散位置（顺时针环形） */
/* 7个关键词 - 7个方位均匀环绕（紧凑环） */
/* 旧的 7 关键词位置样式已废弃 */

@media (max-width: 1024px) {
    .hero-kw-tag { font-size: 0.7rem !important; padding: 0.32rem 0.6rem !important; }
    .hero-kw-tag--1 { top: 6%;   left: 3%; }
    .hero-kw-tag--2 { top: 2%;   left: 38%; }
    .hero-kw-tag--3 { top: 22%;  right: 3%; }
    .hero-kw-tag--4 { bottom: 28%; right: 4%; }
    .hero-kw-tag--5 { bottom: 4%; right: 22%; }
    .hero-kw-tag--6 { bottom: 4%; left: 22%; }
    .hero-kw-tag--7 { top: 18%;   left: 0%; }
}

@media (max-width: 768px) {
    .hero-kw-tag { font-size: 0.68rem !important; padding: 0.28rem 0.55rem !important; }
    .hero-kw-tag--1 { top: 4%;   left: 3%; }
    .hero-kw-tag--2 { top: 2%;   left: 36%; }
    .hero-kw-tag--3 { top: 20%;  right: 3%; }
    .hero-kw-tag--4 { bottom: 26%; right: 3%; }
    .hero-kw-tag--5 { bottom: 5%; right: 20%; }
    .hero-kw-tag--6 { bottom: 5%; left: 20%; }
    .hero-kw-tag--7 { top: 20%;  left: 3%; }
}

@media (max-width: 480px) {
    /* 小屏折叠到顶部一行 */
    .hero-keywords {
        position: static !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.35rem !important;
        justify-content: center !important;
        margin: 0 0 1rem 0 !important;
        padding: 0.5rem !important;
    }
    .hero-kw-tag { position: static !important; font-size: 0.65rem !important; }
}


/* ==================== Checkup 标题强调 v45 ==================== */
.checkup-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
}

.checkup-em {
    background: linear-gradient(135deg, #FF4D1F 0%, #FF6A3D 50%, #FF8C5A 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-style: normal !important;
    font-weight: 800 !important;
    position: relative !important;
    display: inline-block !important;
}

.checkup-em::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -2px !important;
    width: 100% !important;
    height: 2px !important;
    background: linear-gradient(90deg, #FF4D1F 0%, #FF8C5A 100%) !important;
    border-radius: 1px !important;
    opacity: 0.5 !important;
}


/* ==================== HERO 底图通用样式 v47 ==================== */
.hero-section {
    position: relative !important;
    background-color: #0A0D14 !important;
}

.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(180deg,
        rgba(10, 13, 20, 0.55) 0%,
        rgba(10, 13, 20, 0.35) 30%,
        rgba(10, 13, 20, 0.55) 60%,
        rgba(10, 13, 20, 0.85) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* 内容层：position: relative 让其正常堆叠 */
.hero-section .hero-content,
.hero-section .hero-grid,
.hero-section .hero-visual {
    position: relative !important;
    z-index: 2 !important;
}

/* 关键修复：canvas wrap 必须是绝对定位背景层，绝不能 position: relative！否则移动端会出现大块空白框 */
.hero-section .hero-bg-canvas-wrap {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* 首页 hero-o2o-unified 专属：移动端内容太顶，加一点呼吸空间（不影响其他栏目页） */
@media (max-width: 768px) {
    .hero-o2o-unified {
        padding-top: 8rem !important;
        padding-bottom: 3rem !important;
    }
}

.hero-section .hero-bg-canvas-wrap::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: radial-gradient(ellipse at center,
        transparent 0%,
        rgba(10, 13, 20, 0.3) 70%,
        rgba(10, 13, 20, 0.5) 100%) !important;
    pointer-events: none !important;
}

/* 移动端：彻底隐藏空 canvas（避免 300x150 默认尺寸占位） */
@media (max-width: 768px) {
    .hero-section .hero-bg-canvas-wrap canvas {
        display: none !important;
    }
}


/* ==================== 平台定位横幅（Matrix 板块下方） ==================== */
.positioning-banner {
    width: 100%;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.04) 50%, transparent 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.positioning-banner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 720px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.3) 50%, transparent 100%);
    z-index: 0;
}

.positioning-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
}

.positioning-banner-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
}

.positioning-banner-text strong {
    color: rgba(201, 168, 76, 0.95);
    font-weight: 600;
}

@media (max-width: 768px) {
    .positioning-banner {
        padding: 2.5rem 1.25rem;
    }
    .positioning-banner-text {
        font-size: 0.92rem;
        line-height: 1.7;
    }
}


/* ==================== 互联沟通 · 跨端无缝板块 ==================== */
.connect-section {
    max-width: 1280px;
    margin: 1.25rem auto 2rem;
    padding: 3rem 2rem 3.5rem;
    position: relative;
    z-index: 1;
}

.connect-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.connect-section .section-tag {
    color: var(--gold, #c9a84c);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.connect-title {
    font-family: var(--font-display, 'Noto Serif SC', serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary, #fff);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.connect-title em {
    background: linear-gradient(135deg, #c9a84c 0%, #FFB648 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    font-weight: 700;
}

.connect-subtitle {
    color: var(--text-secondary, #cbd5e1);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

.connect-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.connect-card {
    position: relative;
    padding: 2rem 1.6rem 1.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.connect-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.45) 50%, transparent 100%);
    opacity: 0.7;
}

.connect-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, rgba(255,255,255,0.02) 100%);
}

.connect-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.connect-card-icon.wechat {
    background: linear-gradient(135deg, #07c160 0%, #00a854 100%);
}

.connect-card-icon.qq {
    background: linear-gradient(135deg, #12B7F5 0%, #0a8fc7 100%);
}

.connect-card-icon.web {
    background: linear-gradient(135deg, #c9a84c 0%, #FFB648 100%);
}

.connect-card-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

.connect-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    margin: 0 0 0.6rem;
    letter-spacing: 0.02em;
}

.connect-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary, #cbd5e1);
    margin: 0 0 1rem;
    opacity: 0.85;
}

.connect-status {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.connect-foot {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(201, 168, 76, 0.18);
}

.connect-payment {
    color: var(--gold, #c9a84c);
    font-size: 0.92rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    letter-spacing: 0.01em;
}

.connect-disclaimer {
    color: var(--text-muted, #94a3b8);
    font-size: 0.78rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.75;
}

@media (max-width: 820px) {
    .connect-section {
        margin: 0.75rem auto 1.5rem;
        padding: 2rem 1.25rem 2.5rem;
    }
    .connect-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .connect-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    .connect-title {
        font-size: 1.45rem;
    }
}


/* ==================== P0 v48 - HERO 5 列产品条 + 3 按钮 ==================== */
.hero-product-strip {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    flex-wrap: wrap !important;
}

.hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    align-items: center !important;
}

.btn-ghost {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    padding: 0.85rem 1.4rem !important;
    background: transparent !important;
    color: var(--text-primary, #fff) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border: 1px solid rgba(201, 168, 76, 0.35) !important;
    border-radius: 12px !important;
    transition: all 0.25s ease !important;
}

.btn-ghost:hover {
    background: rgba(201, 168, 76, 0.08) !important;
    border-color: rgba(201, 168, 76, 0.6) !important;
    transform: translateY(-1px) !important;
}

@media (max-width: 1024px) {
    .hero-product-strip { gap: 0.5rem !important; }
    .product-stat { min-width: 100px !important; }
    .product-label { font-size: 0.78rem !important; }
}

@media (max-width: 768px) {
    .hero-product-strip { gap: 0.4rem !important; justify-content: center !important; }
    .product-stat { min-width: 90px !important; }
    .product-label { font-size: 0.72rem !important; }
    .hero-actions { justify-content: center !important; }
    .btn-ghost, .btn-primary, .btn-secondary { font-size: 0.88rem !important; padding: 0.7rem 1.1rem !important; }
}

@media (max-width: 480px) {
    .hero-product-strip { gap: 0.3rem !important; }
    .product-num { font-size: 1.4rem !important; }
    .product-unit { font-size: 0.7rem !important; }
}


/* ==================== P0 v48 - 顾问模块 advisor-section ==================== */
.advisor-section {
    position: relative;
    max-width: 1280px;
    margin: 4rem auto;
    padding: 5rem 2.5rem;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, rgba(255, 138, 80, 0.03) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    overflow: hidden;
}

.advisor-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.advisor-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.advisor-glow-1 {
    width: 480px;
    height: 480px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 138, 80, 0.5) 0%, transparent 70%);
}

.advisor-glow-2 {
    width: 420px;
    height: 420px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.4) 0%, transparent 70%);
}

.advisor-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: center;
}

.advisor-visual {
    text-align: center;
}

.advisor-portrait {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 1.5rem;
}

.advisor-portrait-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(201, 168, 76, 0.4);
    animation: advisor-spin 30s linear infinite;
}

@keyframes advisor-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.advisor-portrait-core {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 138, 80, 0.2) 0%, rgba(201, 168, 76, 0.2) 100%);
    border: 1px solid rgba(201, 168, 76, 0.5);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.3), inset 0 0 30px rgba(255, 138, 80, 0.1);
}

.advisor-portrait-emoji {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 138, 80, 0.5));
}

.advisor-portrait-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    letter-spacing: 0.05em;
}

.advisor-portrait-role {
    font-size: 0.78rem;
    color: rgba(201, 168, 76, 0.9);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.advisor-orbit {
    position: absolute;
    inset: 0;
}

.advisor-orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.25) 0%, rgba(255, 138, 80, 0.25) 100%);
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
    transform: rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle)));
}

.advisor-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 999px;
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 500;
}

.advisor-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: advisor-pulse 2s ease-in-out infinite;
}

@keyframes advisor-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.advisor-content {
    color: var(--text-primary, #fff);
}

.advisor-content .section-tag {
    color: rgba(201, 168, 76, 0.9);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
    font-weight: 600;
}

.advisor-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
    font-family: var(--font-display, 'Noto Serif SC', serif);
}

.advisor-title em {
    background: linear-gradient(135deg, #c9a84c 0%, #FFB648 50%, #FF8C5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.advisor-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary, #cbd5e1);
    margin: 0 0 2rem;
    max-width: 540px;
}

.advisor-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.advisor-cap-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.advisor-cap-item:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-2px);
}

.advisor-cap-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(255, 138, 80, 0.15) 100%);
    border-radius: 10px;
}

.advisor-cap-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.advisor-cap-text strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.advisor-cap-text span {
    color: var(--text-muted, #94a3b8);
    font-size: 0.82rem;
    line-height: 1.4;
}

.advisor-quote {
    position: relative;
    padding: 1.5rem 1.75rem;
    margin: 0 0 2rem;
    background: linear-gradient(135deg, rgba(255, 138, 80, 0.06) 0%, rgba(201, 168, 76, 0.06) 100%);
    border-left: 3px solid #c9a84c;
    border-radius: 0 12px 12px 0;
}

.advisor-quote-mark {
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 4rem;
    line-height: 1;
    color: rgba(201, 168, 76, 0.5);
    font-family: Georgia, serif;
}

.advisor-quote p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 0.5rem;
    font-style: normal;
    position: relative;
    z-index: 1;
}

.advisor-quote cite {
    display: block;
    font-size: 0.82rem;
    color: rgba(201, 168, 76, 0.8);
    font-style: normal;
    letter-spacing: 0.05em;
}

.advisor-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 1024px) {
    .advisor-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .advisor-content .section-tag { display: block; }
    .advisor-capabilities { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .advisor-cta { justify-content: center; }
    .advisor-subtitle { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
    .advisor-section { padding: 3rem 1.25rem; margin: 2.5rem auto; }
    .advisor-portrait { width: 220px; height: 220px; }
    .advisor-portrait-emoji { font-size: 3rem; }
    .advisor-portrait-name { font-size: 1.15rem; }
    .advisor-orbit-dot { width: 36px; height: 36px; font-size: 1.05rem; transform: rotate(var(--angle)) translateY(-115px) rotate(calc(-1 * var(--angle))); margin: -18px 0 0 -18px; }
}


/* ==================== P0 v48 - 宣言模块 manifesto-section ==================== */
.manifesto-section {
    position: relative;
    max-width: 1280px;
    margin: 5rem auto;
    padding: 6rem 2.5rem;
    overflow: hidden;
}

.manifesto-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.manifesto-bg canvas {
    width: 100%;
    height: 100%;
}

.manifesto-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.manifesto-tag {
    color: rgba(201, 168, 76, 0.9) !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase;
    margin-bottom: 2rem !important;
    display: inline-block;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 999px;
}

.manifesto-title {
    font-family: var(--font-display, 'Noto Serif SC', serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary, #fff);
    margin: 0 0 4rem;
    letter-spacing: -0.01em;
}

.manifesto-line {
    display: block;
}

.manifesto-line--strong {
    margin-top: 0.5rem;
    font-size: 1.15em;
    font-weight: 700;
    background: linear-gradient(135deg, #c9a84c 0%, #FFB648 50%, #FF8C5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto-line--strong em {
    font-style: normal;
    position: relative;
    display: inline-block;
}

.manifesto-line--strong em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c9a84c 50%, transparent 100%);
}

.manifesto-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto 4rem;
    max-width: 1100px;
}

.manifesto-stage {
    position: relative;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 14px;
    text-align: left;
    transition: all 0.3s ease;
    overflow: hidden;
}

.manifesto-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.5) 50%, transparent 100%);
}

.manifesto-stage:hover {
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, rgba(201, 168, 76, 0.02) 100%);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
}

.stage-num {
    font-family: var(--font-display, 'Noto Serif SC', serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #c9a84c 0%, #FF8C5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stage-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0.5rem 0 0.85rem;
    letter-spacing: 0.1em;
}

.manifesto-stage p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary, #cbd5e1);
    margin: 0;
}

.manifesto-finale {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, transparent 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.finale-text {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-primary, #fff);
    margin: 0;
    font-weight: 500;
}

.finale-text em {
    font-style: normal;
    background: linear-gradient(135deg, #c9a84c 0%, #FFB648 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.finale-signature {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    font-weight: 400;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .manifesto-stages { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 768px) {
    .manifesto-stages { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 640px) {
    .manifesto-section { padding: 3.5rem 1.25rem; margin: 3rem auto; }
    .manifesto-stages { grid-template-columns: 1fr; gap: 1rem; }
    .manifesto-stage { padding: 1.5rem 1.25rem; }
    .stage-num { font-size: 2rem; }
    .stage-title { font-size: 1.2rem; }
    .manifesto-finale { padding: 1.75rem 1.25rem; }
}


/* ==================== P0 v48 - 4 大 AI 入口 entry-section ==================== */
.entry-section {
    max-width: 1280px;
    margin: 5rem auto;
    padding: 4rem 2rem;
}

.entry-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.entry-section .section-tag {
    color: rgba(201, 168, 76, 0.9);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
    font-weight: 600;
}

.entry-section .section-title {
    font-family: var(--font-display, 'Noto Serif SC', serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary, #fff);
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.entry-section .section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary, #cbd5e1);
    margin: 0 auto;
    max-width: 680px;
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.entry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 220px;
}

.entry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.5) 50%, transparent 100%);
}

.entry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.5);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0.02) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.entry-card.entry-drama {
    border-color: rgba(255, 106, 61, 0.4);
    background: linear-gradient(180deg, rgba(255, 106, 61, 0.06) 0%, rgba(255, 138, 80, 0.02) 100%);
}

.entry-card.entry-drama:hover {
    border-color: rgba(255, 106, 61, 0.7);
    box-shadow: 0 12px 40px rgba(255, 106, 61, 0.25);
}

.entry-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));
}

.entry-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.entry-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(201, 168, 76, 0.95);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.entry-tag.tag-primary {
    color: #fff;
    background: linear-gradient(135deg, #c9a84c 0%, #FF8C5A 100%);
    border-color: transparent;
}

.entry-tag.tag-hot {
    color: #fff;
    background: linear-gradient(135deg, #FF6A3D 0%, #FF8C5A 100%);
    border-color: transparent;
    animation: tag-hot-pulse 2s ease-in-out infinite;
}

@keyframes tag-hot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 61, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255, 106, 61, 0); }
}

.entry-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0.25rem 0 0.5rem;
    letter-spacing: 0.02em;
}

.entry-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary, #cbd5e1);
    margin: 0;
    flex: 1;
}

.entry-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.25rem;
    color: rgba(201, 168, 76, 0.6);
    transition: all 0.3s ease;
}

.entry-card:hover .entry-arrow {
    color: rgba(201, 168, 76, 1);
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .entry-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .entry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .entry-section { padding: 3rem 1.25rem; margin: 3rem auto; }
    .entry-grid { grid-template-columns: 1fr; gap: 1rem; }
    .entry-card { padding: 1.5rem 1.25rem 1.25rem; min-height: auto; }
    .entry-name { font-size: 1.25rem; }
}

/* ==================== Emotion Section 痛点共鸣+社会证明+限时紧迫 ==================== */
.emotion-section {
    max-width: 1280px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(20,20,30,0.6) 0%, rgba(10,10,18,0.4) 100%);
    border-radius: 16px;
    border: 1px solid rgba(201,168,76,0.15);
}
.emotion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.emotion-pain-title,
.proof-title,
.urgency-title {
    font-family: var(--font-display, 'Noto Serif SC', serif);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0.5rem 0 1.5rem;
}
.emotion-pain-title { font-size: 2rem; }
.proof-title { font-size: 1.5rem; }
.urgency-title { font-size: 1.5rem; }

/* 痛点列表 */
.pain-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.pain-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.pain-list li:last-child { border-bottom: none; }
.pain-q {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pain-a {
    font-size: 0.95rem;
    color: #a8a8a3;
    line-height: 1.5;
    padding-left: 1.75rem;
}

/* 社会证明 */
.proof-block { margin-bottom: 2.5rem; }
.story-list { display: flex; flex-direction: column; gap: 1.25rem; }
.story-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.story-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(201,168,76,0.3);
    transform: translateX(4px);
}
.story-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c 0%, #FF8C5A 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.story-content { flex: 1; }
.story-quote {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 0.5rem;
    font-style: normal;
}
.story-meta {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* 限时紧迫 */
.urgency-block {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(255,140,90,0.08) 100%);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.urgency-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c 0%, #FF8C5A 50%, #c9a84c 100%);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.urgency-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(255,140,90,0.2);
    border: 1px solid rgba(255,140,90,0.4);
    border-radius: 20px;
    color: #FF8C5A;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.urgency-desc {
    font-size: 0.9rem;
    color: #a8a8a3;
    line-height: 1.5;
    margin: 0.5rem 0 1.25rem;
}
.urgency-counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    margin: 1rem 0 1.5rem;
}
.urgency-num {
    font-family: var(--font-display, 'Noto Serif SC', serif);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}
.urgency-unit { font-size: 1.1rem; color: #a8a8a3; }
.urgency-label {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: #888;
}
.urgency-foot {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888;
}
.urgency-foot #urgencyCountdown {
    color: #FF8C5A;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

/* 移动端 */
@media (max-width: 1024px) {
    .emotion-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
@media (max-width: 768px) {
    .emotion-section { margin: 2.5rem 1rem; padding: 2.5rem 1.25rem; }
    .emotion-pain-title { font-size: 1.5rem; }
    .urgency-num { font-size: 2.75rem; }
    .story-item { padding: 1rem; }
}

/* ==================== for-whom 通用样式 ==================== */
.for-whom {
    margin: 0.5rem 0 1.5rem;
    text-align: center;
}
.for-whom-tag {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(255,140,90,0.08) 100%);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 20px;
    color: #f0c878;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
.for-whom-text {
    font-size: 1rem;
    color: #b8b8b0;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
}
.mulan-for-whom {
    text-align: center;
    margin: 1.25rem 0 1.75rem;
}
.mulan-for-whom-tag {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.2) 0%, rgba(255,140,90,0.1) 100%);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 20px;
    color: #f0c878;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
.mulan-for-whom-text {
    font-size: 1.05rem;
    color: #d0d0c8;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
}
@media (max-width: 768px) {
    .for-whom-text, .mulan-for-whom-text { font-size: 0.9rem; }
    .for-whom-tag, .mulan-for-whom-tag { font-size: 0.78rem; padding: 0.35rem 0.8rem; }
}

