/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 性能优化 */
html {
    scroll-behavior: smooth;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* 预加载关键资源 */
.hero-section {
    will-change: transform;
}

.slide {
    will-change: transform, opacity;
}

.glass, .glass-strong {
    will-change: backdrop-filter;
}



:root {
    --primary-color: #8B5CF6;
    --secondary-color: #A855F7;
    --accent-color: #C084FC;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --background-primary: #FBFBFD;
    --background-secondary: #F5F5F7;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 8px 32px rgba(139, 92, 246, 0.15);
    --shadow-medium: 0 16px 64px rgba(139, 92, 246, 0.2);
    --shadow-heavy: 0 24px 96px rgba(139, 92, 246, 0.25);
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    --gradient-secondary: linear-gradient(135deg, #C084FC 0%, #DDD6FE 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-primary);
    overflow-x: hidden;
}

/* 毛玻璃效果基础类 */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-light);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-medium);
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-logo h1 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* 主要内容区域 */
.hero-main-section {
    min-height: 80vh;
    padding: 70px 0 20px;
    background: white;
    position: relative;
}

/* 桌面端：左右布局 */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: stretch;
    min-height: 70vh;
}

/* AI对话框包装器 */
.ai-chat-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 轮播图包装器 */
.hero-slider-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-medium);
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-logo {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slide-content {
    flex: 0 0 50%;
    color: var(--text-primary);
    z-index: 2;
    text-align: left;
    padding-left: 30px;
}

.hero-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.hero-description {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8) 0%, rgba(75, 0, 130, 0.8) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(147, 112, 219, 0.2);
    color: white;
    border: 2px solid rgba(147, 112, 219, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(147, 112, 219, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(147, 112, 219, 0.3);
    border-color: rgba(147, 112, 219, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(147, 112, 219, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}







/* 通用部分样式 */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 紧凑型section-header */
.section-header.compact {
    margin-bottom: 15px;
}

.section-header.compact h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 5px;
}

.section-header.compact p {
    font-size: 0.9rem;
}

/* AI对话框容器 */
.ai-chat-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    animation: messageSlide 0.5s ease-out;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ai-message .message-avatar {
    background: var(--gradient-primary);
}

.ai-avatar {
    background: none !important;
    padding: 0;
    overflow: hidden;
}

.ai-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: var(--gradient-secondary);
}

.message-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    max-width: 70%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.user-message .message-content {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.chat-input-container {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
}

#chatInput {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

#chatInput:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

#chatInput::placeholder {
    color: var(--text-secondary);
}

#sendButton {
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8) 0%, rgba(75, 0, 130, 0.8) 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#sendButton:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 产品中心 */
.products-section {
    padding: 25px 0;



    background: var(--background-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(400px, 500px));
    gap: 30px;
    margin-top: 25px;
    justify-content: center;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;



    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(139, 92, 246, 0.2);
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: left;
    font-size: 0.9rem;
    flex: 1;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.product-features span {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    text-align: left;
}

.product-btn {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8) 0%, rgba(75, 0, 130, 0.8) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-btn:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 小卡片样式 */
.mini-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.mini-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mini-card:hover::before {
    left: 100%;
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.mini-card-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.mini-card-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.mini-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.mini-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-container {
        height: 50px;
        padding: 0 15px;
    }

    .nav-logo-img {
        width: 30px;
        height: 30px;
    }

    .nav-logo h1 {
        font-size: 20px;
    }

    .nav-logo {
        gap: 8px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* 移动端：上下布局 */
    .hero-main-section {
        min-height: auto;
        padding: 60px 0 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
    }

    /* 移动端轮播图在上面 */
    .hero-slider-wrapper {
        order: 1;
        height: 200px;
        min-height: 200px;
    }

    /* 移动端AI对话框在下面 */
    .ai-chat-wrapper {
        order: 2;
    }

    .ai-chat-container {
        min-height: 450px;
    }

    .slide {
        flex-direction: row;
        padding: 15px;
        align-items: center;
        justify-content: space-between;
    }

    .slide-logo {
        flex: 0 0 30%; /* 减小图片容器宽度 */
        margin-bottom: 0;
        max-height: 80px;
        max-width: 100px; /* 减小图片最大宽度 */
    }

    .slide-content {
        flex: 0 0 68%; /* 增大文字容器宽度 */
        text-align: left;
        padding-left: 10px; /* 减小左边距 */
    }

    .hero-title {
        font-size: clamp(1rem, 3vw, 1.3rem);
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 6px;
    }

    .hero-description {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem);
        margin-bottom: 12px;
        max-width: none;
    }

    .hero-buttons {
        display: flex; /* 确保按钮横向排列 */
        flex-direction: row; /* 强制横向 */
        gap: 8px;
        justify-content: flex-start;
        flex-wrap: nowrap; /* 防止换行 */
    }

    .btn-primary, .btn-secondary {
        padding: 6px 12px; /* 减小内边距 */
        font-size: 11px; /* 减小字体大小 */
        white-space: nowrap; /* 防止文字换行 */
    }



    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-header {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        justify-content: flex-start;
        align-items: center;
    }

    .product-logo {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .product-card h3 {
        font-size: 1.8rem;
        margin: 0;
    }

    .mini-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    .mini-card {
        padding: 15px 10px;
    }

    .mini-card-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .mini-card h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .mini-card p {
        font-size: 0.75rem;
    }

    .chat-messages {
        padding: 15px;
        gap: 12px;
    }

    .chat-input-container {
        padding: 15px;
        flex-direction: row;
        gap: 10px;
    }

    #chatInput {
        flex: 1;
    }

    #sendButton {
        flex-shrink: 0;
        padding: 12px 20px;
    }
}

/* 关于我们部分 */
.about-section {
    padding: 40px 0;
    background: white;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecosystem-diagram {
    position: relative;
    width: 400px;
    height: 400px;
}

.ecosystem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
    animation: rotate 20s linear infinite;
}

.ecosystem-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    box-shadow: var(--shadow-light);
    animation: float 6s ease-in-out infinite;
}

