.header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 999;
  pointer-events: none;
}

.header-inner {
  pointer-events: auto;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border-radius: 999px;
  background: rgba(7, 26, 18, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  font-size: 1.15rem;
  white-space: nowrap;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header nav a {
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
  font-size: .92rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .2s ease;
}

.header nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.header-cta {
  background: #fff;
  color: #102414 !important;
}

@media (max-width: 820px) {
  .header {
    inset: 12px 0 auto;
  }

  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 64px;
    padding: 0 18px;
  }

  .header nav {
    display: none;
  }
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
}
