/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  color: #1F2937;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Colors（科技蓝） ===== */
:root {
  --primary: #2563EB;
  --primary-dark: #1E40AF;
  --primary-light: #DBEAFE;
  --accent: #3B82F6;
  --text: #1F2937;
  --text-light: #6B7280;
  --bg: #fff;
  --bg-gray: #F8FAFC;
  --border: #E5E7EB;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-content { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; }
.logo img { width: 32px; height: 32px; border-radius: 8px; display: block; }
.logo-text { color: var(--text); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-light); font-size: 15px; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
  transition: all 0.2s; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,99,235,0.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* ===== Hero ===== */
.hero { padding: 120px 0 80px; background: linear-gradient(135deg, #EFF6FF 0%, #fff 50%, #DBEAFE 100%); }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 46px; line-height: 1.3; margin-bottom: 20px; }
.highlight { color: var(--primary); }
.hero-desc { font-size: 18px; color: var(--text-light); margin-bottom: 32px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 24px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge { display: inline-block; padding: 4px 14px; background: var(--primary-light); border-radius: 20px; font-size: 13px; color: var(--primary-dark); }

/* 手机Mockup（工具网格） */
.phone-mockup {
  width: 280px; margin: 0 auto;
  background: #0F172A; border-radius: 32px; padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.phone-screen { background: #F8FAFC; border-radius: 22px; padding: 18px 16px; min-height: 440px; }
.mock-header { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.mock-header img { width: 24px; height: 24px; border-radius: 6px; }
.mock-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-tool { background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.mock-tool-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 8px; }
.mock-tool-name { font-size: 12px; font-weight: 600; color: var(--text); }
.mock-tool-desc { font-size: 10px; color: var(--text-light); }

/* ===== Sections Common ===== */
.section-title { font-size: 36px; text-align: center; margin-bottom: 12px; }
.section-desc { text-align: center; color: var(--text-light); font-size: 16px; margin-bottom: 48px; }

/* ===== Features ===== */
.features { padding: 100px 0; background: var(--bg-gray); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff; border-radius: 16px; padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(37,99,235,0.12); }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== Highlights（卖点条） ===== */
.highlights { padding: 80px 0; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.highlight-item { text-align: center; padding: 24px; }
.highlight-item .hi-icon { font-size: 40px; margin-bottom: 12px; }
.highlight-item h3 { font-size: 18px; margin-bottom: 8px; }
.highlight-item p { font-size: 14px; color: var(--text-light); }

/* ===== Download ===== */
.download { padding: 100px 0; background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); }
.download-content { text-align: center; }
.download-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-icon { font-size: 20px; }

/* ===== Footer ===== */
.footer { background: #0F172A; color: #cbd5e1; padding-top: 60px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand .footer-logo img { width: 28px; height: 28px; border-radius: 7px; }
.footer-brand .logo-text { color: #fff; font-size: 20px; font-weight: 700; }
.footer-brand p { margin-top: 12px; font-size: 14px; }
.footer-links h4 { color: #fff; margin-bottom: 16px; font-size: 15px; }
.footer-links a { display: block; margin-bottom: 10px; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; }
.footer-bottom a { color: #94a3b8; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ===== Policy 页面 ===== */
.policy { padding: 120px 0 80px; min-height: 100vh; }
.policy h1 { font-size: 32px; margin-bottom: 8px; }
.policy .update-date { color: var(--text-light); margin-bottom: 40px; font-size: 14px; }
.policy h2 { font-size: 20px; margin: 32px 0 12px; color: var(--text); }
.policy p, .policy li { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 8px; }
.policy ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 14px; margin-bottom: 24px; }
.back-link:hover { color: var(--primary-dark); }

/* ===== Manual 步骤 ===== */
.manual-step { background: var(--bg-gray); border-radius: 12px; padding: 20px 24px; margin-bottom: 16px; }
.manual-step h3 { font-size: 17px; margin-bottom: 8px; color: var(--primary-dark); }

/* ===== Responsive: 768px ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px; gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero h1 { font-size: 32px; }
  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .download-buttons { flex-direction: column; align-items: center; }
  .footer-content { grid-template-columns: 1fr; }
}

/* ===== Responsive: 480px ===== */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-desc { font-size: 15px; }
  .section-title { font-size: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .phone-mockup { width: 240px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
}
