.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.logo-name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 1;
  font-weight: var(--fw-light);
}
.logo--footer .logo-name { font-size: 1.3rem; }
.logo--footer .logo-tag { font-size: 0.68rem; }
@media (max-width: 480px) {
  .logo-tag { display: none; }
  .logo--header .logo-name { font-size: 1rem; }
}
.logo--login .logo-mark { width: 40px; height: 40px; }
.logo--login .logo-name { font-size: 1.25rem; }
.void-frame {
  stroke-dasharray: 96;
  stroke-dashoffset: 96;
  animation: void-draw 1.4s ease forwards;
}
.void-cross-h, .void-cross-v {
  transform-origin: 16px 16px;
  transform: scale(0);
  animation: void-pop .45s ease forwards;
}
.void-cross-h { animation-delay: .55s; }
.void-cross-v { animation-delay: .7s; }
@keyframes void-draw { to { stroke-dashoffset: 0; } }
@keyframes void-pop { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .void-frame, .void-cross-h, .void-cross-v {
    animation: none;
    stroke-dashoffset: 0;
    transform: none;
  }
}
