/* ==================== 封面页 ==================== */
.page-cover {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

/* ==================== 第1页：商家的真实处境 ==================== */
.page-1 {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.page-1 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
}

/* 商家处境布局 */
.merchant-situation-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 图表区域 */
.charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.chart-panel {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.chart-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

#costChartPanel {
    transition-delay: 0.2s;
}

#utilChartPanel {
    transition-delay: 0.4s;
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 1.5rem 0;
}

/* 柱状图 */
.bar-chart-container {
    display: flex;
    gap: 0.5rem;
    height: 180px;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 0.25rem 0 0;
    width: 30px;
    flex-shrink: 0;
    margin-bottom: 1.75rem;
}

.y-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.bar-chart-area {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.375rem;
    border-left: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 0 0.25rem 0 0.5rem;
    position: relative;
    margin-bottom: 1.75rem;
    overflow: visible;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
    position: relative;
    overflow: visible;
}

.bar {
    width: 100%;
    max-width: 32px;
    height: 0;
    background: linear-gradient(180deg, #455A64 0%, #607D8B 100%);
    border-radius: 3px 3px 0 0;
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.bar-value {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    margin-bottom: 0.25rem;
}

.bar-item.animated .bar-value {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0.4s;
}

.bar-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.625rem;
    color: var(--text-muted);
    white-space: nowrap;
    margin-top: 0.375rem;
}

.chart-unit {
    text-align: right;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.chart-unit-top {
    text-align: left;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    padding-left: 2rem;
}

/* 水平对比条 */
.util-compare-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1rem 0;
}

.horizontal-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hbar-label-left {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    min-width: 60px;
}

.horizontal-stacked-bar {
    flex: 1;
    height: 40px;
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    background: #F3F4F6;
}

.hbar-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hbar-segment.utilized {
    background: #455A64;
    width: 0;
}

.hbar-segment.idle {
    background: #D32F2F;
    width: 0;
}

.hbar-segment.animated.utilized {
    width: 58%;
}

.hbar-segment.animated.idle {
    width: 42%;
}

.hbar-divider {
    width: 2px;
    height: 100%;
    background: white;
    flex-shrink: 0;
}

.hbar-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease 0.5s;
}

.hbar-segment.animated .hbar-value {
    opacity: 1;
}

.hbar-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.hbar-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hbar-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.hbar-legend-dot.utilized {
    background: #455A64;
}

.hbar-legend-dot.idle {
    background: #D32F2F;
}

.hbar-legend-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* 原因注释 */
.util-notes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
    margin-top: 0.5rem;
}

.util-note-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.util-note-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.util-note-item[data-note="0"] { transition-delay: 0.1s; }
.util-note-item[data-note="1"] { transition-delay: 0.2s; }

.note-dot {
    width: 6px;
    height: 6px;
    background: #D32F2F;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.note-text {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #222;
}

.note-text strong {
    color: #D32F2F;
    font-weight: 600;
}

/* 引述说明 */
.case-quote {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-light);
    border-left: 4px solid #455A64;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.case-quote.visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: #455A64;
    opacity: 0.5;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.quote-content {
    flex: 1;
}

.quote-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 0.5rem 0;
}

.quote-text strong {
    color: #D32F2F;
    font-weight: 700;
}

.quote-author {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}

/* 核心困境 */
.pain-points {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pain-points.visible {
    opacity: 1;
    transform: translateY(0);
}

.pain-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #D32F2F;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(211, 47, 47, 0.2);
}

.pain-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pain-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(211, 47, 47, 0.03);
    border: 1px solid rgba(211, 47, 47, 0.1);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.pain-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.pain-item[data-pain="0"] { transition-delay: 0.1s; }
.pain-item[data-pain="1"] { transition-delay: 0.2s; }
.pain-item[data-pain="2"] { transition-delay: 0.3s; }

.pain-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-icon svg {
    width: 22px;
    height: 22px;
    color: #D32F2F;
}

.pain-content {
    flex: 1;
}

.pain-item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.pain-desc {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* 第1页响应式 */
@media (max-width: 1024px) {
    .charts-row {
        grid-template-columns: 1fr;
    }
    
    .pain-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .merchant-situation-layout {
        gap: 1.5rem;
    }
    
    .chart-panel {
        padding: 1rem;
    }
    
    .bar-chart-container {
        height: 160px;
    }
    
    .pie-svg {
        width: 150px;
        height: 150px;
    }
    
    .pain-item {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* 左侧信息面板 - 保留供其他页面使用 */
.left-info-panel {
    width: 100%;
    max-width: 380px;
}

/* 部分标题徽章 */
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(91, 140, 255, 0.1);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    border: 1.5px solid rgba(91, 140, 255, 0.3);
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page.visible .section-badge {
    opacity: 1;
    transform: translateX(0);
}

/* 手机模拟器容器 */
.phone-container {
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.3s;
}

.page.visible .phone-container {
    opacity: 1;
    transform: scale(1);
}

.phone {
    width: var(--phone-width);
    height: calc(var(--phone-width) * var(--phone-ratio));
    background: #1C1C1E;
    border-radius: var(--phone-radius);
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    will-change: transform;
}

.screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: var(--screen-radius);
    overflow: hidden;
    position: relative;
    clip-path: inset(0 round var(--screen-radius));
}

/* 安全区 */
.safe-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: var(--status-bar);
    padding-bottom: var(--home-indicator);
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 动态岛 */
.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 50;
}

/* 状态栏 */
.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--status-bar);
    padding: 14px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 40;
    pointer-events: none;
}

.status-time {
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-icons svg {
    width: 14px;
    height: 14px;
    color: white;
}

/* Home指示器 */
.home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 40;
}

/* 主屏视图 */
.home-view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    padding-top: var(--status-bar);
    padding-bottom: var(--home-indicator);
    will-change: transform, opacity;
    transform-origin: center center;
    transition: transform 200ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 200ms ease;
}

.home-view.dimmed {
    transform: scale(0.98);
    filter: brightness(0.94);
}

.home-view.bounce {
    animation: homeBounce 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes homeBounce {
    0% {
        transform: scale(0.98) translateY(10px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 200ms ease;
    z-index: 5;
}

.home-view.dimmed .home-overlay {
    background: rgba(0, 0, 0, 0.06);
}

/* APP图标网格 */
.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 24px 16px;
    flex: 1;
}

.app-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.app-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6B7280;
    transition: transform 100ms ease, box-shadow 100ms ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.app-icon-box svg {
    width: 24px;
    height: 24px;
    color: white;
}

.app-icon-box.active {
    background: var(--primary-blue);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 12px;
    transform: scale(0);
    opacity: 1;
    animation: rippleEffect 120ms ease-out forwards;
}

@keyframes rippleEffect {
    to {
        transform: scale(1.2);
        opacity: 0;
    }
}

.app-icon-box.pressed {
    transform: scale(0.92);
}

.app-icon-box.expand {
    animation: iconExpand 120ms ease-out;
}

@keyframes iconExpand {
    0% {
        transform: scale(0.92);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.app-icon-name {
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.app-icon-wrapper.active .app-icon-name {
    color: white;
}

/* 步骤指示器 */
.step-indicator {
    padding: 8px 16px 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.step-dot {
    width: 5px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    transition: all 200ms ease;
}

.step-dot.active {
    width: 16px;
    background: var(--primary-blue);
}

.step-dot.completed {
    background: rgba(255, 255, 255, 0.5);
}

/* APP视图 */
.app-view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: var(--origin-x, 50%) var(--origin-y, 50%);
    pointer-events: none;
    will-change: transform, opacity;
    z-index: 10;
    overflow: hidden;
    border-radius: var(--screen-radius);
}

.app-view.entering {
    animation: appEnter 260ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    pointer-events: auto;
}

.app-view.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.app-view.exiting {
    animation: appExit 240ms cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
    pointer-events: none;
}

@keyframes appEnter {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes appExit {
    0% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.96) translateX(30%);
    }
}

.app-safe-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: var(--status-bar);
    padding-bottom: var(--home-indicator);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-header {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.app-header-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-black);
}

.app-action-tag {
    font-size: 0.625rem;
    color: var(--text-muted);
    padding: 2px 6px;
    background: var(--bg-subtle);
    border-radius: 4px;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.app-action-badge {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    padding: 14px 28px;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 150ms ease, transform 150ms ease;
    transition-delay: 100ms;
}

.app-view.visible .app-action-badge,
.app-view.entering .app-action-badge {
    opacity: 1;
    transform: scale(1);
}

.app-action-hint {
    margin-top: 12px;
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.swipe-hint {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 100px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    padding-left: 6px;
    opacity: 0;
    transition: opacity 150ms ease;
    transition-delay: 150ms;
}

.app-view.visible .swipe-hint {
    opacity: 1;
}

.swipe-hint svg {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
}

/* 精力面板 */
.energy-panel {
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    padding: 10px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.energy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.energy-label {
    font-size: 0.6875rem;
    color: var(--text-light);
}

.energy-display {
    display: flex;
    align-items: center;
    gap: 5px;
}

.energy-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-black);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.energy-value.low {
    color: var(--text-muted);
}

.energy-emoji {
    font-size: 1rem;
}

.energy-emoji.shake {
    animation: emojiShake 300ms ease;
}

@keyframes emojiShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(3px);
    }
}

.energy-bar {
    width: 100%;
    height: 5px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}

.energy-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-green) 0%, var(--primary-blue) 50%, var(--text-muted) 100%);
    border-radius: 3px;
    transition: width 300ms ease;
}

