/* 首页专属排版；规则装置沿用共享的静态排版卡组件。 */
.home-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.hero .devices {
  margin-top: 24px;
  padding-top: 19px;
}
.hero .devices__item:hover {
  color: var(--accent-dark);
}
.hero .stage,
.hero .float,
.hero .rules__band {
  animation: none;
  transition: none;
}
.home-dark-intro {
  max-width: 70ch;
  margin-top: 18px;
  color: var(--on-dark-muted);
  line-height: 1.85;
}
.home-device-grid {
  margin-top: 34px;
}
.home-device-grid .device-card {
  min-height: 186px;
}
.home-device-note {
  margin-top: 22px;
  color: var(--on-dark-muted);
  font-size: 14px;
}
.home-store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 28px;
}
.home-text-link {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: .25em;
}
.home-text-link--dark {
  color: var(--on-dark);
}
.home-feature-stage {
  margin-top: 34px;
}
.home-feature-stage .feature-pane {
  grid-column: 2;
  grid-row: 1;
}
.home-feature-stage .feature-pane h3 {
  font-size: 24px;
}
.home-feature-stage .feature-pane p {
  line-height: 1.9;
}
.home-condition-list {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-inner);
  background: var(--bg-panel);
}
.home-condition-list span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding-inline: 18px;
  color: var(--text);
}
.home-condition-list span + span {
  border-top: 1px solid var(--border);
}
.home-condition-list b {
  color: var(--accent-dark);
  font-weight: 500;
}
.home-pane-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: .25em;
}
.home-feature-after {
  max-width: 74ch;
  margin-top: 26px;
  color: var(--text-muted);
  line-height: 1.85;
}
.home-feature-after a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: .25em;
}
.home-facts {
  margin-top: 28px;
}
.home-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.home-fact-panel {
  box-shadow: none;
}
.home-fact-panel h3 {
  font-size: 21px;
}
.home-fact-panel p {
  margin-top: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}
.home-fact-panel p strong {
  color: var(--text);
  font-weight: 500;
}
.home-question-block {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--on-dark-muted);
}
.home-question-block h3 {
  font-size: 23px;
}
.home-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}
.home-question-grid p {
  line-height: 1.8;
}
.home-question-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--on-dark);
  font-weight: 500;
}
.home-question-grid a {
  display: inline-block;
  color: var(--on-dark);
  text-decoration: underline;
  text-underline-offset: .25em;
}
.home-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.home-article-grid .article-card h3 {
  font-size: 19px;
  line-height: 1.55;
}
.home-article-grid .article-card p {
  line-height: 1.8;
}
.home-all-articles {
  display: inline-block;
  margin-top: 30px;
  color: var(--accent-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: .25em;
}
@media (max-width: 1180px) {
  .hero__grid {
    gap: 30px;
  }
  .hero__copy {
    max-width: 740px;
  }
}
@media (max-width: 820px) {
  .home-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-question-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .home-feature-stage .feature-pane {
    grid-column: 1;
    grid-row: 2;
  }
  .home-fact-grid,
  .home-article-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero .stage {
    gap: 14px;
  }
  .home-feature-stage .feature-pane h3 {
    font-size: 21px;
  }
  .home-fact-panel {
    padding: 23px;
  }
  .home-device-grid .device-card {
    min-height: 0;
  }
  .home-store-actions .store-button {
    max-width: 100%;
  }
}