*,
*::before,
*::after{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
  background:#0b1120;
  color:#e5e7eb;
  line-height:1.8;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.wrap{width:100%;max-width:1140px;margin:0 auto;padding:0 16px}

/* 顶部：工厂感信息条 + 导航条（上下两段） */
.site-header{
  box-shadow:0 18px 50px rgba(15,23,42,.9);
}
.site-header__top{
  background:#020617;
  border-bottom:1px solid rgba(30,64,175,.7);
  padding:8px 0;
}
.header-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex;align-items:center;gap:10px;
}
.brand__mark{
  width:34px;height:34px;border-radius:11px;
  background:conic-gradient(from 180deg,#22c55e,#0ea5e9,#22d3ee,#22c55e);
  padding:2px;
}
.brand__mark span{
  width:100%;height:100%;border-radius:9px;
  background:#020617;color:#bbf7d0;
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:900;font-size:16px;
}
.brand__name{display:flex;flex-direction:column;line-height:1.1}
.brand__name strong{font-size:15px}
.brand__name small{font-size:12px;color:rgba(148,163,184,.96);font-weight:700}

.header-meta{
  font-size:11px;color:rgba(148,163,184,.96);
  display:flex;flex-direction:column;gap:2px;text-align:right;
}

.site-header__navRow{
  background:#0f172a;
  border-bottom:1px solid rgba(30,64,175,.7);
}
.nav-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;padding:8px 0;
}
.nav{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  font-size:12px;
}
.nav a{
  padding:6px 11px;border-radius:999px;
  border:1px solid transparent;
  color:rgba(226,232,240,.96);
  font-weight:700;
  transition:background .18s,border-color .18s,color .18s,transform .18s;
}
.nav a:hover{
  background:rgba(37,99,235,.35);
  border-color:rgba(96,165,250,.8);
}
.nav a.active{
  background:#22c55e;
  border-color:#22c55e;
  color:#022c22;
}

.nav-cta{
  display:inline-flex;align-items:center;justify-content:center;
  padding:7px 12px;border-radius:999px;
  background:#22c55e;color:#022c22;
  font-size:12px;font-weight:800;
  box-shadow:0 14px 40px rgba(22,163,74,.7);
}
.nav-cta:hover{transform:translateY(-1px);filter:saturate(1.05)}

main{flex:1;}

/* Hero：左“厂牌说明列” + 右“生产看板式矩阵” */
.hero{
  padding:24px 0 18px;
}
.hero-shell{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.5fr);
  gap:18px;
}
.hero-side{
  background:#020617;
  border-radius:18px;
  border:1px solid rgba(30,64,175,.8);
  box-shadow:0 18px 50px rgba(15,23,42,.9);
  padding:14px 14px 12px;
}
.hero-tag{
  font-size:11px;color:#bfdbfe;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:6px;
}
.hero-side h1{
  font-size:24px;line-height:1.35;margin-bottom:8px;
}
.hero-side p{
  font-size:13px;color:rgba(191,219,254,.96);
}
.hero-chips{
  margin-top:10px;
  display:flex;flex-wrap:wrap;gap:8px;
}
.chip{
  padding:4px 8px;border-radius:999px;
  background:rgba(15,23,42,1);
  border:1px solid rgba(56,189,248,.7);
  color:#bfdbfe;
  font-size:11px;
}

