.gate-screen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gate-card {
  width: 100%;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gate-greeting {
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin: 0 0 -8px;
  animation: gate-greeting-in 0.6s ease-out;
}

.gate-greeting-icon {
  display: inline-block;
  font-style: normal;
  animation: gate-greeting-icon-fly 0.6s ease-out;
}

@keyframes gate-greeting-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gate-greeting-icon-fly {
  from {
    opacity: 0;
    transform: translate(-6px, 2px) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}

.gate-card h1 {
  font-size: 1.25rem;
  font-weight: 600;
}

.gate-card p.gate-sub {
  color: var(--tx2);
  font-size: 0.9rem;
}

.gate-input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--raise);
  color: var(--tx);
}

.gate-submit {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}

.gate-error {
  color: var(--priority-low);
  font-size: 0.85rem;
}

.picker-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.picker-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--raise);
  text-align: left;
}

.picker-btn:hover {
  border-color: var(--accent);
}

.picker-btn--placeholder {
  opacity: 0.7;
}

.gate-back-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--tx3);
  font-size: 0.85rem;
  text-align: left;
}

.gate-back-link:hover {
  color: var(--accent);
}

.picker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.picker-name {
  font-weight: 600;
}
