:root{
  --home-copy:680px;
  --home-status-min:76px;
  --home-status-dot:9px;
  --home-status-flag-w:30px;
  --home-status-flag-h:20px;
  --home-link-size:17px;
}
.icon-sprite{
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}
.home-nodes{
  background:linear-gradient(180deg,var(--accent-06),transparent);
}
.node-guide{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(280px,.8fr);
  align-items:start;
  gap:28px;
  margin-bottom:32px;
}
.node-guide-copy{
  max-width:var(--home-copy);
}
.node-guide-copy p{
  color:var(--text-muted);
}
.node-guide .callout{
  margin:0;
}
.section-link-row{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  margin-top:24px;
}
.text-link{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  color:var(--accent);
  font-size:var(--home-link-size);
  font-weight:800;
}
.text-link:hover{
  color:var(--accent-dark);
}
.status-head{
  display:grid;
  grid-template-columns:minmax(0,.7fr) minmax(0,1.3fr);
  align-items:end;
  gap:32px;
  margin-top:64px;
  margin-bottom:24px;
  padding-bottom:18px;
  border-bottom:3px solid var(--accent);
}
.status-head h3{
  margin-bottom:0;
}
.status-head p{
  margin-bottom:0;
  color:var(--text-muted);
}
.server-status{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  width:100%;
  max-width:100%;
  min-width:0;
  margin-bottom:32px;
  overflow:hidden;
}
.server-status:empty{
  display:none;
}
.srv-row{
  display:grid;
  grid-template-columns:var(--home-status-dot) var(--home-status-flag-w) minmax(0,1fr) auto auto;
  align-items:center;
  gap:12px;
  min-width:0;
  min-height:var(--home-status-min);
  padding:14px 16px;
  border:1px solid var(--border);
  border-radius:var(--r-md);
  background:var(--bg-panel);
  box-shadow:0 1px 0 var(--white) inset,var(--shadow-soft);
}
.srv-dot{
  width:var(--home-status-dot);
  height:var(--home-status-dot);
  flex-shrink:0;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 3px var(--success-24);
}
.srv-flag{
  width:var(--home-status-flag-w);
  height:var(--home-status-flag-h);
  overflow:hidden;
  border:1px solid var(--flag-outline);
  border-radius:var(--r-xs);
  object-fit:cover;
}
.srv-name{
  min-width:0;
  overflow-wrap:anywhere;
  color:var(--text);
  font-weight:800;
}
.srv-type{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  max-width:100%;
  padding:4px 9px;
  overflow:hidden;
  border:1px solid var(--accent-20);
  border-radius:var(--r-pill);
  background:var(--accent-10);
  color:var(--accent);
  font-size:12px;
  font-weight:750;
}
.srv-ms,
.srv-bw{
  color:var(--text-muted);
  font-family:var(--font-mono);
  font-size:12px;
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}
.why-layout{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);
  gap:24px;
  align-items:stretch;
}
.why-lead{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.why-lead p{
  color:var(--text-muted);
}
.why-lead .btn{
  margin-top:auto;
}
.why-points{
  display:grid;
  gap:14px;
}
.why-point{
  position:relative;
  min-width:0;
  padding:24px 24px 24px 28px;
  overflow-x:clip;
  border:1px solid var(--border);
  border-radius:var(--r-md);
  background:var(--bg-panel-2);
  box-shadow:0 1px 0 var(--white) inset;
}
.why-point::before{
  content:"";
  position:absolute;
  top:14px;
  bottom:14px;
  left:0;
  width:4px;
  border-radius:var(--r-pill);
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
}
.why-point .mono{
  display:block;
  margin-bottom:7px;
  color:var(--accent);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
}
.why-point h3{
  font-size:21px;
}
.why-point p{
  margin-bottom:0;
  color:var(--text-muted);
}
.plan-note{
  min-height:92px;
  color:var(--text-muted);
  font-size:14px;
}
.traffic-pack{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:28px;
  margin-top:24px;
}
.traffic-pack h3{
  margin-bottom:8px;
}
.traffic-pack p{
  margin-bottom:0;
  color:var(--text-muted);
}
.home-article-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.home-article-grid .article-card{
  min-height:300px;
}
@media (max-width:980px){
  .server-status{
    grid-template-columns:1fr;
  }
  .why-layout{
    grid-template-columns:1fr;
  }
  .plan-note{
    min-height:0;
  }
}
@media (max-width:768px){
  .node-guide,
  .status-head{
    grid-template-columns:1fr;
  }
  .status-head{
    align-items:start;
    gap:12px;
  }
  .traffic-pack{
    grid-template-columns:1fr;
  }
  .home-article-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .srv-row{
    grid-template-columns:var(--home-status-dot) var(--home-status-flag-w) minmax(0,1fr) auto;
    gap:8px;
    padding:12px;
  }
  .srv-type{
    grid-column:3 / 4;
    justify-self:start;
  }
  .srv-ms{
    grid-column:4;
    grid-row:1;
  }
  .srv-bw{
    grid-column:4;
    grid-row:2;
  }
  .why-point{
    padding:21px 18px 21px 23px;
  }
  .section-link-row{
    justify-content:flex-start;
  }
}
@media (max-width:390px){
  .srv-row{
    grid-template-columns:var(--home-status-dot) var(--home-status-flag-w) minmax(0,1fr);
  }
  .srv-ms,
  .srv-bw{
    grid-column:3;
    justify-self:start;
  }
  .srv-ms{
    grid-row:auto;
  }
  .srv-bw{
    grid-row:auto;
  }
}