/* Single persistent Coming Soon navigation.
   The compiled React bundle still contains its original navigation, so hide
   that duplicate and let the shell navigation be the only visible top bar. */
#root nav {
  display: none !important;
}

/* The countdown now communicates launch status, so the old hero
   "Space opening soon" pill is intentionally removed from view. */
#root > div > header > div > div:first-child {
  display: none !important;
}

.hc-topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: rgb(255 255 255 / 78%) !important;
  border-bottom: 1px solid rgb(226 232 240 / 58%) !important;
  box-shadow: 0 1px 0 rgb(255 255 255 / 45%), 0 8px 30px rgb(15 23 42 / 5%);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hc-topbar {
    background: rgb(255 255 255 / 96%) !important;
  }
}
