.welcome {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 18px;
}

.welcome-hero {
  display: grid;
  place-items: center;
  gap: 8px;
  margin-top: 120px;
}

.logo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--accent-faint);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(74, 163, 255, 0.28);
  animation: logo-pulse 2.4s ease-in-out infinite;
}

.logo-core {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 16px;
  color: #D6E2FF;
  letter-spacing: 0.4px;
}

.welcome-title {
  font-size: 20px;
  font-weight: 700;
}

.welcome-card {
  margin-top: 6px;
  min-height: 150px;
}

.footer-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: 8px;
}

@keyframes logo-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.95;
  }
  100% {
    transform: scale(0.92);
    opacity: 0.55;
  }
}
