/* ── Loading Screen ── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loading-brand-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #000;
  letter-spacing: 0.12em;
  text-align: center;
}

/* ── Two-circle boolean mask animation ── */
.bool-anim-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bool-svg {
  overflow: visible;
}

#loading-status {
  font-family: 'Anton', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #999;
  text-align: center;
  min-height: 1.2em;
  transition: opacity 300ms;
  text-transform: uppercase;
}
