/* ==========================================================================
   MeyeVPN — streaming.css
   解锁支持页(media.html)专属:首屏氛围、场景速览格、支持状态标记、
   键值说明列表、表格注释、结尾链接行
   ========================================================================== */

/* ---------- 首屏:瓷白渐变 + 两团氛围光斑 ---------- */
.media-hero{
  position:relative;
  overflow-x:clip;
  background:linear-gradient(180deg,var(--bg-top),var(--bg-bottom));
  padding-top:56px;
  padding-bottom:72px;
}
.media-hero .halo{
  background:
    radial-gradient(620px 440px at 88% 2%,var(--glow-7),transparent 70%),
    radial-gradient(680px 480px at 2% 100%,var(--glow-5),transparent 70%);
}
.media-hero .wrap{position:relative}
.media-hero h1{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(32px,4.6vw,58px);
  line-height:1.1;
  letter-spacing:-.03em;
  margin:18px 0 16px;
  max-width:16em;
}
.media-hero .lead{
  font-size:18px;
  line-height:1.75;
  color:var(--muted);
  max-width:760px;
}
.media-hero .lead strong{color:var(--text);font-weight:600}

.hero-cta{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0 24px}
.hero-cta .btn-primary,
.hero-cta .btn-secondary{flex-shrink:0;white-space:nowrap}
.media-hero .fact-strip{margin-bottom:6px}

.flow-lines{
  width:100%;
  height:auto;
  max-width:100%;
  margin-top:44px;
  opacity:.85;
}

/* ---------- 场景速览格 ---------- */
.media-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:16px;
}
.media-tile{
  display:flex;
  flex-direction:column;
  min-width:0;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-xs);
  padding:20px;
}
.media-tile h3{
  font-family:var(--font-display);
  font-size:16px;
  font-weight:800;
  letter-spacing:-.01em;
  margin-bottom:8px;
}
.media-tile p{font-size:13.5px;color:var(--muted);line-height:1.68}
.media-tile .tag{margin-top:14px;align-self:flex-start}

/* ---------- 支持状态标记 ---------- */
.sup{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
}
.sup::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:currentColor;
  flex-shrink:0;
}
.sup-ok{color:var(--accent)}
.sup-part{color:var(--warn)}
.sup-check{color:var(--muted)}

/* ---------- 键值说明列表 ---------- */
.spec-list{
  display:flex;
  flex-direction:column;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-xs);
  overflow:hidden;
}
.spec-row{
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  gap:18px;
  padding:18px 20px;
  border-bottom:1px solid var(--border);
}
.spec-row:last-child{border-bottom:0}
.spec-row b{font-size:15px;font-weight:700;color:var(--text)}
.spec-row span{
  font-size:14.5px;
  line-height:1.78;
  color:var(--muted);
  min-width:0;
  overflow-wrap:anywhere;
}

/* ---------- 表格下方注释 ---------- */
.table-note{
  font-size:13.5px;
  line-height:1.78;
  color:var(--muted);
  margin-top:14px;
  max-width:920px;
}

/* ---------- 结尾延伸链接 ---------- */
.link-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}
.link-row .btn-secondary{flex-shrink:0;white-space:nowrap}

/* ---------- 响应式 ---------- */
@media (max-width:768px){
  .media-hero{padding-top:36px;padding-bottom:48px}
  .media-hero h1{font-size:34px;margin:14px 0 14px}
  .media-hero .lead{font-size:16.5px}
  .hero-cta{margin:22px 0 20px}
  .flow-lines{margin-top:28px}
  .spec-row{grid-template-columns:1fr;gap:8px;padding:16px}
}
@media (max-width:640px){
  .media-grid{grid-template-columns:1fr}
}