.pxl-nav {
  --gray-4: #00002d17;

  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  height: 64px;

  border-bottom: 1px solid color-mix(in oklab, var(--gray-4) 50%, transparent);
  background: hsla(0, 0%, 100%, 0.62);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pxl-nav__inner {
  --color-panel: var(--color-panel-translucent);
  --backdrop-filter-panel: blur(64px);

  max-width: 1280px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pxl-nav__logo-wrap,
.pxl-nav__cta-wrap {
  display: flex;
  align-items: center;
}

.pxl-nav__logo-wrap img {
  height: 50px;
  width: auto;
  display: block;
}

/* HubSpot CTA styling */
.pxl-nav__cta-wrap .hs-cta-wrapper a,
.pxl-nav__cta-wrap a.cta_button,
.pxl-nav__cta-wrap a {

}

.pxl-nav__cta-wrap .hs-cta-wrapper a:hover,
.pxl-nav__cta-wrap .hs-cta-wrapper a:focus,
.pxl-nav__cta-wrap a.cta_button:hover,
.pxl-nav__cta-wrap a.cta_button:focus,

}

.pxl-nav__cta-wrap .hs-cta-wrapper a:active,
.pxl-nav__cta-wrap a.cta_button:active,
.pxl-nav__cta-wrap a:active {
  transform: translateY(1px);
}

@media (min-width: 640px) {
  .pxl-nav__inner {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .pxl-nav__inner {
    padding: 0 32px;
  }
}

.pxl-nav__cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pxl-nav__custom-button-link {
  display: inline-flex;
  text-decoration: none;
}

.pxl-nav__custom-button-link button {
  cursor: pointer;
}

.pxl-nav__cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pxl-nav__custom-button-link {
  display: inline-flex;
  text-decoration: none;
}

.pxl-nav__custom-button {
  all: unset;
  box-sizing: border-box;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  height: 40px;
  padding: 0 18px;

  border-radius: 8px;
  background-color: #ffc53d;
  color: #21201c;

  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;

  cursor: pointer;
  user-select: none;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.pxl-nav__custom-button:hover {
  background-color: #ffba18;
  box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.16), 0 1px 4px -1px rgba(0, 0, 0, 0.04);
}

.pxl-nav__custom-button:active {
  transform: translateY(1px);
  filter: brightness(0.92) saturate(1.1);
}

.pxl-nav__custom-button:focus-visible {
  outline: 2px solid #e2a336;
  outline-offset: 2px;
}.pxl-nav__custom-button-link {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  padding: 0 18px;

  border-radius: 8px;
  background-color: #ffc53d;
  color: #21201c;

  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;

  cursor: pointer;
  user-select: none;
  border: 0;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.pxl-nav__custom-button-link:hover {
  background-color: #ffba18;
  color: #21201c;
  text-decoration: none;
  box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.16), 0 1px 4px -1px rgba(0, 0, 0, 0.04);
}

.pxl-nav__custom-button-link:active {
  transform: translateY(1px);
  filter: brightness(0.92) saturate(1.1);
}

.pxl-nav__custom-button-link:focus-visible {
  outline: 2px solid #e2a336;
  outline-offset: 2px;
}