.menu-close {
  display: none;
  font-size: 38px;
  line-height: 1;
}
.menu-bars {
  font-size: 27px;
  line-height: 1;
}
#menu.open .menu-bars {
  display: none;
}
#menu.open .menu-close {
  display: block;
}
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: #0004;
}
.neon-frame,
.neon-button {
  isolation: isolate;
}
.neon-frame:after,
.neon-button:after {
  content: "";
  position: absolute;
  z-index: 5;
  pointer-events: none;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--neon-angle),
    transparent 0 73%,
    #9c6916 80%,
    #ffe89a 87%,
    #fff8ce 90%,
    #d7a63c 94%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 6px #f5c95a);
  animation: neon-run 3.8s linear infinite;
}
.neon-button {
  position: relative;
  overflow: hidden;
}
.neon-button:after {
  inset: 0;
  padding: 2px;
}
.neon-button.primary:after {
  filter: drop-shadow(0 0 8px #ffe178);
  animation-duration: 3s;
}
.cta .cta-label {
  position: relative;
  margin: 0;
}
.cta b {
  position: absolute;
  right: 20px;
  font-size: 22px;
}
.nav-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}
.nav-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@property --neon-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes neon-run {
  to {
    --neon-angle: 360deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .neon-frame:after,
  .neon-button:after {
    animation: none;
    background: linear-gradient(135deg, #ffe69a, #9c6916);
  }
}
