/* Static / self-serve intake card */

.intake-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.intake-card {
  width: 100%;
  max-width: 560px;
  background: var(--card, #1a1d27);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 2rem 2.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  animation: intakeFadeIn 0.4s ease;
}

@keyframes intakeFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intake-title {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.intake-subtitle {
  margin: 0 0 1.5rem;
  color: var(--text-muted, #9ca3af);
  font-size: 0.9rem;
  line-height: 1.45;
}

.intake-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.intake-field {
  margin-bottom: 1.1rem;
}

.intake-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary, #d1d5db);
}

.intake-required {
  color: #f87171;
  font-weight: 600;
}

.intake-optional {
  color: var(--text-muted, #9ca3af);
  font-weight: 400;
  font-style: italic;
  font-size: 0.78rem;
}

.intake-field input,
.intake-field select {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg, #0f1117);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text, #f9fafb);
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.15s;
}

.intake-field input:focus,
.intake-field select:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.6);
}

.intake-submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 12px 20px;
  font-size: 0.95rem;
}

@keyframes fieldPulse {
  0%   { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(96, 165, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

.intake-field.pulse input {
  animation: fieldPulse 0.9s ease;
}

.intake-field-note {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted, #9ca3af);
  font-style: italic;
}
