.home-hero-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(30px, 4vw, 54px) clamp(22px, 5vw, 72px) 128px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-hero);
  background: var(--color-panel);
}

.home-hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 920px);
  text-align: center;
}

.home-hero-copy .eyebrow {
  margin-bottom: 18px;
}

.home-hero-copy h1 {
  max-width: 900px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: clamp(52px, 5vw, 68px);
}

.home-hero-copy .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.home-hero-description {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 17px;
}

.home-hero-description strong {
  color: var(--color-text);
}

.home-hero-copy .trust-row,
.home-hero-copy .platform-chip-row,
.home-hero-copy .route-chip-row {
  justify-content: center;
}

.home-hero-copy .trust-row {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.home-platform-chips,
.home-route-chips {
  position: relative;
  z-index: 3;
}

.home-platform-chips .platform-chip,
.home-route-chips .route-chip {
  box-shadow: 0 6px 18px var(--color-shadow);
}

.hero-ornament {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(48vw, 520px);
  opacity: 0.13;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-ornament svg {
  width: 100%;
  height: auto;
}

.orange-rind-outer {
  fill: var(--color-accent-soft);
  stroke: var(--color-accent);
  stroke-width: 18;
}

.orange-rind-inner {
  fill: var(--color-accent-pale);
  stroke: var(--color-accent-dark);
  stroke-width: 3;
}

.orange-segment {
  fill: var(--color-accent-soft);
  stroke: var(--color-accent);
  stroke-width: 3;
}

.orange-core {
  fill: var(--color-accent);
  stroke: var(--color-accent-dark);
  stroke-width: 4;
}

.orange-straw {
  fill: none;
  stroke: var(--color-text);
  stroke-width: 14;
  stroke-linecap: round;
}

.orange-tunnel {
  fill: none;
  stroke: var(--color-accent-dark);
  stroke-width: 3;
  stroke-linecap: round;
}

.home-fact-band {
  right: clamp(12px, 2vw, 22px);
  bottom: clamp(12px, 2vw, 22px);
  left: clamp(12px, 2vw, 22px);
  z-index: 4;
}

.home-fact-band .fact-value,
.home-fact-band .fact-label {
  display: block;
}

.section-heading {
  margin-bottom: clamp(30px, 5vw, 54px);
}

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

.section-heading > p,
.split-heading > p {
  color: var(--color-muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  align-items: end;
  gap: clamp(28px, 6vw, 88px);
}

.split-heading > div h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 4px;
}

.route-preview-section {
  background: var(--color-page);
}

.route-guidance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-panel);
}

.route-guidance h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.route-guidance p {
  max-width: 900px;
  color: var(--color-muted);
}

.server-status-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  align-items: end;
  gap: 30px;
  margin-top: 52px;
  margin-bottom: 20px;
}

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

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

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

.srv-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

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

.srv-flag {
  width: 28px;
  height: 20px;
  flex: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
}

.srv-flag img,
.srv-flag svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.srv-name {
  min-width: 0;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.srv-type {
  max-width: 100%;
  padding: 3px 8px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: 11px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.srv-ms,
.srv-bw {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  white-space: nowrap;
}

.feature-browser-section {
  background: var(--color-panel);
}

.feature-heading {
  max-width: 880px;
}

.feature-heading p {
  max-width: 760px;
  color: var(--color-muted);
}

.feature-browser {
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 6vw, 82px);
}

.feature-index {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.feature-index a {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 750;
}

.feature-index a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: transparent;
  content: "";
}

.feature-index a:hover,
.feature-index a.is-current {
  background: var(--color-accent-pale);
  color: var(--color-text);
}

.feature-index a.is-current::after {
  background: var(--color-accent);
}

.feature-canvas {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-hero);
  background: var(--color-white);
}

.feature-record {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 28px;
  padding: clamp(28px, 5vw, 58px);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

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

.feature-record + .feature-record::before {
  position: absolute;
  top: -1px;
  left: 54px;
  width: 130px;
  height: 24px;
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-pill);
  content: "";
}

