/* ── Hero ── */
.hero {
  text-align: center;
  padding: 16px 0 8px;
}
.hero-icon {
  font-size: 1.2em;
  margin-right: 8px;
  vertical-align: middle;
}
.hero .title {
  font-size: 28px;
  margin-bottom: 8px;
}
.hero .subtitle {
  max-width: 340px;
  margin: 0 auto 0;
}

/* ── Tag lookup ── */
.lookup-label {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
}
.lookup-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.lookup-row input {
  flex: 1;
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: none;
}
.btn-lookup {
  flex-shrink: 0;
  padding: 0 20px;
  height: 52px;
  background: #1A1A1A;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.btn-lookup:hover { background: #333; }
