/* ---------- 全局 home 容器 ---------- */

.home {
  max-width: 520px;
  margin: auto;
  padding: 60px 16px 40px;
  color: #f79422;
  font-family: Arial, sans-serif;
}

/* ---------- HERO ---------- */

.hero11 {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  overflow: hidden;
}

.hero11::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(247, 148, 34, 0.25), transparent);
  filter: blur(120px);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- HERO 标题 ---------- */

.hero11-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  display: inline-block;
  z-index: 1;
}

.hero11-title span {
  background: linear-gradient(90deg, #f79422, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ---------- HERO 描述 ---------- */

.hero11-desc {
  color: #bfbfbf;
  line-height: 1.6;
  max-width: 460px;
  z-index: 1;
}

.hero11-desc strong {
  color: #f79422;
}

/* ---------- HERO 按钮 ---------- */

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 10px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid rgba(247, 148, 34, 0.4);
  background: linear-gradient(135deg, #f79422, #ffb347);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.25s;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(247, 148, 34, 0.5);
}

/* ---------- SECTION ---------- */

.info-section {
  margin-top: 35px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 16px;
}

/* ---------- 信息卡 ---------- */

.info-box {
  background: #221f1f;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(247, 148, 34, 0.25);
  line-height: 1.7;
}

.info-box p {
  color: #cfcfcf;
  margin-bottom: 12px;
}

.info-box strong {
  color: #f79422;
}

.info-box h4 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: #f79422;
  font-size: 15px;
}

.info-box ul {
  margin-left: 18px;
  margin-bottom: 10px;
  color: #bdbdbd;
}

/* ---------- 生态卡 ---------- */

.eco-box {
  background: #221f1f;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(247, 148, 34, 0.25);
  margin-bottom: 16px;
  transition: 0.25s;
}

.eco-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(247, 148, 34, 0.35);
}

.eco-box h3 {
  color: #f79422;
  margin-bottom: 8px;
}

.eco-box p {
  color: #cfcfcf;
}

.eco-box ul {
  margin-left: 18px;
  color: #bdbdbd;
}

/* ---------- 路线图 ---------- */

.roadmap-box {
  background: #221f1f;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(247, 148, 34, 0.25);
}

.roadmap-box h4 {
  margin-top: 16px;
  margin-bottom: 6px;
  color: #f79422;
  font-size: 15px;
}

.roadmap-box ul {
  margin-left: 18px;
  margin-bottom: 10px;
  color: #bdbdbd;
}

/* ---------- FAQ ---------- */

.faq-section {
  margin-top: 40px;
}

.faq {
  background: #221f1f;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(247, 148, 34, 0.25);
  line-height: 1.7;
}

.faq h3 {
  font-size: 15px;
  margin-top: 18px;
  color: #f79422;
}

.faq p {
  font-size: 14px;
  color: #bdbdbd;
  margin-top: 6px;
}

/* ---------- CTA ---------- */

.cta {
  text-align: center;
  margin-top: 50px;
}

.cta h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.cta p {
  color: #bdbdbd;
}

/* ---------- CTA 按钮 ---------- */

.btn-primary2 {
  padding: 12px 26px;
  border-radius: 12px;
  border: 1px solid rgba(247, 148, 34, 0.4);
  margin-top: 22px;
  background: linear-gradient(135deg, #f79422, #ffb347);
  color: #fff;
  cursor: pointer;
  transition: 0.25s;
  font-size: 14px;
}

.btn-primary2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(247, 148, 34, 0.5);
}

