/*
 * 数创融合 · 响应式设计 v2.0
 * Responsive Design System v2.0
 * 设计原理：视觉层次 / 触摸友好 / 呼吸感 / 现代简洁
 * 五行美学：壬水蓝#0A2D6E + 坎水青#0EA5E9 + 乾金橙#F97316 + 坤金#F6AD55
 */

/* ═══════════════════════════════════════════════════════════════
   1. 设计系统变量（Design Tokens）
   ═══════════════════════════════════════════════════════════════ */
:root {
    /* 品牌色系（五行美学）*/
    --primary-dark: #0A2D6E;     /* 壬水蓝 - 背景 */
    --primary: #0EA5E9;           /* 坎水青 - 主色 */
    --primary-light: #38BDF8;     /* 浅青 */
    --accent-orange: #F97316;      /* 乾金橙 - CTA */
    --accent-orange-dark: #EA580C; /* 深橙 */
    --accent-gold: #F6AD55;       /* 坤金 - 政府徽章 */
    --success: #10B981;           /* 震木绿 - 成功 */
    --error: #EF4444;             /* 错误红 */
    
    /* 中性色 */
    --text-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-blue: #F0F9FF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    
    /* 间距系统（8px基准）*/
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    
    /* 圆角系统 */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* 阴影系统 */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 6px 12px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 20px rgba(14,165,233,0.3);
    
    /* 字体系统 */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --font-mono: "SF Mono", "Fira Code", monospace;
    
    /* 过渡动画 */
    --transition-fast: 150ms ease;
    --transition: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* 容器宽度 */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
}

/* ═══════════════════════════════════════════════════════════════
   2. 基础重置与全局样式
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* 触摸优化 */
a, button, input, select, textarea {
    touch-action: manipulation;
}

/* 禁用选择（交互元素） */
.no-select {
    user-select: none;
    -webkit-user-select: none;
}

/* ═══════════════════════════════════════════════════════════════
   3. 移动端核心（320px - 639px）
   ═══════════════════════════════════════════════════════════════ */

/* 移动端容器 */
.container {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--space-4);
    margin: 0 auto;
}

/* 移动端网格 */
.row {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.col-12 { width: 100%; }
.col-6 { width: 100%; }
.col-4 { width: 100%; }
.col-3 { width: 100%; }

/* 移动端显示控制 */
.mobile-show { display: block !important; }
.mobile-hide { display: none !important; }
.tablet-show { display: none !important; }
.desktop-show { display: none !important; }

/* ─────────────── 移动端导航 ─────────────── */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-4);
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

.mobile-nav-logo .logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent-orange));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* 汉堡菜单按钮 */
.mobile-nav-toggle {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: var(--space-2);
    transition: var(--transition);
}

.mobile-nav-toggle:active {
    background: rgba(255,255,255,0.1);
}

.mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 移动端侧边菜单 */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 1001;
    overflow-y: auto;
    padding: var(--space-6);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 45, 110, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-4);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-gray);
    transition: var(--transition);
}

.mobile-nav-close:active {
    background: var(--border);
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-links a:active {
    color: var(--primary);
}

.mobile-nav-links .icon {
    width: 36px;
    height: 36px;
    background: var(--bg-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* 移动端CTA */
.mobile-nav-cta {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
}

/* ─────────────── 移动端Hero ─────────────── */
.hero {
    padding: 80px 0 var(--space-10);
    text-align: center;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text-white);
}

.hero-content {
    max-width: 100%;
}

.hero h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-6);
    opacity: 0.9;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
}

/* ─────────────── 移动端按钮 ─────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    min-height: 48px;
    /* 触摸友好最小高度 */
    min-width: 120px;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--text-white);
    box-shadow: var(--shadow), 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:active {
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:active {
    background: rgba(255,255,255,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:active {
    background: var(--bg-blue);
}

/* ─────────────── 移动端卡片 ─────────────── */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:active {
    transform: translateY(2px);
    box-shadow: var(--shadow-sm);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.card-price {
    margin-top: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border-light);
}

.card-price .amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.card-price .unit {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ─────────────── 移动端表单 ─────────────── */
.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-white);
    transition: var(--transition);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ─────────────── 移动端区块 ─────────────── */
.section {
    padding: var(--space-10) 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-2);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: var(--space-8);
}

/* ─────────────── 移动端图表 ─────────────── */
.chart-container {
    width: 100%;
    height: 280px;
    padding: var(--space-3);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ─────────────── 移动端表格 ─────────────── */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: var(--bg-white);
}

th, td {
    padding: var(--space-3) var(--space-4);
    text-align: left;
    font-size: 0.85rem;
}

th {
    background: var(--primary-dark);
    color: var(--text-white);
    font-weight: 600;
}

tr:nth-child(even) {
    background: var(--bg-light);
}

/* ─────────────── 移动端底部固定栏 ─────────────── */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    padding: var(--space-2) 0;
    z-index: 999;
    padding-bottom: max(var(--space-2), env(safe-area-inset-bottom));
}

.mobile-bottom-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.7rem;
    padding: var(--space-2);
    min-width: 60px;
    transition: var(--transition);
}

.mobile-bottom-bar a:active {
    color: var(--primary);
}

.mobile-bottom-bar a.active {
    color: var(--primary);
}

.mobile-bottom-bar .icon {
    font-size: 1.4rem;
}

