        /* ================================================================
               0. 重置 & 基础
               ================================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --ease-ui: cubic-bezier(0.42, 0, 0.58, 1);
            --transition-speed: 0.8s;
            --transition-ani: cubic-bezier(0.1, 0.1, 0.2, 1);
            /* 公共设计令牌 */
            --color-primary: #1456F0;
            --color-primary-hover: #3B7AF8;
            --color-text: #000000;
            --color-text-secondary: #6e7380;
            --color-text-muted: #9ca0ab;
            --color-border: #f0f1f4;
            --color-border-hover: #cdd0d9;
            --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
            --radius-card: 16px;
            --radius-pill: 50px;
        }

        html {
            scroll-behavior: auto;
            overflow-y: scroll;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #ffffff;
            color: #111111;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        /* 公共容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* ================================================================
               1. 自定义光标 (桌面端)
               ================================================================ */
        @media (pointer: fine) {
            *:not(input):not(textarea):not(.custom-cursor),
            *:not(input):not(textarea):not(.custom-cursor)::before,
            *:not(input):not(textarea):not(.custom-cursor)::after {
                cursor: none !important;
            }

            .custom-cursor {
                position: fixed;
                top: 0;
                left: 0;
                width: 22px;
                height: 22px;
                background: rgba(20, 86, 240, 0.25);
                border: 1.5px solid rgba(20, 86, 240, 0.7);
                border-radius: 50%;
                pointer-events: none;
                transform: translate(-50%, -50%);
                z-index: 999999;
                transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                    background 0.3s ease,
                    border-color 0.3s ease,
                    width 0.3s ease,
                    height 0.3s ease;
                will-change: transform;
                backdrop-filter: blur(3px);
                box-shadow: 0 0 20px rgba(20, 86, 240, 0.08);
            }

            .custom-cursor.active {
                transform: translate(-50%, -50%) scale(0.65);
                background: rgba(0, 0, 0, 0.4);
                border-color: #000000c0;
            }

            .custom-cursor.hover {
                transform: translate(-50%, -50%) scale(1.5);
                background: rgba(20, 86, 240, 0.12);
                border-color: rgba(20, 86, 240, 0.3);
                width: 45px;
                height: 45px;
            }

            .custom-cursor.hover-active {
                transform: translate(-50%, -50%) scale(0.55);
                background: rgba(20, 86, 240, 0.8);
                border-color: #1456F0;
                width: 28px;
                height: 28px;
                box-shadow: 0 0 30px rgba(20, 86, 240, 0.15);
            }

            .custom-cursor.hover-active::after {
                content: '';
                position: absolute;
                inset: 0px;
                border-radius: 50%;
                border: 2px solid rgba(20, 86, 240, 0.3);
                animation: pulse-ring 2s ease-in-out infinite;
            }

            @keyframes pulse-ring {
                0% { 
                    transform: scale(1);
                    opacity: 1; 
                }
                100% {
                    transform: scale(3);
                    opacity: 0;
                }
            }
        }

        @media (pointer: coarse) {
            .custom-cursor {
                display: none !important;
            }
        }

        /* ================================================================
        2. 页面过渡遮罩（左右滑动 + Logo 模糊缩放，平滑拉满）
        ================================================================ */

        .page-transition {
            position: fixed;
            inset: 0;
            background: #ffffff;
            z-index: 2147483647;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(0);
            transition: transform var(--transition-speed) var(--transition-ani);
        }

        /* 进入最终状态：遮罩左移出屏幕 */
        .page-transition.enter {
            transform: translateX(-100%);
        }

        /* Logo 图片 */
        .page-transition .content .logo-img {
            display: block;
            width: 80px;
            height: auto;
            margin: 0 auto 20px;
            transition: transform var(--transition-speed) var(--transition-ani),
                        filter var(--transition-speed) var(--transition-ani),
                        opacity var(--transition-speed) var(--transition-ani);
            /* 起始状态（进入前）：模糊放大 + 透明 */
            transform: scale(1.8);
            filter: blur(8px);
            opacity: 0;
        }

        /* 进入时：Logo 清晰正常 + 不透明 */
        .page-transition.enter .content .logo-img {
            transform: scale(1);
            filter: blur(0);
            opacity: 1;
        }

        /* 退出时（由 JS 动态控制）：Logo 模糊缩小 + 透明 */
        .page-transition .content .logo-img.exit-state {
            transform: scale(0.6);
            filter: blur(8px);
            opacity: 0;
        }

        /* 文字（可选） */
        .page-transition .content .text {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.6rem, 3.2vw, 3.2rem);
            font-weight: 300;
            letter-spacing: 0.12em;
            color: #111;
            filter: blur(8px);
            transition: opacity var(--transition-speed) var(--transition-ani),
                filter var(--transition-speed) var(--transition-ani);
            opacity: 0;
        }

        .page-transition .content .text strong {
            font-weight: 700;
            color: #1456F0;
        }

        .page-transition.enter .content .text {
            opacity: 0.7;
            filter: blur(0);
        }

        .page-transition .content .text.exit-state {
            opacity: 0;
            filter: blur(8px);
        }

        @media (max-width: 768px) {
            .page-transition .content .text {
                font-size: 1.4rem;
            }
            .page-transition .content .logo-img {
                width: 60px;
            }
        }
        /* ================================================================
               iq-bar 毛玻璃导航
        ================================================================ */

        /* 移动端直接隐藏 (CSS 兜底) */
        @media (max-width: 767px) {
            .iq-bar {
                display: none !important;
            }
        }

        .iq-bar {
            position: fixed;
            left: 50%;
            bottom: 8%;
            transform: translateX(-50%);
            z-index: 9990;
            opacity: 0;
            pointer-events: none;
            font-family: 'Inter', sans-serif;
            font-size: 22px;
            line-height: 1;
            filter: blur(10px);
            transition: opacity 0.6s ease 0.8s, filter 0.6s ease 0.8s, transform 0.5s var(--ease-ui);
        }
        .iq-bar.show {
            opacity: 1;
            filter: blur(0);
            transform: translateX(-50%);
            pointer-events: auto;
        }

        .iq-inner {
            display: flex;
            align-items: center;
            gap: 15px;
            backdrop-filter: blur(13px);
            background: rgba(245, 245, 245, 0.25);
            border-radius: 999px;
            box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15), inset 0 0 6px 1px rgba(255, 255, 255, 0.35);
            height: 55px;
            padding: 0 16px;
            min-width: 110px;
            overflow: hidden;
            transition: max-width 0.35s var(--ease-ui), background 0.35s var(--ease-ui);
            position: relative;
            max-width: 110px;
        }
        .iq-inner.expanded {
            max-width: 550px;
            background: rgba(245, 245, 245, 0.50);
        }
        .iq-inner.collapsing {
            max-width: 110px;
        }

        .iq-main-btn {
            all: unset;
            padding: 0 ;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: #000000;
            cursor: pointer;
            white-space: nowrap;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-shrink: 0;
            width: 100%;
            transition: opacity 0.35s var(--ease-ui), transform 0.35 var(--ease-ui);
            opacity: 1;
            transform: translateY(0);
        }
        .iq-main-logo {
            font-size: 20px;
        }
        .iq-inner.expanded .iq-main-btn,
        .iq-inner.collapsing .iq-main-btn {
            display: none;
        }

        .iq-scroll {
            display: none;
            flex: 1;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            overscroll-behavior: contain;
            margin: 0 30px;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }
        .iq-scroll::-webkit-scrollbar {
            display: none;
        }
        .iq-inner.expanded .iq-scroll,
        .iq-inner.collapsing .iq-scroll {
            display: flex;
        }

        .iq-page {
            display: flex;
            gap: 10px;
            align-items: center;
            padding: 0 12px;
            flex-shrink: 0;
            transition: opacity 0.35s var(--ease-ui), transform 0.35s var(--ease-ui),
                filter 0.35s var(--ease-ui);
        }
        .iq-inner.hiding .iq-page {
            opacity: 0;
            filter: blur(6px);
            transform: translateY(4px);
        }

        .iq-page a {
            padding: 8px 14px;
            font-size: 15px;
            text-decoration: none;
            color: #333;
            background: rgba(227, 227, 227, 0.6);
            border-radius: 999px;
            white-space: nowrap;
            transition: background 0.25s var(--ease-ui), color 0.25s var(--ease-ui), transform 0.25s var(--ease-ui), opacity 0.25s var(--ease-ui);
        }
        .iq-page:hover a {
            opacity: 0.85;
        }
        .iq-page a:hover {
            opacity: 1 !important;
            background: #000;
            color: #fff;
            transform: translateY(-1px);
        }
        /* ================================================================
        移动端底部药丸导航 (仅窄屏显示)
        结构：外层透传点击 → 底部渐进式模糊垫层
              + 左侧毛玻璃主药丸【首页 导航 动态】 + 右侧独立圆钮【即溯】
        ================================================================ */
        .mobile-nav {
            display: none;                      /* 默认隐藏 */
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 9999;
            pointer-events: none;               /* 仅药丸本体可交互 */
        }

        .mobile-nav-inner {
            position: relative;
            display: flex;
            align-items: stretch;
            gap: 8px;                           /* 主药丸与独立圆钮之间的间隙 */
            width: 100%;
            max-width: 480px;                   /* 整体居中并限制最大宽度 */
            margin: 0 auto;
            padding: 6px 16px calc(env(safe-area-inset-bottom, 0px) + 14px);
            animation: nav-bar-in 0.8s var(--ease-smooth) 0.35s both;
        }

        @keyframes nav-bar-in {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 毛玻璃材质（主药丸 / 独立圆钮共用） */
        .mobile-nav-pill,
        .mobile-nav-circle {
            pointer-events: auto;
            height: 58px;
            background: rgba(255, 255, 255, 0.78);
            -webkit-backdrop-filter: blur(18px) saturate(1.4);
            backdrop-filter: blur(18px) saturate(1.4);
            border: 1px solid rgba(240, 241, 244, 0.9);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), inset 0 0 6px 1px rgba(255, 255, 255, 0.35);
        }

        /* 主药丸：【首页 导航 动态】 */
        .mobile-nav-pill {
            flex: 1 1 auto;
            min-width: 0;
            display: flex;
            align-items: stretch;
            gap: 2px;
            padding: 5px;                       /* 内衬：使选中胶囊与外边平行 */
            border-radius: 9999px;
        }

        /* 独立圆钮：最右侧【即溯】 */
        .mobile-nav-circle {
            flex: 0 0 auto;
            width: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            color: rgba(31, 35, 40, 0.82);
            transition: color 0.25s ease, transform 0.2s ease;
        }

        .mobile-nav-circle:active {
            transform: scale(0.95);
        }

        .mobile-nav-circle:hover {
            color: #1456F0;
        }

        .mobile-nav-circle i {
            position: relative;
            z-index: 1;
            font-size: 18px;
            line-height: 1;
        }

        .mobile-nav-link {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            border-radius: 9999px;
            font-family: 'Inter', sans-serif;
            color: rgba(31, 35, 40, 0.72);
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.25s ease, transform 0.2s ease;
        }

        .mobile-nav-link:active {
            transform: scale(0.95);
        }

        .mobile-nav-link i,
        .mobile-nav-link span,
        .mobile-nav-circle i {
            position: relative;
            z-index: 1;
            animation: nav-item-in 0.7s var(--ease-smooth) both;
        }

        .mobile-nav-link i {
            font-size: 18px;
            line-height: 1;
        }

        .mobile-nav-link span {
            font-size: 11px;
            font-weight: 500;
            line-height: 1;
            letter-spacing: -0.01em;
        }

        .mobile-nav-link:nth-child(1) i { animation-delay: 0.45s; }
        .mobile-nav-link:nth-child(2) i { animation-delay: 0.50s; }
        .mobile-nav-link:nth-child(3) i { animation-delay: 0.55s; }
        .mobile-nav-link:nth-child(1) span { animation-delay: 0.50s; }
        .mobile-nav-link:nth-child(2) span { animation-delay: 0.55s; }
        .mobile-nav-link:nth-child(3) span { animation-delay: 0.60s; }
        .mobile-nav-circle i { animation-delay: 0.62s; }

        @keyframes nav-item-in {
            from {
                opacity: 0;
                filter: blur(8px);
                transform: translateY(6px);
            }
            to {
                opacity: 1;
                filter: blur(0);
                transform: translateY(0);
            }
        }

        /* 选中态：胶囊底衬 + 主色 */
        .mobile-nav-link.active {
            color: #1456F0;
        }

        .mobile-nav-link.active::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 9999px;
            background: rgba(20, 86, 240, 0.10);
            pointer-events: none;
            animation: nav-item-in 0.45s var(--ease-smooth) 0.5s both;
        }

        /* ===== 底部渐进式模糊垫层：越靠底边模糊越强 ===== */
        .mobile-nav .pf {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .mobile-nav .pf-a {
            height: calc(env(safe-area-inset-bottom, 0px) + 120px);
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            -webkit-mask-image: linear-gradient(to bottom, transparent, #000);
            mask-image: linear-gradient(to bottom, transparent, #000);
        }

        .mobile-nav .pf-b {
            height: calc(env(safe-area-inset-bottom, 0px) + 78px);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            -webkit-mask-image: linear-gradient(to bottom, transparent, #000 75%);
            mask-image: linear-gradient(to bottom, transparent, #000 75%);
        }

        .mobile-nav .pf-c {
            height: calc(env(safe-area-inset-bottom, 0px) + 44px);
            -webkit-backdrop-filter: blur(22px);
            backdrop-filter: blur(22px);
            -webkit-mask-image: linear-gradient(to bottom, transparent, #000 70%);
            mask-image: linear-gradient(to bottom, transparent, #000 70%);
        }

        .mobile-nav .pf-d {
            height: calc(env(safe-area-inset-bottom, 0px) + 20px);
            -webkit-backdrop-filter: blur(36px);
            backdrop-filter: blur(36px);
            -webkit-mask-image: linear-gradient(to bottom, transparent, #000 65%);
            mask-image: linear-gradient(to bottom, transparent, #000 65%);
        }

        /* 不支持 backdrop-filter：隐藏垫层并回退实底药丸 */
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .mobile-nav .pf { display: none; }
            .mobile-nav-pill,
            .mobile-nav-circle { background: rgba(255, 255, 255, 0.95); }
        }

        /* 窄屏显示 */
        @media (max-width: 767px) {
            .mobile-nav {
                display: block;
            }
        }

        /* 宽屏隐藏（虽然默认已隐藏，但为了保险） */
        @media (min-width: 768px) {
            .mobile-nav {
                display: none !important;
            }
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            backdrop-filter: blur(4px);
            color: #333;
            padding: 0;
            margin: 0px 10px;
            transition: opacity 0.35 var(--ease-ui);
            opacity: 0;
            pointer-events: none;
        }
        .iq-inner.expanded .nav-button {
            opacity: 0.85;
            pointer-events: auto;
        }
        .nav-button:hover {
            opacity: 1 !important;
            background: rgba(255, 255, 255, 0.7);
            transform: translateY(-50%) scale(1.08);
        }
        .nav-button.left {
            left: 4px;
        }
        .nav-button.right {
            right: 4px;
        }
        .nav-button svg {
            width: 14px;
            height: 14px;
            fill: #333;
            display: block;
        }

        .iq-scroll.no-mask-left {
            -webkit-mask-image: linear-gradient(to right, black 8%, black 92%, transparent 100%) !important;
            mask-image: linear-gradient(to right, black 8%, black 92%, transparent 100%) !important;
        }
        .iq-scroll.no-mask-right {
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%) !important;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%) !important;
        }
        .iq-scroll.no-mask-both {
            -webkit-mask-image: none !important;
            mask-image: none !important;
        }
