:root {
  --color-flag-white: var(--color-white);
  --home-index-width: 236px;
  --home-line-gap: 28px;
  --home-paper-rule: 1px;
}

.hero-shell {
  min-height: calc(100svh - var(--header-height));
  padding-bottom: 34px;
}

.hero-shell::before {
  position: absolute;
  top: -30%;
  left: 50%;
  width: min(92vw, 1080px);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 13%, transparent), color-mix(in srgb, var(--color-accent-dark) 4%, transparent) 36%, transparent 68%);
  transform: translateX(-50%);
  animation: home-atmosphere 12s ease-in-out infinite;
}

.hero-shell::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(color-mix(in srgb, var(--color-accent) 8%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--color-accent) 8%, transparent) 1px, transparent 1px);
  background-size: 58px 34px;
  mask-image: linear-gradient(to bottom, transparent, var(--color-black) 20%, transparent);
  transform: perspective(460px) rotateX(56deg) scale(1.25);
  transform-origin: center top;
}

.hero-centered {
  padding-top: clamp(30px, 5vh, 58px);
}

.hero-copy {
  max-width: 940px;
}

.hero-copy h1 {
  font-size: clamp(52px, 5.4vw, 68px);
}

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

.hero-description strong {
  color: var(--color-text);
  font-weight: 580;
}

.hero-directory {
  width: min(calc(100% - 48px), 1180px);
  margin-top: 25px;
}

.telegraph-stage {
  margin-top: 17px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  align-items: end;
  gap: clamp(28px, 6vw, 88px);
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading h2 {
  margin-top: 14px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  font-size: 15px;
}

.feature-section {
  border-top: 1px solid var(--color-border-soft);
}

.feature-ledger {
  display: grid;
  grid-template-columns: var(--home-index-width) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}

.feature-index {
  position: sticky;
  top: var(--toc-offset);
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg-panel);
}

.feature-index > .mono-label {
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--color-border-soft);
}

.feature-index a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  border-bottom: 1px solid var(--color-border-soft);
  color: var(--color-text-muted);
  font-size: 13px;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.feature-index a:hover {
  color: var(--color-text);
  background: var(--color-bg-panel-2);
}

.feature-index small {
  color: var(--color-border);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.feature-index-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 17px 20px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 9px;
}

.feature-reports {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-reports::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 50%;
  z-index: -1;
  border-left: 1px dashed var(--color-border);
  content: "";
}

.feature-report {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--color-paper) 3%, transparent), transparent 48%),
    var(--color-bg-panel);
}

.feature-report::before {
  position: absolute;
  top: 31px;
  left: -8px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--color-bg);
  border-radius: var(--radius-pill);
  content: "";
  background: var(--color-accent-dark);
}

.feature-report-wide,
.feature-report-emphasis {
  grid-column: 1 / -1;
}

.feature-report-wide {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1fr);
  column-gap: clamp(30px, 6vw, 80px);
}

.feature-report-wide .feature-report-meta,
.feature-report-wide .report-mark {
  grid-column: 1 / -1;
}

.feature-report-wide h3 {
  font-size: clamp(27px, 3vw, 40px);
}

.feature-report-emphasis {
  border-color: var(--color-accent-dark);
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--color-accent) 10%, transparent), transparent 48%),
    var(--color-bg-panel-2);
}

.feature-report-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.feature-report h3 {
  margin-bottom: 17px;
}

.feature-report p {
  margin-bottom: 21px;
  font-size: 14px;
}

.report-mark {
  display: block;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.report-link {
  color: var(--color-accent);
  font-size: 13px;
}

.difference-note {
  margin-top: clamp(42px, 7vw, 88px);
  padding: clamp(28px, 5vw, 52px);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--color-accent) 5%, transparent), transparent);
}

.difference-note h3 {
  max-width: 850px;
  margin-top: 15px;
}

.difference-note p {
  max-width: 940px;
  margin-bottom: 0;
}

.route-section {
  background: color-mix(in srgb, var(--color-bg-panel) 42%, transparent);
}

.route-guidance {
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
  margin-top: 20px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg-panel);
}

.route-guidance h3 {
  margin: 11px 0 0;
  font-size: 24px;
}

.route-guidance p {
  margin-bottom: 0;
  font-size: 14px;
}

.server-status-shell {
  margin-top: 20px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg-panel-2);
}

.server-status-heading {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.server-status-heading h3 {
  margin: 10px 0 0;
}

.server-status-heading p {
  margin: 0;
  font-size: 13px;
}

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

.srv-row {
  min-width: 0;
  min-height: 54px;
  display: grid;
  grid-template-columns: auto auto minmax(80px, 1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-medium);
  color: var(--color-text-muted);
  background: var(--color-bg-panel);
  font-family: var(--font-mono);
  font-size: 10px;
}

.srv-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: var(--radius-pill);
  background: var(--color-success);
  animation: server-breathe 2.8s ease-in-out infinite;
}

.srv-flag {
  width: 22px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
}

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

.srv-type {
  max-width: 100%;
  overflow: hidden;
  padding: 3px 7px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.client-section {
  border-top: 1px solid var(--color-border-soft);
}

.platform-card p {
  margin-bottom: 18px;
  font-size: 12px;
}

.client-access-note {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 13px;
}

.pricing-section {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--color-accent) 3%, transparent), transparent);
}

.traffic-pack-note {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  margin-top: 16px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg-panel);
}

.traffic-pack-note h3 {
  margin: 12px 0 0;
  font-size: 24px;
}

.traffic-pack-note p {
  margin-bottom: 0;
  font-size: 14px;
}

.blog-section {
  border-top: 1px solid var(--color-border-soft);
}

.article-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-card {
  min-height: 310px;
}

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

.final-section {
  padding-top: 32px;
}

.home-promo {
  margin-top: 0;
}

@keyframes home-atmosphere {
  0%,
  100% {
    opacity: .7;
    transform: translateX(-50%) scale(.96);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.03);
  }
}

@keyframes server-breathe {
  0%,
  100% {
    opacity: .48;
    transform: scale(.86);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-guidance,
  .traffic-pack-note {
    grid-template-columns: 1fr;
  }

  .route-guidance .button,
  .traffic-pack-note .button {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feature-ledger {
    grid-template-columns: 1fr;
  }

  .feature-index {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-index > .mono-label,
  .feature-index-note {
    grid-column: 1 / -1;
  }

  .feature-index a {
    border-right: 1px solid var(--color-border-soft);
  }

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

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

  .hero-directory {
    width: calc(100% - 32px);
    margin-top: 22px;
  }

  .hero-directory .directory-group {
    padding-inline: 15px;
  }

  .feature-report-wide {
    display: block;
  }

  .feature-report-meta {
    margin-bottom: 20px;
  }

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

  .article-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-centered {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-directory .directory-list {
    gap: 16px;
  }

  .feature-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-index a {
    padding-inline: 14px;
  }

  .feature-reports {
    grid-template-columns: 1fr;
  }

  .feature-report-wide,
  .feature-report-emphasis {
    grid-column: auto;
  }

  .feature-reports::before {
    left: 5px;
  }

  .feature-report {
    margin-left: 12px;
  }

  .route-guidance .button,
  .traffic-pack-note .button {
    width: 100%;
  }

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

  .srv-type {
    display: none;
  }

  .srv-bw {
    grid-column: 3 / -1;
    padding-left: 0;
  }
}

@media (max-width: 430px) {
  .feature-index small {
    display: none;
  }

  .srv-row {
    gap: 8px;
  }

  .article-card {
    min-height: 276px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shell::before,
  .srv-dot {
    animation: none;
  }
}