/* Firm selection (after splash, before assessments) */
.wf-firm-picker {
  position: relative;
  min-height: 100vh;
  overflow: auto;
  background: #070604;
  background-image:
    radial-gradient(circle at top, rgba(192, 165, 116, 0.06) 0%, transparent 40%),
    linear-gradient(to bottom, #070604, #100e0c);
  color: #ded4c6;
  padding: 48px 24px 64px;
}

.wf-firm-picker-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.wf-firm-picker-title {
  margin: 0 0 12px 0;
  font-family: var(--wf-font-heading);
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
  color: #c0a574;
  letter-spacing: -0.03em;
}

.wf-firm-picker-sub {
  margin: 0 0 32px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(222, 212, 198, 0.78);
}

.wf-firm-picker-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.wf-firm-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(192, 165, 116, 0.22);
  background: rgba(22, 20, 18, 0.85);
  color: #ded4c6;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.wf-firm-card:hover {
  border-color: rgba(192, 165, 116, 0.45);
  background: rgba(32, 28, 24, 0.95);
}

.wf-firm-card.is-selected {
  border-color: rgba(192, 165, 116, 0.65);
  background: rgba(192, 165, 116, 0.1);
  box-shadow: 0 0 0 1px rgba(192, 165, 116, 0.25);
}

.wf-firm-card:focus-visible {
  outline: 2px solid #c0a574;
  outline-offset: 2px;
}

.wf-firm-card-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c0a574;
}

.wf-firm-card-role {
  font-size: 0.9rem;
  color: rgba(222, 212, 198, 0.72);
  line-height: 1.4;
}

.wf-firm-picker-cta {
  padding: 14px 32px;
  border-radius: 9999px;
  border: 1px solid rgba(192, 165, 116, 0.45);
  background: rgba(192, 165, 116, 0.15);
  color: #c0a574;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.wf-firm-picker-cta:hover:not(:disabled) {
  background: rgba(192, 165, 116, 0.28);
}

.wf-firm-picker-cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.wf-firm-picker-cta:focus-visible {
  outline: 2px solid #c0a574;
  outline-offset: 3px;
}
