/* ============================================================
   clash-verge.us — home.css(首页专属)
   平台入口网格 / 信任背书栏 / 常见问题精选 / 区块尾部导览链
   ============================================================ */

/* ---------- 平台入口网格 ---------- */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.plat-card {
  border: var(--edge) solid var(--ink);
  background: var(--paper-lift);
  box-shadow: var(--slab);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.plat-ic {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--edge) solid var(--ink);
  background: var(--paper-dim);
  color: var(--ink);
  flex-shrink: 0;
}

.plat-name {
  font-family: var(--ft-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0;
}

.plat-desc {
  font-size: .88rem;
  color: var(--ink-soft);
  margin: 0;
  flex-grow: 1;
}

/* ---------- 区块尾部导览链 ---------- */
.rack-more {
  margin-top: clamp(24px, 3vw, 36px);
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.rack-more a {
  font-family: var(--ft-mono);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}

.rack-more a:hover {
  box-shadow: inset 0 -0.4em 0 0 var(--flare);
}

/* ---------- 信任背书右栏 ---------- */
.trust-sheet { margin-top: 20px; }

.trust-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-facts li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  flex-wrap: wrap;
  padding-top: 9px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--rule-faint);
  font-size: .88rem;
}

.trust-facts li:first-child { padding-top: 0; }

.trust-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trust-facts li > span:first-child {
  color: var(--ink-soft);
  flex-shrink: 0;
}

.trust-facts .mono {
  font-size: .8rem;
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* ---------- 常见问题精选 ---------- */
.pick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 74ch;
}

.pick-list li {
  border-top: 1px solid var(--rule-faint);
  padding-top: 18px;
  padding-bottom: 18px;
  margin: 0;
}

.pick-list li:first-child { border-top: var(--edge) solid var(--ink); }

.pick-list li:last-child { padding-bottom: 0; }

.pick-q {
  font-family: var(--ft-disp);
  font-weight: 900;
  font-size: 1.02rem;
  margin: 0 0 6px;
}

.pick-a {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
}

.pick-a a {
  font-family: var(--ft-mono);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.pick-a a:hover {
  box-shadow: inset 0 -0.4em 0 0 var(--flare);
}