.play-controls {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.ctrl-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--bg-subtle);
    border: none;
    border-radius: 5px;
    font-size: 0.6875rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ctrl-btn:hover {
    background: var(--border-light);
}

.ctrl-btn svg {
    width: 10px;
    height: 10px;
}

/* ==================== 响应式调整 ==================== */
@media (max-width: 1024px) {
    .energy-panel {
        width: 220px;
        bottom: -80px;
    }
}

/* ==================== 第2页：AI数字员工网络 ==================== */
.page-2 {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.page-2 .content {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 1.25rem;
}

/* Canvas动画区域 */
.canvas-wrapper {
    position: relative;
    width: 100%;
    max-width: 950px;
    height: 350px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    overflow: hidden;
}

/* 左侧照片列 */
.photos-column {
    width: 220px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: #FAFAFA;
    border-right: 1px solid var(--border-light);
    flex-shrink: 0;
}

.photo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* 照片卡片 */
.photo-card {
    width: 70px;
    height: 70px;
    background: #455A64;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.photo-icon {
    width: 28px;
    height: 28px;
    color: white;
}

.photo-name {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* 橙色圆球 */
.agent-ball {
    width: 24px;
    height: 24px;
    background: #C78A2B;
    border-radius: 50%;
    position: relative;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(199, 138, 43, 0.4);
}

.agent-ball.visible {
    opacity: 1;
    transform: scale(1);
}

.agent-ball.glowing .ball-glow {
    opacity: 1;
}

.ball-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 12px 4px rgba(199, 138, 43, 0.5);
    opacity: 0;
    animation: orangeGlow 1.5s ease-in-out infinite;
}

@keyframes orangeGlow {
    0%, 100% { box-shadow: 0 0 8px 2px rgba(199, 138, 43, 0.4); }
    50% { box-shadow: 0 0 16px 6px rgba(199, 138, 43, 0.6); }
}

/* 数字员工标签 */
.agent-label {
    position: absolute;
    left: 110px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1F2937;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.agent-label.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 右侧Canvas */
#networkCanvas {
    flex: 1;
    display: block;
    min-width: 300px;
    min-height: 300px;
    background: #F8F9FA;
}

/* 移动中的圆球 */
.moving-balls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.moving-ball {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #C78A2B;
    border-radius: 50%;
    box-shadow: 0 0 12px 4px rgba(199, 138, 43, 0.5);
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.moving-ball.visible {
    opacity: 1;
}

.moving-ball.merged {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 旁白短句 */
.narration-caption {
    text-align: center;
    max-width: 700px;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.narration-caption.visible {
    opacity: 1;
    transform: translateY(0);
}

.narration-caption p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.narration-caption strong {
    color: var(--text-black);
    font-weight: 700;
}

.narration-caption .narration-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* 定义卡片区域 */
.definition-cards {
    width: 100%;
    max-width: 900px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.definition-cards.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 单框定义样式 */
.definition-box {
    width: 100%;
    max-width: 750px;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #C78A2B;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.definition-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.box-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 12px 0;
}

.box-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.box-desc strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cards-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 1rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.def-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.def-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.def-card[data-card="0"] { transition-delay: 0s; }
.def-card[data-card="1"] { transition-delay: 0.1s; }
.def-card[data-card="2"] { transition-delay: 0.2s; }

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #C78A2B;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 8px 0;
    padding-left: 8px;
}

.card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
    padding-left: 8px;
}

/* ==================== 第2页响应式 ==================== */
@media (max-width: 1024px) {
    .canvas-wrapper {
        height: 320px;
    }
    
    .photos-column {
        width: 180px;
        padding: 16px;
    }
    
    .photo-card {
        width: 60px;
        height: 60px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .page-2 .page-title-top {
        font-size: 1.5rem;
    }
    
    .canvas-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    .photos-column {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 12px;
    }
    
    .photo-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .agent-label {
        position: static;
        transform: none;
        font-size: 0.6875rem;
    }
    
    #networkCanvas {
        height: 200px;
    }
    
    .narration-caption p {
        font-size: 0.875rem;
    }
}

/* ==================== 第3页：战略澄清 ==================== */
.page-3 {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

/* 战略布局 */
.page-layout-strategy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 24px;
    padding: 40px 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.page-title-strategy {
    text-align: center;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-3.visible .page-title-strategy {
    opacity: 1;
    transform: translateY(0);
}

/* 左右对比区域 */
.strategy-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    width: 100%;
    flex: 1;
    max-height: 420px;
}

/* 策略面板 */
.strategy-panel {
    flex: 1;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mesh-panel {
    transform: translateX(30px);
}

.page-3.visible .platform-panel {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.page-3.visible .mesh-panel {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

/* 面板头部 */
.panel-header {
    margin-bottom: 16px;
    text-align: center;
}

.panel-title-label {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0B3A67;
    margin: 0;
    padding: 6px 20px;
    background: rgba(11, 58, 103, 0.08);
    border-radius: 20px;
}

.mesh-label {
    color: #C78A2B;
    background: rgba(199, 138, 43, 0.1);
}

/* ===== 平台逻辑画布（绝对定位布局）===== */
.platform-canvas {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2F7 100%);
    border-radius: 12px;
    min-height: 200px;
}

/* 商家节点 - 左侧 */
.platform-canvas .merchant-node {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

/* 第一个箭头 - 商家和平台之间 */
.platform-canvas .arrow-1 {
    position: absolute;
    left: 28%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
}

/* 平台框 - 中间 */
.platform-canvas .platform-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 60px;
    background: #EEF2F7;
    border: 2px solid #0B3A67;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease 0.5s;
}

/* 第二个箭头 - 平台和用户之间 */
.platform-canvas .arrow-2 {
    position: absolute;
    left: 72%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease 0.6s;
}

/* 用户节点 - 右侧 */
.platform-canvas .user-node {
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s ease 0.7s;
}

/* 抽佣标签 - 底部居中 */
.platform-canvas .commission-tag {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: rgba(199, 138, 43, 0.15);
    border: 1px solid #C78A2B;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease 0.8s;
    white-space: nowrap;
}

/* 显示状态 */
.page-3.visible .platform-canvas .merchant-node,
.page-3.visible .platform-canvas .arrow-1,
.page-3.visible .platform-canvas .platform-box,
.page-3.visible .platform-canvas .arrow-2,
.page-3.visible .platform-canvas .user-node,
.page-3.visible .platform-canvas .commission-tag {
    opacity: 1;
}

/* 节点图标样式 */
.platform-canvas .node-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    border: 2px solid #0B3A67;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(11, 58, 103, 0.15);
}

.platform-canvas .node-icon svg {
    width: 26px;
    height: 26px;
    color: #0B3A67;
}

.platform-canvas .node-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0B3A67;
}

/* 箭头样式 */
.platform-canvas .flow-arrow svg {
    width: 50px;
    height: 20px;
}

/* 平台框文字 */
.platform-canvas .box-label {
    font-size: 1rem;
    font-weight: 700;
    color: #0B3A67;
}

/* 抽佣标签文字 */
.platform-canvas .commission-tag span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #C78A2B;
}

/* 面板底部 */
.panel-footer {
    margin-top: 16px;
    text-align: center;
}

.footer-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mesh-footer {
    color: #C78A2B;
}

/* 中间分隔 */
.strategy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-3.visible .strategy-divider {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.6s;
}

.divider-vs {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-muted);
    background: var(--bg-subtle);
    padding: 12px 16px;
    border-radius: 8px;
}

/* 组网逻辑画布 */
.mesh-canvas {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF8EE 100%);
    border-radius: 12px;
    min-height: 220px;
    overflow: hidden;
}

.mesh-network-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

/* 网络节点 */
.mesh-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-3.visible .mesh-node {
    opacity: 1;
    transform: scale(1);
}

/* 节点位置 */
.mesh-node[data-node="u"] {
    left: 8%;
    top: 45%;
    transform: translate(-50%, -50%) scale(0);
    transition-delay: 0.6s;
}

.mesh-node[data-node="ai1"] {
    left: 26%;
    top: 32%;
    transform: translate(-50%, -50%) scale(0);
    transition-delay: 0.7s;
}

.mesh-node[data-node="ai2"] {
    left: 28%;
    top: 62%;
    transform: translate(-50%, -50%) scale(0);
    transition-delay: 0.75s;
}

.mesh-node[data-node="n1"] {
    left: 46%;
    top: 25%;
    transform: translate(-50%, -50%) scale(0);
    transition-delay: 0.85s;
}

.mesh-node[data-node="n2"] {
    left: 52%;
    top: 47%;
    transform: translate(-50%, -50%) scale(0);
    transition-delay: 0.9s;
}

.mesh-node[data-node="n3"] {
    left: 46%;
    top: 70%;
    transform: translate(-50%, -50%) scale(0);
    transition-delay: 0.95s;
}

.mesh-node[data-node="m1"] {
    left: 75%;
    top: 35%;
    transform: translate(-50%, -50%) scale(0);
    transition-delay: 1s;
}

.mesh-node[data-node="m2"] {
    left: 78%;
    top: 65%;
    transform: translate(-50%, -50%) scale(0);
    transition-delay: 1.05s;
}

.page-3.visible .mesh-node[data-node="u"] {
    transform: translate(-50%, -50%) scale(1);
}

.page-3.visible .mesh-node[data-node="ai1"],
.page-3.visible .mesh-node[data-node="ai2"] {
    transform: translate(-50%, -50%) scale(1);
}

.page-3.visible .mesh-node[data-node="n1"],
.page-3.visible .mesh-node[data-node="n2"],
.page-3.visible .mesh-node[data-node="n3"] {
    transform: translate(-50%, -50%) scale(1);
}

.page-3.visible .mesh-node[data-node="m1"],
.page-3.visible .mesh-node[data-node="m2"] {
    transform: translate(-50%, -50%) scale(1);
}

/* 节点圆点 */
.mesh-node-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0B3A67;
    box-shadow: 0 2px 8px rgba(11, 58, 103, 0.3);
}