.hero-main{
  background:#020617;
  border-radius:20px;
  border:1px solid rgba(30,64,175,.8);
  box-shadow:0 26px 70px rgba(15,23,42,.95);
  padding:14px 16px 13px;
  position:relative;
  overflow:hidden;
}
.hero-main::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(780px 360px at 0 0,rgba(56,189,248,.4),transparent),
    radial-gradient(780px 360px at 100% 0,rgba(34,197,94,.35),transparent);
  opacity:.9;pointer-events:none;
}
.hero-main__content{position:relative;z-index:1}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(0,1.1fr);
  gap:14px;
}
.hero-block{
  background:rgba(15,23,42,.96);
  border-radius:14px;
  border:1px solid rgba(51,65,85,.95);
  padding:10px 11px 9px;
  font-size:12px;color:rgba(226,232,240,.96);
}
.hero-block strong{display:block;font-size:13px;margin-bottom:3px;color:#e5e7eb}

.hero-media{
  display:grid;grid-template-rows:auto auto;gap:9px;
}
.mediaCard{
  border-radius:14px;
  border:1px solid rgba(51,65,85,.95);
  overflow:hidden;
  background:#020617;
}
.mediaCard img{
  width:100%;height:170px;object-fit:cover;
}
.mediaCard__pad{
  padding:8px 10px;font-size:12px;color:rgba(191,219,254,.96);
}
.mediaCard__pad strong{display:block;margin-bottom:2px;color:#e5e7eb}

.metricRow{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;
}
.metric{
  border-radius:12px;
  border:1px solid rgba(30,64,175,.9);
  background:rgba(15,23,42,.96);
  padding:7px 8px;
  font-size:11px;color:rgba(191,219,254,.96);
}
.metric b{display:block;font-size:13px;color:#bfdbfe}

.hero-actions{
  margin-top:10px;
  display:flex;gap:10px;flex-wrap:wrap;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:7px 13px;border-radius:999px;border:1px solid transparent;
  font-size:12px;font-weight:800;
  transition:background .18s,border-color .18s,color .18s,transform .18s,box-shadow .18s;
}
.btn--primary{
  background:linear-gradient(135deg,#22c55e,#0ea5e9);
  color:#022c22;
  box-shadow:0 16px 40px rgba(16,185,129,.7);
}
.btn--primary:hover{transform:translateY(-1px);filter:saturate(1.05)}
.btn--ghost{
  background:transparent;border-color:rgba(148,163,184,.85);color:rgba(226,232,240,.96);
}
.btn--ghost:hover{border-color:#e5e7eb}

/* 内容分区：模块说明 + FAQ */
.section{
  padding:18px 0;
}
.card{
  background:#020617;
  border-radius:20px;
  border:1px solid rgba(30,64,175,.8);
  box-shadow:0 20px 60px rgba(15,23,42,.95);
  padding:14px 16px 12px;
}
.card-head{
  display:flex;align-items:baseline;justify-content:space-between;
  gap:12px;flex-wrap:wrap;margin-bottom:10px;
}
.card-head h2{font-size:18px;color:#e5e7eb}
.card-head p{font-size:13px;color:rgba(148,163,184,.96);max-width:640px}

.grid-3{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;
}
.pill{
  border-radius:16px;
  background:radial-gradient(circle at 0 0,rgba(56,189,248,.4),rgba(15,23,42,.98));
  border:1px solid rgba(51,65,85,.95);
  padding:10px 10px 9px;
  font-size:12px;color:rgba(226,232,240,.96);
}
.pill strong{display:block;font-size:13px;margin-bottom:3px;color:#e5e7eb}

.faq-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;
  margin-top:6px;
}
.faq-grid details{
  border-radius:16px;
  border:1px solid rgba(51,65,85,.95);
  background:#020617;
  padding:8px 10px;
  font-size:12px;color:rgba(226,232,240,.96);
}
.faq-grid summary{cursor:pointer;font-weight:700}
.faq-grid summary::-webkit-details-marker{display:none}
.faq-grid p{margin-top:6px}

/* 页脚 */
.footer{
  margin-top:22px;
  background:#020617;
  border-top:1px solid rgba(30,64,175,.7);
  color:rgba(248,250,252,.9);
}
.footer__grid{
  display:grid;grid-template-columns:minmax(0,1.4fr) minmax(0,.9fr) minmax(0,.9fr);
  gap:12px;padding:16px 0 10px;
  font-size:13px;color:rgba(209,213,219,.9);
}
.footer h4{font-size:14px;margin-bottom:6px;color:rgba(248,250,252,.96)}
.footer a{display:block;padding:3px 0;color:rgba(209,213,219,.9)}
.footer a:hover{color:#ffffff;text-decoration:underline}
.footer__bottom{
  border-top:1px solid rgba(30,64,175,.7);
  padding:8px 0 10px;
  font-size:12px;color:rgba(148,163,184,.9);
}

@media (max-width: 960px){
  .header-row{flex-wrap:wrap}
  .header-meta{display:none}
  .nav-row{flex-wrap:wrap}
  .hero-shell{grid-template-columns:1fr}
  .hero-grid{grid-template-columns:1fr}
  .metricRow{grid-template-columns:repeat(3,minmax(0,1fr))}
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .faq-grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .hero-side h1{font-size:22px}
  .metricRow{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
}

