:root {
  --bg: #f7f9fc;
  --ink: #172033;
  --muted: #687385;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #16a34a;
  --line: #e3e9f3;
  --card: #ffffff;
  --soft: #eef6ff;
  --shadow: 0 18px 48px rgba(25, 41, 74, .08);
  --r: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif; color: var(--ink); background: radial-gradient(circle at 12% 8%, #e6f7ff 0, transparent 28rem), linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.86); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; }
.logo { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; color: white; background: var(--blue); box-shadow: var(--shadow); }
.links { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 14px; }
.links a, .lang { padding: 10px 13px; border-radius: 999px; border: 1px solid transparent; }
.links a:hover, .links .active { color: var(--blue); background: var(--soft); border-color: #d6e8ff; }
.lang { color: var(--blue); border-color: var(--line); background: white; }
.hero { padding: 88px 0 66px; }
.hero-grid, .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.eyebrow { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.eyebrow span, .tag { display: inline-flex; padding: 8px 12px; border-radius: 999px; color: var(--blue); background: var(--soft); border: 1px solid #d6e8ff; font-size: 13px; font-weight: 900; }
h1, h2, h3 { margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(42px, 7.2vw, 86px); line-height: .98; max-width: 940px; }
h2 { font-size: clamp(30px, 4vw, 50px); line-height: 1.08; margin: 14px 0; }
h3 { font-size: 20px; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.8; }
.lead { max-width: 720px; font-size: 18px; margin: 24px 0; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 999px; font-weight: 900; color: white; background: var(--blue); box-shadow: 0 12px 30px rgba(37,99,235,.18); }
.btn-soft { color: var(--blue); background: white; border: 1px solid var(--line); box-shadow: none; }
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.trust div, .card, .step, .faq-item, .codebox, .visual-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--card); box-shadow: var(--shadow); }
.trust div { padding: 16px; }
.trust b { display: block; color: var(--blue); font-size: 22px; }
.trust span { color: var(--muted); font-size: 13px; }
.device { position: relative; padding: 18px; border-radius: 34px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.device::before { content: "ICON UI"; position: absolute; right: 28px; top: 28px; z-index: 2; padding: 8px 12px; border-radius: 999px; background: var(--soft); color: var(--blue); font-size: 12px; font-weight: 900; }
.device img { border-radius: 24px; aspect-ratio: 4 / 5; object-fit: cover; }
section { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.section-head p { max-width: 560px; margin: 0; }
.grid { display: grid; gap: 18px; }
.platforms { grid-template-columns: repeat(5, 1fr); }
.cards, .compat, .reco-grid, .use-grid { grid-template-columns: repeat(3, 1fr); }
.steps { grid-template-columns: repeat(3, 1fr); counter-reset: step; }
.faq { grid-template-columns: repeat(2, 1fr); }
.card, .step, .faq-item { padding: 24px; }
.icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 18px; color: var(--blue); font-weight: 900; background: var(--soft); }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.meta span { color: var(--muted); font-size: 12px; border-radius: 999px; background: #f3f6fb; padding: 7px 10px; }
.codebox { padding: 24px; font-family: Consolas, "Courier New", monospace; color: #2250b7; line-height: 1.9; }
.checklist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px; }
.checklist span { border: 1px solid var(--line); border-radius: 16px; padding: 14px; color: var(--muted); background: white; }
.visual-card { padding: 16px; overflow: hidden; }
.visual-card img, .reco img { width: 100%; object-fit: cover; border-radius: 20px; }
.reco img { height: 190px; margin-bottom: 18px; }
.step::before { counter-increment: step; content: "Step " counter(step); display: inline-flex; padding: 8px 12px; border-radius: 999px; color: white; background: var(--green); font-size: 12px; font-weight: 900; margin-bottom: 16px; }
.cta-box { text-align: center; border-radius: 34px; padding: 48px; background: linear-gradient(135deg, #fff, #eef7ff); border: 1px solid var(--line); box-shadow: var(--shadow); }
.footer { padding: 36px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 18px; }
.footer b { color: var(--ink); display: block; margin-bottom: 10px; }
@media (max-width: 900px) {
  .nav { flex-direction: column; align-items: flex-start; padding: 16px 0; }
  .hero-grid, .split, .platforms, .cards, .compat, .reco-grid, .use-grid, .steps, .faq, .checklist, .footer-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
}
