/* GaiYa 官网全局样式 - 现代极简风格 (inspired by shadcn/ui) */

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

:root {
    /* 主题色 - 保留 GaiYa 绿色 */
    --primary-color: #4CAF50;
    --primary-hover: #45a049;
    --primary-light: #e8f5e9;

    /* 灰度系统 - 更现代化的灰度 */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* 文字颜色 */
    --text-primary: #0a0a0a;
    --text-secondary: #525252;
    --text-tertiary: #737373;

    /* 背景色 */
    --bg-white: #ffffff;
    --bg-light: #fafafa;

    /* 柔和阴影系统 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

    /* 圆角 - 统一使用 10px */
    --radius: 0.625rem;
    --radius-sm: 0.5rem;
    --radius-lg: 0.75rem;

    /* 间距系统 */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px;
}

/* ========== 导航栏 - 极简设计 ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.2s ease;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.navbar-logo:hover {
    opacity: 0.8;
}

.navbar-menu {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

.navbar-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 4px;
    margin-right: 8px;
}

.lang-btn {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ========== 按钮系统 - 现代扁平设计 ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 13px;
}

/* ========== Hero 区域 - 极简大字设计 ========== */
.hero {
    margin-top: 64px;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--bg-white);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.hero-description {
    font-size: 16px;
    margin-bottom: var(--spacing-xl);
    color: var(--text-tertiary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.hero-badge {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* ========== 内容区块 ========== */
.section {
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ========== 功能卡片 - 扁平卡片设计 ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: var(--spacing-xs);
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.feature-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-badge {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: 4px 10px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
}

/* ========== 定价卡片 - 简洁现代设计 ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all 0.2s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
    content: "🔥 推荐";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
}

.pricing-card.lifetime {
    border-color: #FFD700;
    background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
}

.pricing-card.lifetime::before {
    content: "限量1000名";
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--spacing-md);
}

.pricing-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-discount {
    margin-top: var(--spacing-xs);
    padding: 4px 10px;
    background-color: #ffebee;
    color: #c62828;
    border-radius: var(--radius-sm);
    font-size: 12px;
    display: inline-block;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 8px;
}

.pricing-cta {
    width: 100%;
    margin-top: var(--spacing-md);
}

/* ========== 页脚 - 极简设计 ========== */
.footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--gray-200);
    padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-lg);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ========== 工具类 ========== */
.text-center {
    text-align: center;
}

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    /* 窄屏设备显示简称 */
    .brand-name-full {
        display: none !important;
    }

    .brand-name-short {
        display: inline !important;
    }

    /* 窄屏设备隐藏导航栏按钮 */
    .navbar-download-btn {
        display: none !important;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
    }
}
