.brand,
.logo {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  color: inherit;
  text-decoration: none;
  background: none;
}

.nr-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

/* Five Stops Energy: an original, angular N with five animated venue points. */
.nr-symbol {
  position: relative;
  display: block;
  width: 53px;
  height: 43px;
  flex: 0 0 53px;
  filter: drop-shadow(0 0 10px rgb(168 63 224 / 25%));
}

.nr-symbol i {
  position: absolute;
  display: block;
  height: 7px;
  border-radius: 1px;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.nr-symbol .nr-left {
  left: 6px;
  top: 8px;
  width: 7px;
  height: 28px;
  background: linear-gradient(180deg, #f7f7fb 0%, #ff2e9a 100%);
  transform: skew(-9deg);
}

.nr-symbol .nr-right {
  left: 8px;
  top: 8px;
  width: 39px;
  background: linear-gradient(90deg, #ff2e9a 0%, #a83fe0 35%, #f7f7fb 58%, #00e5ff 100%);
  background-size: 200% 100%;
  transform: rotate(40deg);
  transform-origin: 2px 50%;
  animation: nr-route-charge 2.8s linear infinite;
}

.nr-symbol .nr-route {
  right: 5px;
  top: 8px;
  width: 7px;
  height: 28px;
  background: linear-gradient(180deg, #00e5ff 0%, #f7f7fb 100%);
  transform: skew(-9deg);
}

.nr-symbol .nr-left::before,
.nr-symbol .nr-left::after,
.nr-symbol .nr-right::after,
.nr-symbol .nr-route::after {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 2px solid #09090b;
  border-radius: 50%;
  content: "";
  animation: nr-stop-flow 3.2s ease-in-out infinite;
}

.nr-symbol .nr-left::before {
  left: 50%;
  bottom: -4px;
  background: #ff2e9a;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.nr-symbol .nr-left::after {
  left: 50%;
  top: -4px;
  background: #ff2e9a;
  transform: translateX(-50%);
  animation-delay: .55s;
}

.nr-symbol .nr-right::after {
  left: 50%;
  top: 50%;
  background: #a83fe0;
  transform: translate(-50%, -50%);
  animation-delay: 1.1s;
}

.nr-symbol .nr-route::after {
  left: 50%;
  bottom: -4px;
  background: #00e5ff;
  transform: translateX(-50%);
  animation-delay: 1.65s;
}

.nr-symbol b {
  position: absolute;
  z-index: 3;
  right: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border: 3px solid #09090b;
  border-radius: 50% 50% 50% 0;
  background: #00e5ff;
  box-shadow: 0 0 16px rgb(0 229 255 / 58%);
  transform: rotate(-45deg);
  animation: nr-pin-arrive 3.2s ease-in-out infinite 2.2s;
}

@keyframes nr-route-charge {
  to { background-position: -200% 0; }
}

@keyframes nr-stop-flow {
  0%, 16%, 100% { box-shadow: 0 0 0 0 transparent; filter: brightness(.82); }
  7% { box-shadow: 0 0 0 4px rgb(255 255 255 / 10%), 0 0 13px currentColor; filter: brightness(1.65); }
}

@keyframes nr-pin-arrive {
  0%, 20%, 100% { box-shadow: 0 0 12px rgb(0 229 255 / 35%); }
  10% { box-shadow: 0 0 0 5px rgb(0 229 255 / 12%), 0 0 24px rgb(0 229 255 / 90%); }
}

@media (prefers-reduced-motion: reduce) {
  .nr-symbol .nr-right,
  .nr-symbol .nr-left::before,
  .nr-symbol .nr-left::after,
  .nr-symbol .nr-right::after,
  .nr-symbol .nr-route::after,
  .nr-symbol b {
    animation: none;
  }
}

.nr-symbol b::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #09090b;
  content: "";
  transform: translate(-50%, -50%);
}

.nr-name {
  display: flex;
  align-items: baseline;
  font: 600 18px/1 "Space Grotesk", Inter, sans-serif;
  letter-spacing: -.045em;
}

.nr-name strong,
.nr-name em {
  font: inherit;
  font-style: normal;
}

.nr-name strong {
  color: #f7f7fb;
}

.nr-name em {
  color: transparent;
  font-weight: 400;
  background: linear-gradient(90deg, #ff2e9a, #00e5ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.nr-name .tm-mark {
  align-self: flex-start;
  margin: -.18em 0 0 .16em;
  color: #f7f7fb;
  font: 600 .45em/1 Inter, sans-serif;
  letter-spacing: 0;
}

.logo .nr-symbol {
  transform: scale(1.07);
  transform-origin: left center;
}

.logo .nr-name {
  font-size: 21px;
}

@media (max-width: 360px) {
  .nr-logo {
    gap: 8px;
  }

  .nr-name {
    font-size: 16px;
  }

  .nr-symbol {
    width: 49px;
    flex-basis: 49px;
    transform: scale(.92);
    transform-origin: left center;
  }
}
