:root {
  --paper: #f4f1e8;
  --bg: #f4f1e8;
  --card: #fffaec;
  --ink: #17362c;
  --muted: #627067;
  --orange: #db4a23;
  --cream: #fffaec;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.wordmark-logo {
  display: block;
  width: 34px;
  height: 34px;
}

.brand-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 150px;
  height: 150px;
  translate: -50% -50%;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background: var(--orange);
  box-shadow: 12px 15px 0 rgb(23 54 44 / 9%);
  animation: mark-breathe 7s ease-in-out infinite;
}

.brand-orbit img {
  display: block;
  width: 128px;
  height: 128px;
}

.brand-logo {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 9px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--orange);
}

.brand-logo img {
  display: block;
  width: 31px;
  height: 31px;
}

.auth-mark img {
  width: 90px;
  height: 90px;
}

@keyframes mark-breathe {
  0%, 100% { transform: rotate(-2deg) scale(.96); }
  50% { transform: rotate(2deg) scale(1.04); }
}

@media (max-width: 600px) {
  .brand-orbit {
    width: 126px;
    height: 126px;
    border-radius: 29px;
  }

  .brand-orbit img {
    width: 108px;
    height: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-orbit { animation: none; }
}
