/* ── INIT LABEL ───────────────────────────────────────── */
.init-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: 16px;
  min-height: 48px;
}

.init-letter {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(-30px);
  animation: letterDrop .5s cubic-bezier(.34,1.56,.64,1) forwards;
}

.init-letter.space {
  width: 14px;
}

@keyframes letterDrop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.init-label.hide {
  opacity: 0;
  transition: opacity .4s;
}