.user-mesh-node .mesh-node-dot,
.merchant-mesh-node .mesh-node-dot {
    width: 18px;
    height: 18px;
}

.ai-dot {
    background: #C78A2B;
    box-shadow: 0 0 12px rgba(199, 138, 43, 0.5);
    animation: aiGlow 2s ease-in-out infinite;
}

@keyframes aiGlow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(199, 138, 43, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(199, 138, 43, 0.8);
    }
}

.network-dot {
    width: 12px;
    height: 12px;
    background: #C7CED6;
}

.mesh-node-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.ai-node .mesh-node-label {
    color: #C78A2B;
}

/* 网络连线样式 */
.mesh-line {
    stroke: #0B3A67;
    stroke-width: 1.5;
    fill: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-3.visible .mesh-line {
    opacity: 0.4;
}

.mesh-line.glow {
    filter: url(#glowFilter);
    opacity: 0.6;
}

/* 说明文字 */
.strategy-explainer {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-3.visible .strategy-explainer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.2s;
}

.explainer-text {
    font-size: 0.9375rem;
    color: #374151;
    margin: 0;
}

/* 定位宣言 */
.strategy-quote {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 900px;
    padding: 20px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-3.visible .strategy-quote {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.4s;
}

.quote-accent-bar {
    width: 4px;
    min-height: 60px;
    height: 100%;
    background: linear-gradient(180deg, #0B3A67 0%, #C78A2B 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.strategy-quote .quote-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.strategy-quote .quote-text strong {
    color: #0B3A67;
    font-weight: 700;
}

/* ==================== 第3页响应式 ==================== */
@media (max-width: 1024px) {
    .strategy-comparison {
        flex-direction: column;
        max-height: none;
    }
    
    .strategy-panel {
        transform: translateY(20px);
    }
    
    .mesh-panel {
        transform: translateY(20px);
    }
    
    .page-3.visible .platform-panel,
    .page-3.visible .mesh-panel {
        transform: translateY(0);
    }
    
    .strategy-divider {
        width: 100%;
        height: 40px;
}

    .page-title-strategy {
        font-size: 1.375rem;
    }
}

@media (max-width: 640px) {
    .page-layout-strategy {
        gap: 16px;
        padding: 24px 16px;
    }
    
    .page-title-strategy {
        font-size: 1.25rem;
    }
    
    .platform-canvas,
    .mesh-canvas {
        min-height: 180px;
    }
    
    .flow-node .node-icon {
        width: 44px;
        height: 44px;
    }
    
    .flow-node .node-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .platform-box {
        width: 80px;
        height: 60px;
    }
    
    .strategy-quote {
        padding: 16px;
    }
    
    .strategy-quote .quote-text {
        font-size: 0.875rem;
    }
}

/* ==================== 第4页：场景协议（左右对比） ==================== */
.page-4 {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

/* 协议布局 */
.protocol-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 20px;
    padding: 40px 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.page-title-protocol {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-4.visible .page-title-protocol {
    opacity: 1;
    transform: translateY(0);
}

/* 左右对比区域 */
.protocol-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex: 1;
    max-height: 450px;
}

/* 协议面板 */
.protocol-panel {
    flex: 1;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.legacy-panel {
    transform: translateX(-30px);
}

.scene-panel {
    transform: translateX(30px);
}

.page-4.visible .legacy-panel {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.page-4.visible .scene-panel {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

/* 面板标签 */
.panel-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 12px 0;
    text-align: center;
}

.scene-label {
    color: #0B3A67;
}

/* ===== 左侧：传统合作画布 ===== */
.legacy-canvas {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #FAFAFA 0%, #F3F4F6 100%);
    border-radius: 12px;
    min-height: 280px;
}

.scene-canvas {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF8EE 100%);
    border-radius: 12px;
    min-height: 280px;
}

/* SVG线条 */
.p2p-svg, .scene-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 合同线（虚线灰色） - 由JS控制显示 */
.contract-line {
    stroke: #9CA3AF;
    stroke-width: 2;
    stroke-dasharray: 6 4;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 协议线（淡灰色）- 由JS控制显示 */
.protocol-line {
    stroke: #D1D5DB;
    stroke-width: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* 右侧场景协议飞行图标 */
.flying-contract.scene-contract {
    border-color: #0B3A67;
}

.flying-contract.scene-contract svg {
    color: #0B3A67;
}

/* P2P节点（左侧） */
.p2p-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-4.visible .p2p-node {
    opacity: 1;
    transition-delay: 0.2s;
}

/* 节点圆圈 */
.node-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6B7280;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.node-circle.active {
    background: #0B3A67;
    box-shadow: 0 3px 12px rgba(11, 58, 103, 0.35);
}

.p2p-node > span, .scene-node > span {
    font-size: 0.6875rem;
    color: #6B7280;
    font-weight: 500;
}

.scene-node > span {
    color: #0B3A67;
}

/* 能力徽章行 */
.badge-row {
    display: flex;
    gap: 2px;
    margin-top: 4px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 80px;
}

.cap-badge {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cap-badge.own {
    background: #C78A2B;
    color: white;
}

.cap-badge.gained {
    background: #10B981;
    color: white;
    animation: badgeIn 0.3s ease;
}

.cap-badge.full {
    background: #C78A2B;
    color: white;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-4.visible .cap-badge.full {
    opacity: 1;
    transform: scale(1);
}

.page-4.visible #sceneBadgesA .cap-badge.full { transition-delay: 0.9s; }
.page-4.visible #sceneBadgesB .cap-badge.full { transition-delay: 1.0s; }
.page-4.visible #sceneBadgesC .cap-badge.full { transition-delay: 1.1s; }
.page-4.visible #sceneBadgesD .cap-badge.full { transition-delay: 1.2s; }

@keyframes badgeIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* 场景节点（右侧） */
.scene-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-4.visible .scene-node {
    opacity: 1;
    transition-delay: 0.5s;
}

/* 企业数字员工（中心圆） */
.digital-employee {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-4.visible .digital-employee {
    opacity: 1;
    transition-delay: 0.4s;
}

.employee-glow {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 138, 43, 0.3) 0%, transparent 70%);
    animation: employeePulse 2s ease-in-out infinite;
}

@keyframes employeePulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.employee-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C78A2B 0%, #D4A84B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(199, 138, 43, 0.4);
    position: relative;
    z-index: 1;
}

.employee-circle svg {
    width: 28px;
    height: 28px;
    color: white;
}

.digital-employee > span {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #C78A2B;
    white-space: nowrap;
}

/* 飞行协议图标 */
.flying-contract {
    position: absolute;
    width: 28px;
    height: 28px;
    background: white;
    border: 2px solid #C78A2B;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 3px 12px rgba(199, 138, 43, 0.4);
    transition: none;
}

.flying-contract svg {
    width: 16px;
    height: 16px;
    color: #C78A2B;
}

.flying-contract.visible {
    opacity: 1;
}

/* 图例说明 */
.legend-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.02);
    border-radius: 6px;
    margin-top: 6px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.625rem;
    color: #6B7280;
}

.legend-item .cap-badge {
    width: 16px;
    height: 16px;
    font-size: 0.5625rem;
}

/* 步骤提示 */
.step-hint {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    color: #EF4444;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-4.visible .step-hint {
    opacity: 1;
    transition-delay: 4s;
}

.scene-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    color: #10B981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-4.visible .scene-hint {
    opacity: 1;
    transition-delay: 1.3s;
}

/* 面板底部说明 */
.panel-caption {
    margin-top: 8px;
    text-align: center;
    font-size: 0.6875rem;
    color: #6B7280;
    padding: 8px 12px;
    background: rgba(0,0,0,0.02);
    border-radius: 6px;
}

.legacy-caption {
    color: #9CA3AF;
}

.scene-caption {
    color: #0B3A67;
    font-weight: 500;
    background: rgba(199, 138, 43, 0.08);
}

/* 核心逻辑/旁白 */
.core-logic {
    text-align: center;
    padding: 16px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-4.visible .core-logic {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.5s;
}

.logic-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: #0B3A67;
    margin-bottom: 8px;
}

.core-logic p {
    font-size: 0.8125rem;
    color: #374151;
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

/* ==================== 第4页响应式 ==================== */
@media (max-width: 1024px) {
    .protocol-comparison {
        flex-direction: column;
        max-height: none;
    }
    
    .protocol-panel {
        transform: translateY(20px);
    }
    
    .page-4.visible .legacy-panel,
    .page-4.visible .scene-panel {
        transform: translateY(0);
    }
    
    .page-title-protocol {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .protocol-layout {
        gap: 16px;
        padding: 24px 16px;
    }
    
    .page-title-protocol {
        font-size: 1.125rem;
    }
    
    .legacy-canvas,
    .scene-canvas {
        min-height: 220px;
    }
}

/* ==================== 第5页：角色级组织网 ==================== */
.page-5 {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.page-5 .content {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 标题区域 */
.page-header-top {
    text-align: left;
    padding: 0 20px;
}

/* 网络舞台 */
.network-stage {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 550px;
    background: #FBFCFD;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: visible;
}

/* 连线 SVG */
.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    opacity: 0;
}

.connection-line.visible {
    opacity: 1;
}

/* 飞行粒子 */
.line-particle {
    opacity: 0;
}

.line-particle.flying {
    opacity: 1;
}

/* 网络节点（通用样式） */
.network-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.network-node.visible {
    opacity: 1;
    transform: scale(1);
}

/* 淡出效果（未被选中的餐厅） */
.network-node.faded {
    opacity: 0.35;
    filter: saturate(0.5);
}

/* 酒店数字员工节点（中心位置） */
.hotel-node {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
}

.hotel-node.visible {
    transform: translate(-50%, -50%) scale(1);
}

.node-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4F7FFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(91, 140, 255, 0.3);
    position: relative;
}

.node-avatar svg {
    width: 50px;
    height: 50px;
    color: white;
}

/* 节点脉冲效果 */
.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
}

.node-pulse.active {
    animation: pulseRing 1.5s ease-out;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* 节点标签 */
.node-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    white-space: nowrap;
}

/* 小结标签 */
.summary-badge {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 8px 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.summary-badge.visible {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.summary-line {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--success-green);
    line-height: 1.5;
}

/* 第6页小结标签 - 放在酒店上方横向展示 */
.page-6 .summary-badge {
    bottom: auto;
    top: -45px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid var(--success-green);
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--success-green);
    white-space: nowrap;
}

.page-6 .summary-badge.visible {
    transform: translateX(-50%) scale(1);
}

/* 目标节点（小节点） */
.target-node {
    z-index: 8;
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.4s ease;
}

.node-avatar-small {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6B7FFF 0%, #8B9FFF 100%);
    box-shadow: 0 4px 16px rgba(91, 140, 255, 0.25);
}

.node-avatar-small svg {
    width: 35px;
    height: 35px;
}

/* 目标节点位置 - 新布局 */
.node-restaurant-a {
    left: 20%;
    top: 25%;
    transform: translate(-50%, 0) scale(0.9);
}

.node-restaurant-a.visible {
    transform: translate(-50%, 0) scale(1);
}

.node-restaurant-b {
    left: 20%;
    bottom: 25%;
    transform: translate(-50%, 0) scale(0.9);
}

.node-restaurant-b.visible {
    transform: translate(-50%, 0) scale(1);
}

.node-car {
    right: 20%;
    top: 50%;
    transform: translate(50%, -50%) scale(0.9);
}

.node-car.visible {
    transform: translate(50%, -50%) scale(1);
}

/* 节点闪动效果 */
.node-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0;
}

.node-flash.active {
    animation: flashEffect 0.4s ease-out;
}

@keyframes flashEffect {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* 选择标记（餐厅A） */
.selected-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--success-green);
    color: white;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 0.6875rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    z-index: 15;
}

.selected-badge.visible {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.selected-badge svg {
    width: 12px;
    height: 12px;
}

/* 综合最优标签 */
.optimal-tag {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.4);
    color: #FF9800;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.625rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    z-index: 14;
}

.optimal-tag.visible {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* 飞行气泡（动态创建） */
.flying-bubble {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    pointer-events: none;
    z-index: 20;
    will-change: transform, opacity;
}

/* 底部旁白区 */
.narrative-footer {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 30px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.narrative-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page.visible .narrative-row:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.narrative-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.narrative-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-blue);
}

.narrative-row .narrative-paragraph {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 第5页响应式 ==================== */
@media (max-width: 1024px) {
    .page-title-top {
        font-size: 1.25rem;
    }
    
    .network-stage {
        min-height: 500px;
    }
    
    .node-avatar {
        width: 85px;
        height: 85px;
    }
    
    .node-avatar svg {
        width: 42px;
        height: 42px;
    }
    
    .node-avatar-small {
        width: 60px;
        height: 60px;
    }
    
    .node-avatar-small svg {
        width: 30px;
        height: 30px;
    }
    
    .flying-bubble {
        font-size: 0.6875rem;
        padding: 5px 12px;
    }
}

@media (max-width: 640px) {
    .page-title-top {
        font-size: 1.125rem;
        padding: 0 10px;
    }
    
    .network-stage {
        min-height: 450px;
    }
    
    .node-avatar {
        width: 70px;
        height: 70px;
    }
    
    .node-avatar svg {
        width: 35px;
        height: 35px;
    }
    
    .node-avatar-small {
        width: 50px;
        height: 50px;
    }
    
    .node-avatar-small svg {
        width: 25px;
        height: 25px;
    }
    
    .node-label {
        font-size: 0.75rem;
    }
    
    .flying-bubble {
        font-size: 0.625rem;
        padding: 5px 10px;
    }
    
    .selected-badge,
    .optimal-tag {
        font-size: 0.5625rem;
        padding: 3px 8px;
    }
    
    .summary-badge {
        padding: 6px 10px;
    }
    
    .summary-line {
        font-size: 0.625rem;
    }
    
    .narrative-footer {
        padding: 16px 20px;
    }
    
    .narrative-row .narrative-paragraph {
        font-size: 0.875rem;
    }
}

/* ==================== 第6页：任务与结算组织网 ==================== */
.page-6 {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.page-6 .content {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 第6页网络舞台 */
.page-6 .network-stage {
    min-height: 550px;
}

/* 第6页节点位置 - 酒店居中，结算在下方 */
.page-6 .hotel-node {
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) scale(0.9);
}

.page-6 .hotel-node.visible {
    transform: translate(-50%, -50%) scale(1);
}

.page-6 .node-restaurant {
    left: 20%;
    top: 40%;
    transform: translate(-50%, -50%) scale(0.9);
}

.page-6 .node-restaurant.visible {
    transform: translate(-50%, -50%) scale(1);
}

.page-6 .node-user {
    right: 20%;
    top: 40%;
    transform: translate(50%, -50%) scale(0.9);
}

.page-6 .node-user.visible {
    transform: translate(50%, -50%) scale(1);
}

.page-6 .node-settlement {
    left: 50%;
    bottom: 18%;
    transform: translate(-50%, 0) scale(0.9);
}

.page-6 .node-settlement.visible {
    transform: translate(-50%, 0) scale(1);
}

/* 金额流动线条 */
.money-line {
    opacity: 0;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.6));
}

.money-line.visible {
    opacity: 1;
    animation: drawMoneyLine 0.8s ease-out forwards;
}

@keyframes drawMoneyLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* 分账完成标记 */
.settlement-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--success-green);
    color: white;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 0.6875rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    z-index: 15;
}

.settlement-badge.visible {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.settlement-badge svg {
    width: 12px;
    height: 12px;
}

/* 任务卡片样式 */
.task-card,
.dispatch-card,
.confirm-card,
.solution-card,
.payment-card,
.settlement-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    z-index: 15;
    max-width: 280px;
    pointer-events: none;
}

/* 任务卡 */
.task-card {
    border-left: 4px solid var(--primary-blue);
}

.task-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.task-card-content {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* 派单卡 */
.dispatch-card {
    border-left: 4px solid #8B9FFF;
}

.dispatch-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6B7FFF;
    margin-bottom: 8px;
}

.dispatch-card-rules {
    font-size: 0.6875rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 12px;
    border-left: 2px solid var(--border-light);
}

/* 确认卡 */
.confirm-card {
    border-left: 4px solid var(--success-green);
}

.confirm-card-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.confirm-card-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-dark);
}

