.home-hero {
  min-height: calc(900px - var(--header-height));
}

.home-hero .hero-inner {
  padding-top: clamp(44px, 7vw, 82px);
}

.home-hero .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.home-hero h1 {
  max-width: 900px;
}

.home-hero .hero-description {
  max-width: 820px;
}

.hero-wave {
  position: relative;
  width: 100%;
  height: 399px;
  margin-top: 4px;
  overflow: hidden;
}

.hx2 {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

.hx2-w {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  display: flex;
}

.hx2-w svg {
  width: 50%;
  height: 100%;
  flex: none;
}

.hx2-w1 {
  animation: hx2-m 16s linear infinite;
}

.hx2-w2 {
  animation: hx2-m 26s linear infinite;
}

.hx2-primary,
.hx2-secondary {
  fill: none;
}

.hx2-primary {
  stroke: var(--color-accent);
  stroke-width: 3;
  stroke-opacity: 0.2;
}

.hx2-secondary {
  stroke: var(--color-success);
  stroke-width: 2.5;
  stroke-opacity: 0.3;
}

@keyframes hx2-m {
  to {
    transform: translateX(-50%);
  }
}

.fact-band {
  position: relative;
  z-index: 3;
  width: 100%;
  background: var(--color-panel);
  box-shadow: var(--shadow-paper);
}

.fact-band-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.fact-band-inner span {
  min-width: 0;
  padding: 12px 20px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
}

.fact-band-inner span + span {
  border-left: 1px solid var(--color-border);
}

.fact-band-inner strong {
  margin-right: 5px;
  color: var(--color-accent-dark);
  font-size: 15px;
}

.home-feature-browser .feature-detail article h3 {
  margin-top: 15px;
}

.home-feature-browser .feature-detail article p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  line-height: 1.85;
}

.network-preview {
  background:
    linear-gradient(180deg, var(--color-accent-faint), var(--color-bg));
}

.network-guidance,
.traffic-pack-note {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-panel);
  box-shadow: var(--shadow-paper);
}

.network-guidance h3,
.traffic-pack-note h3 {
  margin-bottom: 9px;
}

.network-guidance p,
.traffic-pack-note p {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.server-status-heading {
  margin-top: 48px;
  margin-bottom: 18px;
}

.server-status-heading h3 {
  margin-bottom: 7px;
}

.server-status-heading p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.server-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.srv-row {
  min-width: 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-paper);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.srv-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: var(--radius-pill);
  background: var(--color-success);
  box-shadow: 0 0 0 4px var(--color-success-soft);
  animation: srv-pulse 2.4s ease-in-out infinite;
}

.srv-flag {
  font-family: var(--font-body);
  font-size: 20px;
}

.srv-name {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.srv-type {
  max-width: 100%;
  padding: 4px 8px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  color: var(--color-accent-dark);
  background: var(--color-accent-faint);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.srv-ms,
.srv-bw {
  color: var(--color-text-muted);
  white-space: nowrap;
}

@keyframes srv-pulse {
  50% {
    opacity: 0.48;
    transform: scale(0.82);
  }
}

.service-method {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(30px, 6vw, 62px);
  border-radius: var(--radius-xl);
  background: var(--color-panel-soft);
}

.service-method-copy p {
  color: var(--color-text-muted);
  line-height: 1.85;
}

.service-method-copy p:last-child {
  margin-bottom: 0;
}

.method-notes {
  display: grid;
  gap: 12px;
}

.method-notes article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-paper);
}

.method-notes .mono {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.method-notes h3 {
  margin-bottom: 5px;
  font-size: 19px;
}

.method-notes p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.pricing-preview {
  background:
    radial-gradient(circle at 88% 8%, var(--color-success-soft), transparent 24%),
    var(--color-bg);
}

.traffic-pack-note {
  background: var(--color-panel-soft);
  box-shadow: none;
}

.traffic-pack-note .badge {
  margin-bottom: 12px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.faq-layout .section-head {
  margin-bottom: 0;
}

.faq-layout .section-head .article-link {
  display: inline-block;
  margin-top: 6px;
}

.section-link-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1020px) {
  .service-method {
    grid-template-columns: 1fr;
  }

  .method-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout .section-head {
    margin-bottom: 12px;
  }

  .srv-row {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
  }

  .srv-type {
    display: none;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: auto;
  }

  .fact-band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact-band-inner span:nth-child(3) {
    border-left: 0;
  }

  .fact-band-inner span:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .network-guidance,
  .traffic-pack-note {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .method-notes {
    grid-template-columns: 1fr;
  }

  .server-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-wave {
    display: none;
  }

  .home-hero .hero-inner {
    padding-bottom: 50px;
  }
}

@media (max-width: 640px) {
  .fact-band-inner span {
    padding: 11px 8px;
    font-size: 11px;
  }

  .fact-band-inner strong {
    display: block;
    margin-right: 0;
    margin-bottom: 2px;
  }

  .service-method {
    padding: 24px;
  }

  .srv-row {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    padding-inline: 13px;
  }

  .srv-bw {
    display: none;
  }
}

@media (max-width: 390px) {
  .srv-row {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .srv-ms {
    grid-column: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx2 * {
    animation: none !important;
  }

  .srv-dot {
    animation: none;
  }
}