        /* ==========================================
           脉冲神经网络 — 专有样式
           宽度继承全局 85%，风格延续 part3 的温暖杂志风
           ========================================== */

        /* ---- 章节二级标题变体 ---- */
        .chapter-section h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin: var(--space-lg) 0 var(--space-md);
            padding-left: var(--space-md);
            border-left: 3px solid var(--primary);
        }

        .chapter-section h4 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: var(--space-md) 0 var(--space-sm);
        }

        /* ---- 定义卡 ---- */
        .def-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .def-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            text-align: center;
            transition: all var(--transition-slow);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        .def-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            transition: opacity var(--transition-base);
        }

        .def-card:nth-child(1)::before {
            background: linear-gradient(90deg, #EC4899, #F472B6);
        }

        .def-card:nth-child(2)::before {
            background: linear-gradient(90deg, #3B82F6, #60A5FA);
        }

        .def-card:nth-child(3)::before {
            background: linear-gradient(90deg, #10B981, #34D399);
        }

        .def-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .def-card:nth-child(1):hover {
            border-color: rgba(236, 72, 153, 0.3);
        }

        .def-card:nth-child(2):hover {
            border-color: rgba(59, 130, 246, 0.3);
        }

        .def-card:nth-child(3):hover {
            border-color: rgba(16, 185, 129, 0.3);
        }

        .def-card:hover::before {
            opacity: 1;
        }

        .def-label {
            display: inline-block;
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            padding: 3px 12px;
            border-radius: var(--radius-xl);
            margin-bottom: var(--space-sm);
        }

        .def-card:nth-child(1) .def-label {
            background: #FDF2F8;
            color: #BE185D;
            border: 1px solid #FBCFE8;
        }

        .def-card:nth-child(2) .def-label {
            background: #EFF6FF;
            color: #1D4ED8;
            border: 1px solid #BFDBFE;
        }

        .def-card:nth-child(3) .def-label {
            background: #ECFDF5;
            color: #047857;
            border: 1px solid #A7F3D0;
        }

        .def-card h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.15rem;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .def-en {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.05em;
            margin-bottom: var(--space-sm);
        }

        .def-body {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.65;
            text-align: left;
        }

        .def-body strong {
            color: var(--primary);
        }

        /* ---- 三要素卡片 ---- */
        .element-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .element-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            text-align: center;
            transition: all var(--transition-slow);
            box-shadow: var(--shadow-sm);
        }

        .element-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .element-card:nth-child(1) {
            border-top: 3px solid #F59E0B;
        }

        .element-card:nth-child(2) {
            border-top: 3px solid #3B82F6;
        }

        .element-card:nth-child(3) {
            border-top: 3px solid #10B981;
        }

        .element-card:nth-child(1):hover {
            border-color: rgba(245, 158, 11, 0.3);
        }

        .element-card:nth-child(2):hover {
            border-color: rgba(59, 130, 246, 0.3);
        }

        .element-card:nth-child(3):hover {
            border-color: rgba(16, 185, 129, 0.3);
        }

        .element-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto var(--space-md);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .element-card:nth-child(1) .element-icon {
            background: #FFFBEB;
            border: 1px solid #FDE68A;
        }

        .element-card:nth-child(2) .element-icon {
            background: #EFF6FF;
            border: 1px solid #BFDBFE;
        }

        .element-card:nth-child(3) .element-icon {
            background: #ECFDF5;
            border: 1px solid #A7F3D0;
        }

        .element-card h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }

        .element-body {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.65;
        }

        /* ---- 核心技术卡片 ---- */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .tech-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            transition: all var(--transition-slow);
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .tech-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .tech-card:nth-child(1) {
            border-top: 3px solid #6366F1;
        }

        .tech-card:nth-child(2) {
            border-top: 3px solid #F59E0B;
        }

        .tech-card:nth-child(3) {
            border-top: 3px solid #EC4899;
        }

        .tech-card:nth-child(4) {
            border-top: 3px solid #10B981;
        }

        .tech-card:nth-child(1):hover {
            border-color: rgba(99, 102, 241, 0.3);
        }

        .tech-card:nth-child(2):hover {
            border-color: rgba(245, 158, 11, 0.3);
        }

        .tech-card:nth-child(3):hover {
            border-color: rgba(236, 72, 153, 0.3);
        }

        .tech-card:nth-child(4):hover {
            border-color: rgba(16, 185, 129, 0.3);
        }

        .tech-card h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }

        .tech-desc {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.65;
        }

        /* ---- 工作流步骤 ---- */
        .flow-steps {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-md);
            justify-content: center;
            margin-bottom: var(--space-lg);
        }

        .flow-step {
            flex: 1;
            min-width: 160px;
            max-width: 220px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--space-lg) var(--space-md);
            text-align: center;
            transition: all var(--transition-slow);
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .flow-step:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .flow-step:not(:last-child)::after {
            content: '→';
            position: absolute;
            right: -18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: bold;
        }

        .flow-num {
            display: inline-block;
            width: 28px;
            height: 28px;
            line-height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: var(--space-sm);
        }

        .flow-step h4 {
            font-size: 0.9rem;
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .flow-step p {
            font-size: 0.75rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ---- 名词定义区块 ---- */
        .term-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-md);
            margin-bottom: var(--space-lg);
        }

        .term-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--space-md) var(--space-lg);
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
        }

        .term-item:hover {
            border-color: var(--border-accent);
            transform: translateX(4px);
            box-shadow: var(--shadow-hover);
        }

        .term-word {
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 0.9rem;
        }

        .term-def {
            color: var(--text-secondary);
            font-size: 0.8rem;
            margin-top: 2px;
            line-height: 1.6;
        }

        /* ---- 应用场景卡片 ---- */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .scene-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            text-align: center;
            transition: all var(--transition-slow);
            box-shadow: var(--shadow-sm);
        }

        .scene-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-accent);
        }

        .scene-icon {
            font-size: 2rem;
            margin-bottom: var(--space-sm);
        }

        .scene-card h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }

        .scene-desc {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* ---- 指标公式块 ---- */
        .metric-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-md);
            margin-bottom: var(--space-lg);
        }

        .metric-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--space-md) var(--space-lg);
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
        }

        .metric-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-hover);
        }

        .metric-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: var(--space-xs);
        }

        .metric-name .tag {
            font-size: 0.6rem;
            padding: 2px 8px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-family: 'Noto Sans SC', sans-serif;
        }

        .metric-name .tag.reg {
            background: #ECFDF5;
            color: #047857;
            border: 1px solid #A7F3D0;
        }

        .metric-name .tag.cls {
            background: #EFF6FF;
            color: #1D4ED8;
            border: 1px solid #BFDBFE;
        }

        .metric-formula {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            color: var(--primary);
            padding: var(--space-xs) var(--space-sm);
            background: hsl(var(--primary-hue) 60% 96%);
            border-radius: var(--radius-sm);
            margin: var(--space-xs) 0;
            display: inline-block;
        }

        .metric-desc {
            color: var(--text-secondary);
            font-size: 0.8rem;
            line-height: 1.6;
            margin-top: 4px;
        }

        /* ---- 算法分类大卡片 ---- */
        .algo-section-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            margin-bottom: var(--space-md);
            transition: all var(--transition-slow);
            box-shadow: var(--shadow-sm);
        }

        .algo-section-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-hover);
        }

        .algo-section-card h4 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.05rem;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .algo-section-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.65;
        }

        /* ---- 两栏布局 ---- */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        @media (max-width: 768px) {
            .two-col {
                grid-template-columns: 1fr;
            }

            .flow-step:not(:last-child)::after {
                display: none;
            }
        }

        /* ---- 子主题列表 ---- */
        .topic-list {
            list-style: none;
            padding: 0;
        }

        .topic-list li {
            padding: var(--space-sm) var(--space-md);
            margin-bottom: var(--space-xs);
            background: var(--bg-elevated);
            border-radius: var(--radius-sm);
            border-left: 3px solid var(--accent);
            color: var(--text-secondary);
            font-size: 0.85rem;
            transition: all var(--transition-base);
        }

        .topic-list li:hover {
            border-left-color: var(--primary);
            transform: translateX(4px);
        }

        .topic-list li strong {
            color: var(--text-primary);
        }

        /* ---- 评估方法卡片 ---- */
        .eval-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .eval-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            transition: all var(--transition-slow);
            box-shadow: var(--shadow-sm);
            border-top: 3px solid var(--primary);
        }

        .eval-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .eval-card:nth-child(1) {
            border-top-color: #6366F1;
        }

        .eval-card:nth-child(2) {
            border-top-color: #F59E0B;
        }

        .eval-card:nth-child(3) {
            border-top-color: #10B981;
        }

        .eval-card h4 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.05rem;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }

        .eval-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.65;
        }

        /* ---- 可视化卡片 (Canvas) ---- */
        .viz-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            margin: var(--space-lg) auto;
            max-width: 600px;
            box-shadow: var(--shadow-sm);
        }

        .viz-title {
            font-family: 'Noto Sans SC', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: var(--space-sm);
        }

        .viz-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .viz-container canvas {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            background: #FEFDFB;
            display: block;
        }

        /* ---- 论证卡 ---- */
        .arguments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .argument-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            transition: all var(--transition-slow);
            box-shadow: var(--shadow-sm);
        }

        .argument-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-hover);
        }

        .arg-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .argument-card h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .argument-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.65;
        }

        /* ---- 引用/总结/过渡框 ---- */
        .quote-block {
            background: var(--bg-card);
            border-left: 4px solid var(--primary);
            padding: var(--space-md) var(--space-lg);
            margin-bottom: var(--space-lg);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            box-shadow: var(--shadow-sm);
        }

        .quote-block p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: var(--space-xs);
            font-style: italic;
        }

        .quote-block cite {
            color: var(--text-muted);
            font-size: 0.8rem;
            font-style: normal;
        }

        .summary-box {
            background: hsl(var(--primary-hue) 30% 97%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--space-md) var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .summary-box p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .convergence-box {
            background: linear-gradient(135deg, hsl(var(--primary-hue) 30% 97%), hsl(var(--accent-hue) 30% 97%));
            border: 1px solid var(--border-accent);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            margin-bottom: var(--space-lg);
            box-shadow: var(--shadow-sm);
        }

        .convergence-box p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .conclusion-box {
            background: var(--bg-card);
            border: 2px solid var(--primary);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            margin-bottom: var(--space-lg);
            box-shadow: var(--shadow-sm);
        }

        .conclusion-box p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ---- 结尾过渡块 ---- */
        .transition-block {
            text-align: center;
            background: linear-gradient(135deg, hsl(var(--primary-hue) 60% 96%), hsl(var(--accent-hue) 80% 96%));
            border: 1px solid var(--border-accent);
            border-radius: var(--radius-lg);
            padding: var(--space-xl) var(--space-lg);
            margin: var(--space-xl) 0;
        }

        .transition-block p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* ---- 文章导航 ---- */
        .article-nav {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-lg);
            margin: var(--space-xl) 0;
        }

        @media (max-width: 768px) {
            .article-nav {
                grid-template-columns: 1fr;
            }
        }

        .nav-button {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-md) var(--space-lg);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.9rem;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
        }

        .nav-button:hover {
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .nav-button.prev {
            justify-content: flex-start;
        }

        .nav-button:not(.prev) {
            justify-content: flex-end;
        }

        .nav-button svg {
            flex-shrink: 0;
        }

        .nav-button.prev svg {
            order: -1;
        }
    