.confirm-card-item::before {
    content: '✓';
    color: var(--success-green);
    font-weight: bold;
}

/* 整合方案卡 */
.solution-card {
    border: 2px solid var(--primary-blue);
    background: rgba(91, 140, 255, 0.05);
}

.solution-card-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.solution-card-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.solution-card-item {
    font-size: 0.6875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* 支付卡 */
.payment-card {
    border: 2px solid var(--success-green);
    background: rgba(16, 185, 129, 0.08);
    text-align: center;
}

.payment-button {
    background: var(--success-green);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    cursor: pointer;
}

.payment-status {
    font-size: 0.75rem;
    color: var(--success-green);
    font-weight: 600;
}

/* 结算卡 */
.settlement-card {
    border-left: 4px solid #FF9800;
    background: rgba(255, 152, 0, 0.05);
}

.settlement-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF9800;
    margin-bottom: 10px;
}

.settlement-card-flows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settlement-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    padding: 6px 10px;
    background: white;
    border-radius: 6px;
    border: 1px solid var(--border-light);
}

.settlement-flow-icon {
    width: 16px;
    height: 16px;
    color: var(--success-green);
}

.settlement-flow-text {
    flex: 1;
    color: var(--text-dark);
}

/* 金额标签 */
.money-label {
    position: absolute;
    background: var(--success-green);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
    opacity: 0;
    z-index: 16;
    white-space: nowrap;
}

