/* ColorScanner App 落地页专属样式 */
.app-hero {
    background: linear-gradient(135deg, #00B4DB 0%, #4A90D9 30%, #6366F1 60%, #A855F7 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.app-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.app-icon {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.app-name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.app-tagline {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-description {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.coming-soon-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 32px;
    border-radius: 27px;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}
.app-store-badge { display: inline-block; transition: transform 0.3s ease; }
.app-store-badge:hover { transform: scale(1.05); }
.app-store-badge img { height: 54px; }

/* 功能区块 */
.features { background: var(--bg); padding: 100px 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}
.feature-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.feature-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.4rem; color: var(--heading); margin-bottom: 1rem; }
.feature-card p { color: var(--muted); line-height: 1.7; }

/* 亮点区块 */
.highlights { background: var(--bg-alt); padding: 100px 0; }
.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.highlights-text h3 { font-size: 2rem; color: var(--heading); margin-bottom: 1.5rem; }
.highlights-text p { color: var(--muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.highlights-list { list-style: none; }
.highlights-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text);
    font-size: 1.05rem;
}
.highlights-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #34C759;
    font-weight: bold;
    font-size: 1.2rem;
}
.highlights-visual { display: flex; justify-content: center; align-items: center; }
.color-preview {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #00B4DB 0%, #6366F1 50%, #A855F7 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(99,102,241,0.3);
    position: relative;
    overflow: hidden;
}
.color-preview::before {
    content: '';
    position: absolute;
    top: 20%; left: 20%; right: 20%; bottom: 20%;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
}

/* 定价区块 */
.pricing { background: var(--bg); padding: 100px 0; }
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--card);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #6366F1;
}
.pricing-card:hover { transform: translateY(-5px); }
.pricing-card h3 { font-size: 1.5rem; color: var(--heading); margin-bottom: 0.5rem; }
.pricing-card .price { font-size: 3rem; font-weight: 700; color: var(--heading); margin: 1rem 0; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.pricing-card .price-desc { color: var(--muted); margin-bottom: 2rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-features li { padding: 0.6rem 0; padding-left: 1.8rem; position: relative; color: var(--text); }
.pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: #34C759; font-weight: bold; }

/* CTA 区块 */
.cta {
    background: linear-gradient(135deg, #00B4DB 0%, #6366F1 50%, #A855F7 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}
.cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }

/* App 页脚 */
.app-footer { background: var(--footer-bg); color: white; padding: 3rem 0 1.5rem; }
.app-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
.app-footer-brand { display: flex; align-items: center; gap: 1rem; }
.app-footer-brand img { width: 48px; height: 48px; border-radius: 12px; }
.app-footer-brand h3 { color: white; font-size: 1.3rem; }
.app-footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.app-footer-links a { color: #bdc3c7; text-decoration: none; transition: color 0.3s ease; }
.app-footer-links a:hover { color: white; }
.app-footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--footer-border); color: #bdc3c7; }
.app-footer-bottom a { color: #bdc3c7; text-decoration: none; }
.app-footer-bottom a:hover { color: var(--brand); }

/* 法律页面样式 */
.legal-page { padding-top: 100px; padding-bottom: 60px; min-height: 100vh; background: var(--bg); }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 2.5rem; color: var(--heading); margin-bottom: 0.5rem; }
.legal-content .update-date { color: var(--muted); margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.5rem; color: var(--heading); margin-top: 2rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.2rem; color: var(--heading); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p, .legal-content li { color: var(--text); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: #6366F1; }

/* 响应式 */
@media (max-width: 768px) {
    .app-name { font-size: 3rem; }
    .app-icon { width: 140px; height: 140px; border-radius: 32px; }
    .highlights-content { grid-template-columns: 1fr; }
    .highlights-visual { order: -1; }
    .color-preview { max-width: 280px; }
    .pricing-cards { grid-template-columns: 1fr; }
    .app-footer-content { flex-direction: column; align-items: center; text-align: center; }
    .app-footer-links { justify-content: center; }
    .cta h2 { font-size: 2rem; }
    .legal-content h1 { font-size: 2rem; }
}