/* ─────────────── 移动端浮动按钮 ─────────────── */
.mobile-fab {
    position: fixed;
    bottom: 70px;
    right: var(--space-4);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-lg), 0 4px 20px rgba(249, 115, 22, 0.4);
    font-size: 24px;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-fab:active {
    transform: scale(0.95);
}

/* ─────────────── 移动端模态框 ─────────────── */
.mobile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 45, 110, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: var(--space-6);
    transform: translateY(100%);
    transition: transform var(--transition);
}

.mobile-modal.active .mobile-modal-content {
    transform: translateY(0);
}

.mobile-modal-handle {
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 0 auto var(--space-4);
}

/* ═══════════════════════════════════════════════════════════════
   4. 平板适配（640px - 1023px）
   ═══════════════════════════════════════════════════════════════ */
@media screen and (min-width: 640px) {
    html {
        font-size: 15px;
    }

    .container {
        max-width: var(--container-sm);
        padding: 0 var(--space-6);
    }

    .row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-3 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .mobile-hide { display: block !important; }
    .tablet-show { display: block !important; }
    .tablet-hide { display: none !important; }

    .hero {
        padding: 100px 0 var(--space-12);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
        min-width: 160px;
    }

    .card {
        padding: var(--space-6);
    }

    .chart-container {
        height: 320px;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   5. 桌面适配（1024px - 1279px）
   ═══════════════════════════════════════════════════════════════ */
@media screen and (min-width: 1024px) {
    html {
        font-size: 16px;
    }

    .container {
        max-width: var(--container-lg);
        padding: 0 var(--space-8);
    }

    .col-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .mobile-show { display: none !important; }
    .mobile-hide { display: flex !important; }
    .tablet-show { display: none !important; }
    .tablet-hide { display: flex !important; }
    .desktop-show { display: flex !important; }
    .desktop-hide { display: none !important; }

    .hero {
        padding: 120px 0 80px;
        text-align: left;
    }

    .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--space-8);
    }

    .hero-text {
        flex: 1;
        max-width: 55%;
    }

    .hero-visual {
        flex: 1;
        max-width: 40%;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .section {
        padding: var(--space-16) 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: var(--space-3);
    }

    .chart-container {
        height: 380px;
    }

    /* 桌面导航 */
    .desktop-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-4) var(--space-8);
        background: var(--primary-dark);
    }

    .desktop-nav-links {
        display: flex;
        gap: var(--space-8);
        list-style: none;
    }

    .desktop-nav-links a {
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: var(--transition);
        padding: var(--space-2) 0;
        position: relative;
    }

    .desktop-nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
    }

    .desktop-nav-links a:hover {
        color: var(--text-white);
    }

    .desktop-nav-links a:hover::after {
        width: 100%;
    }

    /* 悬停效果 */
    .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .btn:hover {
        transform: translateY(-2px);
    }
}

/* ═══════════════════════════════════════════════════════════════
   6. 大屏适配（1280px+）
   ═══════════════════════════════════════════════════════════════ */
@media screen and (min-width: 1280px) {
    .container {
        max-width: var(--container-xl);
        padding: 0 var(--space-10);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .chart-container {
        height: 420px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   7. 超级大屏（1440px+）
   ═══════════════════════════════════════════════════════════════ */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   8. 响应式工具类
   ═══════════════════════════════════════════════════════════════ */

/* 文字对齐 */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* 间距 */
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

/* 圆角 */
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* 阴影 */
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* 背景 */
.bg-blue { background: var(--bg-blue); }
.bg-light { background: var(--bg-light); }
.bg-gradient { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }

/* ═══════════════════════════════════════════════════════════════
   9. 动画与过渡
   ═══════════════════════════════════════════════════════════════ */

/* 滑入动画 */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.4s ease-out forwards;
}

/* 淡入动画 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* 脉冲动画 */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* 加载旋转 */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 0.8s linear infinite;
}

/* 加载状态 */
.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ═══════════════════════════════════════════════════════════════
   10. 空状态与错误状态
   ═══════════════════════════════════════════════════════════════ */

.empty-state {
    text-align: center;
    padding: var(--space-12) var(--space-6);
    color: var(--text-gray);
}

.empty-state .icon {
    font-size: 64px;
    margin-bottom: var(--space-4);
    opacity: 0.4;
}

.empty-state .title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-dark);
}

.empty-state .desc {
    font-size: 0.9rem;
}

.error-state {
    text-align: center;
    padding: var(--space-8);
    color: var(--error);
}

.error-state .icon {
    font-size: 48px;
    margin-bottom: var(--space-3);
}

/* ═══════════════════════════════════════════════════════════════
   11. 无障碍设计（Accessibility）
   ═══════════════════════════════════════════════════════════════ */

/* 焦点状态 */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* 跳过链接 */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius);
    z-index: 9999;
    text-decoration: none;
    transition: top var(--transition);
}

.skip-link:focus {
    top: var(--space-4);
}

/* 屏幕阅读器专用 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   12. 深色模式支持（可选）
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
    /* 可根据需要启用 */
}

/* ═══════════════════════════════════════════════════════════════
   13. 打印样式
   ═══════════════════════════════════════════════════════════════ */
@media print {
    .mobile-nav,
    .mobile-bottom-bar,
    .mobile-fab,
    .mobile-modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}