/* ==================== 第6页响应式 ==================== */
@media (max-width: 1024px) {
    .page-6 .network-stage {
        min-height: 500px;
    }
    
    .task-card,
    .dispatch-card,
    .confirm-card,
    .solution-card,
    .payment-card,
    .settlement-card {
        max-width: 240px;
        padding: 12px 16px;
    }
    
    .task-card-content,
    .solution-card-title {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .page-6 .network-stage {
        min-height: 450px;
    }
    
    .task-card,
    .dispatch-card,
    .confirm-card,
    .solution-card,
    .payment-card,
    .settlement-card {
        max-width: 200px;
        padding: 10px 14px;
    }
    
    .task-card-title,
    .dispatch-card-title,
    .solution-card-title,
    .settlement-card-title {
        font-size: 0.6875rem;
    }
    
    .task-card-content {
        font-size: 0.6875rem;
    }
    
    .settlement-badge {
        font-size: 0.625rem;
        padding: 4px 10px;
    }
}

/* ==================== 第7页：用户价值 - 双手机对比 ==================== */
.page-7 {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.page-7 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
}

.page-7 .page-title-top {
    margin-bottom: 2rem;
}

/* 主布局：左右分栏 */
.page-7-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
}

/* 左侧内容区 */
.left-content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.page.visible .left-content-area {
    opacity: 1;
    transform: translateX(0);
}

/* 左侧标题 */
.page-title-left {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 2rem;
}

/* 左侧副标题（不加粗） */
.page-subtitle-left {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.1s;
}

.page.visible .page-subtitle-left {
    opacity: 1;
    transform: translateY(0);
}

/* 左侧旁白框 - 始终显示，无动画 */
.narrative-box-left {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(91, 140, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    opacity: 1;
}

.narrative-box-left .narrative-icon {
    display: none;
}

.narrative-box-left .narrative-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin: 0;
    font-weight: 400;
    text-align: justify;
}

/* 双手机对比容器（右侧） */
.dual-phone-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* 手机侧边 */
.phone-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.left-phone-side {
    transform: translateY(20px);
    transition-delay: 0.4s;
}

.right-phone-side {
    transform: translateY(20px);
    transition-delay: 0.6s;
}

.page.visible .phone-side {
    opacity: 1;
    transform: translateY(0);
}

