/* ============================================================
   Clash代理 · home.css(首页专属)
   出口牌链接化 / 平台入口网格 / 信任背书分栏 / FAQ 精选 / 博客预览尾行
   ============================================================ */

/* Hero 出口牌:整牌可点(外壳沿用 base 的 .exit,内层链接铺满) */
.exit{padding:0}
.exit-link{
  display:flex;align-items:center;justify-content:center;gap:10px;
  width:100%;min-height:44px;
  padding:15px 20px;
  border-radius:var(--r-md);
  color:var(--white);
}
.exit-link svg{width:22px;height:22px;flex-shrink:0}

/* 特性区右侧面板容器 */
.ramp-panes{min-width:0}

/* ---- 平台入口网格 ---- */
.plat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.plat-grid>*{min-width:0}
.plat-card{
  display:flex;flex-direction:column;align-items:flex-start;gap:12px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-soft);
  padding:28px;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.plat-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lift);
  border-color:var(--accent-border);
}
.plat-icn{
  display:inline-flex;align-items:center;justify-content:center;
  width:52px;height:52px;flex-shrink:0;
  background:var(--bg-panel2);
  border-radius:var(--r-md);
}
.plat-icn svg{width:26px;height:26px}
.pic-fill{fill:var(--white)}
.pic-hole{fill:var(--bg-panel2)}
.pic-line{fill:none;stroke:var(--white);stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.plat-name{font-size:18px;font-weight:800;color:var(--ink)}
.plat-note{
  font-size:14px;line-height:1.8;
  color:var(--ink-muted);
  flex:1;
}
.plat-card-more{
  background:var(--bg-panel);
  border-style:dashed;
}

/* ---- 信任背书分栏 ---- */
.trust-grid{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);
  gap:30px;
  align-items:start;
}
.trust-copy h3{
  font-size:18px;font-weight:800;
  color:var(--ink);
  margin-bottom:10px;
}
.trust-copy h3 + p{margin-bottom:26px}
.trust-copy p{
  font-size:15px;line-height:1.9;
  color:var(--ink-muted);
}
.trust-copy .cmd-box{margin-top:18px}

.trust-side h3{
  font-size:18px;font-weight:800;
  margin-bottom:18px;
}
.faq-picks{display:flex;flex-direction:column;gap:18px}
.faq-picks li{
  padding-bottom:18px;
  border-bottom:1px solid var(--glass-border);
}
.faq-picks li:last-child{border-bottom:0;padding-bottom:0}
.fp-q{
  display:block;
  font-size:14.5px;font-weight:700;
  color:var(--white);
  margin-bottom:6px;
}
.fp-a{
  display:block;
  font-size:13.5px;line-height:1.8;
  color:var(--txt-on-dark-dim);
}
.fp-a a{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:3px;
}

/* ---- 博客预览尾行 ---- */
.blog-more{margin-top:30px;text-align:center}

/* ---- 响应式 ---- */
@media (max-width:940px){
  .plat-grid{grid-template-columns:repeat(2,1fr)}
  .trust-grid{grid-template-columns:1fr;gap:22px}
}
@media (max-width:640px){
  .plat-grid{grid-template-columns:1fr}
  .plat-card{padding:22px}
}