header {
  position: sticky;
  top: 14px;
  display: flex;
  width: calc(100% - 60px);
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  margin: 0 30px;
  box-sizing: border-box;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  z-index: 9;
  visibility: visible;
  transition: opacity 300ms linear 0s, visibility 300ms linear 0s;
  gap: 24px;
  /* global gap for all flex children */
}

@media only screen and (max-width: 600px) {
  header {
    padding: 12px 4px;
    margin: 0 2px;
    width: calc(100% - 4px);
    gap: 14px;
    /* increase gap between flex items */
    min-height: 60px;
  }

  .primary-button {
    margin-right: 10px;
    /* extra space before details button */
  }

  .mobile-only {
    margin-left: 0;
    /* adjust if needed */
  }
}


.header-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

header a {
  text-decoration: none;
  color: #333333;
  font-size: clamp(12px, 1vw + 0.3rem, 16px);
  font-family: "aeo-pro";
  font-weight: 400;
  margin: 0 14px;
}


#useCases {
  width: 100vw;
  height: auto;
}

.logo {
  width: 113px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  background-image: url("images/Genor.svg");
}

.logo[onclick] {
  cursor: pointer;
}

@media only screen and (max-width: 920px) {
  header nav {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  header {
    padding: 16px;
    margin: 0 10px;
    width: calc(100% - 20px);
  }

  /* .logo {
    width: 110px;
    height: 32px;
    flex-grow: 1;
  } */

  header {
    gap: 12px;
  }
}