.explorer {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 72rem;
  margin: 0 auto;
}

.explorer__head h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.explorer__meta {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--guld-ink) 75%, transparent);
  max-width: none;
}

.explorer__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  margin: 1.5rem 0 1rem;
}

.explorer__search {
  flex: 1 1 16rem;
}

.explorer__toolbar label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--guld-navy);
}

.explorer__toolbar input,
.explorer__toolbar select {
  font: inherit;
  font-weight: 400;
  padding: 0.55rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--guld-ink) 18%, transparent);
  border-radius: 0.3rem;
  background: var(--guld-white);
  color: var(--guld-ink);
  min-width: 12rem;
}

.explorer__table-wrap {
  overflow-x: auto;
  border: 1px solid color-mix(in srgb, var(--guld-ink) 12%, transparent);
  border-radius: 0.35rem;
  background: var(--guld-white);
}

.explorer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.explorer-table th,
.explorer-table td {
  padding: 0.55rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid color-mix(in srgb, var(--guld-ink) 10%, transparent);
  vertical-align: top;
}

.explorer-table th {
  background: var(--guld-mist);
  color: var(--guld-navy);
  font-weight: 600;
  white-space: nowrap;
  position: sticky;
  top: 0;
}

.explorer-table th button {
  font: inherit;
  font-weight: 600;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.explorer-table th button:hover {
  color: var(--guld-primary);
}

.explorer-table tr:last-child td {
  border-bottom: 0;
}

.explorer-table .num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.explorer-fp {
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace;
  font-size: 0.78rem;
  word-break: break-all;
  color: color-mix(in srgb, var(--guld-ink) 85%, transparent);
}

.claim-pill {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.claim-pill--locked {
  background: color-mix(in srgb, var(--guld-primary) 14%, transparent);
  color: var(--guld-navy);
}

.claim-pill--unbound {
  background: color-mix(in srgb, #a67c00 18%, transparent);
  color: #6b4f00;
}

.claim-pill--claimed {
  background: color-mix(in srgb, #0b6e4f 16%, transparent);
  color: #0b6e4f;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.explorer__empty {
  margin: 0;
  padding: 1.25rem;
  color: color-mix(in srgb, var(--guld-ink) 70%, transparent);
}
