body.root-home .topbar {
  position: relative;
  top: auto;
  z-index: 1;
  grid-template-columns: minmax(180px, 1fr) minmax(260px, 1.2fr) minmax(180px, 1fr);
  grid-template-areas:
    "brand status badge"
    "nav nav nav";
  gap: 6px 10px;
  width: min(calc(100vw - 12px), 1600px);
  margin: 0 auto 0;
  padding: 4px 10px;
  text-align: center;
  justify-items: center;
}

body.root-home .brand {
  grid-area: brand;
  justify-self: center;
}

body.root-home .topbar-status {
  grid-area: status;
  min-height: 28px;
  padding: 0 8px;
  justify-content: center;
}

body.root-home .nav-trust-badge {
  grid-area: badge;
  justify-self: center;
  min-height: 32px;
}

body.root-home .topnav {
  grid-area: nav;
  width: 100%;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  align-self: center;
  min-width: 0;
}

body.root-home .topnav::-webkit-scrollbar {
  display: none;
}

body.root-home .topnav a {
  padding: 6px 8px;
  font-size: 0.7rem;
  color: #d6ff7f;
  text-shadow:
    0 0 6px rgba(214, 255, 127, 0.18),
    0 0 12px rgba(115, 222, 255, 0.08);
}

body.root-home .promo-banner,
body.root-home .hero-copy,
body.root-home .section-heading,
body.root-home .hero-panel,
body.root-home .trust-contract-panel,
body.root-home main,
body.root-home section,
body.root-home article {
  text-align: center;
}

body.root-home .hero-actions,
body.root-home .trust-contract-grid,
body.root-home .lane-banner {
  justify-content: center;
}

body.root-home .page-shell {
  padding-top: 0;
}

@media (max-width: 980px) {
  body.root-home .topbar {
    grid-template-areas:
      "brand"
      "status"
      "badge"
      "nav";
    grid-template-columns: 1fr;
  }

  body.root-home .topnav {
    grid-area: nav;
  }

  body.root-home .topnav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
