/* ==========================================================================
   VPNNK — streaming.css
   流媒体解锁页专属样式:页头氛围、正文排版、表格补充、结尾链接组。
   颜色、圆角、投影一律引用 base.css 的设计令牌,不散落硬编码色值。
   ========================================================================== */

/* ==========================================================================
   1. 页头(轻量版首屏:光斑 + 居中排版 + 事实胶囊 + 双 CTA)
   ========================================================================== */
.page-head {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  max-width: 100%;
  padding-top: 46px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--border);
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(560px 340px at 20% -22%, var(--blush) 0%, rgba(246, 214, 232, 0) 72%),
    radial-gradient(620px 380px at 80% -16%, var(--frost) 0%, rgba(207, 233, 245, 0) 70%),
    radial-gradient(520px 320px at 50% 2%, var(--lilac) 0%, rgba(230, 220, 247, 0) 68%);
}
.page-head-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-head h1 {
  margin-top: 14px;
  max-width: 22ch;
}
.page-head .lede {
  margin-top: 14px;
  max-width: 62ch;
}
.page-head .fact-row {
  margin-top: 20px;
  justify-content: center;
}
.page-head .ctas { margin-top: 22px; }

/* ==========================================================================
   2. 正文列与文档排版
   ========================================================================== */
.doc { position: relative; }

.prose { max-width: 78ch; }
.prose p {
  margin-top: 12px;
  font-size: 15.5px;
  color: var(--text-muted);
}
.prose p:first-child { margin-top: 0; }
.prose strong { color: var(--text); font-weight: 600; }
.prose h3 {
  margin-top: 26px;
  margin-bottom: 2px;
}
.prose ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.prose li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--text-muted);
}
.prose li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent);
}
.prose li b { color: var(--text); font-weight: 600; }
.prose .callout { margin-top: 18px; max-width: 100%; }

/* ==========================================================================
   3. 表格补充
   ========================================================================== */
.table-note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 78ch;
}
.table-note .link-arrow { font-size: 13px; }

.cell-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.data-table td .badge { white-space: nowrap; }

/* ==========================================================================
   4. 卡片组补充
   ========================================================================== */
.card h3 { font-size: 18px; letter-spacing: -.015em; }
.card p {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   5. 结尾链接组
   ========================================================================== */
.next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 20px;
}
.next-links .link-arrow { font-size: 14.5px; }

/* ==========================================================================
   响应式
   ========================================================================== */
@media (max-width: 768px) {
  .page-head {
    padding-top: 34px;
    padding-bottom: 30px;
  }
  .page-head h1 { max-width: 20ch; }
  .page-head .lede { font-size: 16px; }
}

@media (max-width: 640px) {
  .page-head .fact-row { justify-content: flex-start; }
  .page-head-inner { align-items: flex-start; text-align: left; }
  .page-head .ctas { width: 100%; }
  .page-head .ctas .btn { width: 100%; }
  .next-links { flex-direction: column; gap: 10px; }
}