/* ============================================================
   VPN-LG · home.css(首页专属样式)
   只补 components.css 未覆盖的部分:首屏氛围装饰、线路状态组件、
   核心卖点大纲面板、可核对卡片、底部 CTA 带。
   颜色/圆角/阴影一律引用 :root 令牌,不散落硬编码值。
   ============================================================ */

/* ============================================================
   一、首屏氛围装饰层(纯装饰,视差锚点)
   ============================================================ */
.hero-decor{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;overflow:clip;
}
.hero-glow{
  position:absolute;left:50%;top:280px;
  width:1040px;height:420px;margin-left:-520px;
  background:radial-gradient(closest-side,var(--accent-10),transparent 74%);
}

/* 首屏小标签徽标与 H1 之间的呼吸 */
.hero-inner .kicker{margin-bottom:16px}

/* 窗口内「今日计划」小标题(装置用 <p>,不进文档大纲) */
.main-title{
  margin:10px 0 8px;
  font-family:var(--font-display);
  font-weight:800;font-size:20px;letter-spacing:-.02em;
  color:var(--text);
}

/* 企鹅图标的眼睛:按卡片底色挖空 */
.platform-card svg .tux-eye{fill:var(--bg-panel)}

/* ============================================================
   二、线路状态组件(servers.js 注入,双列网格)
   ============================================================ */
#server-status{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  align-content:start;
}
#server-status:empty{display:none}

.srv-row{
  display:flex;align-items:center;gap:10px;
  min-height:54px;padding:0 14px;
  background:var(--bg-panel);
  border-radius:var(--r-sm);
  box-shadow:var(--shadow-card);
  min-width:0;
}
.srv-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 4px var(--success-18);
  flex:none;
  animation:srv-breathe 2.6s ease-in-out infinite;
}
@keyframes srv-breathe{
  0%,100%{opacity:1}
  50%{opacity:.4}
}
.srv-flag{
  width:18px;height:18px;border-radius:50%;
  box-shadow:0 0 0 1px var(--border);
  flex:none;
}
.srv-name{
  font-size:14px;font-weight:600;color:var(--text);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  min-width:0;
}
.srv-type{
  flex:none;
  display:inline-flex;align-items:center;
  min-height:22px;padding:0 8px;border-radius:var(--r-pill);
  background:var(--bg-panel2);border:1px solid var(--border);
  font-size:11.5px;color:var(--text-muted);white-space:nowrap;
}
.srv-ms{
  margin-left:auto;flex:none;
  font-family:var(--font-mono);font-size:12.5px;font-weight:700;
  color:var(--accent-dark);white-space:nowrap;
}
.srv-bw{
  flex:none;
  font-family:var(--font-mono);font-size:12.5px;font-weight:700;
  color:var(--text-muted);white-space:nowrap;
}

/* ============================================================
   三、核心卖点:大纲 + 详情面板
   ============================================================ */
.feat-wrap{
  display:grid;
  grid-template-columns:minmax(0,320px) minmax(0,1fr);
  gap:20px;
  align-items:start;
}
.feat-outline{
  display:flex;flex-direction:column;gap:6px;
  padding:10px;
  background:var(--bg-panel2);
  border-radius:var(--r-lg);
}
.feat-item{
  display:flex;align-items:center;gap:12px;
  width:100%;min-height:54px;padding:8px 12px;
  border-radius:var(--r);
  text-align:left;color:var(--text);
  transition:background-color .18s ease,color .18s ease,transform .18s ease;
}
.feat-item:hover{background:var(--bg-panel)}
.feat-item .ck{width:18px;height:18px;flex:none}
.feat-item .ck-ring{fill:none;stroke:var(--border-strong);stroke-width:1.5}
.feat-item .ck-mark{fill:none;stroke:transparent;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.feat-item.is-active{
  background:var(--accent-12);
  color:var(--accent-dark);
  transform:translateX(4px);
}
.feat-item.is-active .ck-ring{fill:var(--accent);stroke:var(--accent)}
.feat-item.is-active .ck-mark{stroke:var(--bg-panel)}
.feat-item .oi-txt{display:flex;flex-direction:column;gap:1px;min-width:0}
.feat-item .oi-title{font-size:14.5px;font-weight:600;line-height:1.3}
.feat-item .oi-note{font-size:12px;font-weight:500;line-height:1.3;color:var(--text-muted)}
.feat-item.is-active .oi-note{color:var(--accent-dark)}

.feat-panels{min-width:0}
.feat-panel{
  display:none;
  padding:28px 30px;
  background:var(--bg-panel);
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-panel);
}
.feat-panel.is-active{display:block}
.feat-panel h3{font-size:clamp(19px,1.8vw,23px)}
.feat-panel p{margin-top:14px;font-size:14.5px;line-height:1.85;color:var(--text-muted)}
.feat-panel .fact-row{margin-top:20px}

/* ============================================================
   四、线路类型三块说明
   ============================================================ */
.line-types{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;margin-top:20px;
}
.line-type{
  background:var(--bg-panel2);
  border-radius:var(--r);
  padding:18px 20px;min-width:0;
}
.line-type h3{font-size:16px}
.line-type p{margin-top:8px;font-size:13.5px;line-height:1.75;color:var(--text-muted)}

/* ============================================================
   五、可核对的三件事
   ============================================================ */
.check-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.check-grid .card h3{margin-top:12px;font-size:17px}
.check-grid .card p{margin-top:8px;font-size:14px;line-height:1.8;color:var(--text-muted)}

/* ============================================================
   六、区块收尾按钮 / 下载说明 / 流量包说明
   ============================================================ */
.sec-more{
  margin-top:24px;
  display:flex;justify-content:center;
}
.dl-note{
  margin-top:20px;text-align:center;
  font-size:13.5px;line-height:1.7;color:var(--text-muted);
}
.pack-note{
  margin-top:16px;text-align:center;
  font-sizefont-size:13.5px;line-height:1.7;color:var(--text-muted);
  max-width:820px;margin-inline:auto;
}

/* ============================================================
   七、底部 CTA 带(深色满宽区块)
   ============================================================ */
.cta-band{
  background:var(--text);
  padding-top:64px;
  padding-bottom:64px;
  text-align:center;
}
.cta-band-line{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:800;
  font-size:clamp(22px,3.2vw,40px);
  line-height:1.2;
  letter-spacing:-.03em;
  color:var(--bg-panel);
}
.cta-band-foot{
  margin-top:26px;
  display:flex;align-items:center;justify-content:center;
  gap:18px;flex-wrap:wrap;
}
.cta-emblem{
  width:56px;height:56px;border-radius:50%;
  background:var(--bg-panel);
  display:inline-flex;align-items:center;justify-content:center;
  flex:none;
  box-shadow:0 0 0 1px var(--white-35);
}
.em-hex{fill:var(--accent-14);stroke:var(--accent);stroke-width:1.6}
.em-core{fill:var(--accent)}

/* ============================================================
   八、响应式
   ============================================================ */
@media (max-width:1024px){
  .feat-wrap{grid-template-columns:1fr}
  .line-types{grid-template-columns:1fr}
  .check-grid{grid-template-columns:1fr}
}

@media (max-width:768px){
  #server-status{grid-template-columns:1fr;min-height:0}
  .feat-panel{padding:22px 20px}
  .feat-outline{padding:8px}
  .hero-glow{display:none}
}

@media (max-width:640px){
  .feat-item.is-active{transform:none}
  .cta-band{padding-top:46px;padding-bottom:46px}
  .cta-emblem{width:48px;height:48px}
  .srv-ms,.srv-bw{font-size:12px}
}