/* 侧边标签 */
.side-label {
    padding: 0.625rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.old-way-label {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.new-way-label {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* 第7页的手机容器特定样式 */
.page-7 .phone-container {
    opacity: 1;
    transform: scale(1);
}

/* AI对话界面 */
.chat-view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    opacity: 1;
    z-index: 1;
}

.chat-safe-area {
    flex: 1;
    padding: var(--status-bar) var(--side-padding) var(--home-indicator);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 对话头部 */
.chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0.75rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #4a73e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-avatar svg {
    width: 22px;
    height: 22px;
    color: white;
}

.chat-title-info {
    flex: 1;
}

.chat-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.chat-status {
    font-size: 0.75rem;
    color: var(--success-color);
    font-weight: 500;
}

/* 对话消息区域 */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* 确保显示所有内容 */
    min-height: 0;
}

.message-group {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.message-group.show {
    opacity: 1;
    transform: translateY(0);
}

/* 用户消息 */
.user-group {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    opacity: 1 !important;
}

.user-bubble {
    background: rgba(91, 140, 255, 0.12);
    color: var(--text-primary) !important;
    padding: 1rem 1.125rem;
    border-radius: 18px 18px 4px 18px;
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 80%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(91, 140, 255, 0.2);
    font-weight: 500;
    opacity: 1 !important;
}

/* AI消息组 */
.ai-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
}

.ai-avatar-small {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.ai-avatar-small svg {
    width: 20px;
    height: 20px;
    color: white;
}

.ai-messages-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ai-bubble {
    background: white;
    color: var(--text-primary);
    padding: 1rem 1.125rem;
    border-radius: 4px 18px 18px 18px;
    font-size: 0.9375rem;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-weight: 500;
}

.ai-bubble.show {
    opacity: 1;
    transform: translateX(0);
}

/* 确认卡片 */
.confirmation-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.16));
    border: 2px solid rgba(16, 185, 129, 0.35);
    border-radius: 14px;
    margin-top: 0.75rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.confirmation-card.show {
    opacity: 1;
    transform: scale(1);
}

.confirm-icon {
    width: 36px;
    height: 36px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.confirm-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.confirm-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--success-color);
}


