/* ── Results (single-page legacy) ── */
.results { display: none; margin-top: 2rem; }
.results.visible { display: block; }

/* ── Tab Navigation ── */
.tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  padding: 0.75rem 1.3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  white-space: nowrap;
  background: none;
  border-top: none; border-left: none; border-right: none;
  font-family: inherit;
  letter-spacing: 0.2px;
}
.tab:hover { color: var(--text-secondary); }
.tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

.tab-content { display: none; }
.tab-content.active { display: block; }
