/* 英雄区容器 */
.hero-section {
    background: linear-gradient(to bottom, 
                var(--bg-lighter-blue) 0%, 
                var(--bg-medium-blue) 80%, 
                var(--neutral-lightest) 100%);
    color: var(--neutral-dark);
    padding-top: 1rem;  /* 移除顶部内边距 */
    position: relative;
    z-index: 1;
    padding-bottom: var(--spacing-lg); 
    margin-bottom: 0;
}

/* 英雄区内容 */
.hero-content {
    text-align: center;
    padding: var(--spacing-xl) 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 主标题样式 */
.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

/* 副标题容器 */
.subtitle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 4.5em;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

/* 副标题样式 */
.hero-content .subtitle {
    font-size: 2.5rem;
    color: var(--neutral-medium);
    display: inline-block;
    line-height: 1.6;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 移除打字机光标样式 */
.typing-cursor {
    display: none;
}

/* 行动按钮容器 */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

/* UI 展示容器样式 */
.hero-webui-wrapper {
    width: 80%;
    margin: 0 auto;
}

/* UI 展示图片样式 */
.hero-webui-wrapper .ui-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
} 