:root {
    --bg-dark: #0a0b0d;
    --bg-card: #16181d;
    --text-primary: #ffffff;
    --text-secondary: #9ea3b0;
    --accent-color: #2962ff; /* 专业的金融科技蓝 */
    --accent-hover: #1e4bd1;
    --highlight-color: #ff9800; /* 用于强调的金色/橙色 */
    --border-color: #2a2e39;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 80px 0 100px; /* 减少顶部 padding，内容整体上移 */
    text-align: center;
    background: radial-gradient(circle at center, #1b2028 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative; /* 为下滑提示定位 */
}

h1 {
    font-size: 56px;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -1px;
    background: linear-gradient(120deg, #fff, #9ea3b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 300;
}

.tagline {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(41, 98, 255, 0.3);
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(41, 98, 255, 0.4);
}

/* 下滑提示动画 */
.scroll-indicator {
    position: absolute;
    bottom: 40px; /* 配合新的 Header 高度微调位置 */
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.scroll-indicator .arrow {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--text-secondary);
    border-right: 2px solid var(--text-secondary);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.value-prop {
    padding: 80px 0;
    background: var(--bg-dark);
}

.prop-item {
    text-align: center;
    margin-bottom: 60px;
    padding: 20px;
}

.prop-item h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.prop-item p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 12px;
}

.highlight {
    color: var(--highlight-color);
    font-weight: 500;
}

.features {
    padding: 80px 0;
    background: var(--bg-card); /* 略浅的深色 */
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    text-align: left;
}

.card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

/* 用 CSS 伪元素代替之前的 emoji 方块，更专业 */
.card::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 0 10px var(--accent-color);
}

.contact {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-dark);
}

.qr-code {
    margin-top: 40px;
    display: inline-block;
    padding: 15px;
    background: white; /* 二维码需要白底 */
    border-radius: 12px;
}

.qr-code img {
    display: block;
    max-width: 200px;
    border-radius: 4px;
}

.qr-code p {
    color: #333;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 500;
}

footer {
    padding: 40px;
    text-align: center;
    background: #000;
    color: #555;
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

/* 移动端适配 */
@media (max-width: 768px) {
    header {
        padding: 50px 0 90px; /* 进一步减少移动端 padding，让内容上移 */
        min-height: 65vh; /* 降低首屏高度，露出下一屏内容 */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    h1 {
        font-size: 36px; /* 减小标题字体 */
        line-height: 1.2;
    }

    .subtitle {
        font-size: 18px;
        margin-top: 15px;
    }

    .tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%; /* 按钮在移动端全宽 */
        box-sizing: border-box;
    }

    .value-prop {
        padding: 50px 0;
    }

    .prop-item {
        margin-bottom: 40px;
        padding: 0;
    }

    .prop-item h3 {
        font-size: 24px;
    }

    .prop-item p {
        font-size: 16px;
    }

    .features {
        padding: 50px 0;
    }

    .features h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .grid {
        grid-template-columns: 1fr; /* 单列显示 */
        gap: 15px;
    }

    .card {
        padding: 20px;
        font-size: 15px;
    }
    
    .contact {
        padding: 60px 0;
    }
}
