:root {
  --bg: #ffffff;
  --bg-soft: #f5f8ff;
  --ink: #0f1830;
  --ink-2: #4a5468;
  --muted: #8a94a8;
  --primary: #2563eb;
  --primary-2: #06b6d4;
  --accent: #12a978;
  --line: #e8edf6;
  --radius: 8px;
  --shadow: 0 10px 40px rgba(20, 50, 120, .08);
  --shadow-lg: 0 24px 70px rgba(20, 50, 120, .16);
  --grad: linear-gradient(120deg, #2563eb 0%, #06b6d4 100%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(37,99,235,.35); outline-offset: 3px; }
.container { width: min(1160px, 90%); margin: 0 auto; }
.eyebrow { font-size: 13px; letter-spacing: 2px; font-weight: 700; color: var(--primary); text-transform: uppercase; margin: 0 0 10px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* 导航 */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; overflow: hidden; background: var(--grad); }
.brand-mark img { width: 38px; height: 38px; display: block; }
.brand-name { font-size: 18px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--ink-2); font-weight: 600; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 首屏 */
.hero { position: relative; overflow: hidden; background: radial-gradient(1100px 500px at 80% -10%, #e8f1ff 0%, #fff 60%); padding: 58px 0 76px; }
.hero-inner { display: grid; grid-template-columns: 1.04fr .96fr; gap: 60px; align-items: center; }
.hero h1 { max-width: 610px; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.12; margin: 6px 0 18px; font-weight: 800; letter-spacing: 0; }
.lead { font-size: 17px; color: var(--ink-2); max-width: 560px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 12px 22px; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(37,99,235,.28); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow); }
.btn-sm { min-height: 40px; padding: 9px 15px; font-size: 14px; border-radius: 8px; }
.btn.disabled { opacity: .68; cursor: default; transform: none; box-shadow: none; background: #f8fafc; }
.hero-stats { display: flex; gap: 34px; margin-top: 38px; }
.hero-stats b { display: block; font-size: 26px; font-weight: 800; }
.hero-stats span { font-size: 13px; color: var(--muted); }

.hero-art { position: relative; display: grid; place-items: center; }
.suite-panel { width: min(470px, 100%); padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-lg); }
.suite-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.suite-head span { color: var(--primary); font-size: 13px; font-weight: 800; letter-spacing: 2px; }
.suite-head small { color: var(--muted); font-size: 13px; font-weight: 700; }
.suite-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.suite-item { display: grid; grid-template-columns: 54px 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; min-height: 112px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: #fbfdff; transition: transform .2s, border-color .2s, box-shadow .2s; }
.suite-item:hover { transform: translateY(-2px); border-color: #cfe0ff; box-shadow: var(--shadow); }
.suite-item.primary { grid-column: 1 / -1; min-height: 124px; grid-template-columns: 72px 1fr; padding: 18px; background: linear-gradient(160deg,#f7fbff,#eef7ff); border-color: #cfe0ff; }
.suite-item img { grid-row: 1 / span 2; width: 54px; height: 54px; border-radius: 14px; box-shadow: 0 10px 24px rgba(20,50,120,.12); }
.suite-item.primary img { width: 72px; height: 72px; border-radius: 18px; }
.suite-item span { color: var(--ink); font-size: 16px; font-weight: 800; }
.suite-item.primary span { font-size: 20px; }
.suite-item small { color: var(--muted); font-size: 13px; font-weight: 700; }

/* 通用区块 */
.section { padding: 88px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.sec-head h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 12px; font-weight: 800; letter-spacing: 0; }
.sec-sub { color: var(--ink-2); font-size: 16px; margin: 0; }

/* 产品 */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s, box-shadow .25s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card.featured { grid-row: span 1; border-color: #cfe0ff; }
.pc-media { height: 210px; display: grid; place-items: center; background: linear-gradient(160deg,#eef4ff,#e6fbff); overflow: hidden; }
.pc-media img { max-height: 210px; width: auto; object-fit: contain; filter: drop-shadow(0 14px 30px rgba(20,50,120,.18)); margin-top: 18px; border-radius: 14px 14px 0 0; }
.pc-media.md { background: linear-gradient(160deg,#eaf0ff,#f3f6ff); }
.pc-media.calc { background: linear-gradient(160deg,#e9fbf4,#eafaff); }
.product-icon { width: 96px; height: 96px; margin: 0; border-radius: 20px; box-shadow: var(--shadow-lg); }
.pc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pc-tag { display: inline-block; align-self: flex-start; font-size: 12px; font-weight: 700; color: var(--primary); background: #eef3ff; padding: 4px 10px; border-radius: 8px; margin-bottom: 10px; }
.pc-body h3 { margin: 0 0 8px; font-size: 21px; font-weight: 800; }
.pc-body > p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 14px; }
.pc-feats { list-style: none; padding: 0; margin: 0 0 18px; }
.pc-feats li { position: relative; padding-left: 22px; color: var(--ink-2); font-size: 14px; margin-bottom: 8px; }
.pc-feats li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.platform-list { display: grid; gap: 9px; }
.platform-list li { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 28px; padding-left: 0; margin-bottom: 0; }
.platform-list li::before { display: none; }
.platform-list b { color: var(--ink); font-size: 14px; font-weight: 700; }
.status { flex: 0 0 auto; min-width: 58px; padding: 3px 8px; border-radius: 8px; text-align: center; font-size: 12px; font-weight: 700; }
.status.soon { color: #2563eb; background: #eef3ff; }
.status.dev { color: #64748b; background: #f1f5f9; }
.status.pending { color: #64748b; background: #f1f5f9; }
.platform-action { flex: 0 0 auto; min-width: 58px; padding: 4px 10px; border-radius: 8px; text-align: center; font-size: 12px; font-weight: 800; color: #fff; background: var(--grad); box-shadow: 0 6px 14px rgba(37,99,235,.2); }
.platform-action:hover { transform: translateY(-1px); }

/* 关于 */
.about { background: var(--bg-soft); }
.about-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.about-text h2 { font-size: clamp(26px,3.6vw,36px); margin: 0 0 16px; font-weight: 800; letter-spacing: 0; }
.about-text p { color: var(--ink-2); margin: 0 0 14px; }
.about-points { display: flex; gap: 26px; margin-top: 22px; flex-wrap: wrap; }
.ap b { display: block; font-size: 16px; }
.ap span { font-size: 13px; color: var(--muted); }
.about-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.about-card h4 { margin: 0 0 18px; font-size: 18px; }
.focus-list { display: grid; gap: 16px; }
.focus-list div { padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fbfdff; }
.focus-list b { display: block; margin-bottom: 5px; font-size: 15px; }
.focus-list span { display: block; color: var(--ink-2); font-size: 14px; line-height: 1.7; }

/* 联系 */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; text-align: center; box-shadow: var(--shadow); transition: transform .2s, box-shadow .25s; }
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card .ci { width: 52px; height: 52px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 8px; background: #eef3ff; color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: 0; }
.contact-card h4 { margin: 0 0 6px; font-size: 16px; }
.contact-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; }

/* 页脚 */
.footer { background: #0f1830; color: #c7d0e2; padding: 54px 0 26px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand-name { color: #fff; }
.footer-desc { color: #8a94a8; margin: 12px 0 0; font-size: 14px; }
.footer-links { display: flex; gap: 26px; align-items: flex-start; }
.footer-links a { color: #c7d0e2; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 22px; font-size: 13px; color: #8a94a8; }
.footer-bottom a:hover { color: #fff; }

/* 进入视口渐入（默认可见，仅在 .in-view 时播放动画） */
@media (prefers-reduced-motion: no-preference) {
  @keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
  .in-view { animation: rise .6s ease both; }
}

/* 响应式 */
@media (max-width: 920px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .product-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links { position: fixed; inset: 66px 0 auto 0; background: #fff; flex-direction: column; gap: 0; padding: 8px 5%; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .25s; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 4px; border-top: 1px solid var(--line); }
  .nav-links a:first-child { border-top: 0; }
  .nav-toggle { display: inline-flex; }
  .section { padding: 64px 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, 1160px); }
  .hero { padding: 36px 0 56px; }
  .hero-inner { gap: 28px; }
  .hero h1 { font-size: 32px; }
  .lead { font-size: 16px; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .hero-stats b { font-size: 20px; }
  .hero-stats span { display: block; line-height: 1.35; }
  .suite-panel { padding: 18px; }
  .suite-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .suite-list { grid-template-columns: 1fr; }
  .suite-item, .suite-item.primary { grid-column: auto; grid-template-columns: 48px 1fr; min-height: 92px; padding: 12px; }
  .suite-item img { width: 48px; height: 48px; border-radius: 12px; }
  .suite-item.primary img { width: 48px; height: 48px; border-radius: 12px; }
  .suite-item.primary span { font-size: 16px; }
  .about-card { padding: 22px; }
  .footer-bottom { flex-direction: column; }
}
