.brand {
  gap: 14px;
}

.brand-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
}

.brand-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(225,177,61,.25);
  clip-path: polygon(50% 0, 91% 24%, 91% 76%, 50% 100%, 9% 76%, 9% 24%);
  animation: brand-circuit 5s ease-in-out infinite;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 0;
  filter: drop-shadow(0 0 8px rgba(242,190,65,.4));
}

.brand-word {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .23em;
  color: #f4d27a;
  background: linear-gradient(100deg, #af7415 0%, #ffe59a 38%, #d89a24 65%, #fff0b5 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(224,170,49,.12);
  animation: brand-shine 6s linear infinite;
}

.hero-copy h1 em {
  color: #bcd8eb;
  -webkit-text-stroke: 1px rgba(121,194,236,.62);
  background: linear-gradient(105deg, #9cc8e4 0%, #f3fbff 30%, #59b7ee 51%, #60f3da 70%, #a9d4ed 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 11px rgba(47,125,246,.24));
}

.nav-shell.scrolled .brand-icon {
  width: 48px;
  height: 48px;
}

.nav-shell.scrolled .brand-logo {
  width: 44px;
  height: 44px;
}

@keyframes brand-shine {
  to { background-position: -220% 50%; }
}

@keyframes brand-circuit {
  50% { opacity: .45; transform: rotate(60deg) scale(1.04); }
}

@media (max-width: 620px) {
  .brand-icon { width: 50px; height: 50px; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-word { font-size: .93rem; letter-spacing: .18em; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-icon::before,
  .brand-word { animation: none; }
}
