.role-router {
  padding: 1rem 0 0.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.role-router .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.role-router-prompt {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}
.role-router-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.role-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  background: white;
  color: #475569;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.role-btn:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}
.role-btn.active {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
}
.landing-section {
  transition: opacity 0.3s;
}
.landing-section.dimmed {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 640px) {
  .role-router-buttons {
    gap: 0.375rem;
  }
  .role-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }
}
