        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary-white: #FFFFFF;
            --primary-gold: #D4AF37;
            --primary-blue: #1B3A6D;
            --light-gold: #F5E6D3;
            --dark-blue: #0F2344;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #FAFAFA;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: #FFFFFF;
            overflow-x: hidden;
        }

        html { scroll-behavior: smooth; }

        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.9rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 1.2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-gold);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a.active {
            color: var(--primary-gold);
        }

        .nav-menu a.active::after {
            width: 100%;
        }

        .login-btn {
            padding: 0.6rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-gold), #C9A047);
            color: white !important;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        /* Hero */
        .page-hero {
            margin-top: 78px;
            padding: 5rem 2rem 4rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
              radial-gradient(circle at 15% 20%, rgba(212,175,55,0.24) 0, transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(212,175,55,0.18) 0, transparent 55%);
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            color: #FFFFFF;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .hero-highlight {
            background: linear-gradient(135deg, var(--primary-gold), #F5E6D3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            color: var(--primary-gold);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.1rem;
        }

        .hero-text p {
            color: rgba(255,255,255,0.9);
            font-size: 1rem;
            max-width: 640px;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-top: 1.5rem;
        }

        .hero-tag {
            padding: 0.25rem 0.8rem;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.45);
            color: rgba(255,255,255,0.9);
            font-size: 0.78rem;
            backdrop-filter: blur(6px);
        }

        .hero-actions {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.85rem 2.3rem;
            border-radius: 999px;
            font-size: 0.98rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-gold), #C9A047);
            color: #FFFFFF;
            box-shadow: 0 6px 25px rgba(212,175,55,0.5);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 9px 30px rgba(212,175,55,0.7);
        }

        .btn-outline {
            background: transparent;
            color: #FFFFFF;
            border: 1px solid rgba(255,255,255,0.7);
        }

        .btn-outline:hover {
            background: #FFFFFF;
            color: var(--primary-blue);
        }

        .hero-card {
            background: rgba(15,35,68,0.88);
            border-radius: 22px;
            padding: 2rem;
            border: 1px solid rgba(212,175,55,0.4);
            box-shadow: 0 16px 60px rgba(0,0,0,0.45);
            color: #FFFFFF;
            max-width: 360px;
            justify-self: center;
        }

        .hero-card-title {
            font-size: 1.1rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

        .hero-card-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.88rem;
            margin-bottom: 0.55rem;
        }

        .hero-card-row span:first-child {
            color: rgba(255,255,255,0.64);
        }

        .hero-card-row span:last-child {
            color: rgba(255,255,255,0.96);
            font-weight: 500;
        }

        .hero-card-foot {
            margin-top: 1.2rem;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.78);
        }

        /* 通用 Section */
        .section {
            padding: 4.5rem 2rem;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 780px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        /* 巴比伦 vs 锡安 */
        .problem-section {
            background: #FFFFFF;
        }

        .two-col {
            display: grid;
            grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
            gap: 2.5rem;
        }

        .card {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 32px rgba(0,0,0,0.06);
            border: 1px solid #F0F0F0;
        }

        .card-label {
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
        }

        .card-title {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
        }

        .card p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 0.8rem;
        }

        .check-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.94rem;
        }

        .check-list li {
            display: flex;
            gap: 0.6rem;
        }

        .check-list li::before {
            content: '•';
            color: var(--primary-gold);
            margin-top: 0.1rem;
        }

        /* 设计原则 */
        .principle-section {
            background: var(--bg-light);
        }

        .principle-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }

        .principle-card {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 8px 26px rgba(0,0,0,0.05);
            border-top: 4px solid var(--primary-gold);
        }

        .principle-icon {
            font-size: 2rem;
            margin-bottom: 0.6rem;
        }

        .principle-card h3 {
            font-size: 1.15rem;
            color: var(--primary-blue);
            margin-bottom: 0.6rem;
        }

        .principle-card p {
            font-size: 0.94rem;
            color: var(--text-light);
        }

        /* 团队 */
        .team-section {
            background: #FFFFFF;
        }

        .team-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
            gap: 2.5rem;
            align-items: flex-start;
        }

        .team-badge {
            display: inline-flex;
            padding: 0.2rem 0.9rem;
            border-radius: 999px;
            border: 1px solid #E0E0E0;
            font-size: 0.8rem;
            margin-bottom: 0.7rem;
            color: var(--text-light);
        }

        .team-text h3 {
            font-size: 1.4rem;
            color: var(--primary-blue);
            margin-bottom: 0.7rem;
        }

        .team-text p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 0.9rem;
        }

        .team-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.7rem;
        }

        .team-chip {
            padding: 0.25rem 0.8rem;
            border-radius: 999px;
            background: #F5F7FB;
            font-size: 0.8rem;
            color: var(--primary-blue);
        }

        .team-card {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            border: 1px solid #F0F0F0;
        }

        .team-card h4 {
            font-size: 1.05rem;
            color: var(--primary-blue);
            margin-bottom: 0.4rem;
        }

        .team-role {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 0.4rem;
        }

        .team-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0.6rem;
        }

        .team-meta {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* 时间线 */
        .timeline-section {
            background: var(--bg-light);
        }

        .timeline-wrapper {
            background: #FFFFFF;
            border-radius: 22px;
            padding: 2.4rem;
            box-shadow: 0 10px 32px rgba(0,0,0,0.06);
            border: 1px solid #F0F0F0;
        }

        .timeline {
            position: relative;
            margin-left: 0.5rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--primary-gold), rgba(212,175,55,0.1));
        }

        .timeline-item {
            position: relative;
            padding-left: 2.2rem;
            padding-bottom: 1.5rem;
        }

        .timeline-dot {
            position: absolute;
            left: 2px;
            top: 4px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 2px solid var(--primary-gold);
            box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
        }

        .timeline-label {
            font-size: 0.8rem;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.1rem;
        }

        .timeline-title {
            font-size: 1rem;
            color: var(--primary-blue);
            margin-bottom: 0.2rem;
            font-weight: 600;
        }

        .timeline-item p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* FAQ */
        .faq-section {
            background: #FFFFFF;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
            gap: 2.5rem;
        }

        .faq-item {
            border-radius: 18px;
            border: 1px solid #EFEFEF;
            padding: 1.4rem 1.5rem;
            margin-bottom: 1rem;
        }

        .faq-q {
            font-size: 0.96rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 0.4rem;
        }

        .faq-a {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* 合规与免责声明 */
        .legal-section {
            background: var(--dark-blue);
            color: #FFFFFF;
        }

        .legal-inner .section-title {
            color: #FFFFFF;
        }

        .legal-inner .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .legal-box {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(15,35,68,0.9);
            border-radius: 20px;
            padding: 2.3rem 2.4rem;
            border: 1px solid rgba(255,255,255,0.12);
        }

        .legal-box h3 {
            font-size: 1.15rem;
            color: var(--primary-gold);
            margin-bottom: 0.8rem;
        }

        .legal-box p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.88);
            margin-bottom: 0.7rem;
        }

        .legal-list {
            font-size: 0.86rem;
            color: rgba(255,255,255,0.8);
            margin-left: 1rem;
        }

        .legal-list li {
            margin-bottom: 0.3rem;
        }

        /* CTA */
        .cta-section {
            background: #FFFFFF;
        }

        .cta-box {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-title {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .cta-text {
            font-size: 0.98rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
            }
            .hero-card {
                margin-top: 1.5rem;
            }
            .two-col,
            .team-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-container { padding: 0.8rem 1.2rem; }
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 1.5rem 0;
                gap: 1.5rem;
                box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: flex;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
                padding: 5px;
                border: none;
                background: none;
            }
            
            .mobile-menu-btn .menu-line {
                width: 25px;
                height: 3px;
                background: var(--primary-blue);
                transition: all 0.3s ease;
                border-radius: 2px;
            }
            
            .mobile-menu-btn.active .menu-line:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-btn.active .menu-line:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-btn.active .menu-line:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
            .page-hero { padding: 4rem 1.2rem 3rem; }
            .section { padding: 3.5rem 1.2rem; }
            .hero-text h1 { font-size: 2.2rem; }
            .section-title { font-size: 2rem; }
        }

        @media (max-width: 480px) {
            .hero-text h1 { font-size: 1.9rem; }
            .hero-subtitle { font-size: 1.02rem; }
        }

        /* 动画 */
        .fade {
            opacity: 0;
            transform: translateY(18px);
            transition: all 0.65s ease;
        }

        .fade.visible {
            opacity: 1;
            transform: translateY(0);
        }