/* Hero 部分样式优化 */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, var(--background), rgba(99, 102, 241, 0.05));
    overflow: hidden;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.6s ease-out;
}

.hero .lead {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero .hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--foreground-muted);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* 图片容器样式 */
.hero-image {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.product-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.3s ease;
}

.product-screenshot:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

/* 装饰效果 */
.hero-image-decoration {
    position: absolute;
    inset: -1rem;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
    z-index: -1;
}

.hero-image::before,
.hero-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
    z-index: -1;
}

.hero-image::before {
    top: -50px;
    left: -50px;
}

.hero-image::after {
    bottom: -50px;
    right: -50px;
}

/* 特性标签样式优�� */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.feature-tag {
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

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

/* 响应式调整 */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-image {
        padding: 1rem;
        margin: 0 -1rem 2rem;
    }

    .product-screenshot {
        border-radius: 8px;
    }

    .hero-features {
        margin-top: 1.5rem;
    }
}

/* 深色模式适配 */
@media (prefers-color-scheme: dark) {
    .hero-image-decoration {
        background: linear-gradient(120deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.1));
    }

    .product-screenshot {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
}

/* 调整按钮间距 */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.5s both;
} 