.feature-record-number {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: 13px;
  font-weight: 850;
}

.feature-record h3 {
  margin-bottom: 16px;
}

.feature-record p {
  max-width: 790px;
  color: var(--color-muted);
}

.feature-record .article-card-link {
  display: inline-block;
  margin-top: 6px;
}

.feature-callout {
  margin-top: 28px;
}

.client-section {
  background: var(--color-page);
}

.platform-copy {
  min-height: 76px;
  color: var(--color-muted);
  font-size: 13px;
}

.client-note {
  max-width: 860px;
  margin: 24px auto 0;
  color: var(--color-muted);
  text-align: center;
}

.client-note a {
  color: var(--color-accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-preview-section {
  background: var(--color-panel);
}

.traffic-pack-note {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  margin-top: 20px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-hero);
  background: var(--color-white);
}

.traffic-pack-note h3 {
  margin-top: 14px;
  margin-bottom: 10px;
}

.traffic-pack-note p {
  color: var(--color-muted);
}

.traffic-pack-rules {
  padding: 22px;
  border-radius: var(--radius-card);
  background: var(--color-accent-pale);
}

.traffic-pack-rules strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
}

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

.faq-preview-section {
  background: var(--color-page);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 7vw, 96px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.faq-intro h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.faq-intro p {
  color: var(--color-muted);
}

.faq-intro .article-card-link {
  display: inline-block;
  margin-top: 14px;
}

.blog-preview-section {
  background: var(--color-panel);
}

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

.home-article-grid .article-card {
  min-height: 330px;
}

.home-article-grid .article-card h3 {
  font-size: 21px;
}

@keyframes server-dot-pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.78);
  }
}

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

  .home-article-grid .article-card {
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto;
    padding-bottom: 210px;
  }

  .home-hero-copy h1 {
    font-size: clamp(44px, 7vw, 58px);
  }

  .split-heading,
  .server-status-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .feature-index {
    position: sticky;
    z-index: 20;
    top: calc(var(--header-height) + 6px);
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-sm);
    scrollbar-width: none;
  }

  .feature-index::-webkit-scrollbar {
    display: none;
  }

  .feature-index a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

  .faq-intro {
    position: static;
  }

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

@media (max-width: 768px) {
  .home-hero-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .home-hero {
    padding: 30px 18px 214px;
    border-radius: var(--radius-card);
  }

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

  .nowrap-term,
  .home-hero-copy .accent-word {
    white-space: normal;
  }

  .home-hero-description {
    font-size: 15px;
  }

  .hero-ornament {
    display: none;
  }

  .home-platform-chips,
  .home-route-chips {
    gap: 6px;
  }

  .home-platform-chips .platform-chip,
  .home-route-chips .route-chip {
    min-height: 32px;
    padding: 4px 8px;
  }

  .route-guidance {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .feature-record {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-record-number {
    width: 58px;
    height: 58px;
  }

  .feature-record + .feature-record::before {
    left: 28px;
    width: 90px;
  }

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

  .home-article-grid .article-card {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .home-hero-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero-copy .hero-actions .button {
    width: 100%;
  }

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

  .home-fact-band .fact-item {
    min-width: 0;
  }

  .home-fact-band .fact-item:nth-child(3)::before {
    display: none;
  }

  .home-fact-band .fact-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--color-border);
  }

  .home-fact-band .fact-label {
    overflow-wrap: anywhere;
  }

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

  .srv-type {
    display: none;
  }

  .srv-bw {
    grid-column: 3 / -1;
    justify-self: end;
  }

  .feature-record {
    padding: 26px 20px;
  }

  .route-guidance,
  .traffic-pack-note {
    padding: 22px 18px;
  }

  .section-link-row {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .home-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .home-platform-chips .platform-chip,
  .home-route-chips .route-chip {
    font-size: 10px;
  }

  .home-fact-band .fact-item {
    justify-content: flex-start;
  }

  .home-fact-band .fact-icon {
    display: none;
  }

  .srv-row {
    gap: 7px;
    padding-right: 11px;
    padding-left: 11px;
  }
}