:root {
  --card: rgba(255, 255, 255, 0.72);
}

* {
  -webkit-tap-highlight-color: transparent;
}

.card {
  border-radius: 24px;
  border: 1px solid rgba(228, 228, 231, 0.9);
  background: var(--card);
  box-shadow:
    0 1px 0 rgba(24, 24, 27, 0.03),
    0 12px 30px rgba(24, 24, 27, 0.06);
  backdrop-filter: blur(10px);
}

.field {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(228, 228, 231, 0.95);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}
.field:focus {
  border-color: rgba(161, 161, 170, 0.9);
  box-shadow: 0 0 0 4px rgba(24, 24, 27, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: rgb(24 24 27);
  color: white;
  box-shadow: 0 12px 24px rgba(24, 24, 27, 0.15);
}
.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(24, 24, 27, 0.2);
}

.btn-ghost {
  border: 1px solid rgba(228, 228, 231, 0.95);
  background: rgba(255, 255, 255, 0.75);
  color: rgb(24 24 27);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(228, 228, 231, 0.95);
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  font-size: 12px;
  color: rgb(82 82 91);
}

.reveal {
  animation: reveal 240ms ease-out both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
  }
  .btn,
  .field {
    transition: none;
  }
}