.node:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.node:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.node:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 4.5s;
}




/* 发展路线 */
.roadmap-section {
    padding: 40px 0;
    background: var(--background-primary);
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px white, 0 0 0 8px var(--primary-color);
}

.timeline-item.completed .timeline-marker {
    background: #4CAF50;
    box-shadow: 0 0 0 4px white, 0 0 0 8px #4CAF50;
}

.timeline-item.active .timeline-marker {
    background: var(--accent-color);
    box-shadow: 0 0 0 4px white, 0 0 0 8px var(--accent-color);
    animation: pulse 2s infinite;
}

.timeline-content {
    flex: 1;
    max-width: 45%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-item.completed .timeline-status {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.timeline-item.active .timeline-status {
    background: rgba(255, 149, 0, 0.1);
    color: var(--accent-color);
}

.timeline-item:not(.completed):not(.active) .timeline-status {
    background: rgba(134, 134, 139, 0.1);
    color: var(--text-secondary);
}



/* 页脚 */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}
/* 审查部分 */
.audit-section {
    padding: 40px 0;
    background: var(--background-primary);
}

.audit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
}

.audit-section .audit-item {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.audit-section .audit-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 255, 255, 0.4);
}

.audit-section .audit-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.audit-section .audit-item p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.audit-section .audit-item code {
    display: block;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 12px 15px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    font-size: 0.9rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.audit-section .address-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.audit-section .address-list li {
    margin-bottom: 10px;
}

.audit-section .address-list li span {
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 4px;
    font-size: 0.9em;
}

.audit-section .address-list li code {
    font-size: 0.85rem;
    padding: 10px 15px;
}


.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* 额外的响应式样式 */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .ecosystem-diagram {
        width: 300px;
        height: 300px;
    }

    .node {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }

    .ecosystem-center {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-item .timeline-content {
        text-align: left !important;
        max-width: 100%;
    }

    .timeline-marker {
        left: 20px !important;
        transform: none !important;
    }



    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ecosystem-diagram {
        width: 250px;
        height: 250px;
    }

    .node {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }

    .ecosystem-center {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
    }
}