/* 第7页响应式调整 */
@media (max-width: 1200px) {
    .page-7-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .left-content-area {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .dual-phone-comparison {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .page-7-layout {
        grid-template-columns: 1fr;
    }
    
    .dual-phone-comparison {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .page-title-left {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-title-left {
        font-size: 1.25rem;
    }
    
    .narrative-box-left {
        padding: 1.5rem;
    }
    
    .narrative-box-left .narrative-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .dual-phone-comparison {
        gap: 2rem;
    }
    
    .side-label {
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
    }
    
    .chat-header {
        padding: 0.875rem 0.625rem;
    }
    
    .chat-avatar {
        width: 36px;
        height: 36px;
    }
    
    .chat-avatar svg {
        width: 20px;
        height: 20px;
    }
    
    .chat-title {
        font-size: 0.875rem;
    }
    
    .user-bubble {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
    }
    
    .ai-bubble {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
    }
    
    .confirm-text {
        font-size: 0.9375rem;
    }
}

/* ==================== 第8页：三大价值支柱 ==================== */
.page-8 {
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.page-layout-pillars {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2rem;
}

/* 主标题 */
.page-title-pillars {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1F2937;
    text-align: center;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page.visible .page-title-pillars {
    opacity: 1;
    transform: translateY(0);
}

/* 副标题 */
.page-subtitle-pillars {
    font-size: 1.125rem;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
    margin-top: -0.5rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.15s;
}

.page.visible .page-subtitle-pillars {
    opacity: 1;
    transform: translateY(0);
}

/* 价值画布区域 */
.value-pillars-canvas {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.3s;
}

.page.visible .value-pillars-canvas {
    opacity: 1;
    transform: scale(1);
}

/* 说明卡片行 */
.callout-cards-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
    max-width: 1000px;
}

/* 单个说明卡片 */
.callout-card {
    position: relative;
    flex: 1;
    max-width: 280px;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.callout-card[data-pillar="1"] {
    border-color: rgba(37, 99, 235, 0.25);
    transition-delay: 0.7s;
}

.callout-card[data-pillar="2"] {
    border-color: rgba(16, 185, 129, 0.25);
    transition-delay: 1.4s;
}

.callout-card[data-pillar="3"] {
    border-color: rgba(245, 158, 11, 0.25);
    transition-delay: 2.1s;
}

.page.visible .callout-card {
    opacity: 1;
    transform: translateY(0);
}

.callout-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 卡片图标 */
.callout-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
}

.callout-card[data-pillar="1"] .callout-icon {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

.callout-card[data-pillar="2"] .callout-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.callout-card[data-pillar="3"] .callout-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.callout-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

/* 卡片标题 */
.callout-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.callout-card[data-pillar="1"] .callout-title {
    color: #2563EB;
}

.callout-card[data-pillar="2"] .callout-title {
    color: #10B981;
}

.callout-card[data-pillar="3"] .callout-title {
    color: #F59E0B;
}

/* 卡片描述 */
.callout-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6B7280;
}

/* 卡片连接线 */
.callout-connector {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.callout-card[data-pillar="1"] .callout-connector {
    background: linear-gradient(to bottom, #2563EB, rgba(37, 99, 235, 0.3));
    transition-delay: 0.9s;
}

.callout-card[data-pillar="2"] .callout-connector {
    background: linear-gradient(to bottom, #10B981, rgba(16, 185, 129, 0.3));
    transition-delay: 1.6s;
}

.callout-card[data-pillar="3"] .callout-connector {
    background: linear-gradient(to bottom, #F59E0B, rgba(245, 158, 11, 0.3));
    transition-delay: 2.3s;
}

.page.visible .callout-connector {
    opacity: 1;
}

/* 柱形区域 */
.pillars-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4rem;
    height: 280px;
    padding-top: 30px;
    margin-bottom: 1rem;
}

/* 单个柱形包装 */
.pillar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* 柱形本体 */
.pillar {
    position: relative;
    width: 100px;
    border-radius: 12px 12px 4px 4px;
    overflow: hidden;
    transform-origin: bottom center;
}

#pillar1 {
    height: 0;
    background: linear-gradient(180deg, #2563EB 0%, #1E40AF 100%);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

#pillar2 {
    height: 0;
    background: linear-gradient(180deg, #10B981 0%, #047857 100%);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

#pillar3 {
    height: 0;
    background: linear-gradient(180deg, #F59E0B 0%, #B45309 100%);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

/* 柱形填充动画 */
.pillar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: inherit;
}

/* 柱形高光 */
.pillar-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 30%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.2) 70%, 
        rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar:hover .pillar-shine {
    opacity: 1;
}

/* 柱形动画状态 */
.pillar.growing {
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar.pulsing {
    animation: pillarPulse 0.6s ease-in-out;
}

@keyframes pillarPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* 柱形标签 */
.pillar-label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#pillarWrapper1 .pillar-label {
    transition-delay: 0.5s;
}

#pillarWrapper2 .pillar-label {
    transition-delay: 1.2s;
}

#pillarWrapper3 .pillar-label {
    transition-delay: 1.9s;
}

.page.visible .pillar-label {
    opacity: 1;
    transform: translateY(0);
}

/* 底部总结卡 */
.summary-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 700px;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(31, 41, 55, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 2.6s;
}

.page.visible .summary-card {
    opacity: 1;
    transform: translateY(0);
}

.summary-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.summary-content {
    flex: 1;
}

.summary-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.summary-text strong {
    color: #FBBF24;
    font-weight: 600;
}

/* 底部旁白 */
.pillars-caption {
    width: 100%;
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 2.8s;
}

.page.visible .pillars-caption {
    opacity: 1;
    transform: translateY(0);
}

.pillars-caption p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #6B7280;
}

/* 响应式 */
@media (max-width: 900px) {
    .page-layout-pillars {
        gap: 1.25rem;
        padding: 1.25rem 1.5rem;
    }
    
    .page-title-pillars {
        font-size: 1.75rem;
    }
    
    .callout-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .callout-card {
        max-width: 320px;
        width: 100%;
    }
    
    .callout-connector {
        display: none;
    }
    
    .pillars-row {
        gap: 2rem;
        height: 200px;
    }
    
    .pillar {
        width: 70px;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .pillars-row {
        gap: 1rem;
        height: 160px;
    }
    
    .pillar {
        width: 55px;
    }
    
    .pillar-label {
        font-size: 0.875rem;
    }
}

/* ==================== 第9页：网络效应示意 ==================== */
.page-9 {
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.page-layout-network {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.page-title-network {
    font-size: 2rem;
    font-weight: 800;
    color: #1F2937;
    text-align: center;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page.visible .page-title-network {
    opacity: 1;
    transform: translateY(0);
}

/* 三阶段网络容器 */
.network-phases-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.2s;
}

.page.visible .network-phases-container {
    opacity: 1;
    transform: scale(1);
}

/* 单个阶段 */
.network-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.network-phase[data-phase="A"] { transition-delay: 0s; }
.network-phase[data-phase="B"] { transition-delay: 0.5s; }
.network-phase[data-phase="C"] { transition-delay: 1.1s; }

.page.visible .network-phase {
    opacity: 1;
    transform: translateY(0);
}

/* 阶段画布 */
.phase-canvas {
    position: relative;
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.network-phase[data-phase="A"] .phase-canvas {
    border-color: rgba(37, 99, 235, 0.3);
}

.network-phase[data-phase="B"] .phase-canvas {
    border-color: rgba(16, 185, 129, 0.3);
}

.network-phase[data-phase="C"] .phase-canvas {
    border-color: rgba(245, 158, 11, 0.3);
}

.phase-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.phase-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* 网络节点 */
.net-node {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.net-node.visible {
    transform: translate(-50%, -50%) scale(1);
}

/* 阶段A节点 - 蓝色 */
.network-phase[data-phase="A"] .net-node {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

/* 阶段B节点 - 绿色 */
.network-phase[data-phase="B"] .net-node {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    width: 14px;
    height: 14px;
}

/* 阶段C节点 - 橙色 */
.network-phase[data-phase="C"] .net-node {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    width: 12px;
    height: 12px;
}

/* 连接线 */
.net-line {
    stroke-width: 1.5;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.net-line.visible {
    opacity: 0.5;
}

.network-phase[data-phase="A"] .net-line {
    stroke: #2563EB;
}

.network-phase[data-phase="B"] .net-line {
    stroke: #10B981;
    stroke-width: 1.2;
}

.network-phase[data-phase="C"] .net-line {
    stroke: #F59E0B;
    stroke-width: 1;
}

/* 阶段标签 */
.phase-label {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
}

.network-phase[data-phase="A"] .phase-label { color: #2563EB; }
.network-phase[data-phase="B"] .phase-label { color: #10B981; }
.network-phase[data-phase="C"] .phase-label { color: #F59E0B; }

/* 阶段描述 */
.phase-desc {
    font-size: 0.875rem;
    color: #6B7280;
    text-align: center;
    max-width: 180px;
    line-height: 1.5;
}

/* 进化箭头 */
.evolution-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#arrow1 { transition-delay: 0.3s; }
#arrow2 { transition-delay: 0.9s; }

.page.visible .evolution-arrow {
    opacity: 1;
    transform: translateX(0);
}

.evolution-arrow svg {
    width: 50px;
    height: 24px;
}

/* 脉冲动画 */
.network-phase.pulsing .phase-canvas {
    animation: phasePulse 0.6s ease-in-out;
}

@keyframes phasePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* 底部资产卡 */
.assets-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: 750px;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(31, 41, 55, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 1.8s;
}

.page.visible .assets-card {
    opacity: 1;
    transform: translateY(0);
}

.assets-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.assets-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.assets-content {
    flex: 1;
}

.assets-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.375rem;
}

.assets-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.assets-text strong {
    color: #FBBF24;
    font-weight: 600;
}

/* 底部旁白 */
.network-caption {
    width: 100%;
    max-width: 900px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 1.8s;
}

.page.visible .network-caption {
    opacity: 1;
    transform: translateY(0);
}

.network-caption p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #6B7280;
}

.network-caption strong {
    color: #1F2937;
    font-weight: 600;
}

/* 响应式 */
@media (max-width: 900px) {
    .page-layout-network {
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
    }
    
    .page-title-network {
        font-size: 1.5rem;
    }
    
    .network-phases-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .evolution-arrow {
        transform: rotate(90deg);
    }
    
    .page.visible .evolution-arrow {
        transform: rotate(90deg);
    }
    
    .phase-canvas {
        width: 180px;
        height: 180px;
    }
    
    .assets-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
}

/* ==================== 第10页：愿景——由点到城 ==================== */
.page-10 {
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.page-layout-vision {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.page-title-vision {
    font-size: 2rem;
    font-weight: 800;
    color: #1F2937;
    text-align: center;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page.visible .page-title-vision {
    opacity: 1;
    transform: translateY(0);
}

/* 三阶段递进容器 */
.vision-stages-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    min-height: 280px;
    padding-bottom: 2rem;
}

/* 单个阶段 */
.vision-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-stage.visible {
    opacity: 1;
    transform: translateY(0);
}

.vision-stage.pulsing {
    animation: stagePulse 0.6s ease-in-out;
}

@keyframes stagePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* 阶段建筑样式 */
.stage-building {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* 酒店建筑 */
.hotel-building {
    width: 140px;
    height: 160px;
    border-color: rgba(37, 99, 235, 0.3);
}

.hotel-building .building-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-building .building-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* 街区建筑 */
.street-building {
    width: 180px;
    height: 160px;
    border-color: rgba(16, 185, 129, 0.3);
}

.street-shops {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
}

.shop-unit {
    width: 32px;
    height: 28px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 4px;
}

/* 社区建筑 */
.community-building {
    width: 200px;
    height: 180px;
    border-color: rgba(245, 158, 11, 0.3);
}

.community-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    justify-content: center;
}

.block-unit {
    width: 36px;
    height: 32px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border-radius: 4px;
}

.block-unit.large {
    width: 80px;
    height: 40px;
}

/* 建筑标签 */
.building-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

/* 阶段标签 */
.stage-tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.stage-tag.visible {
    opacity: 1;
    transform: translateY(0);
}

#tag1 {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

#tag2 {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

#tag3 {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* 连接线 */
.connector-line {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #9CA3AF, #F59E0B);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.connector-line.visible {
    opacity: 1;
}

/* 阶段箭头 */
.stage-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    align-self: center;
    margin-bottom: 60px;
}

.stage-arrow.visible {
    opacity: 1;
    transform: translateX(0);
}

.stage-arrow svg {
    width: 40px;
    height: 24px;
}

/* AI底座层 */
.ai-base-layer {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-base-layer.visible {
    opacity: 1;
    transform: translateY(0);
}

.ai-base-layer.pulsing {
    animation: basePulse 0.6s ease-in-out;
}

@keyframes basePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6); }
}

.base-glow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: linear-gradient(to top, rgba(245, 158, 11, 0.3), transparent);
    border-radius: 50%;
}

.base-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.base-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.base-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.base-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
}

/* 底部旁白 */
.vision-caption {
    width: 100%;
    max-width: 900px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 2s;
}

.page.visible .vision-caption {
    opacity: 1;
    transform: translateY(0);
}

.vision-caption p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #6B7280;
}

/* 响应式 */
@media (max-width: 900px) {
    .page-layout-vision {
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
    }
    
    .page-title-vision {
        font-size: 1.5rem;
    }
    
    .vision-stages-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stage-arrow {
        transform: rotate(90deg);
        margin-bottom: 0;
    }
    
    .stage-arrow.visible {
        transform: rotate(90deg);
    }
    
    .connector-line {
        display: none;
    }
    
    .hotel-building,
    .street-building,
    .community-building {
        width: 160px;
        height: 140px;
    }
}

/* ==================== 第11页：战略窗口期（新布局） ==================== */
.page-11 {
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.page-layout-window {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    height: 100%;
    gap: 2rem;
}

/* 顶部标题 */
.page-title-window {
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A2E;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    margin: 0;
}

.page.visible .page-title-window {
    opacity: 1;
    transform: translateY(0);
}

/* 左右分栏布局 */
.window-split-layout {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 4rem;
    width: 100%;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page.visible .window-split-layout {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 左侧：文字区 ===== */
.window-text-area {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* 副标题（不加粗） */
.window-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    color: #1A1A2E;
    line-height: 1.4;
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page.visible .window-subtitle {
    opacity: 1;
    transform: translateX(0);
}

/* 三条要点 */
.window-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.point-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.point-item[data-point="0"] { transition-delay: 0.2s; }
.point-item[data-point="1"] { transition-delay: 0.35s; }
.point-item[data-point="2"] { transition-delay: 0.5s; }

.point-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5B8CFF 0%, #3B6FDD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.point-icon.warning {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.point-content {
    flex: 1;
}

.point-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A2E;
    margin: 0 0 0.375rem 0;
}

.point-title .accent {
    color: #D32F2F;
}

.point-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* 单个要点样式 */
.point-item.single-point {
    padding: 1.5rem 1.75rem;
}

.point-item.single-point .point-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

/* 战略窗口期整合框 */
.strategy-box {
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 16px;
    border: 1.5px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.2s;
}

.page.visible .strategy-box {
    opacity: 1;
    transform: translateY(0);
}

.strategy-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.25rem;
}

.strategy-desc {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #4B5563;
    margin: 0;
}

/* ===== 右侧：动画区 ===== */
.window-visual-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* 沙漏动画容器 */
.hourglass-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.3s;
}

.page.visible .hourglass-visual {
    opacity: 1;
    transform: scale(1);
}

/* 沙漏主体 */
.hourglass-wrapper {
    position: relative;
    width: 140px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 支架 */
.hourglass-stand {
    width: 100px;
    height: 14px;
    background: linear-gradient(180deg, #8B7355 0%, #5D4E37 100%);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(93, 78, 55, 0.3);
    z-index: 10;
}

.top-stand {
    border-radius: 4px 4px 2px 2px;
}

.bottom-stand {
    border-radius: 2px 2px 4px 4px;
}

/* 玻璃球 */
.hourglass-bulb {
    position: relative;
    width: 90px;
    height: 85px;
    overflow: hidden;
}

.top-bulb {
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 255, 0.9) 50%,
        rgba(220, 235, 250, 0.85) 100%);
    border: 2px solid rgba(150, 180, 210, 0.4);
    border-top: none;
    box-shadow: 
        inset 0 -20px 40px rgba(100, 150, 200, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08);
}

.bottom-bulb {
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: linear-gradient(180deg, 
        rgba(220, 235, 250, 0.85) 0%,
        rgba(240, 248, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(150, 180, 210, 0.4);
    border-bottom: none;
    box-shadow: 
        inset 0 20px 40px rgba(100, 150, 200, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08);
}

/* 玻璃高光 */
.bulb-shine {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 25%;
    height: 35%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    pointer-events: none;
}

/* 沙子容器 */
.sand-container {
    position: absolute;
    width: 100%;
    overflow: hidden;
}

.top-sand {
    bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bottom-sand {
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.top-sand .sand {
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, #FFD699 0%, #FFB347 50%, #FF9500 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transition: height 0.5s ease;
}

.bottom-sand .sand {
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, #FF9500 0%, #FFB347 50%, #FFD699 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transition: height 0.5s ease;
}

/* 颈部 */
.hourglass-neck {
    width: 16px;
    height: 22px;
    background: linear-gradient(90deg, 
        rgba(200, 220, 240, 0.6) 0%, 
        rgba(255, 255, 255, 0.9) 50%,
        rgba(200, 220, 240, 0.6) 100%);
    border-left: 2px solid rgba(150, 180, 210, 0.4);
    border-right: 2px solid rgba(150, 180, 210, 0.4);
    position: relative;
    z-index: 5;
}

/* 沙流 */
.sand-stream {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF9500, #FFB347);
    opacity: 0;
    border-radius: 2px;
}

.sand-stream.active {
    opacity: 1;
    animation: sandStream 0.8s ease-in-out infinite;
}

@keyframes sandStream {
    0%, 100% {
        height: 60%;
        opacity: 0.6;
    }
    50% {
        height: 100%;
        opacity: 1;
    }
}

/* 沙漏标签 */
.hourglass-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hourglass-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.label-year {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A2E;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 2px solid #1A1A2E;
    border-radius: 20px;
}

.label-remaining {
    font-size: 0.875rem;
    color: #666;
}

.label-remaining strong {
    color: #D32F2F;
    font-size: 1.125rem;
}

/* ===== 时间线 ===== */
.window-timeline {
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.6s;
}

.page.visible .window-timeline {
    opacity: 1;
    transform: translateY(0);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.timeline-year {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A2E;
}

.timeline-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #D32F2F;
    padding: 0.375rem 0.875rem;
    background: rgba(211, 47, 47, 0.08);
    border: 1px solid rgba(211, 47, 47, 0.2);
    border-radius: 16px;
}

.timeline-bar {
    position: relative;
    margin-bottom: 0.75rem;
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4px;
}

.month-block {
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.month-block.normal {
    background: #F0F0F0;
    color: #999;
}

.month-block.critical {
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.month-block.critical.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 渐变强度 - 从6月往后越来越淡 */
.month-block.critical.intensity-100 {
    background: rgba(211, 47, 47, 0.25);
    color: #D32F2F;
}

.month-block.critical.intensity-85 {
    background: rgba(211, 47, 47, 0.20);
    color: #E53935;
}

.month-block.critical.intensity-70 {
    background: rgba(211, 47, 47, 0.16);
    color: #EF5350;
}

.month-block.critical.intensity-55 {
    background: rgba(211, 47, 47, 0.12);
    color: #EF5350;
}

.month-block.critical.intensity-40 {
    background: rgba(211, 47, 47, 0.09);
    color: #F44336;
}

.month-block.critical.intensity-25 {
    background: rgba(211, 47, 47, 0.06);
    color: #E57373;
}

.month-block.critical.intensity-15 {
    background: rgba(211, 47, 47, 0.04);
    color: #EF9A9A;
}

.month-block.critical.glow {
    animation: monthPulse 1.5s ease-in-out infinite;
}

@keyframes monthPulse {
    0%, 100% {
        box-shadow: none;
    }
    50% {
        box-shadow: 0 0 12px rgba(211, 47, 47, 0.4);
    }
}

/* 高亮边框 */
.critical-highlight {
    position: absolute;
    top: -4px;
    left: 0;
    width: calc(100% + 2px);
    height: calc(100% + 8px);
    border: 2px solid #D32F2F;
    border-radius: 10px;
    pointer-events: none;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.critical-highlight.visible {
    opacity: 1;
    transform: scaleX(1);
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
}

/* 响应式 */
@media (max-width: 1024px) {
    .window-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .window-text-area {
        order: 2;
    }
    
    .window-visual-area {
        order: 1;
    }
    
    .window-subtitle {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .window-subtitle {
        font-size: 1.375rem;
    }
    
    .hourglass-wrapper {
        width: 110px;
        height: 180px;
    }
    
    .hourglass-bulb {
        width: 70px;
        height: 70px;
    }
    
    .hourglass-stand {
        width: 80px;
        height: 12px;
    }
    
    .point-item {
        padding: 1rem;
    }
    
    .point-desc {
        font-size: 0.875rem;
    }
    
    .month-block {
        height: 36px;
        font-size: 0.625rem;
    }
}

