.bigPulse {
  display: grid;
  place-items: center;
}

.bigPulse .avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--r-xl);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.96);
    box-shadow: inset 0 -12px 24px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(124, 242, 192, 0.0);
  }
  50% {
    transform: scale(1.04);
    box-shadow: inset 0 -12px 24px rgba(0, 0, 0, 0.18), 0 0 0 18px rgba(124, 242, 192, 0.08);
  }
}

.readyHero {
  display: grid;
  gap: var(--sp-m);
  text-align: center;
  justify-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  padding: var(--sp-xl) var(--sp-l);
}

.readyHero input {
  text-align: center;
  font-size: var(--fs-24);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--text-primary);
  width: 100%;
  padding: var(--sp-s) 0;
}
